forked from bdlukaa/fluent_ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for Urdu language (bdlukaa#832)
- Loading branch information
Showing
6 changed files
with
148 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
import 'fluent_localizations.dart'; | ||
|
||
/// The translations for Urdu (`ur`). | ||
class FluentLocalizationsUr extends FluentLocalizations { | ||
FluentLocalizationsUr([String locale = 'ur']) : super(locale); | ||
|
||
@override | ||
String get backButtonTooltip => 'Back'; | ||
|
||
@override | ||
String get closeButtonLabel => 'Close'; | ||
|
||
@override | ||
String get searchLabel => 'Search'; | ||
|
||
@override | ||
String get closeNavigationTooltip => 'Close Navigation'; | ||
|
||
@override | ||
String get openNavigationTooltip => 'Open Navigation'; | ||
|
||
@override | ||
String get clickToSearch => 'Click to search'; | ||
|
||
@override | ||
String get modalBarrierDismissLabel => 'Dismiss'; | ||
|
||
@override | ||
String get minimizeWindowTooltip => 'Minimize'; | ||
|
||
@override | ||
String get restoreWindowTooltip => 'Restore'; | ||
|
||
@override | ||
String get closeWindowTooltip => 'Close'; | ||
|
||
@override | ||
String get dialogLabel => 'Dialog'; | ||
|
||
@override | ||
String get cutActionLabel => 'Cut'; | ||
|
||
@override | ||
String get copyActionLabel => 'Copy'; | ||
|
||
@override | ||
String get pasteActionLabel => 'Paste'; | ||
|
||
@override | ||
String get selectAllActionLabel => 'Select all'; | ||
|
||
@override | ||
String get newTabLabel => 'Add new tab'; | ||
|
||
@override | ||
String get closeTabLabelSuffix => 'Close tab'; | ||
|
||
@override | ||
String get scrollTabBackwardLabel => 'Scroll tab list backward'; | ||
|
||
@override | ||
String get scrollTabForwardLabel => 'Scroll tab list forward'; | ||
|
||
@override | ||
String get noResultsFoundLabel => 'No results found'; | ||
|
||
@override | ||
String get copyActionTooltip => 'Copy the selected content to the clipboard'; | ||
|
||
@override | ||
String get cutActionTooltip => | ||
'Remove the selected content and put it in the clipboard'; | ||
|
||
@override | ||
String get pasteActionTooltip => | ||
'Inserts the contents of the clipboard at the current location'; | ||
|
||
@override | ||
String get selectAllActionTooltip => 'Select all content'; | ||
|
||
@override | ||
String get hour => 'hour'; | ||
|
||
@override | ||
String get minute => 'minute'; | ||
|
||
@override | ||
String get am => 'AM'; | ||
|
||
@override | ||
String get pm => 'PM'; | ||
|
||
@override | ||
String get month => 'month'; | ||
|
||
@override | ||
String get day => 'day'; | ||
|
||
@override | ||
String get year => 'year'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"@@locale": "ur", | ||
"backButtonTooltip": "آگے", | ||
"closeButtonLabel": "بند", | ||
"searchLabel": "تلاش کریں, | ||
"closeNavigationTooltip": "نیویگیشن بند کریں۔", | ||
"openNavigationTooltip": "نیویگیشن کھولیں۔", | ||
"clickToSearch": "تلاش کرنے کے لیے کلک کریں۔", | ||
"modalBarrierDismissLabel": "برطرف کریں", | ||
"minimizeWindowTooltip": "کم سے کم کریں", | ||
"restoreWindowTooltip": "بحال کریں", | ||
"closeWindowTooltip": "بند کریں", | ||
"dialogLabel": "ڈائیلاگ", | ||
"cutActionLabel": "کاپی کریں", | ||
"copyActionLabel": "کاپی کریں", | ||
"pasteActionLabel": "پیسٹ کریں"، | ||
"selectAllActionLabel": "سب کچھ منتخب کریں", | ||
"newTabLabel": "نیا ٹیب کھولیں۔", | ||
"closeTabLabelSuffix": "بند کریں", | ||
"scrollTabBackwardLabel": "ٹیب کی فہرست کو پیچھے کی طرف اسکرول کریں۔", | ||
"scrollTabForwardLabel": "ٹیب کی فہرست کو آگے اسکرول کریں۔", | ||
"noResultsFoundLabel": "کوئی نتائج نہیں ملے۔", | ||
"copyActionTooltip": "منتخب کردہ مواد کو کلپ بورڈ میں کاپی کریں۔", | ||
"cutActionTooltip": "منتخب کردہ مواد کو ہٹائیں اور اسے کلپ بورڈ میں رکھیں", | ||
"pasteActionTooltip": "کلپ بورڈ کے مواد کو موجودہ مقام پر داخل کریں۔", | ||
"selectAllActionTooltip": "تمام مواد کو منتخب کریں۔", | ||
"hour": "گھنٹہ", | ||
"minute": "منٹ", | ||
"am": "AM", | ||
"pm": "PM", | ||
"month": "مہینہ", | ||
"day": "دِن", | ||
"year": "سال", | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,6 +47,11 @@ | |
"day", | ||
"year" | ||
], | ||
"ur": [ | ||
|
||
"am", | ||
"pm" | ||
], | ||
"uk": [ | ||
"am", | ||
"pm" | ||
|