Skip to content

Commit

Permalink
IOS-2660 Update onboarding name screen
Browse files Browse the repository at this point in the history
  • Loading branch information
joe-pusya committed Apr 12, 2024
1 parent 9b6cd4e commit cf79f16
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
10 changes: 6 additions & 4 deletions Anytype/Generated/Strings.swift
Original file line number Diff line number Diff line change
Expand Up @@ -827,12 +827,14 @@ internal enum Loc {
}
}
internal enum Soul {
/// This is how you will appear in the app.
internal static let description = Loc.tr("Localizable", "Auth.JoinFlow.Soul.Description", fallback: "This is how you will appear in the app.")
/// Get my Key
internal static let button = Loc.tr("Localizable", "Auth.JoinFlow.Soul.Button", fallback: "Get my Key")
/// Only seen by people you share something with. There is no central registry of users.
internal static let description = Loc.tr("Localizable", "Auth.JoinFlow.Soul.Description", fallback: "Only seen by people you share something with. There is no central registry of users.")
/// Untitled
internal static let placeholder = Loc.tr("Localizable", "Auth.JoinFlow.Soul.Placeholder", fallback: "Untitled")
/// Choose your name
internal static let title = Loc.tr("Localizable", "Auth.JoinFlow.Soul.Title", fallback: "Choose your name")
/// Set your name
internal static let title = Loc.tr("Localizable", "Auth.JoinFlow.Soul.Title", fallback: "Set your name")
}
}
internal enum LoginFlow {
Expand Down
5 changes: 3 additions & 2 deletions Anytype/Resources/Strings/en.lproj/Localizable.strings
Original file line number Diff line number Diff line change
Expand Up @@ -261,9 +261,10 @@
"Auth.JoinFlow.Key.ReadMore.Instruction.Option1.Title" = "The easiest way to store your Recovery Phrase is to save it in your password manager.";
"Auth.JoinFlow.Key.ReadMore.Instruction.Option2.Title" = "The most secure way is to write it down on paper and keep it offline, in a safe and secure place.";

"Auth.JoinFlow.Soul.Title" = "Choose your name";
"Auth.JoinFlow.Soul.Description" = "This is how you will appear in the app.";
"Auth.JoinFlow.Soul.Title" = "Set your name";
"Auth.JoinFlow.Soul.Description" = "Only seen by people you share something with. There is no central registry of users.";
"Auth.JoinFlow.Soul.Placeholder" = "Untitled";
"Auth.JoinFlow.Soul.Button" = "Get my Key";

"Auth.JoinFlow.Creating.Soul.Title" = "Generating new account";
"Auth.JoinFlow.Setting.Space.Title" = "Setting up your default space";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ struct SoulView: View {
Spacer()

StandardButton(
Loc.Auth.next,
Loc.Auth.JoinFlow.Soul.button,
inProgress: model.inProgress,
style: .primaryLarge,
action: {
Expand All @@ -39,7 +39,7 @@ struct SoulView: View {

AnytypeText(
Loc.Auth.JoinFlow.Soul.description,
style: .calloutRegular
style: .bodyRegular
)
.foregroundColor(.Auth.body)
.multilineTextAlignment(.center)
Expand Down

0 comments on commit cf79f16

Please sign in to comment.