Skip to content

Commit

Permalink
fix: Failed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
lakshya1goel committed Dec 14, 2024
1 parent 573a807 commit 2fd11d5
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 11 deletions.
4 changes: 0 additions & 4 deletions assets/l10n/app_en.arb
Original file line number Diff line number Diff line change
Expand Up @@ -709,10 +709,6 @@
"@imageDownloadSuccess": {
"description": "Message shown when image download is successful"
},
"errorDialogTitle": "Error Occured",
"@errorDialogTitle": {
"description": "Title of error dailog box in case of download failure"
},
"imageDownloadError": "Failed to download image",
"@imageDownloadError": {
"description": "Error message when image download fails"
Expand Down
4 changes: 2 additions & 2 deletions lib/generated/l10n/zulip_localizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -613,10 +613,10 @@ abstract class ZulipLocalizations {
/// **'OK'**
String get errorDialogContinue;

/// Title of error dailog box in case of download failure
/// Generic title for error dialog.
///
/// In en, this message translates to:
/// **'Error Occured'**
/// **'Error'**
String get errorDialogTitle;

/// Button label for snack bar button that opens a dialog with more details.
Expand Down
2 changes: 1 addition & 1 deletion lib/generated/l10n/zulip_localizations_ar.dart
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class ZulipLocalizationsAr extends ZulipLocalizations {
String get errorDialogContinue => 'OK';

@override
String get errorDialogTitle => 'Error Occured';
String get errorDialogTitle => 'Error';

@override
String get snackBarDetails => 'Details';
Expand Down
2 changes: 1 addition & 1 deletion lib/generated/l10n/zulip_localizations_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class ZulipLocalizationsEn extends ZulipLocalizations {
String get errorDialogContinue => 'OK';

@override
String get errorDialogTitle => 'Error Occured';
String get errorDialogTitle => 'Error';

@override
String get snackBarDetails => 'Details';
Expand Down
2 changes: 1 addition & 1 deletion lib/generated/l10n/zulip_localizations_fr.dart
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class ZulipLocalizationsFr extends ZulipLocalizations {
String get errorDialogContinue => 'OK';

@override
String get errorDialogTitle => 'Error Occured';
String get errorDialogTitle => 'Error';

@override
String get snackBarDetails => 'Details';
Expand Down
2 changes: 1 addition & 1 deletion lib/generated/l10n/zulip_localizations_ja.dart
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class ZulipLocalizationsJa extends ZulipLocalizations {
String get errorDialogContinue => 'OK';

@override
String get errorDialogTitle => 'Error Occured';
String get errorDialogTitle => 'Error';

@override
String get snackBarDetails => 'Details';
Expand Down
2 changes: 1 addition & 1 deletion lib/generated/l10n/zulip_localizations_ru.dart
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ class ZulipLocalizationsRu extends ZulipLocalizations {
String get errorDialogContinue => 'OK';

@override
String get errorDialogTitle => 'Error Occured';
String get errorDialogTitle => 'Error';

@override
String get snackBarDetails => 'Details';
Expand Down

0 comments on commit 2fd11d5

Please sign in to comment.