Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโ€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

๐Ÿ”€ :: [#109] ์ง€์—ญํ™”๊ฐ€ ์ ์šฉ๋˜์ง€ ์•Š์€ SelfStudyFeature์— ์ง€์—ญํ™” ์ ์šฉ #115

Merged
merged 3 commits into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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" = "ํ™ˆ์—์„œ ์ž์Šต ์‹ ์ฒญ์„ ํ•ด๋ณด์„ธ์š”!";