Add Hindi(hi) locale (#792)

pull/796/head
Sumit Kumar 3 years ago committed by GitHub
parent 3030ec42d7
commit 62bc09d19a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      README.md
  2. 2
      example/linux/flutter/generated_plugin_registrant.cc
  3. 2
      example/linux/flutter/generated_plugin_registrant.h
  4. 2
      example/macos/Flutter/GeneratedPluginRegistrant.swift
  5. 10
      example/pubspec.yaml
  6. 20
      lib/src/translations/toolbar.i18n.dart
  7. 16
      pubspec.yaml

@ -116,7 +116,7 @@ The package offers translations for the quill toolbar and editor, it will follow
QuillToolbar(locale: Locale('fr'), ...) QuillToolbar(locale: Locale('fr'), ...)
QuillEditor(locale: Locale('fr'), ...) QuillEditor(locale: Locale('fr'), ...)
``` ```
Currently, translations are available for these 18 locales: Currently, translations are available for these 19 locales:
* `Locale('en')` * `Locale('en')`
* `Locale('ar')` * `Locale('ar')`
* `Locale('de')` * `Locale('de')`
@ -135,6 +135,7 @@ Currently, translations are available for these 18 locales:
* `Locale('id')` * `Locale('id')`
* `Locale('no')` * `Locale('no')`
* `Locale('fa')` * `Locale('fa')`
* `Locale('hi')`
### Contributing to translations ### 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! 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!

@ -2,6 +2,8 @@
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#include "generated_plugin_registrant.h" #include "generated_plugin_registrant.h"
#include <url_launcher_linux/url_launcher_plugin.h> #include <url_launcher_linux/url_launcher_plugin.h>

@ -2,6 +2,8 @@
// Generated file. Do not edit. // Generated file. Do not edit.
// //
// clang-format off
#ifndef GENERATED_PLUGIN_REGISTRANT_ #ifndef GENERATED_PLUGIN_REGISTRANT_
#define GENERATED_PLUGIN_REGISTRANT_ #define GENERATED_PLUGIN_REGISTRANT_

@ -5,10 +5,12 @@
import FlutterMacOS import FlutterMacOS
import Foundation import Foundation
import device_info_plus_macos
import path_provider_macos import path_provider_macos
import url_launcher_macos import url_launcher_macos
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {
DeviceInfoPlusMacosPlugin.register(with: registry.registrar(forPlugin: "DeviceInfoPlusMacosPlugin"))
PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin"))
UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin"))
} }

@ -23,14 +23,14 @@ environment:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
universal_html: ^2.0.7 universal_html: ^2.0.8
# The following adds the Cupertino Icons font to your application. # The following adds the Cupertino Icons font to your application.
# Use with the CupertinoIcons class for iOS style icons. # Use with the CupertinoIcons class for iOS style icons.
cupertino_icons: ^1.0.2 cupertino_icons: ^1.0.4
path_provider: ^2.0.1 path_provider: ^2.0.9
filesystem_picker: ^2.0.0-nullsafety.0 filesystem_picker: ^2.0.0
file_picker: ^3.0.2+2 file_picker: ^4.5.1
flutter_quill: flutter_quill:
path: ../ path: ../

@ -388,6 +388,26 @@ extension Localization on String {
'Width': 'عرض', 'Width': 'عرض',
'Height': 'طول', 'Height': 'طول',
}, },
'hi': {
'Paste a link': 'िक पट कर',
'Ok': 'क ह',
'Select Color': 'ग च',
'Gallery': 'लर',
'Link': 'ि',
'Please first select some text to transform into a link.':
'िक म बदलनिए कपय पहलछ शबद च',
'Open': '',
'Copy': ' कर',
'Remove': 'हट',
'Save': 'रकित कर',
'Zoom': 'बड़ कर',
'Saved': 'रकित कर दि गय',
'Text': 'शब',
'What is entered is not a link': 'ि गय वह लिक नह',
'Resize': 'आकर बदल',
'Width': '',
'Height': '',
},
}; };
String get i18n => localize(this, _t); String get i18n => localize(this, _t);

@ -14,21 +14,21 @@ dependencies:
sdk: flutter sdk: flutter
collection: ^1.15.0 collection: ^1.15.0
flutter_colorpicker: ^1.0.3 flutter_colorpicker: ^1.0.3
flutter_keyboard_visibility: ^5.0.0 flutter_keyboard_visibility: ^5.2.0
image_picker: ^0.8.2 image_picker: ^0.8.5
photo_view: ^0.13.0 photo_view: ^0.13.0
quiver: ^3.0.0 quiver: ^3.1.0
string_validator: ^0.3.0 string_validator: ^0.3.0
tuple: ^2.0.0 tuple: ^2.0.0
url_launcher: ^6.1.0 url_launcher: ^6.1.0
pedantic: ^1.11.0 pedantic: ^1.11.1
video_player: ^2.1.10 video_player: ^2.4.0
characters: ^1.1.0 characters: ^1.2.0
youtube_player_flutter: ^8.0.0 youtube_player_flutter: ^8.0.0
diff_match_patch: ^0.4.1 diff_match_patch: ^0.4.1
i18n_extension: ^4.2.0 i18n_extension: ^4.2.1
gallery_saver: ^2.3.2 gallery_saver: ^2.3.2
device_info_plus: ^3.2.1 device_info_plus: ^3.2.3
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:

Loading…
Cancel
Save