Skip to content

Commit 96dd0d2

Browse files
committed
feat(l10n): add authentication page headlines and update related strings
1 parent 6cf8e1b commit 96dd0d2

File tree

3 files changed

+35
-9
lines changed

3 files changed

+35
-9
lines changed

lib/l10n/app_localizations.dart

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,18 @@ abstract class AppLocalizations {
104104
/// **'Hello World!'**
105105
String get helloWorld;
106106

107+
/// Headline for the main authentication page
108+
///
109+
/// In en, this message translates to:
110+
/// **'Dashboard Access'**
111+
String get authenticationPageHeadline;
112+
113+
/// Subheadline for the main authentication page
114+
///
115+
/// In en, this message translates to:
116+
/// **'Secure sign-in for administrators and publishers.'**
117+
String get authenticationPageSubheadline;
118+
107119
/// Button label for signing in with email
108120
///
109121
/// In en, this message translates to:
@@ -113,19 +125,19 @@ abstract class AppLocalizations {
113125
/// Title for the email sign-in page
114126
///
115127
/// In en, this message translates to:
116-
/// **'Email Sign In'**
128+
/// **'Secure Email Sign-In'**
117129
String get emailSignInPageTitle;
118130

119131
/// Headline for the request code page
120132
///
121133
/// In en, this message translates to:
122-
/// **'Sign in or create an account'**
134+
/// **'Secure Email Sign-In'**
123135
String get requestCodePageHeadline;
124136

125137
/// Subheadline for the request code page
126138
///
127139
/// In en, this message translates to:
128-
/// **'Enter your email to receive a verification code. No password needed!'**
140+
/// **'Enter your authorized email to receive a secure sign-in code.'**
129141
String get requestCodePageSubheadline;
130142

131143
/// Label for the email input field on the request code page

lib/l10n/app_localizations_ar.dart

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,26 @@ class AppLocalizationsAr extends AppLocalizations {
1111
@override
1212
String get helloWorld => 'مرحبا بالعالم!';
1313

14+
@override
15+
String get authenticationPageHeadline => 'الوصول إلى لوحة التحكم';
16+
17+
@override
18+
String get authenticationPageSubheadline =>
19+
'تسجيل دخول آمن للمسؤولين والناشرين.';
20+
1421
@override
1522
String get authenticationEmailSignInButton =>
1623
'تسجيل الدخول بالبريد الإلكتروني';
1724

1825
@override
19-
String get emailSignInPageTitle => 'تسجيل الدخول بالبريد الإلكتروني';
26+
String get emailSignInPageTitle => 'تسجيل دخول آمن بالبريد الإلكتروني';
2027

2128
@override
22-
String get requestCodePageHeadline => 'سجل الدخول أو أنشئ حسابًا';
29+
String get requestCodePageHeadline => 'تسجيل دخول آمن بالبريد الإلكتروني';
2330

2431
@override
2532
String get requestCodePageSubheadline =>
26-
'أدخل بريدك الإلكتروني لتلقي رمز التحقق. لا حاجة لكلمة مرور!';
33+
'أدخل بريدك الإلكتروني المعتمد لتلقي رمز تسجيل دخول آمن.';
2734

2835
@override
2936
String get requestCodeEmailLabel => 'البريد الإلكتروني';

lib/l10n/app_localizations_en.dart

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,25 @@ class AppLocalizationsEn extends AppLocalizations {
1111
@override
1212
String get helloWorld => 'Hello World!';
1313

14+
@override
15+
String get authenticationPageHeadline => 'Dashboard Access';
16+
17+
@override
18+
String get authenticationPageSubheadline =>
19+
'Secure sign-in for administrators and publishers.';
20+
1421
@override
1522
String get authenticationEmailSignInButton => 'Sign in with Email';
1623

1724
@override
18-
String get emailSignInPageTitle => 'Email Sign In';
25+
String get emailSignInPageTitle => 'Secure Email Sign-In';
1926

2027
@override
21-
String get requestCodePageHeadline => 'Sign in or create an account';
28+
String get requestCodePageHeadline => 'Secure Email Sign-In';
2229

2330
@override
2431
String get requestCodePageSubheadline =>
25-
'Enter your email to receive a verification code. No password needed!';
32+
'Enter your authorized email to receive a secure sign-in code.';
2633

2734
@override
2835
String get requestCodeEmailLabel => 'Email';

0 commit comments

Comments
 (0)