Skip to content

Commit

Permalink
Merge pull request #115 from Team-Ampersand/109-selfstudyfeature-l10n
Browse files Browse the repository at this point in the history
🔀 :: 지역화가 적용되지 않은 SelfStudyFeature에 지역화 적용
  • Loading branch information
baekteun authored Jul 26, 2023
2 parents 6224272 + 92d6ce4 commit 71ae762
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ import CombineUtility
import Configure
import DesignSystem
import GlobalThirdPartyLibrary
import Localization
import MSGLayout
import SelfStudyDomainInterface
import UIKit
import UIKitUtil

final class SelfStudyViewController: BaseStoredViewController<SelfStudyStore> {
private let dotoriNavigationBarLabel = DotoriNavigationBarLabel(text: "자습신청")
private let dotoriNavigationBarLabel = DotoriNavigationBarLabel(text: L10n.SelfStudy.selfStudyTitle)
private let filterBarButton = UIBarButtonItem(
image: .Dotori.filter.tintColor(color: .dotori(.neutral(.n20))),
style: .done,
Expand Down Expand Up @@ -40,9 +41,9 @@ final class SelfStudyViewController: BaseStoredViewController<SelfStudyStore> {
image: .Dotori.graduationcap
)

DotoriLabel("자습 신청한 인원이 없습니다.", font: .subtitle2)
DotoriLabel(L10n.SelfStudy.emptySelfStudyTitle, font: .subtitle2)

DotoriLabel("홈에서 자습 신청을 해보세요!", textColor: .neutral(.n20), font: .caption)
DotoriLabel(L10n.SelfStudy.applyFromHomeSelfStudyTitle, textColor: .neutral(.n20), font: .caption)
}.alignment(.center)

override func addView() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@
Copyright © 2023 com.msg. All rights reserved.
*/

"self_study_title" = "SelfStudy";
"self_study_limit_exceeded" = "SelfStudy apply limit exceeded";
"empty_self_study_title" = "No one has applied for the SelfStudy..";
"apply_from_home_self_study_title" = "Apply for the SelfStudy from Home!";
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@
Copyright © 2023 com.msg. All rights reserved.
*/

"self_study_title" = "자습신청";
"self_study_limit_exceeded" = "자기주도학습 신청 인원이 초과되었습니다.";
"empty_self_study_title" = "자습 신청한 인원이 없습니다..";
"apply_from_home_self_study_title" = "홈에서 자습 신청을 해보세요!";

0 comments on commit 71ae762

Please sign in to comment.