From 0ba2031ec786f15bce7676ff0b981a53b5beeb49 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Sun, 21 Sep 2025 18:11:57 -0700 Subject: feat: Development commit --- Localizable.xcstrings | 25 ++++++++++++++++++---- .../Views/Settings/Section/SettingsDebugView.swift | 8 +++---- 2 files changed, 25 insertions(+), 8 deletions(-) diff --git a/Localizable.xcstrings b/Localizable.xcstrings index 37cdbc3..1317966 100644 --- a/Localizable.xcstrings +++ b/Localizable.xcstrings @@ -22,17 +22,30 @@ "Add Custom Provider" : { }, - "Add Dummy Bookmarks" : { - + "Add Sample Bookmarks" : { + "comment" : "A button label that, when tapped, adds sample bookmarks for testing purposes.", + "isCommentAutoGenerated" : true }, - "Add Dummy Search History" : { - + "Add Sample Search History" : { + "comment" : "A button label that adds sample search history.", + "isCommentAutoGenerated" : true + }, + "Add to Collection" : { + "comment" : "A menu item that allows a user to add a post to their favorites.", + "isCommentAutoGenerated" : true + }, + "Add to Favorites" : { + "comment" : "A menu item that adds a post to the user's favorites.", + "isCommentAutoGenerated" : true }, "Add to Search" : { }, "All" : { + }, + "All %@" : { + }, "API Key" : { @@ -356,6 +369,10 @@ }, "Remove from Collection" : { + }, + "Remove from Favorites" : { + "comment" : "A menu option to remove a favorited post from their list.", + "isCommentAutoGenerated" : true }, "Rename" : { diff --git a/Sora/Views/Settings/Section/SettingsDebugView.swift b/Sora/Views/Settings/Section/SettingsDebugView.swift index ef817a3..81c7b68 100644 --- a/Sora/Views/Settings/Section/SettingsDebugView.swift +++ b/Sora/Views/Settings/Section/SettingsDebugView.swift @@ -6,19 +6,19 @@ struct SettingsDebugView: View { var body: some View { Button(action: { #if DEBUG - settingsManager.addDummyBookmarks() + settingsManager.addSampleBookmarks() #endif }) { - Text("Add Dummy Bookmarks") + Text("Add Sample Bookmarks") } .trailingFrame() Button(action: { #if DEBUG - settingsManager.addDummySearchHistory() + settingsManager.addSampleSearchHistory() #endif }) { - Text("Add Dummy Search History") + Text("Add Sample Search History") } .trailingFrame() } -- cgit v1.2.3