Skip to content

Commit

Permalink
#59 feat: reset, resetConfirmMessage에 대한 localizable 열거형 case 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
sanghyeok-kim committed Jan 28, 2024
1 parent c2123e6 commit 9ff582c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Multimer/Multimer/Localizing/LocalizableString.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ enum LocalizableString {
case cancel
case delete
case deleteConfirmMessage(count: Int)
case reset
case resetConfirmMessage
case noTimerCreatedMessage
case addTimerMessage
case noTimerActivatedMessage
Expand Down Expand Up @@ -69,7 +71,7 @@ enum LocalizableString {
return String(format: NSLocalizedString("activated", comment: ""))
case .enterTimerNameToCreate:
return String(format: NSLocalizedString("enterTimerNameToCreate", comment: ""))
case . enterStopwatchNameToCreate:
case .enterStopwatchNameToCreate:
return String(format: NSLocalizedString("enterStopwatchNameToCreate", comment: ""))
case .createTimer:
return String(format: NSLocalizedString("createTimer", comment: ""))
Expand All @@ -85,6 +87,10 @@ enum LocalizableString {
return String(format: NSLocalizedString("delete", comment: ""))
case .deleteConfirmMessage(let count):
return String(format: NSLocalizedString("deleteConfirmMessage", comment: ""), arguments: [count])
case .reset:
return String(format: NSLocalizedString("reset", comment: ""))
case .resetConfirmMessage:
return String(format: NSLocalizedString("resetConfirmMessage", comment: ""))
case .noTimerCreatedMessage:
return String(format: NSLocalizedString("noTimerCreatedMessage", comment: ""))
case .addTimerMessage:
Expand Down

0 comments on commit 9ff582c

Please sign in to comment.