Skip to content

Commit

Permalink
fix(cat-voices): escape special characters in arb (#1015)
Browse files Browse the repository at this point in the history
* chore: escape special characters in arb

* fix: enable escaping arb special characters

* chore: use relax-syntax to not require espacing quotes each time
  • Loading branch information
dtscalac authored Oct 17, 2024
1 parent cc7a8b4 commit a848e87
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ output-class: VoicesLocalizations
preferred-supported-locales:
- en
use-deferred-loading: true
synthetic-package: false
synthetic-package: false
use-escaping: false
relax-syntax: true
Original file line number Diff line number Diff line change
Expand Up @@ -1507,7 +1507,7 @@ abstract class VoicesLocalizations {
/// No description provided for @createKeychainSeedPhraseCheckSuccessSubtitle.
///
/// In en, this message translates to:
/// **'Enter your seed phrase to recover your Catalyst Keychain on any device.

It\'s kinda like your email and password all rolled into one, so keep it somewhere safe!

In the next step well add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.'**
/// **'Enter your seed phrase to recover your Catalyst Keychain on any device.

It\'s kinda like your email and password all rolled into one, so keep it somewhere safe!

In the next step we\'ll add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.'**
String get createKeychainSeedPhraseCheckSuccessSubtitle;

/// No description provided for @yourNextStep.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ class VoicesLocalizationsEn extends VoicesLocalizations {
String get createKeychainSeedPhraseCheckSuccessTitle => 'Nice job! You\'ve successfully verified the seed phrase for your keychain.';

@override
String get createKeychainSeedPhraseCheckSuccessSubtitle => 'Enter your seed phrase to recover your Catalyst Keychain on any device.

It\'s kinda like your email and password all rolled into one, so keep it somewhere safe!

In the next step well add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.';
String get createKeychainSeedPhraseCheckSuccessSubtitle => 'Enter your seed phrase to recover your Catalyst Keychain on any device.

It\'s kinda like your email and password all rolled into one, so keep it somewhere safe!

In the next step we\'ll add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.';

@override
String get yourNextStep => 'Your next step';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@ class VoicesLocalizationsEs extends VoicesLocalizations {
String get createKeychainSeedPhraseCheckSuccessTitle => 'Nice job! You\'ve successfully verified the seed phrase for your keychain.';

@override
String get createKeychainSeedPhraseCheckSuccessSubtitle => 'Enter your seed phrase to recover your Catalyst Keychain on any device.

It\'s kinda like your email and password all rolled into one, so keep it somewhere safe!

In the next step well add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.';
String get createKeychainSeedPhraseCheckSuccessSubtitle => 'Enter your seed phrase to recover your Catalyst Keychain on any device.

It\'s kinda like your email and password all rolled into one, so keep it somewhere safe!

In the next step we\'ll add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.';

@override
String get yourNextStep => 'Your next step';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -863,7 +863,7 @@
},
"reset": "Reset",
"createKeychainSeedPhraseCheckSuccessTitle": "Nice job! You've successfully verified the seed phrase for your keychain.",
"createKeychainSeedPhraseCheckSuccessSubtitle": "Enter your seed phrase to recover your Catalyst Keychain on any device.\u2028\u2028It's kinda like your email and password all rolled into one, so keep it somewhere safe!\u2028\u2028In the next step well add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.",
"createKeychainSeedPhraseCheckSuccessSubtitle": "Enter your seed phrase to recover your Catalyst Keychain on any device.\u2028\u2028It's kinda like your email and password all rolled into one, so keep it somewhere safe!\u2028\u2028In the next step we'll add a password to your Catalyst Keychain, so you can lock/unlock access to Voices.",
"yourNextStep": "Your next step",
"createKeychainSeedPhraseCheckSuccessNextStep": "Now let’s set your Unlock password for this device!",
"createKeychainUnlockPasswordInstructionsTitle": "Set your Catalyst unlock password \u2028for this device",
Expand Down

0 comments on commit a848e87

Please sign in to comment.