Skip to content

Commit

Permalink
fix: 🐛 class definition order in file
Browse files Browse the repository at this point in the history
  • Loading branch information
viniciusamelio committed Dec 11, 2023
1 parent a4049f0 commit a96cc17
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions feedback/lib/src/l18n/translation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -216,16 +216,16 @@ class PlFeedbackLocalizations extends FeedbackLocalizations {
const PlFeedbackLocalizations();

@override
String get submitButtonText => 'Enviar';
String get submitButtonText => 'Wyślij';

@override
String get feedbackDescriptionText => 'Qual o problema?';
String get feedbackDescriptionText => 'Co poszło nie tak?';

@override
String get draw => 'Desenhar';
String get draw => 'Rysuj';

@override
String get navigate => 'Navegar';
String get navigate => 'Nawiguj';
}

/// Default portuguese localization
Expand All @@ -234,17 +234,18 @@ class PtFeedbackLocalizations extends FeedbackLocalizations {
const PtFeedbackLocalizations();

@override
String get submitButtonText => 'Wyślij';
String get submitButtonText => 'Enviar';

@override
String get feedbackDescriptionText => 'Co poszło nie tak?';
String get feedbackDescriptionText => 'Qual o problema?';

@override
String get draw => 'Rysuj';
String get draw => 'Desenhar';

@override
String get navigate => 'Nawiguj';
String get navigate => 'Navegar';
}

// coverage:ignore-end

/// This is a localization delegate, which includes all of the localizations
Expand Down

0 comments on commit a96cc17

Please sign in to comment.