feat: add Norwegian Bokmål locale (#3073)

### Description

Locale was requested on Weblate.
This commit is contained in:
Jonas L. 2024-09-06 15:43:40 +02:00 committed by GitHub
parent d929871060
commit e614fbcf6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 4650 additions and 0 deletions

View File

@ -150,6 +150,7 @@
"js/plupload/i18n/it_IT.js": "d54d63ce65b652322b9411d545223a20", "js/plupload/i18n/it_IT.js": "d54d63ce65b652322b9411d545223a20",
"js/plupload/i18n/ja_JP.js": "35ffcfa1681e2ffef02fe085ea041436", "js/plupload/i18n/ja_JP.js": "35ffcfa1681e2ffef02fe085ea041436",
"js/plupload/i18n/ko_KR.js": "16f238d8f3bc779345f5e9d16a3471a2", "js/plupload/i18n/ko_KR.js": "16f238d8f3bc779345f5e9d16a3471a2",
"js/plupload/i18n/nb_NO.js": "c23d8392d1f570b24a2bfe713e52d8b0",
"js/plupload/i18n/pl_PL.js": "5a32f95c5a79b846d3fc0388469beb40", "js/plupload/i18n/pl_PL.js": "5a32f95c5a79b846d3fc0388469beb40",
"js/plupload/i18n/pt_BR.js": "049e0eade66ed92564e1468051e70167", "js/plupload/i18n/pt_BR.js": "049e0eade66ed92564e1468051e70167",
"js/plupload/i18n/ru_RU.js": "a4ede8ec9bd8f1d703d55bc135453042", "js/plupload/i18n/ru_RU.js": "a4ede8ec9bd8f1d703d55bc135453042",

View File

@ -98,6 +98,7 @@ class Application_Common_LocaleHelper
'mt' => _('Maltese'), 'mt' => _('Maltese'),
'my' => _('Burmese'), 'my' => _('Burmese'),
'na' => _('Nauru'), 'na' => _('Nauru'),
'nb' => _('Norwegian Bokmål'),
'ne' => _('Nepali'), 'ne' => _('Nepali'),
'nl' => _('Dutch'), 'nl' => _('Dutch'),
'no' => _('Norwegian'), 'no' => _('Norwegian'),

View File

@ -19,6 +19,7 @@ final class Application_Model_Locale
'it_IT' => 'Italiano', 'it_IT' => 'Italiano',
'ja_JP' => '日本語', 'ja_JP' => '日本語',
'ko_KR' => '한국어', 'ko_KR' => '한국어',
'nb_NO' => 'Norwegian Bokmål (Norway)',
// 'nl_NL' => '', // 'nl_NL' => '',
'pl_PL' => 'Polski', 'pl_PL' => 'Polski',
'pt_BR' => 'Português (Brasil)', 'pt_BR' => 'Português (Brasil)',

View File

@ -7,6 +7,7 @@ en_GB.UTF-8 UTF-8
en_US.UTF-8 UTF-8 en_US.UTF-8 UTF-8
es_ES.UTF-8 UTF-8 es_ES.UTF-8 UTF-8
fr_FR.UTF-8 UTF-8 fr_FR.UTF-8 UTF-8
nb_NO.UTF-8 UTF-8
hr_HR.UTF-8 UTF-8 hr_HR.UTF-8 UTF-8
hu_HU.UTF-8 UTF-8 hu_HU.UTF-8 UTF-8
it_IT.UTF-8 UTF-8 it_IT.UTF-8 UTF-8

File diff suppressed because it is too large Load Diff

View File

@ -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: ")
});