mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-05-06 07:57:42 +02:00
Merge pull request #5386 from vector-im/5159_ftue_strings
Add onboarding splash screen strings
This commit is contained in:
@@ -81,6 +81,18 @@
|
||||
"accessibility_checkbox_label" = "checkbox";
|
||||
"accessibility_button_label" = "button";
|
||||
|
||||
// Onboarding
|
||||
"onboarding_splash_register_button_title" = "Create account";
|
||||
"onboarding_splash_login_button_title" = "I already have an account";
|
||||
"onboarding_splash_page_1_title" = "Own your conversations.";
|
||||
"onboarding_splash_page_1_message" = "Secure and independent communication that gives you the same level of privacy as a face-to-face conversation in your own home.";
|
||||
"onboarding_splash_page_2_title" = "You’re in control.";
|
||||
"onboarding_splash_page_2_message" = "Choose where your conversations are kept, giving you control and independence. Connected via Matrix.";
|
||||
"onboarding_splash_page_3_title" = "Secure messaging.";
|
||||
"onboarding_splash_page_3_message" = "End-to-end encrypted and no phone number required. No ads or datamining.";
|
||||
"onboarding_splash_page_4_title_no_pun" = "Messaging for your team.";
|
||||
"onboarding_splash_page_4_message" = "Element is also great for the workplace. It’s trusted by the world’s most secure organisations.";
|
||||
|
||||
// Authentication
|
||||
"auth_login" = "Log in";
|
||||
"auth_register" = "Register";
|
||||
|
||||
@@ -2347,6 +2347,46 @@ public class VectorL10n: NSObject {
|
||||
public static var on: String {
|
||||
return VectorL10n.tr("Vector", "on")
|
||||
}
|
||||
/// I already have an account
|
||||
public static var onboardingSplashLoginButtonTitle: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_login_button_title")
|
||||
}
|
||||
/// Secure and independent communication that gives you the same level of privacy as a face-to-face conversation in your own home.
|
||||
public static var onboardingSplashPage1Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_1_message")
|
||||
}
|
||||
/// Own your conversations.
|
||||
public static var onboardingSplashPage1Title: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_1_title")
|
||||
}
|
||||
/// Choose where your conversations are kept, giving you control and independence. Connected via Matrix.
|
||||
public static var onboardingSplashPage2Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_2_message")
|
||||
}
|
||||
/// You’re in control.
|
||||
public static var onboardingSplashPage2Title: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_2_title")
|
||||
}
|
||||
/// End-to-end encrypted and no phone number required. No ads or datamining.
|
||||
public static var onboardingSplashPage3Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_3_message")
|
||||
}
|
||||
/// Secure messaging.
|
||||
public static var onboardingSplashPage3Title: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_3_title")
|
||||
}
|
||||
/// Element is also great for the workplace. It’s trusted by the world’s most secure organisations.
|
||||
public static var onboardingSplashPage4Message: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_4_message")
|
||||
}
|
||||
/// Messaging for your team.
|
||||
public static var onboardingSplashPage4TitleNoPun: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_page_4_title_no_pun")
|
||||
}
|
||||
/// Create account
|
||||
public static var onboardingSplashRegisterButtonTitle: String {
|
||||
return VectorL10n.tr("Vector", "onboarding_splash_register_button_title")
|
||||
}
|
||||
/// Open
|
||||
public static var `open`: String {
|
||||
return VectorL10n.tr("Vector", "open")
|
||||
|
||||
Reference in New Issue
Block a user