mirror of
https://github.com/tooot-app/app
synced 2024-12-22 07:34:06 +01:00
Added Norwegian
Would it be confused between `nb` and `nn`?
This commit is contained in:
parent
001267b9c7
commit
8b8a540105
@ -18,6 +18,7 @@ Please **do not** create a pull request to update translation. tooot's translati
|
||||
- [@Hikaru](https://github.com/Hikali-47041) and [@la_la](https://mstdn.jp/@la_la_la) for Japanese translation
|
||||
- [@hellojaccc](https://github.com/hellojaccc) for Korean translation
|
||||
- [@jan-vandenberg](https://crowdin.com/profile/jan-vandenberg) for Dutch translation
|
||||
- [@gaute](https://gauteweb.net/) for Norwegian translation
|
||||
- [@luizpicolo](https://github.com/luizpicolo) for Brazilian Portuguese
|
||||
- [@janlindblom](https://github.com/janlindblom) for Swedish
|
||||
- [@ihoryan](https://crowdin.com/profile/ihoryan) for Ukrainian
|
||||
|
2
ios/nb.lproj/InfoPlist.strings
Normal file
2
ios/nb.lproj/InfoPlist.strings
Normal file
@ -0,0 +1,2 @@
|
||||
"NSPhotoLibraryAddUsageDescription" = "La tooot lagre bilder på kamerarullen";
|
||||
"NSPhotoLibraryUsageDescription" = "La tooot lagre bilder på kamerarullen";
|
@ -87,6 +87,7 @@
|
||||
E6A4895D293C1F740047951A /* ca */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
E6C8B26628F5F9FC0062CF2E /* ja */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = ja; path = ja.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
E6D64C7A294A90840098F3AC /* uk */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = uk; path = uk.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
E6FD3AA7299EE8A900774C18 /* nb */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = nb; path = nb.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
||||
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
||||
ED2971642150620600B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS12.0.sdk/System/Library/Frameworks/JavaScriptCore.framework; sourceTree = DEVELOPER_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
@ -300,6 +301,7 @@
|
||||
nl,
|
||||
ca,
|
||||
uk,
|
||||
nb,
|
||||
);
|
||||
mainGroup = 83CBB9F61A601CBA00E9B192;
|
||||
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
||||
@ -533,6 +535,7 @@
|
||||
E6217B7E293C1EBF00B1755E /* nl */,
|
||||
E6A4895D293C1F740047951A /* ca */,
|
||||
E6D64C7A294A90840098F3AC /* uk */,
|
||||
E6FD3AA7299EE8A900774C18 /* nb */,
|
||||
);
|
||||
name = InfoPlist.strings;
|
||||
sourceTree = "<group>";
|
||||
|
@ -11,6 +11,7 @@ import it from './it'
|
||||
import ja from './ja'
|
||||
import ko from './ko'
|
||||
import nl from './nl'
|
||||
import no from './no'
|
||||
import pt_BR from './pt_BR'
|
||||
import sv from './sv'
|
||||
import uk from './uk'
|
||||
@ -31,6 +32,7 @@ import '@formatjs/intl-pluralrules/locale-data/it'
|
||||
import '@formatjs/intl-pluralrules/locale-data/ja'
|
||||
import '@formatjs/intl-pluralrules/locale-data/ko'
|
||||
import '@formatjs/intl-pluralrules/locale-data/nl'
|
||||
import '@formatjs/intl-pluralrules/locale-data/no'
|
||||
import '@formatjs/intl-pluralrules/locale-data/pt'
|
||||
import '@formatjs/intl-pluralrules/locale-data/sv'
|
||||
import '@formatjs/intl-pluralrules/locale-data/uk'
|
||||
@ -47,6 +49,7 @@ import '@formatjs/intl-numberformat/locale-data/it'
|
||||
import '@formatjs/intl-numberformat/locale-data/ja'
|
||||
import '@formatjs/intl-numberformat/locale-data/ko'
|
||||
import '@formatjs/intl-numberformat/locale-data/nl'
|
||||
import '@formatjs/intl-numberformat/locale-data/no'
|
||||
import '@formatjs/intl-numberformat/locale-data/pt'
|
||||
import '@formatjs/intl-numberformat/locale-data/sv'
|
||||
import '@formatjs/intl-numberformat/locale-data/uk'
|
||||
@ -65,6 +68,7 @@ import '@formatjs/intl-datetimeformat/locale-data/it'
|
||||
import '@formatjs/intl-datetimeformat/locale-data/ja'
|
||||
import '@formatjs/intl-datetimeformat/locale-data/ko'
|
||||
import '@formatjs/intl-datetimeformat/locale-data/nl'
|
||||
import '@formatjs/intl-datetimeformat/locale-data/no'
|
||||
import '@formatjs/intl-datetimeformat/locale-data/pt'
|
||||
import '@formatjs/intl-datetimeformat/locale-data/sv'
|
||||
import '@formatjs/intl-datetimeformat/locale-data/uk'
|
||||
@ -82,6 +86,7 @@ import '@formatjs/intl-relativetimeformat/locale-data/it'
|
||||
import '@formatjs/intl-relativetimeformat/locale-data/ja'
|
||||
import '@formatjs/intl-relativetimeformat/locale-data/ko'
|
||||
import '@formatjs/intl-relativetimeformat/locale-data/nl'
|
||||
import '@formatjs/intl-relativetimeformat/locale-data/no'
|
||||
import '@formatjs/intl-relativetimeformat/locale-data/pt'
|
||||
import '@formatjs/intl-relativetimeformat/locale-data/sv'
|
||||
import '@formatjs/intl-relativetimeformat/locale-data/uk'
|
||||
@ -106,6 +111,7 @@ i18n.use(initReactI18next).init({
|
||||
ja,
|
||||
ko,
|
||||
nl,
|
||||
no,
|
||||
'pt-BR': pt_BR,
|
||||
sv,
|
||||
uk,
|
||||
|
@ -8,6 +8,7 @@ const LOCALES = {
|
||||
ja: '日本語',
|
||||
ko: '한국어',
|
||||
nl: 'Nederlands',
|
||||
no: 'Norsk',
|
||||
'pt-br': 'Português (Brasil)',
|
||||
sv: 'Svenska',
|
||||
uk: 'українська',
|
||||
|
17
src/i18n/no/index.ts
Normal file
17
src/i18n/no/index.ts
Normal file
@ -0,0 +1,17 @@
|
||||
export default {
|
||||
common: require('./common'),
|
||||
|
||||
screens: require('./screens'),
|
||||
screenAnnouncements: require('./screens/announcements'),
|
||||
screenCompose: require('./screens/compose'),
|
||||
screenImageViewer: require('./screens/imageViewer'),
|
||||
screenTabs: require('./screens/tabs'),
|
||||
|
||||
componentContextMenu: require('./components/contextMenu'),
|
||||
componentEmojis: require('./components/emojis'),
|
||||
componentInstance: require('./components/instance'),
|
||||
componentMediaSelector: require('./components/mediaSelector'),
|
||||
componentParse: require('./components/parse'),
|
||||
componentRelationship: require('./components/relationship'),
|
||||
componentTimeline: require('./components/timeline')
|
||||
}
|
Loading…
Reference in New Issue
Block a user