ukraine language support (#483)

pull/486/head
Andy Trand 3 years ago committed by GitHub
parent 65164f768f
commit 06463721de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      README.md
  2. 9
      lib/src/translations/toolbar.i18n.dart
  3. 2
      lib/src/widgets/toolbar.dart

@ -125,6 +125,7 @@ Currently, translations are available for these locales:
* `Locale('ru')`
* `Locale('es')`
* `Locale('tr')`
* `Locale('uk')`
### Contributing to translations
The translation file is located at [lib/src/translations/toolbar.i18n.dart](lib/src/translations/toolbar.i18n.dart). Feel free to contribute your own translations, just copy the English translations map and replace the values with your translations. Then open a pull request so everyone can benefit from your translations!

@ -86,6 +86,15 @@ extension Localization on String {
'Please first select some text to transform into a link.':
'Lütfen bağlantıya dönüştürmek için bir metin seçin.',
},
'uk': {
'Paste a link': 'Вставити посилання',
'Ok': 'ОК',
'Select Color': 'Вибрати колір',
'Gallery': 'Галерея',
'Link': 'Посилання',
'Please first select some text to transform into a link.':
'Виділіть текст для створення посилання.',
},
};
String get i18n => localize(this, _t);

@ -122,6 +122,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
/// * Locale('de')
/// * Locale('fr')
/// * Locale('zh')
/// and more https://github.com/singerdmx/flutter-quill#translation-of-toolbar
Locale? locale,
Key? key,
}) {
@ -439,6 +440,7 @@ class QuillToolbar extends StatelessWidget implements PreferredSizeWidget {
/// * Locale('de')
/// * Locale('fr')
/// * Locale('zh', 'CN')
/// and more https://github.com/singerdmx/flutter-quill#translation-of-toolbar
final Locale? locale;
@override

Loading…
Cancel
Save