Skip to content

Commit dc62fe8

Browse files
feat(localization): add Bangla localization support (#365)
1 parent a9a6a63 commit dc62fe8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

feedback/lib/src/l18n/translation.dart

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -336,6 +336,24 @@ class EsFeedbackLocalizations extends FeedbackLocalizations {
336336
String get navigate => 'Navegar';
337337
}
338338

339+
/// Default bangla localization
340+
class BnFeedbackLocalizations extends FeedbackLocalizations {
341+
/// Creates a [BnFeedbackLocalizations]
342+
const BnFeedbackLocalizations();
343+
344+
@override
345+
String get submitButtonText => 'জমা দিন';
346+
347+
@override
348+
String get feedbackDescriptionText => 'সমস্যার বিস্তারিত লিখুন';
349+
350+
@override
351+
String get draw => 'আঁকুন';
352+
353+
@override
354+
String get navigate => 'নেভিগেট';
355+
}
356+
339357
// coverage:ignore-end
340358

341359
/// This is a localization delegate, which includes all of the localizations
@@ -368,6 +386,7 @@ class GlobalFeedbackLocalizationsDelegate
368386
const Locale('bg'): const BgFeedbackLocalizations(),
369387
const Locale('es'): const EsFeedbackLocalizations(),
370388
const Locale('fa'): const FaFeedbackLocalizations(),
389+
const Locale('bn'): const BnFeedbackLocalizations(),
371390
};
372391

373392
/// The default locale to use. Note that this locale should ALWAYS be

0 commit comments

Comments
 (0)