Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
feat: updated translations
Browse files Browse the repository at this point in the history
  • Loading branch information
alestiago committed Mar 11, 2024
1 parent f436ad1 commit 52fa493
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions packages/trashy_road/lib/l10n/arb/app_en.arb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"@@locale": "en",
"great": "Great",
"great": "Great!",
"@great": {
"description": "Shown to congratulate the player in the Score Page."
},
"nice": "Nice",
"nice": "Nice!",
"@nice": {
"description": "Shown to congratulate the player in the Score Page."
},
Expand Down
4 changes: 2 additions & 2 deletions packages/trashy_road/lib/l10n/arb/app_localizations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -94,13 +94,13 @@ abstract class AppLocalizations {
/// Shown to congratulate the player in the Score Page.
///
/// In en, this message translates to:
/// **'Great'**
/// **'Great!'**
String get great;

/// Shown to congratulate the player in the Score Page.
///
/// In en, this message translates to:
/// **'Nice'**
/// **'Nice!'**
String get nice;

/// Shown to congratulate the player in the Score Page.
Expand Down
4 changes: 2 additions & 2 deletions packages/trashy_road/lib/l10n/arb/app_localizations_en.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ class AppLocalizationsEn extends AppLocalizations {
AppLocalizationsEn([String locale = 'en']) : super(locale);

@override
String get great => 'Great';
String get great => 'Great!';

@override
String get nice => 'Nice';
String get nice => 'Nice!';

@override
String get okay => 'Okay';
Expand Down

0 comments on commit 52fa493

Please sign in to comment.