Skip to content

Commit 5f3d36e

Browse files
authored
Extract messages (#20022)
* {attribute} must not be equal to "{compareValue}"" * update config * {attribute} must be greater than "{compareValueOrAttribute}". {attribute} must be greater than or equal to "{compareValueOrAttribute}". {attribute} must be less than "{compareValueOrAttribute}". {attribute} must be less than or equal to "{compareValueOrAttribute}". * {nFormatted} B {nFormatted} GB {nFormatted} kB {nFormatted} MB {nFormatted} PB {nFormatted} TB * {nFormatted} {n, plural, =1{byte} other{bytes}} {nFormatted} {n, plural, =1{gigabyte} other{gigabytes}} {nFormatted} {n, plural, =1{kilobyte} other{kilobytes}} {nFormatted} {n, plural, =1{megabyte} other{megabytes}} {nFormatted} {n, plural, =1{petabyte} other{petabytes}} {nFormatted} {n, plural, =1{terabyte} other{terabytes}} * Extract messages.
1 parent bc56545 commit 5f3d36e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+2074
-1035
lines changed

framework/messages/af/yii.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
' and ' => ' en ',
2727
'"{attribute}" does not support operator "{operator}".' => '"{attribute}" ondersteun nie operateur "{operator}" nie.',
2828
'(not set)' => '(nie gestel nie)',
29+
'Action not found.' => '',
30+
'Aliases available: {aliases}' => '',
2931
'An internal server error occurred.' => '\'n Interne bediener fout het plaasgevind.',
3032
'Are you sure you want to delete this item?' => 'Is jy seker jy wil hierdie item skrap?',
3133
'Condition for "{attribute}" should be either a value or valid operator specification.' => 'Voorwaarde vir "{attribute}" moet óf \'n waarde, óf \'n geldige operateurspesifikasie wees.',
@@ -43,10 +45,10 @@
4345
'Only files with these extensions are allowed: {extensions}.' => 'Slegs hierdie soort lêers word toegelaat: {extensions}.',
4446
'Operator "{operator}" must be used with a search attribute.' => 'Operateur "{operator}" moet gebruik word met \'n soekkenmerk.',
4547
'Operator "{operator}" requires multiple operands.' => 'Operateur "{operator}" vereis veelvuldige operande.',
48+
'Options available: {options}' => '',
4649
'Page not found.' => 'Bladsy nie gevind nie.',
4750
'Please fix the following errors:' => 'Maak asseblief die volgende foute reg:',
4851
'Please upload a file.' => 'Laai asseblief \'n lêer op.',
49-
'Powered by {yii}' => 'Aangedryf deur {yii}',
5052
'Showing <b>{begin, number}-{end, number}</b> of <b>{totalCount, number}</b> {totalCount, plural, one{item} other{items}}.' => '',
5153
'The combination {values} of {attributes} has already been taken.' => 'Die kombinasie {values} van {attributes} is reeds geneem.',
5254
'The file "{file}" is not an image.' => 'Die lêer "{file}" is nie \'n prent nie.',
@@ -68,7 +70,6 @@
6870
'Update' => 'Opdateer',
6971
'View' => 'Beskou',
7072
'Yes' => 'Ja',
71-
'Yii Framework' => 'Yii Raamwerk',
7273
'You are not allowed to perform this action.' => 'Jy mag nie hierdie aksie uitvoer nie.',
7374
'You can upload at most {limit, number} {limit, plural, one{file} other{files}}.' => 'Jy kan \'n maksimum van {limit, number} {limit, plural, one{lêer} other{lêers}} oplaai.',
7475
'You should upload at least {limit, number} {limit, plural, one{file} other{files}}.' => 'Jy moet ten minste {limit, number} {limit, plural, one{lêer} other{lêers}} oplaai.',
@@ -108,6 +109,7 @@
108109
'{attribute} should contain at least {min, number} {min, plural, one{character} other{characters}}.' => '{attribute} moet ten minste {min, number} {min, plural, one{karakter} other{karakters}} bevat.',
109110
'{attribute} should contain at most {max, number} {max, plural, one{character} other{characters}}.' => '{attribute} moet hoogstens {max, number} {max, plural, one{karakter} other{karakters}} bevat.',
110111
'{attribute} should contain {length, number} {length, plural, one{character} other{characters}}.' => '{attribute} moet {length, number} {length, plural, one{karakter} other{karakters}} bevat.',
112+
'{compareAttribute} is invalid.' => '',
111113
'{delta, plural, =1{1 day} other{# days}}' => '{delta, plural, =1{1 dag} other{# dae}}',
112114
'{delta, plural, =1{1 hour} other{# hours}}' => '{delta} uur',
113115
'{delta, plural, =1{1 minute} other{# minutes}}' => '{delta, plural, =1{1 minuut} other{# minute}}',
@@ -123,14 +125,14 @@
123125
'{nFormatted} B' => '{nFormatted} B',
124126
'{nFormatted} GB' => '{nFormatted} GB',
125127
'{nFormatted} GiB' => '{nFormatted} GiB',
126-
'{nFormatted} kB' => '{nFormatted} KB',
127128
'{nFormatted} KiB' => '{nFormatted} KiB',
128129
'{nFormatted} MB' => '{nFormatted} MB',
129130
'{nFormatted} MiB' => '{nFormatted} MiB',
130131
'{nFormatted} PB' => '{nFormatted} PB',
131132
'{nFormatted} PiB' => '{nFormatted} PiB',
132133
'{nFormatted} TB' => '{nFormatted} TB',
133134
'{nFormatted} TiB' => '{nFormatted} TiB',
135+
'{nFormatted} kB' => '{nFormatted} KB',
134136
'{nFormatted} {n, plural, =1{byte} other{bytes}}' => '{nFormatted} {n, plural, =1{greep} other{grepe}}',
135137
'{nFormatted} {n, plural, =1{gibibyte} other{gibibytes}}' => '{nFormatted} {n, plural, =1{gibigreep} other{gibigrepe}}',
136138
'{nFormatted} {n, plural, =1{gigabyte} other{gigabytes}}' => '{nFormatted} {n, plural, =1{gigagreep} other{gigagrepe}}',

framework/messages/ar/yii.php

Lines changed: 45 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,14 @@
2323
* NOTE: this file must be saved in UTF-8 encoding.
2424
*/
2525
return [
26+
' and ' => '',
27+
'"{attribute}" does not support operator "{operator}".' => '',
2628
'(not set)' => '(لم يحدد)',
29+
'Action not found.' => '',
30+
'Aliases available: {aliases}' => '',
2731
'An internal server error occurred.' => '.حدث خطأ داخلي في الخادم',
32+
'Are you sure you want to delete this item?' => '',
33+
'Condition for "{attribute}" should be either a value or valid operator specification.' => '',
2834
'Delete' => 'حذف',
2935
'Error' => 'خطأ',
3036
'File upload failed.' => '.فشل في تحميل الملف',
@@ -34,72 +40,99 @@
3440
'Missing required arguments: {params}' => 'البيانات المطلوبة ضرورية: {params}',
3541
'Missing required parameters: {params}' => 'البيانات المطلوبة ضرورية: {params}',
3642
'No' => 'لا',
37-
'No help for unknown command "{command}".' => 'ليس هناك مساعدة لأمر غير معروف "{command}".',
38-
'No help for unknown sub-command "{command}".' => 'ليس هناك مساعدة لأمر فرعي غير معروف "{command}".',
3943
'No results found.' => 'لم يتم العثور على نتائج',
40-
'Only files with these extensions are allowed: {extensions}.' => 'فقط الملفات التي تحمل هذه الصيغ مسموح بها: {extensions}.',
4144
'Only files with these MIME types are allowed: {mimeTypes}.' => 'فقط الملفات من هذه الأنواع مسموح بها: {mimeTypes}.',
45+
'Only files with these extensions are allowed: {extensions}.' => 'فقط الملفات التي تحمل هذه الصيغ مسموح بها: {extensions}.',
46+
'Operator "{operator}" must be used with a search attribute.' => '',
47+
'Operator "{operator}" requires multiple operands.' => '',
48+
'Options available: {options}' => '',
4249
'Page not found.' => 'لم يتم العثور على الصفحة',
4350
'Please fix the following errors:' => 'الرجاء تصحيح الأخطاء التالية:',
4451
'Please upload a file.' => 'الرجاء تحميل ملف.',
4552
'Showing <b>{begin, number}-{end, number}</b> of <b>{totalCount, number}</b> {totalCount, plural, one{item} other{items}}.' => 'عرض <b>{begin, number}-{end, number}</b> من أصل <b>{totalCount, number}</b> {totalCount, plural, one{مُدخل} few{مُدخلات} many{مُدخل} other{مُدخلات}}.',
53+
'The combination {values} of {attributes} has already been taken.' => '',
4654
'The file "{file}" is not an image.' => 'الملف "{file}" ليس صورة.',
4755
'The file "{file}" is too big. Its size cannot exceed {formattedLimit}.' => 'الملف "{file}" كبير الحجم. حجمه لا يجب أن يتخطى {formattedLimit}.',
4856
'The file "{file}" is too small. Its size cannot be smaller than {formattedLimit}.' => 'الملف "{file}" صغير جداً. حجمه لا يجب أن يكون أصغر من {formattedLimit}.',
4957
'The format of {attribute} is invalid.' => 'شكل {attribute} غير صالح',
58+
'The format of {filter} is invalid.' => '',
5059
'The image "{file}" is too large. The height cannot be larger than {limit, number} {limit, plural, one{pixel} other{pixels}}.' => 'الصورة "{file}" كبيرة جداً. ارتفاعها لا يمكن أن يتخطى {limit, number} {limit, plural, other{بكسل}}.',
5160
'The image "{file}" is too large. The width cannot be larger than {limit, number} {limit, plural, one{pixel} other{pixels}}.' => 'الصورة "{file}" كبيرة جداً. عرضها لا يمكن أن يتخطى {limit, number} {limit, plural, other{بكسل}}.',
5261
'The image "{file}" is too small. The height cannot be smaller than {limit, number} {limit, plural, one{pixel} other{pixels}}.' => 'الصورة "{file}" صغيرة جداً. ارتفاعها لا يمكن أن يقل عن {limit, number} {limit, plural, other{بكسل}}.',
5362
'The image "{file}" is too small. The width cannot be smaller than {limit, number} {limit, plural, one{pixel} other{pixels}}.' => 'الصورة "{file}" كبيرة جداً. عرضها لا يمكن أن يقل عن {limit, number} {limit, plural, other{بكسل}}.',
63+
'The requested view "{name}" was not found.' => '',
5464
'The verification code is incorrect.' => 'رمز التحقق غير صحيح',
5565
'Total <b>{count, number}</b> {count, plural, one{item} other{items}}.' => 'مجموع <b>{count, number}</b> {count, plural, one{مُدخل} few{مُدخلات} many{مُدخل}}.',
5666
'Unable to verify your data submission.' => 'لم نستطع التأكد من البيانات المقدمة.',
57-
'Unknown command "{command}".' => 'أمر غير معروف. "{command}"',
67+
'Unknown alias: -{name}' => '',
68+
'Unknown filter attribute "{attribute}"' => '',
5869
'Unknown option: --{name}' => 'خيار غير معروف: --{name}',
5970
'Update' => 'تحديث',
6071
'View' => 'عرض',
6172
'Yes' => 'نعم',
6273
'You are not allowed to perform this action.' => 'غير مصرح لك القيام بهذا العمل',
6374
'You can upload at most {limit, number} {limit, plural, one{file} other{files}}.' => 'تستطيع كأقصى حد تحميل {limit, number} {limit, plural, one{ملف} few{ملفات} many{ملف} other{ملفات}}.',
75+
'You should upload at least {limit, number} {limit, plural, one{file} other{files}}.' => '',
76+
'in {delta, plural, =1{a day} other{# days}}' => '',
77+
'in {delta, plural, =1{a minute} other{# minutes}}' => '',
78+
'in {delta, plural, =1{a month} other{# months}}' => '',
79+
'in {delta, plural, =1{a second} other{# seconds}}' => '',
80+
'in {delta, plural, =1{a year} other{# years}}' => '',
81+
'in {delta, plural, =1{an hour} other{# hours}}' => '',
82+
'just now' => '',
6483
'the input value' => 'قيمة المُدخل',
6584
'{attribute} "{value}" has already been taken.' => '{attribute} "{value}" سبق استعماله',
6685
'{attribute} cannot be blank.' => '{attribute} لا يمكن تركه فارغًا.',
86+
'{attribute} contains wrong subnet mask.' => '',
6787
'{attribute} is invalid.' => '{attribute} غير صالح.',
6888
'{attribute} is not a valid URL.' => '{attribute} ليس بعنوان صحيح.',
6989
'{attribute} is not a valid email address.' => '{attribute} ليس ببريد إلكتروني صحيح.',
90+
'{attribute} is not in the allowed range.' => '',
7091
'{attribute} must be "{requiredValue}".' => '{attribute} يجب أن يكون "{requiredValue}".',
7192
'{attribute} must be a number.' => '{attribute} يجب أن يكون رقمًا',
7293
'{attribute} must be a string.' => '{attribute} يجب أن يكون كلمات',
94+
'{attribute} must be a valid IP address.' => '',
95+
'{attribute} must be an IP address with specified subnet.' => '',
7396
'{attribute} must be an integer.' => '{attribute} يجب أن يكون رقمًا صحيحًا',
7497
'{attribute} must be either "{true}" or "{false}".' => '{attribute} يجب أن يكن إما "{true}" أو "{false}".',
7598
'{attribute} must be equal to "{compareValueOrAttribute}".' => '{attribute} يجب أن يساوي "{compareValueOrAttribute}".',
76-
'{attribute} must not be equal to "{compareValueOrAttribute}".' => '{attribute} يجب أن لا يساوي "{compareValueOrAttribute}".',
7799
'{attribute} must be greater than "{compareValueOrAttribute}".' => '{attribute} يجب أن يكون أكبر من "{compareValueOrAttribute}".',
78100
'{attribute} must be greater than or equal to "{compareValueOrAttribute}".' => '{attribute} يجب أن يكون أكبر من أو يساوي "{compareValueOrAttribute}".',
79101
'{attribute} must be less than "{compareValueOrAttribute}".' => '{attribute} يجب أن يكون أصغر من "{compareValueOrAttribute}".',
80102
'{attribute} must be less than or equal to "{compareValueOrAttribute}".' => '{attribute} يجب أن يكون أصغر من أو يساوي "{compareValueOrAttribute}".',
81-
'{attribute} must be greater than "{compareValue}".' => '{attribute} يجب أن يكون أكبر من "{compareValue}".',
82-
'{attribute} must be greater than or equal to "{compareValue}".' => '{attribute} يجب أن يكون أكبر من أو يساوي "{compareValue}".',
83-
'{attribute} must be less than "{compareValue}".' => '{attribute} يجب أن يكون أصغر من "{compareValue}".',
84-
'{attribute} must be less than or equal to "{compareValue}".' => '{attribute} يجب أن يكون أصغر من أو يساوي "{compareValue}".',
85103
'{attribute} must be no greater than {max}.' => '{attribute} يجب أن لا يكون أكبر من "{max}".',
86104
'{attribute} must be no less than {min}.' => '{attribute} يجب أن لا يكون أصغر من "{min}".',
87-
'{attribute} must be repeated exactly.' => '{attribute} يجب أن يكون متطابق.',
88-
'{attribute} must not be equal to "{compareValue}".' => '{attribute} يجب ان لا يساوي "{compareValue}"',
105+
'{attribute} must not be a subnet.' => '',
106+
'{attribute} must not be an IPv4 address.' => '',
107+
'{attribute} must not be an IPv6 address.' => '',
108+
'{attribute} must not be equal to "{compareValueOrAttribute}".' => '{attribute} يجب أن لا يساوي "{compareValueOrAttribute}".',
89109
'{attribute} should contain at least {min, number} {min, plural, one{character} other{characters}}.' => '{attribute} يجب أن يحتوي على أكثر من {min, number} {min, plural, one{حرف} few{حروف} other{حرف}}.',
90110
'{attribute} should contain at most {max, number} {max, plural, one{character} other{characters}}.' => '{attribute} يجب أن لا يحتوي على أكثر من {max, number} {max, plural, one{حرف} few{حروف} other{حرف}}.',
91111
'{attribute} should contain {length, number} {length, plural, one{character} other{characters}}.' => '{attribute} يجب أن يحتوي على {length, number} {length, plural, one{حرف} few{حروف} other{حرف}}.',
112+
'{compareAttribute} is invalid.' => '',
113+
'{delta, plural, =1{1 day} other{# days}}' => '',
114+
'{delta, plural, =1{1 hour} other{# hours}}' => '',
115+
'{delta, plural, =1{1 minute} other{# minutes}}' => '',
116+
'{delta, plural, =1{1 month} other{# months}}' => '',
117+
'{delta, plural, =1{1 second} other{# seconds}}' => '',
118+
'{delta, plural, =1{1 year} other{# years}}' => '',
119+
'{delta, plural, =1{a day} other{# days}} ago' => '',
120+
'{delta, plural, =1{a minute} other{# minutes}} ago' => '',
121+
'{delta, plural, =1{a month} other{# months}} ago' => '',
122+
'{delta, plural, =1{a second} other{# seconds}} ago' => '',
123+
'{delta, plural, =1{a year} other{# years}} ago' => '',
124+
'{delta, plural, =1{an hour} other{# hours}} ago' => '',
92125
'{nFormatted} B' => '{nFormatted} بايت',
93126
'{nFormatted} GB' => '{nFormatted} جيجابايت',
94127
'{nFormatted} GiB' => '{nFormatted} جيبيبايت',
95-
'{nFormatted} kB' => '{nFormatted} كيلوبايت',
96128
'{nFormatted} KiB' => '{nFormatted} كيبيبايت',
97129
'{nFormatted} MB' => '{nFormatted} ميجابايت',
98130
'{nFormatted} MiB' => '{nFormatted} ميبيبايت',
99131
'{nFormatted} PB' => '{nFormatted} بيتابايت',
100132
'{nFormatted} PiB' => '{nFormatted} بيبيبايت',
101133
'{nFormatted} TB' => '{nFormatted} تيرابايت',
102134
'{nFormatted} TiB' => '{nFormatted} تيبيبايت',
135+
'{nFormatted} kB' => '{nFormatted} كيلوبايت',
103136
'{nFormatted} {n, plural, =1{byte} other{bytes}}' => '{nFormatted} بايت',
104137
'{nFormatted} {n, plural, =1{gibibyte} other{gibibytes}}' => '{nFormatted} جيبيبايت',
105138
'{nFormatted} {n, plural, =1{gigabyte} other{gigabytes}}' => '{nFormatted} جيجابايت',

0 commit comments

Comments
 (0)