Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions feedback/lib/src/l18n/translation.dart
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,24 @@ class HeFeedbackLocalizations extends FeedbackLocalizations {
String get navigate => 'ניווט';
}

/// Default tamil localization
class TaFeedbackLocalizations extends FeedbackLocalizations {
/// Creates a [TaFeedbackLocalizations].
const TaFeedbackLocalizations();

@override
String get submitButtonText => 'சமர்ப்பி';

@override
String get feedbackDescriptionText => 'என்ன பிரச்சனை?';

@override
String get draw => 'வரை';

@override
String get navigate => 'வழிசெலுத்து';
}

// coverage:ignore-end

/// This is a localization delegate, which includes all of the localizations
Expand Down Expand Up @@ -406,6 +424,7 @@ class GlobalFeedbackLocalizationsDelegate
const Locale('fa'): const FaFeedbackLocalizations(),
const Locale('bn'): const BnFeedbackLocalizations(),
const Locale('he'): const HeFeedbackLocalizations(),
const Locale('ta'): const TaFeedbackLocalizations(),
};

/// The default locale to use. Note that this locale should ALWAYS be
Expand Down
Loading