From 9ff582cc56dc48b587b227f03266148ac6f92b5e Mon Sep 17 00:00:00 2001 From: sanghyeok-kim Date: Sun, 28 Jan 2024 13:38:33 +0900 Subject: [PATCH] =?UTF-8?q?#59=20feat:=20reset,=20resetConfirmMessage?= =?UTF-8?q?=EC=97=90=20=EB=8C=80=ED=95=9C=20localizable=20=EC=97=B4?= =?UTF-8?q?=EA=B1=B0=ED=98=95=20case=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Multimer/Multimer/Localizing/LocalizableString.swift | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Multimer/Multimer/Localizing/LocalizableString.swift b/Multimer/Multimer/Localizing/LocalizableString.swift index 1c98188..44d59ae 100644 --- a/Multimer/Multimer/Localizing/LocalizableString.swift +++ b/Multimer/Multimer/Localizing/LocalizableString.swift @@ -27,6 +27,8 @@ enum LocalizableString { case cancel case delete case deleteConfirmMessage(count: Int) + case reset + case resetConfirmMessage case noTimerCreatedMessage case addTimerMessage case noTimerActivatedMessage @@ -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: "")) @@ -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: