Skip to content

Commit

Permalink
fix: Localizable.strings
Browse files Browse the repository at this point in the history
  • Loading branch information
dominickolbe committed Feb 5, 2022
1 parent 71d3a0e commit c67cf15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Better Password/Modules/Settings/SettingsView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ struct SettingsView: View {
List {

Section(
header: Text("APPARENCE")
header: Text("OPTIONS")
) {
Picker("APPARENCE", selection: appSettings.$currentTheme) {
Text("APPARENCE_LIGHT").tag(Theme.light)
Text("APPARENCE_DARK").tag(Theme.dark)
}.pickerStyle(.segmented)
Picker("APPEARANCE", selection: appSettings.$currentTheme) {
Text("APPEARANCE_LIGHT").tag(Theme.light)
Text("APPEARANCE_DARK").tag(Theme.dark)
}
}

Section(
Expand Down
2 changes: 1 addition & 1 deletion Better Password/de.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

"APP_VERSION" = "Version";

"OPTIONS" = "Optionen";
"APPEARANCE" = "Appearance";
"APPEARANCE_AUTO" = "Auto";
"APPEARANCE_LIGHT" = "Hell";
"APPEARANCE_DARK" = "Dunkel";
2 changes: 1 addition & 1 deletion Better Password/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

"APP_VERSION" = "Version";

"OPTIONS" = "Options";
"APPEARANCE" = "Appearance";
"APPEARANCE_AUTO" = "Auto";
"APPEARANCE_LIGHT" = "Light";
"APPEARANCE_DARK" = "Dark";

0 comments on commit c67cf15

Please sign in to comment.