Skip to content

Commit

Permalink
Set placeholders for no profile selection
Browse files Browse the repository at this point in the history
  • Loading branch information
keeshux committed Nov 27, 2024
1 parent dc9e401 commit 0f6db65
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -586,10 +586,10 @@ public enum Strings {
}
public enum InstalledProfile {
public enum None {
/// Select a profile
public static let name = Strings.tr("Localizable", "views.app.installed_profile.none.name", fallback: "Select a profile")
/// FIXME
public static let status = Strings.tr("Localizable", "views.app.installed_profile.none.status", fallback: "FIXME")
/// No profile
public static let name = Strings.tr("Localizable", "views.app.installed_profile.none.name", fallback: "No profile")
/// Tap list to connect
public static let status = Strings.tr("Localizable", "views.app.installed_profile.none.status", fallback: "Tap list to connect")
}
}
public enum Profile {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
"views.about.credits.notices" = "Notices";
"views.about.credits.translations" = "Translations";

"views.app.installed_profile.none.name" = "Select a profile";
"views.app.installed_profile.none.status" = "FIXME";
"views.app.installed_profile.none.name" = "No profile";
"views.app.installed_profile.none.status" = "Tap list to connect";
"views.app.profile.no_modules" = "No active modules";
"views.app.folders.default" = "My profiles";
"views.app.folders.no_profiles" = "No profiles";
Expand Down

0 comments on commit 0f6db65

Please sign in to comment.