Skip to content

Commit

Permalink
🌐 :: [#140] Moordinators / Alert에 confirm 버튼 Localization
Browse files Browse the repository at this point in the history
  • Loading branch information
baekteun committed Aug 1, 2023
1 parent 5aedbd8 commit 257c20e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import BaseFeatureInterface
import ConfirmationDialogFeature
import DWebKit
import InputDialogFeatureInterface
import Localization
import Moordinator
import MyViolationListFeature
import TimerInterface
Expand Down Expand Up @@ -123,7 +124,7 @@ private extension HomeMoordinator {
if !actions.isEmpty {
actions.forEach(alert.addAction(_:))
} else {
alert.addAction(.init(title: "확인", style: .default))
alert.addAction(.init(title: L10n.Global.confirmButtonTitle, style: .default))
}
self.rootVC.topViewController?.present(alert, animated: true)
return .none
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import BaseFeature
import Localization
import Moordinator
import ProposeMusicFeature
import UIKit
Expand Down Expand Up @@ -72,7 +73,7 @@ private extension MusicMoordinator {
if !actions.isEmpty {
actions.forEach(alert.addAction(_:))
} else {
alert.addAction(.init(title: "확인", style: .default))
alert.addAction(.init(title: L10n.Global.confirmButtonTitle, style: .default))
}
self.rootVC.topViewController?.present(alert, animated: true)
return .none
Expand Down

0 comments on commit 257c20e

Please sign in to comment.