diff --git a/LeCountdown/Utils/Tip.swift b/LeCountdown/Utils/Tip.swift index 48795de..844494e 100644 --- a/LeCountdown/Utils/Tip.swift +++ b/LeCountdown/Utils/Tip.swift @@ -15,7 +15,7 @@ enum Tip: Int, CaseIterable, Identifiable { var localizedString: String { switch self { - case .widget: return NSLocalizedString("You can add widget for your timers and countdowns by modifying your home or lock screen", comment: "") + case .widget: return NSLocalizedString("Widget Tip", comment: "") // case .siri: return NSLocalizedString("You can ask Siri to create and launch countdowns and stopwatches", comment: "") } } diff --git a/LeCountdown/Views/PresetsView.swift b/LeCountdown/Views/PresetsView.swift index 8103e24..02de946 100644 --- a/LeCountdown/Views/PresetsView.swift +++ b/LeCountdown/Views/PresetsView.swift @@ -211,7 +211,7 @@ enum PresetSection: Int, Identifiable, CaseIterable { case .tea: return [.greenTea, .blackTea] // case .workout: return [.runningSplits] case .mindfullness: return [.nap, .meditation, .writing, .reading] - case .move: return [.workout, .stretching, .toothbrushing, .cleaning] + case .move: return [.workout, .stretching, .toothbrushing] } } diff --git a/LeCountdown/Views/StartView.swift b/LeCountdown/Views/StartView.swift index 8d18184..0a148ac 100644 --- a/LeCountdown/Views/StartView.swift +++ b/LeCountdown/Views/StartView.swift @@ -18,6 +18,13 @@ struct StartView: View { var body: some View { VStack(spacing: 0.5) { + Text("Select some of the predefined timers and customize them, or create your own") + .font(.callout) + .frame(maxWidth: .infinity) + .padding() + .background(Color.accentColor) + .foregroundColor(.white) + PresetSelectionView(model: self.model).monospaced() Button { @@ -45,7 +52,7 @@ struct StartView: View { .background(.white) } - }.background(.gray) + } } @@ -86,7 +93,6 @@ class Customization: ObservableObject { func toggleAdd() { self.added = !self.added - Logger.log("ADDDED = \(self.added)") } func createTimer() -> AbstractTimer { diff --git a/LeCountdown/en.lproj/Localizable.strings b/LeCountdown/en.lproj/Localizable.strings index 480a656..f6a3000 100644 --- a/LeCountdown/en.lproj/Localizable.strings +++ b/LeCountdown/en.lproj/Localizable.strings @@ -1,2 +1,3 @@ "You'll find your timers here. Start by creating them on the left screen" = "You'll find your timers here.\nStart by creating using the top right button!"; "Disclaimer" = "This is a beta version of Enchant.\n\nPlease don't depend on the app for critical events :)\n\n If you have some feedback or an issue, please tell me about it through the settings or within Testflight!"; +"Widget Tip" = "Quickly launch your timers with widget. You can add them by modifying your home or lock screen."; diff --git a/LeCountdown/fr.lproj/Localizable.strings b/LeCountdown/fr.lproj/Localizable.strings index 5377740..36a52cc 100644 --- a/LeCountdown/fr.lproj/Localizable.strings +++ b/LeCountdown/fr.lproj/Localizable.strings @@ -220,7 +220,7 @@ /* No comment provided by engineer. */ "Yes" = "Oui"; -"You can add widget for your timers and countdowns by modifying your home or lock screen" = "Lancez rapidement vos minuteurs avec les widgets ! Ajoutez les à votre écran verrouillé ou votre page d'accueil"; +"Widget Tip" = "Lancez rapidement vos minuteurs avec les widgets ! Ajoutez les à votre écran verrouillé ou votre page d'accueil."; /* No comment provided by engineer. */ "You can ask Siri to create and launch countdowns and stopwatches" = "Vous pouvez demander à Siri de vous lancer les minuteurs et les chronos"; @@ -276,3 +276,5 @@ "Cleaning" = "Nettoyage"; "Done" = "OK"; "Create your own" = "Créez les vôtres"; +"Select some of the predefined timers and customize them, or create your own" = "Sélectionnez et personnalisez les minuteurs, ou créez les vôtres"; +"Learn more" = "En savoir plus...";