feat: add Norwegian Bokmål locale (#3073)
### Description Locale was requested on Weblate.
This commit is contained in:
parent
d929871060
commit
e614fbcf6c
|
@ -150,6 +150,7 @@
|
|||
"js/plupload/i18n/it_IT.js": "d54d63ce65b652322b9411d545223a20",
|
||||
"js/plupload/i18n/ja_JP.js": "35ffcfa1681e2ffef02fe085ea041436",
|
||||
"js/plupload/i18n/ko_KR.js": "16f238d8f3bc779345f5e9d16a3471a2",
|
||||
"js/plupload/i18n/nb_NO.js": "c23d8392d1f570b24a2bfe713e52d8b0",
|
||||
"js/plupload/i18n/pl_PL.js": "5a32f95c5a79b846d3fc0388469beb40",
|
||||
"js/plupload/i18n/pt_BR.js": "049e0eade66ed92564e1468051e70167",
|
||||
"js/plupload/i18n/ru_RU.js": "a4ede8ec9bd8f1d703d55bc135453042",
|
||||
|
|
|
@ -98,6 +98,7 @@ class Application_Common_LocaleHelper
|
|||
'mt' => _('Maltese'),
|
||||
'my' => _('Burmese'),
|
||||
'na' => _('Nauru'),
|
||||
'nb' => _('Norwegian Bokmål'),
|
||||
'ne' => _('Nepali'),
|
||||
'nl' => _('Dutch'),
|
||||
'no' => _('Norwegian'),
|
||||
|
|
|
@ -19,6 +19,7 @@ final class Application_Model_Locale
|
|||
'it_IT' => 'Italiano',
|
||||
'ja_JP' => '日本語',
|
||||
'ko_KR' => '한국어',
|
||||
'nb_NO' => 'Norwegian Bokmål (Norway)',
|
||||
// 'nl_NL' => '',
|
||||
'pl_PL' => 'Polski',
|
||||
'pt_BR' => 'Português (Brasil)',
|
||||
|
|
|
@ -7,6 +7,7 @@ en_GB.UTF-8 UTF-8
|
|||
en_US.UTF-8 UTF-8
|
||||
es_ES.UTF-8 UTF-8
|
||||
fr_FR.UTF-8 UTF-8
|
||||
nb_NO.UTF-8 UTF-8
|
||||
hr_HR.UTF-8 UTF-8
|
||||
hu_HU.UTF-8 UTF-8
|
||||
it_IT.UTF-8 UTF-8
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,27 @@
|
|||
// Norwegian Bokmål (Norway)
|
||||
plupload.addI18n({
|
||||
'Select files' : 'Select files',
|
||||
'Add files to the upload queue and click the start button.' : 'Add files to the upload queue and click the start button.',
|
||||
'Filename' : 'Filename',
|
||||
'Status' : 'Status',
|
||||
'Size' : 'Size',
|
||||
'Add files' : 'Add files',
|
||||
'Stop current upload' : 'Stop current upload',
|
||||
'Start uploading queue' : 'Start uploading queue',
|
||||
'Uploaded %d/%d files': 'Uploaded %d/%d files',
|
||||
'N/A' : 'N/A',
|
||||
'Drag files here.' : 'Drag files here.',
|
||||
'File extension error.': 'File extension error.',
|
||||
'File size error.': 'File size error.',
|
||||
'Init error.': 'Init error.',
|
||||
'HTTP Error.': 'HTTP Error.',
|
||||
'Security error.': 'Security error.',
|
||||
'Generic error.': 'Generic error.',
|
||||
'IO error.': 'IO error.',
|
||||
'Stop Upload': 'Stop Upload',
|
||||
'Add Files': 'Add Files',
|
||||
'Start Upload': 'Start Upload',
|
||||
'Start upload': 'Start upload',
|
||||
'%d files queued': '%d files queued',
|
||||
"Error: Invalid file extension: " : $.i18n._("Error: Invalid file extension: ")
|
||||
});
|
Loading…
Reference in New Issue