From e44a7e37b6c7b5961adaffc62b9042b8d442938e Mon Sep 17 00:00:00 2001 From: mensonge Date: Thu, 13 Nov 2008 09:49:11 +0000 Subject: New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dijit/demos/chat.html | 86 + includes/js/dijit/demos/chat/chat.css | 40 + .../js/dijit/demos/chat/chat.css.commented.css | 46 + includes/js/dijit/demos/chat/client.html | 65 + includes/js/dijit/demos/chat/community.html | 114 + includes/js/dijit/demos/chat/operator.html | 83 + includes/js/dijit/demos/chat/room.js | 127 + includes/js/dijit/demos/form.html | 243 + includes/js/dijit/demos/i18n.html | 158 + includes/js/dijit/demos/i18n/continents.json | 9 + includes/js/dijit/demos/i18n/data.json | 8646 ++++++++++++++++++++ includes/js/dijit/demos/i18n/flags.css | 1223 +++ .../js/dijit/demos/i18n/flags.css.commented.css | 1224 +++ includes/js/dijit/demos/i18n/flags.png | Bin 0 -> 47275 bytes includes/js/dijit/demos/i18n/generate.html | 2353 ++++++ includes/js/dijit/demos/i18n/langCountryMap.json | 215 + includes/js/dijit/demos/i18n/languages.json | 7045 ++++++++++++++++ includes/js/dijit/demos/i18n/languages.sh | 18 + includes/js/dijit/demos/i18n/sprite.html | 2319 ++++++ includes/js/dijit/demos/mail.html | 426 + includes/js/dijit/demos/mail/icons.gif | Bin 0 -> 1757 bytes includes/js/dijit/demos/mail/icons.png | Bin 0 -> 2908 bytes includes/js/dijit/demos/mail/mail.css | 133 + .../js/dijit/demos/mail/mail.css.commented.css | 157 + includes/js/dijit/demos/mail/mail.json | 75 + includes/js/dijit/demos/mail/newMail.html | 8 + includes/js/dijit/demos/nihao.html | 91 + includes/js/dijit/demos/nihao/nls/en/helloworld.js | 1 + includes/js/dijit/demos/nihao/nls/fr/helloworld.js | 1 + includes/js/dijit/demos/nihao/nls/helloworld.js | 1 + includes/js/dijit/demos/nihao/nls/zh/helloworld.js | 1 + 31 files changed, 24908 insertions(+) create mode 100644 includes/js/dijit/demos/chat.html create mode 100644 includes/js/dijit/demos/chat/chat.css create mode 100644 includes/js/dijit/demos/chat/chat.css.commented.css create mode 100644 includes/js/dijit/demos/chat/client.html create mode 100644 includes/js/dijit/demos/chat/community.html create mode 100644 includes/js/dijit/demos/chat/operator.html create mode 100644 includes/js/dijit/demos/chat/room.js create mode 100644 includes/js/dijit/demos/form.html create mode 100644 includes/js/dijit/demos/i18n.html create mode 100644 includes/js/dijit/demos/i18n/continents.json create mode 100644 includes/js/dijit/demos/i18n/data.json create mode 100644 includes/js/dijit/demos/i18n/flags.css create mode 100644 includes/js/dijit/demos/i18n/flags.css.commented.css create mode 100644 includes/js/dijit/demos/i18n/flags.png create mode 100644 includes/js/dijit/demos/i18n/generate.html create mode 100644 includes/js/dijit/demos/i18n/langCountryMap.json create mode 100644 includes/js/dijit/demos/i18n/languages.json create mode 100644 includes/js/dijit/demos/i18n/languages.sh create mode 100644 includes/js/dijit/demos/i18n/sprite.html create mode 100644 includes/js/dijit/demos/mail.html create mode 100644 includes/js/dijit/demos/mail/icons.gif create mode 100644 includes/js/dijit/demos/mail/icons.png create mode 100644 includes/js/dijit/demos/mail/mail.css create mode 100644 includes/js/dijit/demos/mail/mail.css.commented.css create mode 100644 includes/js/dijit/demos/mail/mail.json create mode 100644 includes/js/dijit/demos/mail/newMail.html create mode 100644 includes/js/dijit/demos/nihao.html create mode 100644 includes/js/dijit/demos/nihao/nls/en/helloworld.js create mode 100644 includes/js/dijit/demos/nihao/nls/fr/helloworld.js create mode 100644 includes/js/dijit/demos/nihao/nls/helloworld.js create mode 100644 includes/js/dijit/demos/nihao/nls/zh/helloworld.js (limited to 'includes/js/dijit/demos') diff --git a/includes/js/dijit/demos/chat.html b/includes/js/dijit/demos/chat.html new file mode 100644 index 0000000..bd599f9 --- /dev/null +++ b/includes/js/dijit/demos/chat.html @@ -0,0 +1,86 @@ + + + + Chat Demo Starter + + + + + + + + + + +
+

Dojo chat demo preabmle ...

+

+ There are two examples of chat, using cometd as a backend and Dojo's + dojox.cometd client as a transport. +

+

+ The first, a simple public chat room, that any live participants + that happen to be online will be able to communicate. +

+
Join Group Chat
+

The other: the example from the Dojo Book - an example of a + client / operator relationship, where the client chats from an + 'existing' page, and the operator has a TabContainer view of + open client chats, and can communicate privately and directly + to the client. The client page demonstrates how this can be used in existing + pages for real-time support. You will need two people for this, or you + are welcome to talk to yourself ... +

+
+
Client Page
+
Operator Page
+
+

the Chatroom widget source can be found here.

+
+ + diff --git a/includes/js/dijit/demos/chat/chat.css b/includes/js/dijit/demos/chat/chat.css new file mode 100644 index 0000000..9dde485 --- /dev/null +++ b/includes/js/dijit/demos/chat/chat.css @@ -0,0 +1,40 @@ +.chatroom +{ + position:relative; + height:240px; + background-color: #e0e0e0; + border: 0px solid black; +} +.chat +{ + height: 200px; + overflow: auto; + background-color: #fff; + padding: 4px; + border: 0px solid black; +} +.dijitTabContainer .chat { + height:auto; +} +.input { + position:absolute; + bottom:0px; + display:block; + padding: 4px; + border: 0px solid black; + border-top: 1px solid black; +} +.phrase +{ + width:200px; + background-color:#ededed; +} +.username +{ + width:145px; + background-color: #ededed; +} +.hidden { display: none; } +.from { font-weight: bold; } +.alert { font-style: italic; } +.dijitTitlePaneContentInner { padding:0px !important; } diff --git a/includes/js/dijit/demos/chat/chat.css.commented.css b/includes/js/dijit/demos/chat/chat.css.commented.css new file mode 100644 index 0000000..0874a53 --- /dev/null +++ b/includes/js/dijit/demos/chat/chat.css.commented.css @@ -0,0 +1,46 @@ +.chatroom +{ + position:relative; + height:240px; + background-color: #e0e0e0; + border: 0px solid black; +} + +.chat +{ + height: 200px; + overflow: auto; + background-color: #fff; + padding: 4px; + border: 0px solid black; +} +.dijitTabContainer .chat { + height:auto; +} + +.input { + position:absolute; + bottom:0px; + display:block; + padding: 4px; + border: 0px solid black; + border-top: 1px solid black; +} + +.phrase +{ + width:200px; + background-color:#ededed; +} + +.username +{ + width:145px; + background-color: #ededed; +} + +.hidden { display: none; } +.from { font-weight: bold; } +.alert { font-style: italic; } +.dijitTitlePaneContentInner { padding:0px !important; } + diff --git a/includes/js/dijit/demos/chat/client.html b/includes/js/dijit/demos/chat/client.html new file mode 100644 index 0000000..5471272 --- /dev/null +++ b/includes/js/dijit/demos/chat/client.html @@ -0,0 +1,65 @@ + + + Sample built in tech-support demonstration | The Dojo Toolkit + + + + + + + +

I am a Sample page

+

Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nam facilisis enim. Pellentesque in elit et lacus euismod dignissim. Aliquam dolor pede, convallis eget, dictum a, blandit ac, urna. Pellentesque sed nunc ut justo volutpat egestas. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. In erat. Suspendisse potenti. Fusce faucibus nibh sed nisi. Phasellus faucibus, dui a cursus dapibus, mauris nulla euismod velit, a lobortis turpis arcu vel dui. Pellentesque fermentum ultrices pede. Donec auctor lectus eu arcu. Curabitur non orci eget est porta gravida. Aliquam pretium orci id nisi. Duis faucibus, mi non adipiscing venenatis, erat urna aliquet elit, eu fringilla lacus tellus quis erat. Nam tempus ornare lorem. Nullam feugiat.

+ +

Need help?

+ + + +

Sed congue. Aenean blandit sollicitudin mi. Maecenas pellentesque. Vivamus ac urna. Nunc consequat nisi vitae quam. Suspendisse sed nunc. Proin suscipit porta magna. Duis accumsan nunc in velit. Nam et nibh. Nulla facilisi. Cras venenatis urna et magna. Aenean magna mauris, bibendum sit amet, semper quis, aliquet nec, sapien. Aliquam aliquam odio quis erat. Etiam est nisi, condimentum non, lacinia ac, vehicula laoreet, elit. Sed interdum augue sit amet quam dapibus semper. Nulla facilisi. Pellentesque lobortis erat nec quam.

+

Sed arcu magna, molestie at, fringilla in, sodales eu, elit. Curabitur mattis lorem et est. Quisque et tortor. Integer bibendum vulputate odio. Nam nec ipsum. Vestibulum mollis eros feugiat augue. Integer fermentum odio lobortis odio. Nullam mollis nisl non metus. Maecenas nec nunc eget pede ultrices blandit. Ut non purus ut elit convallis eleifend. Fusce tincidunt, justo quis tempus euismod, magna nulla viverra libero, sit amet lacinia odio diam id risus. Ut varius viverra turpis. Morbi urna elit, imperdiet eu, porta ac, pharetra sed, nisi. Etiam ante libero, ultrices ac, faucibus ac, cursus sodales, nisl. Praesent nisl sem, fermentum eu, consequat quis, varius interdum, nulla. Donec neque tortor, sollicitudin sed, consequat nec, facilisis sit amet, orci. Aenean ut eros sit amet ante pharetra interdum.

+

Fusce rutrum pede eget quam. Praesent purus. Aenean at elit in sem volutpat facilisis. Nunc est augue, commodo at, pretium a, fermentum at, quam. Nam sit amet enim. Suspendisse potenti. Cras hendrerit rhoncus justo. Integer libero. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Aliquam erat volutpat. Sed adipiscing mi vel ipsum.

+ + + + + diff --git a/includes/js/dijit/demos/chat/community.html b/includes/js/dijit/demos/chat/community.html new file mode 100644 index 0000000..4c208a0 --- /dev/null +++ b/includes/js/dijit/demos/chat/community.html @@ -0,0 +1,114 @@ + + + Cometd chat / Operator Page + + + + + + + + + +
+
+
+
+

Dojo community chat demo

+

NON-WORKING PROTOTYPE

+ + + +
+
+
+
+ bottom. (input area) +
+
+
+
+ Name: + +
+ + diff --git a/includes/js/dijit/demos/chat/operator.html b/includes/js/dijit/demos/chat/operator.html new file mode 100644 index 0000000..594fc6e --- /dev/null +++ b/includes/js/dijit/demos/chat/operator.html @@ -0,0 +1,83 @@ + + + Cometd chat / Operator Page + + + + + + + +

Tech Support Operator Page:

+ +
+ +
+

Welcome Operator

+

It is your job to respond to incoming Support Requests. Sit here, and watch the screen.

+

Please Login as an operator: +

+ Name: +

+
+ +
+
+ + diff --git a/includes/js/dijit/demos/chat/room.js b/includes/js/dijit/demos/chat/room.js new file mode 100644 index 0000000..b1847f4 --- /dev/null +++ b/includes/js/dijit/demos/chat/room.js @@ -0,0 +1,127 @@ +if(!dojo._hasResource["dijit.demos.chat.room"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. +dojo._hasResource["dijit.demos.chat.room"] = true; +dojo.provide("dijit.demos.chat.room"); + +dojo.require("dojox.cometd"); +dojo.require("dijit._Widget"); +dojo.require("dijit._Templated"); + +dojo.declare("dijit.demos.chat.Room", + [dijit._Widget,dijit._Templated], + { + + _last: "", + _username: null, + roomId: "public", + isPrivate: false, + prompt: "Name:", + + templateString: '
' + +'
' + +'
' + +'
' + +'${prompt} ' + +'
' + +'' + +'
' + +'
', + + join: function(name){ + if(name == null || name.length==0){ + alert('Please enter a username!'); + }else{ + if(this.isPrivate){ this.roomId = name; } + this._username=name; + this.joining.className='hidden'; + this.joined.className=''; + this.phrase.focus(); + console.log(this.roomId); + dojox.cometd.subscribe("/chat/demo/" + this.roomId, this, "_chat"); + dojox.cometd.publish("/chat/demo/" + this.roomId, { user: this._username, join: true, chat : this._username+" has joined the room."}); + dojox.cometd.publish("/chat/demo", { user: this._username, joined: this.roomId }); + } + }, + + _join: function(/* Event */e){ + var key = (e.charCode == dojo.keys.SPACE ? dojo.keys.SPACE : e.keyCode); + if (key == dojo.keys.ENTER || e.type=="click"){ + this.join(this.username.value); + } + }, + + leave: function(){ + dojox.cometd.unsubscribe("/chat/demo/" + this.roomId, this, "_chat"); + dojox.cometd.publish("/chat/demo/" + this.roomId, { user: this._username, leave: true, chat : this._username+" has left the chat."}); + + // switch the input form back to login mode + this.joining.className=''; + this.joined.className='hidden'; + this.username.focus(); + this._username=null; + }, + + chat: function(text){ + // summary: publish a text message to the room + if(text != null && text.length>0){ + // lame attempt to prevent markup + text=text.replace(//g,'>'); + dojox.cometd.publish("/chat/demo/" + this.roomId, { user: this._username, chat: text}); + } + }, + + _chat: function(message){ + // summary: process an incoming message + if (!message.data){ + console.warn("bad message format "+message); + return; + } + var from=message.data.user; + var special=message.data.join || message.data.leave; + var text=message.data.chat; + if(text!=null){ + if(!special && from == this._last ){ from="..."; + }else{ + this._last=from; + from+=":"; + } + + if(special){ + this.chatNode.innerHTML += ""+from+" "+text+"
"; + this._last=""; + }else{ + this.chatNode.innerHTML += ""+from+" "+text+"
"; + this.chatNode.scrollTop = this.chatNode.scrollHeight - this.chatNode.clientHeight; + } + } + }, + + startup: function(){ + this.joining.className=''; + this.joined.className='hidden'; + //this.username.focus(); + this.username.setAttribute("autocomplete","OFF"); + if (this.registeredAs) { this.join(this.registeredAs); } + this.inherited("startup",arguments); + }, + + _cleanInput: function(/* Event */e){ + var key = (e.charCode == dojo.keys.SPACE ? dojo.keys.SPACE : e.keyCode); + if(key == dojo.keys.ENTER || key == 13){ + this.chat(this.phrase.value); + this.phrase.value=''; + } + }, + + _sendPhrase: function(/* Event */e){ + if (this.phrase.value){ + this.chat(this.phrase.value); + this.phrase.value=''; + } + } +}); + +} diff --git a/includes/js/dijit/demos/form.html b/includes/js/dijit/demos/form.html new file mode 100644 index 0000000..e8b238d --- /dev/null +++ b/includes/js/dijit/demos/form.html @@ -0,0 +1,243 @@ + + + + Dojo Form Widgets Test + + + + + + + +
+ +

Job Application Form

+

This is just a little demo of dijit's form widgets

+
+
+ + As you type in the text below, notice how your input is auto + corrected and also the auto completion on the state field. + + Name And Address +
+
+ + +
+ + + +
+ + + + + + + + + +
+ + + + +
+ +
+ Custom checkboxes and radio buttons... + Desired position +
+
+ +
+ + + +
+ + +
+ + +
+
+ +
+ slider and spinner ... + Education and Experience +
+
+ + + + + + + +
+ + + + +
    +
  1. high school
  2. +
  3. college
  4. +
  5. masters
  6. +
  7. PhD
  8. +
+
+
+ + + +
+
+ +
+ Rich text editor that expands as you type in text + +
+
+ +
+ +
+ Text area that expands as you type in text + +
+
+ +
+ +
+ +
+
+ + + diff --git a/includes/js/dijit/demos/i18n.html b/includes/js/dijit/demos/i18n.html new file mode 100644 index 0000000..b99f6b9 --- /dev/null +++ b/includes/js/dijit/demos/i18n.html @@ -0,0 +1,158 @@ + + + + Dijit I18N Demo + + + + + + + + + + +
+
+ + + +
+ +

Dijit I18N Demo (locale= dir=)

+ + + + + + +
+
+ + + + + + +
+
+

+ Use the tree to select a language or a language/country combo; the page will reload + in the specified locale. Note that tree is also rerendered using the specified language for top level tree items. + Arabic and Hebrew display right-to-left so be sure to try those. +

+ + +

Some form controls:

+ + + +
+ + +
+ + +
+ + + +
+ + +
+ + diff --git a/includes/js/dijit/demos/i18n/continents.json b/includes/js/dijit/demos/i18n/continents.json new file mode 100644 index 0000000..994842b --- /dev/null +++ b/includes/js/dijit/demos/i18n/continents.json @@ -0,0 +1,9 @@ +[ +{ type: "continent", name: "Africa", iso: "Africa" }, +{ type: "continent", name: "Asia", iso: "Asia" }, +{ type: "continent", name: "Europe", iso: "Europe" }, +{ type: "continent", name: "North America", iso: "North America" }, +{ type: "continent", name: "South America", iso: "South America" }, +{ type: "continent", name: "Oceania", iso: "Oceania" }, +{ type: "continent", name: "Antarctica", iso: "Antarctica" } +] diff --git a/includes/js/dijit/demos/i18n/data.json b/includes/js/dijit/demos/i18n/data.json new file mode 100644 index 0000000..f46855b --- /dev/null +++ b/includes/js/dijit/demos/i18n/data.json @@ -0,0 +1,8646 @@ +{ "identifier": 'iso', + "label": 'name', + "items": +[ + { + "type": "language", + "iso": "aa", + "name": "Qafar", + "countries": [ + { + "_reference": "DJ" + }, + { + "_reference": "ER" + }, + { + "_reference": "ET" + } + ], + "am": "አፋርኛ", + "ar": "الأفارية", + "ca": "àfar", + "cs": "Afarština", + "da": "afar", + "de": "Afar", + "en": "Afar", + "es": "afar", + "fi": "afar", + "fr": "afar", + "ga": "Afar", + "he": "אתיופית", + "hi": "अफ़ार", + "hu": "afar", + "id": "Afar", + "it": "afar", + "ja": "アファル語", + "km": "ភាសាអាហ្វារ", + "ko": "아파르어", + "mr": "अफार", + "mt": "Afar", + "nb": "afar", + "nl": "Afar", + "nn": "afar", + "pt": "afar", + "ru": "афар", + "sv": "afar", + "ta": "அபார்", + "th": "อาฟา", + "tr": "Afar", + "uk": "Афарська", + "zh": "阿法文" + }, + { + "type": "language", + "iso": "af", + "name": "Afrikaans", + "countries": [ + { + "_reference": "NA" + }, + { + "_reference": "ZA" + } + ], + "af": "Afrikaans", + "am": "አፍሪቃንስኛ", + "ar": "الأفريقية", + "bg": "Африканс", + "ca": "afrikaans", + "cs": "Afrikánština", + "da": "afrikaans", + "de": "Afrikaans", + "en": "Afrikaans", + "es": "afrikaans", + "fi": "afrikaans", + "fr": "afrikaans", + "ga": "Afracáinis", + "he": "אפריקנית", + "hi": "अफ्रीकी", + "hu": "afrikai", + "id": "Afrikaans", + "is": "Afríkanska", + "it": "afrikaans", + "ja": "アフリカーンス語", + "km": "ភាសាអាហ្វ្រីកាអាន", + "ko": "남아공 공용어", + "mr": "अफ्रिकान्स", + "mt": "Afrikans", + "nb": "afrikaans", + "nl": "Afrikaans", + "nn": "afrikaans", + "pt": "africâner", + "ru": "африкаанс", + "sr": "Африканерски", + "sv": "afrikaans", + "ta": "ஆப்ரிகன்ஸ்", + "th": "แอฟริกัน", + "tr": "Afrikaan Dili", + "uk": "Африканс", + "zh": "南非荷兰文" + }, + { + "type": "language", + "iso": "am", + "name": "አማርኛ", + "countries": [ + { + "_reference": "ET" + } + ], + "am": "አማርኛ", + "ar": "الأمهرية", + "bg": "Амхарски", + "ca": "amhàric", + "cs": "Amharština", + "da": "amharisk", + "de": "Amharisch", + "en": "Amharic", + "es": "amárico", + "fi": "amhara", + "fr": "amharique", + "he": "אמהרית", + "hi": "अम्हारिक्", + "hu": "amhara", + "id": "Amharik", + "is": "Amharíska", + "it": "amarico", + "ja": "アムハラ語", + "ko": "암하라어", + "mr": "अमहारिक", + "mt": "Amħariku", + "nb": "amharisk", + "nl": "Amhaars", + "nn": "amharisk", + "pt": "amárico", + "ru": "амхарский", + "sv": "amhariska", + "ta": "அம்ஹாரிக்", + "th": "อัมฮาริค", + "tr": "Amharik", + "uk": "Амхарік", + "zh": "阿姆哈拉文" + }, + { + "type": "language", + "iso": "ar", + "name": "العربية", + "countries": [ + { + "_reference": "AE" + }, + { + "_reference": "BH" + }, + { + "_reference": "DZ" + }, + { + "_reference": "EG" + }, + { + "_reference": "IQ" + }, + { + "_reference": "JO" + }, + { + "_reference": "KW" + }, + { + "_reference": "LB" + }, + { + "_reference": "LY" + }, + { + "_reference": "MA" + }, + { + "_reference": "OM" + }, + { + "_reference": "QA" + }, + { + "_reference": "SA" + }, + { + "_reference": "SD" + }, + { + "_reference": "SY" + }, + { + "_reference": "TN" + }, + { + "_reference": "YE" + } + ], + "am": "ዐርቢኛ", + "ar": "العربية", + "be": "арабскі", + "bg": "Арабски", + "ca": "àrab", + "cs": "Arabština", + "cy": "Arabeg", + "da": "arabisk", + "de": "Arabisch", + "el": "Αραβικά", + "en": "Arabic", + "es": "árabe", + "et": "Araabia", + "fi": "arabia", + "fr": "arabe", + "ga": "Araibis", + "he": "ערבית", + "hi": "अरबी", + "hr": "arapski", + "hu": "arab", + "id": "Arab", + "is": "Arabíska", + "it": "arabo", + "ja": "アラビア語", + "km": "ភាសាអារ៉ាប់", + "ko": "아랍어", + "lt": "Arabų", + "lv": "arābu", + "mr": "अरेबिक", + "mt": "Għarbi", + "nb": "arabisk", + "nl": "Arabisch", + "nn": "arabisk", + "pl": "arabski", + "ps": "عربي", + "pt": "árabe", + "ro": "Arabă", + "ru": "арабский", + "sk": "arabský", + "sl": "Arabščina", + "sq": "Arabisht", + "sr": "Арапски", + "sv": "arabiska", + "ta": "அரபு", + "te": "అరబిక్", + "tr": "Arapça", + "uk": "Арабська", + "vi": "Tiếng A-rập", + "zh": "阿拉伯文" + }, + { + "type": "language", + "iso": "as", + "name": "অসমীয়া", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "አሳሜዛዊ", + "ar": "الأسامية", + "as": "অসমীয়া", + "ca": "assamès", + "cs": "Assaméština", + "da": "assamesisk", + "de": "Assamesisch", + "en": "Assamese", + "es": "asamés", + "fi": "assami", + "fr": "assamais", + "ga": "Asaimis", + "he": "אסאמית", + "hi": "असामी", + "hu": "asszámi", + "id": "Assam", + "is": "Assamska", + "it": "assamese", + "ja": "アッサム語", + "ko": "아샘어", + "mr": "असामी", + "mt": "Assamese", + "nb": "assamisk", + "nl": "Assamees", + "nn": "assamisk", + "pt": "assamês", + "ru": "ассамский", + "sv": "assamesiska", + "ta": "அஸ்ஸாமி", + "th": "อัสสัมมิส", + "uk": "Ассамська", + "zh": "阿萨姆文" + }, + { + "type": "language", + "iso": "az", + "name": "azərbaycanca", + "countries": [ + { + "_reference": "AZ" + } + ], + "am": "አዜርባይጃንኛ", + "ar": "الأذرية", + "az": "azərbaycanca", + "bg": "Азърбайджански", + "ca": "àzeri", + "cs": "Azerbajdžánština", + "da": "aserbajdsjansk", + "de": "Aserbaidschanisch", + "en": "Azerbaijani", + "es": "azerí", + "fa": "ترکی آذربایجانی", + "fi": "azeri", + "fr": "azéri", + "ga": "Asarbaiseáinis", + "he": "אזרית", + "hi": "अज़रबैंजानी", + "hu": "azerbajdzsáni", + "id": "Azerbaijan", + "is": "Aserska", + "it": "azerbaigiano", + "ja": "アゼルバイジャン語", + "km": "ភាសាអាហ៊្សែរបែហ្សង់", + "ko": "아제르바이잔어", + "mr": "अज़रबाइजानी", + "mt": "Ażerbajġani", + "nb": "aserbajdsjansk", + "nl": "Azerbeidzjaans", + "nn": "aserbajdsjansk", + "pt": "azerbaijano", + "ru": "азербайджанский", + "sv": "azerbajdzjanska", + "ta": "அசர்பாய்ஜானி", + "th": "อาเซอร์ไบจานี", + "tr": "Azerice", + "uk": "Азербайджанська", + "vi": "Tiếng Ai-déc-bai-gian", + "zh": "阿塞拜疆文" + }, + { + "type": "language", + "iso": "be", + "name": "Беларускі", + "countries": [ + { + "_reference": "BY" + } + ], + "am": "ቤላራሻኛ", + "ar": "البيلوروسية", + "be": "Беларускі", + "bg": "Беларуски", + "ca": "bielorús", + "cs": "Běloruština", + "da": "hviderussisk", + "de": "Weißrussisch", + "el": "Λευκορωσικά", + "en": "Belarusian", + "es": "bielorruso", + "fi": "valkovenäjä", + "fr": "biélorusse", + "ga": "Bealarúisis", + "he": "בלארוסית", + "hi": "बैलोरूशियन्", + "hr": "bjeloruski", + "hu": "belorusz", + "id": "Belarusia", + "is": "Hvítrússneska", + "it": "bielorusso", + "ja": "ベラルーシ語", + "km": "ភាសាបេឡារុស្ស", + "ko": "벨로루시어", + "mr": "बैलोरुसियन", + "mt": "Belarussu", + "nb": "hviterussisk", + "nl": "Wit-Russisch", + "nn": "kviterussisk", + "pt": "bielo-russo", + "ru": "белорусский", + "sr": "Белоруски", + "sv": "vitryska", + "ta": "பைலோருஷ்ன்", + "th": "บายโลรัสเซีย", + "tr": "Beyaz Rusça", + "uk": "Білоруська", + "vi": "Tiếng Bê-la-rút", + "zh": "白俄罗斯文" + }, + { + "type": "language", + "iso": "bg", + "name": "Български", + "countries": [ + { + "_reference": "BG" + } + ], + "am": "ቡልጋሪኛ", + "ar": "البلغارية", + "bg": "Български", + "ca": "búlgar", + "cs": "Bulharština", + "da": "bulgarsk", + "de": "Bulgarisch", + "el": "Βουλγαρικά", + "en": "Bulgarian", + "es": "búlgaro", + "et": "Bulgaaria", + "fi": "bulgaria", + "fr": "bulgare", + "ga": "Bulgáiris", + "he": "בולגרית", + "hi": "बल्गेरियन्", + "hr": "bugarski", + "hu": "bolgár", + "id": "Bulgaria", + "is": "Búlgarska", + "it": "bulgaro", + "ja": "ブルガリア語", + "km": "ភាសាប៊ុលហ្ការី", + "ko": "불가리아어", + "lt": "Bulgarų", + "lv": "bulgāru", + "mr": "बल्गेरियन", + "mt": "Bulgaru", + "nb": "bulgarsk", + "nl": "Bulgaars", + "nn": "bulgarsk", + "pl": "bułgarski", + "pt": "búlgaro", + "ro": "Bulgară", + "ru": "болгарский", + "sk": "bulharský", + "sl": "Bolgarščina", + "sr": "Бугарски", + "sv": "bulgariska", + "ta": "பல்கேரியன்", + "th": "บัลแกเรีย", + "tr": "Bulgarca", + "uk": "Болгарська", + "vi": "Tiếng Bun-ga-ri", + "zh": "保加利亚文" + }, + { + "type": "language", + "iso": "bn", + "name": "বাংলা", + "countries": [ + { + "_reference": "BD" + }, + { + "_reference": "IN" + } + ], + "am": "በንጋሊኛ", + "ar": "البنغالية", + "bg": "Бенгалски", + "bn": "বাংলা", + "ca": "bengalí", + "cs": "Bengálština", + "da": "bengalsk", + "de": "Bengalisch", + "el": "Μπενγκάλι", + "en": "Bengali", + "es": "bengalí", + "fi": "bengali", + "fr": "bengali", + "ga": "Beangálais", + "he": "בנגלית", + "hi": "बँगाली", + "hu": "bengáli", + "id": "Bengal", + "is": "Bengalska", + "it": "bengalese", + "ja": "ベンガル語", + "km": "ភាសាបេន្កាលី", + "ko": "벵골어", + "lt": "Bengalų", + "mr": "बंगाली", + "mt": "Bengali", + "nb": "bengali", + "nl": "Bengalees", + "nn": "bengali", + "pl": "bengalski", + "pt": "bengali", + "ru": "бенгальский", + "sv": "bengali", + "ta": "வங்காளம்", + "tr": "Bengal Dili", + "uk": "Бенгальська", + "zh": "孟加拉文" + }, + { + "type": "language", + "iso": "ca", + "name": "català", + "countries": [ + { + "_reference": "ES" + } + ], + "am": "ካታላንኛ", + "ar": "الكاتالوينية", + "bg": "Каталонски", + "ca": "català", + "cs": "Katalánština", + "da": "katalansk", + "de": "Katalanisch", + "el": "Καταλανικά", + "en": "Catalan", + "es": "catalán", + "fi": "katalaani", + "fr": "catalan", + "ga": "Catalóinis", + "he": "קטלונית", + "hi": "कातालान", + "hu": "katalán", + "id": "Catalan", + "is": "Katalónska", + "it": "catalano", + "ja": "カタロニア語", + "km": "ភាសាកាតាឡាន", + "ko": "카탈로니아어", + "mr": "कटलन", + "mt": "Katalan", + "nb": "katalansk", + "nl": "Catalaans", + "nn": "katalansk", + "pl": "kataloński", + "pt": "catalão", + "ru": "каталанский", + "sr": "Каталонски", + "sv": "katalanska", + "ta": "காடலான்", + "th": "แคตาแลน", + "tr": "Katalan Dili", + "uk": "Каталонська", + "vi": "Tiếng Ca-ta-lăng", + "zh": "加泰罗尼亚文" + }, + { + "type": "language", + "iso": "cs", + "name": "Čeština", + "countries": [ + { + "_reference": "CZ" + } + ], + "am": "ቼክኛ", + "ar": "التشيكية", + "bg": "Чешки", + "ca": "txec", + "cs": "Čeština", + "da": "Tjekkisk", + "de": "Tschechisch", + "el": "Τσεχικά", + "en": "Czech", + "es": "checo", + "et": "Tiehhi", + "fi": "tšekki", + "fr": "tchèque", + "ga": "Seicis", + "he": "צ׳כית", + "hi": "चेक", + "hr": "češki", + "hu": "cseh", + "id": "Ceko", + "is": "Tékkneska", + "it": "ceco", + "ja": "チェコ語", + "km": "ភាសាឆេក", + "ko": "체코어", + "lt": "Čekų", + "lv": "čehu", + "mr": "ज़ेक", + "mt": "Ċek", + "nb": "tsjekkisk", + "nl": "Tsjechisch", + "nn": "tsjekkisk", + "pl": "czeski", + "pt": "tcheco", + "ro": "Cehă", + "ru": "чешский", + "sk": "český", + "sl": "Češčina", + "sr": "Чешки", + "sv": "tjeckiska", + "ta": "செக்", + "tr": "Çekçe", + "uk": "Чеська", + "vi": "Tiếng Séc", + "zh": "捷克文" + }, + { + "type": "language", + "iso": "cy", + "name": "Cymraeg", + "countries": [ + { + "_reference": "GB" + } + ], + "am": "ወልሽ", + "ar": "الولزية", + "bg": "Уелски", + "ca": "gal·lès", + "cs": "Velština", + "cy": "Cymraeg", + "da": "Walisisk", + "de": "Kymrisch", + "el": "Ουαλικά", + "en": "Welsh", + "es": "galés", + "fi": "kymri", + "fr": "gallois", + "ga": "Breatnais", + "he": "וולשית", + "hi": "वेल्श", + "hr": "velški", + "hu": "walesi", + "id": "Welsh", + "is": "Velska", + "it": "gallese", + "ja": "ウェールズ語", + "ko": "웨일스어", + "mr": "वेल्ष", + "mt": "Welx", + "nb": "walisisk", + "nl": "Welsh", + "nn": "walisisk", + "pl": "walijski", + "pt": "galês", + "ru": "валлийский", + "sv": "walesiska", + "ta": "வெல்ஷ்", + "th": "เวลส์", + "tr": "Gal Dili", + "uk": "Валлійська", + "zh": "威尔士文" + }, + { + "type": "language", + "iso": "da", + "name": "Dansk", + "countries": [ + { + "_reference": "DK" + } + ], + "am": "ዴኒሽ", + "ar": "الدانماركية", + "bg": "Датски", + "ca": "danès", + "cs": "Dánština", + "da": "Dansk", + "de": "Dänisch", + "el": "Δανικά", + "en": "Danish", + "es": "danés", + "et": "Taani", + "fi": "tanska", + "fr": "danois", + "ga": "Danmhairgis", + "he": "דנית", + "hi": "डैनीश", + "hr": "danski", + "hu": "dán", + "id": "Denmark", + "is": "Danska", + "it": "danese", + "ja": "デンマーク語", + "km": "ភាសាដាណឺម៉ាក", + "ko": "덴마크어", + "lt": "Danų", + "lv": "dāņu", + "mr": "डानिष", + "mt": "Daniż", + "nb": "dansk", + "nl": "Deens", + "nn": "dansk", + "pl": "duński", + "pt": "dinamarquês", + "ro": "Daneză", + "ru": "датский", + "sk": "dánsky", + "sl": "Danščina", + "sr": "Дански", + "sv": "danska", + "ta": "டானிஷ்", + "th": "เดนมาร์ก", + "tr": "Danca", + "uk": "Датська", + "vi": "Tiếng Đan Mạch", + "zh": "丹麦文" + }, + { + "type": "language", + "iso": "de", + "name": "Deutsch", + "countries": [ + { + "_reference": "AT" + }, + { + "_reference": "BE" + }, + { + "_reference": "CH" + }, + { + "_reference": "DE" + }, + { + "_reference": "LI" + }, + { + "_reference": "LU" + } + ], + "am": "ጀርመን", + "ar": "الألمانية", + "be": "нямецкі", + "bg": "Немски", + "ca": "alemany", + "cs": "Němčina", + "cy": "Almaeneg", + "da": "Tysk", + "de": "Deutsch", + "el": "Γερμανικά", + "en": "German", + "es": "alemán", + "et": "Saksa", + "eu": "alemanera", + "fi": "saksa", + "fr": "allemand", + "ga": "Gearmáinis", + "he": "גרמנית", + "hi": "ज़र्मन", + "hr": "njemački", + "hu": "német", + "id": "Jerman", + "is": "Þýska", + "it": "tedesco", + "ja": "ドイツ語", + "ka": "გერმანული", + "km": "ភាសាអាល្លឺម៉ង់", + "ko": "독일어", + "ky": "немисче", + "lt": "Vokiečių", + "lv": "vācu", + "mk": "германски", + "mn": "герман", + "mr": "जर्मन", + "mt": "Ġermaniż", + "nb": "tysk", + "nl": "Duits", + "nn": "tysk", + "pl": "niemiecki", + "ps": "الماني", + "pt": "alemão", + "ro": "Germană", + "ru": "немецкий", + "sk": "nemecký", + "sl": "Nemščina", + "sq": "Gjermanisht", + "sr": "Немачки", + "sv": "tyska", + "sw": "kijerumani", + "ta": "ஜெர்மன்", + "te": "ఙర్మన్", + "th": "เยอรมัน", + "tr": "Almanca", + "uk": "Німецька", + "vi": "Tiếng Đức", + "zh": "德文" + }, + { + "type": "language", + "iso": "dv", + "name": "ދިވެހިބަސް", + "countries": [ + { + "_reference": "MV" + } + ], + "ar": "المالديفية", + "bg": "Дивехи", + "da": "Divehi", + "de": "Maledivisch", + "en": "Divehi", + "es": "divehi", + "fi": "divehi", + "fr": "maldivien", + "he": "דיבהי", + "id": "Divehi", + "is": "Dívehí", + "it": "divehi", + "ja": "ディベヒ語", + "ko": "디베히어", + "mt": "Diveħi", + "nb": "divehi", + "nl": "Divehi", + "nn": "divehi", + "pt": "divehi", + "sv": "divehi", + "th": "ดิเวฮิ", + "zh": "迪维希文" + }, + { + "type": "language", + "iso": "dz", + "name": "རྫོང་ཁ", + "countries": [ + { + "_reference": "BT" + } + ], + "am": "ድዞንግኻኛ", + "ar": "الزونخاية", + "ca": "bhutanès", + "cs": "Bhútánština", + "da": "Dzongkha", + "de": "Bhutanisch", + "en": "Dzongkha", + "fi": "dzongkha", + "fr": "dzongkha", + "hi": "भुटानी", + "hu": "butáni", + "id": "Dzongkha", + "is": "Dsongka", + "it": "dzongkha", + "ja": "ゾンカ語", + "km": "ភាសាប៊ូតាន", + "ko": "부탄어", + "mr": "भूटानी", + "mt": "Dżongka", + "nb": "dzongkha", + "nl": "Dzongkha", + "nn": "dzongkha", + "pt": "dzonga", + "ru": "дзонг-кэ", + "sv": "bhutanesiska", + "ta": "புடானி", + "th": "ดซองคา", + "tr": "Bhutan Dili", + "uk": "Дзонг-ке", + "zh": "不丹文" + }, + { + "type": "language", + "iso": "el", + "name": "Ελληνικά", + "countries": [ + { + "_reference": "CY" + }, + { + "_reference": "GR" + } + ], + "am": "ግሪክኛ", + "ar": "اليونانية", + "bg": "Гръцки", + "ca": "grec", + "cs": "Řečtina", + "da": "Græsk", + "de": "Griechisch", + "el": "Ελληνικά", + "en": "Greek", + "es": "griego", + "et": "Kreeka", + "fi": "kreikka", + "fr": "grec", + "ga": "Gréigis", + "he": "יוונית", + "hi": "ग्रीक", + "hr": "grčki", + "hu": "görög", + "id": "Yunani", + "is": "Nýgríska (1453-)", + "it": "greco", + "ja": "ギリシャ語", + "km": "ភាសាក្រិច", + "ko": "그리스어", + "lt": "Graikų", + "lv": "grieķu", + "mr": "ग्रीक", + "mt": "Grieg", + "nb": "gresk", + "nl": "Grieks", + "nn": "gresk", + "pl": "grecki", + "ps": "یوناني", + "pt": "grego", + "ro": "Greacă", + "ru": "греческий", + "sk": "grécky", + "sl": "Grščina", + "sr": "Грчки", + "sv": "grekiska", + "ta": "கிரேக்கம்", + "th": "กรีก", + "tr": "Yunanca", + "uk": "Грецька", + "vi": "Tiếng Hy Lạp", + "zh": "希腊文" + }, + { + "type": "language", + "iso": "en", + "name": "English", + "countries": [ + { + "_reference": "AS" + }, + { + "_reference": "AU" + }, + { + "_reference": "BE" + }, + { + "_reference": "BW" + }, + { + "_reference": "BZ" + }, + { + "_reference": "CA" + }, + { + "_reference": "GB" + }, + { + "_reference": "GU" + }, + { + "_reference": "HK" + }, + { + "_reference": "IE" + }, + { + "_reference": "IN" + }, + { + "_reference": "JM" + }, + { + "_reference": "MH" + }, + { + "_reference": "MP" + }, + { + "_reference": "MT" + }, + { + "_reference": "NA" + }, + { + "_reference": "NZ" + }, + { + "_reference": "PH" + }, + { + "_reference": "PK" + }, + { + "_reference": "SG" + }, + { + "_reference": "TT" + }, + { + "_reference": "UM" + }, + { + "_reference": "US" + }, + { + "_reference": "VI" + }, + { + "_reference": "ZA" + }, + { + "_reference": "ZW" + } + ], + "am": "እንግሊዝኛ", + "ar": "الانجليزية", + "be": "англійскі", + "bg": "Английски", + "ca": "anglès", + "cs": "Angličtina", + "cy": "Saesneg", + "da": "Engelsk", + "de": "Englisch", + "el": "Αγγλικά", + "en": "English", + "es": "inglés", + "et": "Inglise", + "eu": "ingelera", + "fi": "englanti", + "fr": "anglais", + "ga": "Béarla", + "he": "אנגלית", + "hi": "अंग्रेजी", + "hr": "engleski", + "hu": "angol", + "id": "Inggris", + "is": "Enska", + "it": "inglese", + "ja": "英語", + "ka": "ინგლისური", + "km": "ភាសាអង់គ្លេស", + "ko": "영어", + "ky": "англисче", + "lt": "Anglų", + "lv": "angļu", + "mk": "англиски", + "mn": "англи", + "mr": "इंग्रेजी", + "mt": "Ingliż", + "nb": "engelsk", + "nl": "Engels", + "nn": "engelsk", + "pl": "angielski", + "ps": "انګلیسي", + "pt": "inglês", + "ro": "Engleză", + "ru": "английский", + "sk": "anglický", + "sl": "Angleščina", + "sq": "Anglisht", + "sr": "Енглески", + "sv": "engelska", + "sw": "kiingereza", + "ta": "ஆங்கிலம்", + "te": "ఆంగ్లం", + "th": "อังกฤษ", + "tr": "İngilizce", + "uk": "Англійська", + "vi": "Tiếng Anh", + "zh": "英文" + }, + { + "type": "language", + "iso": "es", + "name": "español", + "countries": [ + { + "_reference": "AR" + }, + { + "_reference": "BO" + }, + { + "_reference": "CL" + }, + { + "_reference": "CO" + }, + { + "_reference": "CR" + }, + { + "_reference": "DO" + }, + { + "_reference": "EC" + }, + { + "_reference": "ES" + }, + { + "_reference": "GT" + }, + { + "_reference": "HN" + }, + { + "_reference": "MX" + }, + { + "_reference": "NI" + }, + { + "_reference": "PA" + }, + { + "_reference": "PE" + }, + { + "_reference": "PR" + }, + { + "_reference": "PY" + }, + { + "_reference": "SV" + }, + { + "_reference": "US" + }, + { + "_reference": "UY" + }, + { + "_reference": "VE" + } + ], + "af": "Spaans", + "am": "ስፓኒሽ", + "ar": "الأسبانية", + "be": "іспанскі", + "bg": "Испански", + "ca": "espanyol", + "cs": "Španělština", + "cy": "Sbaeneg", + "da": "Spansk", + "de": "Spanisch", + "el": "Ισπανικά", + "en": "Spanish", + "es": "español", + "et": "Hispaania", + "eu": "espainiera", + "fi": "espanja", + "fr": "espagnol", + "ga": "Spáinnis", + "he": "ספרדית", + "hi": "स्पेनिश", + "hr": "španjolski", + "hu": "spanyol", + "id": "Spanyol", + "is": "Spænska", + "it": "spagnolo", + "ja": "スペイン語", + "ka": "ესპანური", + "km": "ភាសាអេស្ប៉ាញ", + "ko": "스페인어", + "ky": "испанча", + "lt": "Ispanų", + "lv": "spāņu", + "mk": "шпански", + "mn": "испани", + "mr": "स्पानिष", + "mt": "Spanjol", + "nb": "spansk", + "nl": "Spaans", + "nn": "spansk", + "pl": "hiszpański", + "pt": "espanhol", + "ro": "Spaniolă", + "ru": "испанский", + "sk": "španielsky", + "sl": "Španščina", + "sq": "Spanjisht", + "sr": "Шпански", + "sv": "spanska", + "sw": "kihispania", + "ta": "ஸ்பேனிஷ்", + "te": "స్పానిష్", + "th": "สเปน", + "tr": "İspanyolca", + "uk": "Іспанська", + "vi": "Tiếng Tây Ban Nha", + "zh": "西班牙文" + }, + { + "type": "language", + "iso": "et", + "name": "Eesti", + "countries": [ + { + "_reference": "EE" + } + ], + "am": "ኤስቶኒአን", + "ar": "الأستونية", + "bg": "Естонски", + "ca": "estonià", + "cs": "Estonština", + "da": "Estisk", + "de": "Estnisch", + "el": "Εσθονικά", + "en": "Estonian", + "es": "estonio", + "et": "Eesti", + "fi": "viro", + "fr": "estonien", + "ga": "Eastóinis", + "he": "אסטונית", + "hi": "ऐस्तोनियन्", + "hr": "estonijski", + "hu": "észt", + "id": "Estonian", + "is": "Eistneska", + "it": "estone", + "ja": "エストニア語", + "km": "ភាសាអេស្តូនី", + "ko": "에스토니아어", + "lt": "Estų", + "lv": "igauņu", + "mr": "इस्टोनियन्", + "mt": "Estonjan", + "nb": "estisk", + "nl": "Estlands", + "nn": "estisk", + "pl": "estoński", + "ps": "حبشي", + "pt": "estoniano", + "ro": "Estoniană", + "ru": "эстонский", + "sk": "estónsky", + "sl": "Estonščina", + "sr": "Естонски", + "sv": "estniska", + "ta": "எஸ்டோனியன்", + "th": "เอสโตเนีย", + "tr": "Estonya Dili", + "uk": "Естонська", + "vi": "Tiếng E-xtô-ni-a", + "zh": "爱沙尼亚文" + }, + { + "type": "language", + "iso": "eu", + "name": "euskara", + "countries": [ + { + "_reference": "ES" + } + ], + "am": "ባስክኛ", + "ar": "لغة الباسك", + "bg": "Баски", + "ca": "basc", + "cs": "Baskičtina", + "da": "baskisk", + "de": "Baskisch", + "el": "Βασκικά", + "en": "Basque", + "es": "vasco", + "eu": "euskara", + "fi": "baski", + "fr": "basque", + "ga": "Bascais", + "he": "בסקית", + "hi": "बास्क्", + "hu": "baszk", + "id": "Basque", + "is": "Baskneska", + "it": "basco", + "ja": "バスク語", + "km": "ភាសាបាស្កេ", + "ko": "바스크어", + "mr": "बास्क", + "mt": "Bask", + "nb": "baskisk", + "nl": "Baskisch", + "nn": "baskisk", + "pl": "baskijski", + "pt": "basco", + "ru": "баскский", + "sr": "Баскијски", + "sv": "baskiska", + "ta": "பஸ்க்", + "th": "แบสก์", + "tr": "Bask Dili", + "uk": "Басків", + "zh": "巴斯克文" + }, + { + "type": "language", + "iso": "fa", + "name": "فارسی", + "countries": [ + { + "_reference": "AF" + }, + { + "_reference": "IR" + } + ], + "am": "ፐርሲያኛ", + "ar": "الفارسية", + "bg": "Персийски", + "ca": "persa", + "cs": "Perština", + "da": "Persisk", + "de": "Persisch", + "el": "Περσικά", + "en": "Persian", + "es": "farsi", + "fr": "persan", + "ga": "Peirsis", + "he": "פרסית", + "hi": "पर्शियन्", + "hr": "perzijski", + "hu": "perzsa", + "id": "Persia", + "is": "Persneska", + "it": "persiano", + "ja": "ペルシア語", + "ko": "이란어", + "mr": "पर्षियन्", + "mt": "Persjan", + "nb": "persisk", + "nl": "Perzisch", + "nn": "persisk", + "ps": "فارسي", + "pt": "persa", + "ru": "персидский", + "sr": "Персијски", + "sv": "persiska", + "ta": "பர்ஸியன்", + "th": "เปอร์เซีย", + "tr": "Farsça", + "uk": "Перська", + "vi": "Tiếng Ba Tư", + "zh": "波斯文" + }, + { + "type": "language", + "iso": "fi", + "name": "suomi", + "countries": [ + { + "_reference": "FI" + } + ], + "am": "ፊኒሽ", + "ar": "الفنلندية", + "bg": "Фински", + "ca": "finès", + "cs": "Finština", + "da": "Finsk", + "de": "Finnisch", + "el": "Φινλανδικά", + "en": "Finnish", + "es": "finés", + "et": "Soome", + "fi": "suomi", + "fr": "finnois", + "ga": "Fionnlainnis", + "he": "פינית", + "hi": "फिनिश", + "hr": "finski", + "hu": "finn", + "id": "Finlandia", + "is": "Finnska", + "it": "finlandese", + "ja": "フィンランド語", + "km": "ភាសាហ្វាំងឡង់", + "ko": "핀란드어", + "lt": "Suomių", + "lv": "somu", + "mr": "फिन्निष", + "mt": "Finlandiż", + "nb": "finsk", + "nl": "Fins", + "nn": "finsk", + "pl": "fiński", + "ps": "فینلنډي", + "pt": "finlandês", + "ro": "Finlandeză", + "ru": "финский", + "sk": "fínsky", + "sl": "Finščina", + "sr": "Фински", + "sv": "finska", + "ta": "பின்னிஷ்", + "th": "ฟิน", + "tr": "Fince", + "uk": "Фінська", + "vi": "Tiếng Phần Lan", + "zh": "芬兰文" + }, + { + "type": "language", + "iso": "fo", + "name": "føroyskt", + "countries": [ + { + "_reference": "FO" + } + ], + "am": "ፋሮኛ", + "ar": "الفارويز", + "ca": "feroès", + "cs": "Faerština", + "da": "Færøsk", + "de": "Färöisch", + "en": "Faroese", + "es": "feroés", + "fi": "fääri", + "fo": "føroyskt", + "fr": "féroïen", + "ga": "Faróis", + "he": "פארואזית", + "hi": "फिरोज़ी", + "hu": "feröeri", + "id": "Faro", + "is": "Færeyska", + "it": "faroese", + "ja": "フェロー語", + "ko": "페로스어", + "mr": "फेरोस्", + "mt": "Fawriż", + "nb": "færøysk", + "nl": "Faeröers", + "nn": "færøysk", + "pt": "feroês", + "ru": "фарерский", + "sv": "färöiska", + "ta": "பைரோஸி", + "th": "ฟาโรส", + "tr": "Faroe Dili", + "uk": "Фарерська", + "zh": "法罗文" + }, + { + "type": "language", + "iso": "fr", + "name": "français", + "countries": [ + { + "_reference": "BE" + }, + { + "_reference": "CA" + }, + { + "_reference": "CH" + }, + { + "_reference": "FR" + }, + { + "_reference": "LU" + }, + { + "_reference": "MC" + } + ], + "am": "ፈረንሳይኛ", + "ar": "الفرنسية", + "be": "французскі", + "bg": "Френски", + "ca": "francès", + "cs": "Francouzština", + "cy": "Ffrangeg", + "da": "Fransk", + "de": "Französisch", + "el": "Γαλλικά", + "en": "French", + "es": "francés", + "et": "Prantsuse", + "eu": "frantsesera", + "fi": "ranska", + "fr": "français", + "ga": "Fraincis", + "he": "צרפתית", + "hi": "फ्रेंच", + "hr": "francuski", + "hu": "francia", + "id": "Perancis", + "is": "Franska", + "it": "francese", + "ja": "フランス語", + "ka": "ფრანგული", + "km": "ភាសាបារាំង", + "ko": "프랑스어", + "ky": "французча", + "lt": "Prancūzų", + "lv": "franču", + "mk": "француски", + "mn": "франц", + "mr": "फ्रेन्च", + "mt": "Franċiż", + "nb": "fransk", + "nl": "Frans", + "nn": "fransk", + "pl": "francuski", + "ps": "فرانسوي", + "pt": "francês", + "ro": "Franceză", + "ru": "французский", + "sk": "francúzsky", + "sl": "Francoščina", + "sq": "Frengjisht", + "sr": "Француски", + "sv": "franska", + "sw": "kifaransa", + "ta": "பிரெஞ்சு", + "te": "ఫ్రెంచ్", + "th": "ฝรั่งเศส", + "tr": "Fransızca", + "uk": "Французька", + "vi": "Tiếng Pháp", + "zh": "法文" + }, + { + "type": "language", + "iso": "ga", + "name": "Gaeilge", + "countries": [ + { + "_reference": "IE" + } + ], + "am": "አይሪሽ", + "ar": "الأيرلندية", + "bg": "Ирландски", + "ca": "irlandès", + "cs": "Irština", + "da": "Irsk", + "de": "Irisch", + "el": "Ιρλανδικά", + "en": "Irish", + "es": "irlandés", + "fi": "iiri", + "fr": "irlandais", + "ga": "Gaeilge", + "he": "אירית", + "hi": "आईरिश", + "hr": "irski", + "hu": "ír", + "id": "Irlandia", + "is": "Írska", + "it": "irlandese", + "ja": "アイルランド語", + "km": "ភាសាហ្កែលិគ", + "ko": "아일랜드어", + "mr": "ऐरिष", + "mt": "Irlandiż", + "nb": "irsk", + "nl": "Iers", + "nn": "irsk", + "pt": "irlandês", + "ru": "ирландский", + "sr": "Ирски", + "ta": "ஐரிஷ்", + "th": "ไอริช", + "tr": "İrlanda Dili", + "uk": "Ірландська", + "vi": "Tiếng Ai-len", + "zh": "爱尔兰文" + }, + { + "type": "language", + "iso": "gl", + "name": "galego", + "countries": [ + { + "_reference": "ES" + } + ], + "am": "ጋለጋኛ", + "ar": "الجاليكية", + "ca": "gallec", + "cs": "Haličština", + "da": "Galicisk", + "de": "Galizisch", + "en": "Galician", + "es": "gallego", + "fi": "galicia", + "fr": "galicien", + "gl": "galego", + "he": "גליציאנית", + "hi": "गैलिशियन्", + "hu": "galíciai", + "id": "Gallegan", + "is": "Gallegska", + "it": "galiziano", + "ja": "ガリシア語", + "km": "ភាសាហ្កាលីស៉ី", + "ko": "갈리시아어", + "mr": "गेलीशियन", + "mt": "Gallegjan", + "nb": "galicisk", + "nl": "Galicisch", + "nn": "galicisk", + "pt": "galego", + "ru": "галисийский", + "sv": "galiciska", + "ta": "கெலிஸியன்", + "th": "กะลีเชีย", + "tr": "Galiçya Dili", + "uk": "Галісійська", + "zh": "加利西亚文" + }, + { + "type": "language", + "iso": "gu", + "name": "ગુજરાતી", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ጉጃርቲኛ", + "ar": "الغوجاراتية", + "bg": "Гуджарати", + "ca": "gujarati", + "cs": "Gujaratština", + "da": "Gujaratisk", + "de": "Gujarati", + "en": "Gujarati", + "es": "gujarati", + "fr": "goudjrati", + "ga": "Gúisearáitis", + "gu": "ગુજરાતી", + "he": "גוג'ראטית", + "hi": "गुज़राती", + "hu": "gudzsaráti", + "id": "Gujarati", + "is": "Gújaratí", + "it": "gujarati", + "ja": "グジャラート語", + "km": "ភាសាហ្កុយ៉ារាទី", + "ko": "구자라트어", + "mr": "गुजराती", + "mt": "Guġarati", + "nb": "gujarati", + "nl": "Gujarati", + "nn": "gujarati", + "pt": "guzerate", + "ru": "гуджарати", + "sv": "gujarati", + "ta": "குஜராத்தி", + "th": "กูจาราติ", + "tr": "Gujarati", + "uk": "Гуяраті", + "zh": "古加拉提文" + }, + { + "type": "language", + "iso": "gv", + "name": "Gaelg", + "countries": [ + { + "_reference": "GB" + } + ], + "ar": "المنكية", + "cs": "Manština", + "da": "Manx", + "de": "Manx", + "en": "Manx", + "es": "gaélico manés", + "fi": "manx", + "fr": "manx", + "ga": "Mannainis", + "gv": "Gaelg", + "id": "Manx", + "is": "Manx", + "it": "manx", + "ja": "マン島語", + "ko": "맹크스어", + "mt": "Manks", + "nb": "manx", + "nl": "Manx", + "nn": "manx", + "pt": "manx", + "ru": "мэнский", + "sv": "manx", + "th": "มานซ์", + "zh": "马恩岛文" + }, + { + "type": "language", + "iso": "he", + "name": "עברית", + "countries": [ + { + "_reference": "IL" + } + ], + "am": "ዕብራስጥ", + "ar": "العبرية", + "bg": "Иврит", + "ca": "hebreu", + "cs": "Hebrejština", + "da": "Hebraisk", + "de": "Hebräisch", + "el": "Εβραϊκά", + "en": "Hebrew", + "es": "hebreo", + "et": "Heebrea", + "fi": "heprea", + "fr": "hébreu", + "ga": "Eabhrais", + "he": "עברית", + "hi": "हिब्रीऊ", + "hr": "hebrejski", + "hu": "héber", + "id": "Ibrani", + "is": "Hebreska", + "it": "ebraico", + "ja": "ヘブライ語", + "km": "ភាសាហេប្រិ", + "ko": "히브리어", + "lt": "Hebrajų", + "lv": "ivrits", + "mr": "हेबृ", + "mt": "Ebrajk", + "nb": "hebraisk", + "nl": "Hebreeuws", + "nn": "hebraisk", + "pl": "hebrajski", + "ps": "عبري", + "pt": "hebraico", + "ro": "Ebraică", + "ru": "иврит", + "sk": "hebrejský", + "sl": "Hebrejščina", + "sr": "Хебрејски", + "sv": "hebreiska", + "ta": "ஹுப்ரு", + "th": "ฮิบรู", + "tr": "İbranice", + "uk": "Іврит", + "vi": "Tiếng Hê-brơ", + "zh": "希伯来文" + }, + { + "type": "language", + "iso": "hi", + "name": "हिंदी", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ሐንድኛ", + "ar": "الهندية", + "be": "хіндзі", + "bg": "Хинди", + "ca": "hindi", + "cs": "Hindština", + "cy": "Hindi", + "da": "Hindi", + "de": "Hindi", + "el": "Χίντι", + "en": "Hindi", + "es": "hindi", + "fi": "hindi", + "fr": "hindi", + "ga": "Hiondúis", + "he": "הינדית", + "hi": "हिंदी", + "hu": "hindi", + "id": "Hindi", + "is": "Hindí", + "it": "hindi", + "ja": "ヒンディー語", + "km": "ភាសាហ៉ិនឌី", + "ko": "힌디어", + "lt": "Hindi", + "mr": "हिन्दी", + "mt": "Ħindi", + "nb": "hindi", + "nl": "Hindi", + "nn": "hindi", + "pl": "hindi", + "ps": "هندي", + "pt": "hindi", + "ru": "хинди", + "sq": "Hindi", + "sr": "Хинди", + "sv": "hindi", + "ta": "இந்தி", + "te": "హిందీ", + "th": "ฮินดี", + "tr": "Hint Dili", + "uk": "Гінді", + "vi": "Tiếng Hin-đi", + "zh": "印地文" + }, + { + "type": "language", + "iso": "hr", + "name": "hrvatski", + "countries": [ + { + "_reference": "HR" + } + ], + "am": "ክሮሽያንኛ", + "ar": "الكرواتية", + "bg": "Хърватски", + "ca": "croat", + "cs": "Chorvatština", + "da": "Kroatisk", + "de": "Kroatisch", + "el": "Κροατικά", + "en": "Croatian", + "es": "croata", + "et": "Horvaadi", + "fi": "kroatia", + "fr": "croate", + "ga": "Cróitis", + "he": "קרואטית", + "hi": "क्रोएशन्", + "hr": "hrvatski", + "hu": "horvát", + "id": "Kroasia", + "is": "Króatíska", + "it": "croato", + "ja": "クロアチア語", + "ko": "크로아티아어", + "lt": "Kroatų", + "lv": "horvātu", + "mr": "क्रोयेषियन्", + "mt": "Kroat", + "nb": "kroatisk", + "nl": "Kroatisch", + "nn": "kroatisk", + "pl": "chorwacki", + "pt": "croata", + "ro": "Croată", + "ru": "хорватский", + "sk": "chorvátsky", + "sl": "Hrvaščina", + "sr": "Хрватски", + "sv": "kroatiska", + "ta": "கரோஷியன்", + "th": "โครเอเทีย", + "tr": "Hırvatça", + "uk": "Хорватська", + "vi": "Tiếng Crô-a-ti-a", + "zh": "克罗地亚文" + }, + { + "type": "language", + "iso": "hu", + "name": "magyar", + "countries": [ + { + "_reference": "HU" + } + ], + "am": "ሀንጋሪኛ", + "ar": "الهنغارية", + "bg": "Унгарски", + "ca": "hongarès", + "cs": "Maďarština", + "da": "Ungarsk", + "de": "Ungarisch", + "el": "Ουγγρικά", + "en": "Hungarian", + "es": "húngaro", + "et": "Ungari", + "fi": "unkari", + "fr": "hongrois", + "ga": "Ungáiris", + "he": "הונגרית", + "hi": "हंगेरी", + "hr": "mađarski", + "hu": "magyar", + "id": "Hungaria", + "is": "Ungverska", + "it": "ungherese", + "ja": "ハンガリー語", + "km": "ភាសាហុងគ្រី", + "ko": "헝가리어", + "lt": "Vengrų", + "lv": "ungāru", + "mr": "हंगेरियन्", + "mt": "Ungeriż", + "nb": "ungarsk", + "nl": "Hongaars", + "nn": "ungarsk", + "pl": "węgierski", + "pt": "húngaro", + "ro": "Maghiară", + "ru": "венгерский", + "sk": "maďarský", + "sl": "Madžarščina", + "sr": "Мађарски", + "sv": "ungerska", + "ta": "ஹங்கேரியன்", + "th": "ฮังการี", + "tr": "Macarca", + "uk": "Угорська", + "vi": "Tiếng Hung-ga-ri", + "zh": "匈牙利文" + }, + { + "type": "language", + "iso": "hy", + "name": "Հայերէն", + "countries": [ + { + "_reference": "AM" + } + ], + "am": "አርመናዊ", + "ar": "الأرمينية", + "bg": "Арменски", + "ca": "armeni", + "cs": "Arménština", + "da": "armensk", + "de": "Armenisch", + "el": "Αρμενικά", + "en": "Armenian", + "es": "armenio", + "fi": "armenia", + "fr": "arménien", + "ga": "Airméinis", + "he": "ארמנית", + "hi": "अरमेनियन्", + "hr": "armenski", + "hu": "örmény", + "hy": "Հայերէն", + "id": "Armenia", + "is": "Armenska", + "it": "armeno", + "ja": "アルメニア語", + "km": "ភាសាអារមេនី", + "ko": "아르메니아어", + "mr": "आर्मीनियन्", + "mt": "Armenjan", + "nb": "armensk", + "nl": "Armeens", + "nn": "armensk", + "ps": "ارمني", + "pt": "armênio", + "ru": "армянский", + "sr": "Арменски", + "sv": "armeniska", + "ta": "ஆர்மேனியன்", + "th": "อาร์มีเนีย", + "tr": "Ermenice", + "uk": "Вірменська", + "vi": "Tiếng Ác-mê-ni", + "zh": "亚美尼亚文" + }, + { + "type": "language", + "iso": "id", + "name": "Bahasa Indonesia", + "countries": [ + { + "_reference": "ID" + } + ], + "am": "እንዶኒሲኛ", + "ar": "الأندونيسية", + "bg": "Индонезийски", + "ca": "indonesi", + "cs": "Indonéština", + "da": "Indonesisk", + "de": "Indonesisch", + "el": "Ινδονησιακά", + "en": "Indonesian", + "es": "indonesio", + "fi": "indonesia", + "fr": "indonésien", + "ga": "Indinéisis", + "he": "אינדונזית", + "hi": "इन्डोनेशियन्", + "hu": "indonéz", + "id": "Bahasa Indonesia", + "is": "Indónesíska", + "it": "indonesiano", + "ja": "インドネシア語", + "km": "ភាសាឥណ្ឌូនេស៊ី", + "ko": "인도네시아어", + "mr": "इन्डोनेषियन", + "mt": "Indoneżjan", + "nb": "indonesisk", + "nl": "Indonesisch", + "nn": "indonesisk", + "pt": "indonésio", + "ru": "индонезийский", + "sr": "Индонезијски", + "sv": "indonesiska", + "ta": "இந்தோனேஷியன்", + "th": "อินโดนีเชีย", + "tr": "Endonezya Dili", + "uk": "Індонезійська", + "vi": "Tiếng In-đô-nê-xia", + "zh": "印度尼西亚文" + }, + { + "type": "language", + "iso": "is", + "name": "Íslenska", + "countries": [ + { + "_reference": "IS" + } + ], + "am": "አይስላንድኛ", + "ar": "الأيسلاندية", + "bg": "Исландски", + "ca": "islandès", + "cs": "Islandština", + "da": "Islandsk", + "de": "Isländisch", + "el": "Ισλανδικά", + "en": "Icelandic", + "es": "islandés", + "fi": "islanti", + "fr": "islandais", + "ga": "Íoslainnais", + "he": "איסלנדית", + "hi": "आईस्लैंडिक्", + "hr": "islandski", + "hu": "izlandi", + "id": "Icelandic", + "is": "Íslenska", + "it": "islandese", + "ja": "アイスランド語", + "km": "ភាសាអ៉ីស្លង់", + "ko": "아이슬란드어", + "mr": "आईसलान्डिक", + "mt": "Iżlandiż", + "nb": "islandsk", + "nl": "IJslands", + "nn": "islandsk", + "pt": "islandês", + "ru": "исландский", + "sr": "Исландски", + "sv": "isländska", + "ta": "ஐஸ்லென்டிக்", + "th": "ไอซ์แลนด์ดิค", + "tr": "İzlandaca", + "uk": "Ісландська", + "vi": "Tiếng Ai-xơ-len", + "zh": "冰岛文" + }, + { + "type": "language", + "iso": "it", + "name": "italiano", + "countries": [ + { + "_reference": "CH" + }, + { + "_reference": "IT" + } + ], + "am": "ጣሊያንኛ", + "ar": "الايطالية", + "be": "італьянскі", + "bg": "Италиански", + "ca": "italià", + "cs": "Italština", + "cy": "Eidaleg", + "da": "Italiensk", + "de": "Italienisch", + "el": "Ιταλικά", + "en": "Italian", + "es": "italiano", + "et": "Itaalia", + "eu": "italiera", + "fi": "italia", + "fr": "italien", + "ga": "Iodáilis", + "he": "איטלקית", + "hi": "ईटालियन्", + "hr": "talijanski", + "hu": "olasz", + "id": "Italian", + "is": "Ítalska", + "it": "italiano", + "ja": "イタリア語", + "ka": "იტალიური", + "km": "ភាសាអ៊ីតាលី", + "ko": "이탈리아어", + "ky": "италиянча", + "lt": "Italų", + "lv": "itāliešu", + "mk": "италијански", + "mn": "итали", + "mr": "इटालियन", + "mt": "Taljan", + "nb": "italiensk", + "nl": "Italiaans", + "nn": "italiensk", + "pl": "włoski", + "ps": "ایټالوي", + "pt": "italiano", + "ro": "Italiană", + "ru": "итальянский", + "sk": "taliansky", + "sl": "Italijanščina", + "sq": "Italisht", + "sr": "Италијански", + "sv": "italienska", + "sw": "kiitaliano", + "ta": "இத்தாலியன்", + "te": "ఇటాలియన్ భాష", + "th": "อิตาลี", + "tr": "İtalyanca", + "uk": "Італійська", + "vi": "Tiếng Ý", + "zh": "意大利文" + }, + { + "type": "language", + "iso": "ja", + "name": "日本語", + "countries": [ + { + "_reference": "JP" + } + ], + "am": "ጃፓንኛ", + "ar": "اليابانية", + "be": "японскі", + "bg": "Японски", + "ca": "japonès", + "cs": "Japonština", + "cy": "Siapaneeg", + "da": "Japansk", + "de": "Japanisch", + "el": "Ιαπωνικά", + "en": "Japanese", + "es": "japonés", + "et": "Jaapani", + "eu": "japoniera", + "fi": "japani", + "fr": "japonais", + "ga": "Seapáinis", + "he": "יפנית", + "hi": "जापानी", + "hr": "japanski", + "hu": "japán", + "id": "Japanese", + "is": "Japanska", + "it": "giapponese", + "ja": "日本語", + "ka": "იაპონური", + "km": "ភាសាជប៉ុន", + "ko": "일본어", + "ky": "япончо", + "lt": "Japonų", + "lv": "japāņu", + "mk": "јапонски", + "mn": "япон", + "mr": "जापनीस्", + "mt": "Ġappuniż", + "nb": "japansk", + "nl": "Japans", + "nn": "japansk", + "pl": "japoński", + "ps": "جاپانی", + "pt": "japonês", + "ro": "Japoneză", + "ru": "японский", + "sk": "japonský", + "sl": "Japonščina", + "sq": "Japanisht", + "sr": "Јапански", + "sv": "japanska", + "sw": "kijapani", + "ta": "ஜப்பானீஸ்", + "te": "జపాను భాష", + "th": "ญี่ปุ่น", + "tr": "Japonca", + "uk": "Японська", + "vi": "Tiếng Nhật", + "zh": "日文" + }, + { + "type": "language", + "iso": "ka", + "name": "ქართული", + "countries": [ + { + "_reference": "GE" + } + ], + "am": "ጊዮርጊያን", + "ar": "الجورجية", + "bg": "Грузински", + "ca": "georgià", + "cs": "Gruzínština", + "da": "Georgisk", + "de": "Georgisch", + "el": "Γεωργιανά", + "en": "Georgian", + "es": "georgiano", + "fi": "georgia", + "fr": "géorgien", + "ga": "Seoirsis", + "he": "גרוזינית", + "hi": "जॉर्जीयन्", + "hu": "grúz", + "id": "Georgian", + "is": "Georgíska", + "it": "georgiano", + "ja": "グルジア語", + "ka": "ქართული", + "km": "ភាសាហ្សកហ្ស៉ី", + "ko": "그루지야어", + "mr": "जार्जियन्", + "mt": "Ġorġjan", + "nb": "georgisk", + "nl": "Georgisch", + "nn": "georgisk", + "pt": "georgiano", + "ru": "грузинский", + "sr": "Грузијски", + "sv": "georgiska", + "ta": "கன்னடம்", + "th": "จอร์เจียน", + "tr": "Gürcüce", + "uk": "Грузинська", + "zh": "格鲁吉亚文" + }, + { + "type": "language", + "iso": "kk", + "name": "Қазақ", + "countries": [ + { + "_reference": "KZ" + } + ], + "am": "ካዛክኛ", + "ar": "الكازاخستانية", + "bg": "Казахски", + "ca": "kazakh", + "cs": "Kazachština", + "da": "Kasakhisk", + "de": "Kasachisch", + "en": "Kazakh", + "es": "kazajo", + "fi": "kazakki", + "fr": "kazakh", + "ga": "Casachais", + "he": "קזחית", + "hi": "कज़ाख", + "hu": "kazah", + "id": "Kazakh", + "is": "Kasakska", + "it": "kazako", + "ja": "カザフ語", + "kk": "Қазақ", + "km": "ភាសាកាហ្សាក់ស្តង់់", + "ko": "카자흐어", + "mr": "कज़क", + "mt": "Każak", + "nb": "kasakhisk", + "nl": "Kazachs", + "nn": "kasakhisk", + "pt": "cazaque", + "ru": "казахский", + "sv": "kazakstanska", + "ta": "கசாக்", + "th": "คาซัค", + "tr": "Kazak Dili", + "uk": "Казахська", + "zh": "哈萨克文" + }, + { + "type": "language", + "iso": "kl", + "name": "kalaallisut", + "countries": [ + { + "_reference": "GL" + } + ], + "am": "ካላሊሱትኛ", + "ar": "الكالاليست", + "ca": "greenlandès", + "cs": "Grónština", + "da": "Kalaallisut", + "de": "Grönländisch", + "en": "Kalaallisut", + "es": "groenlandés", + "fi": "kalaallisut; grönlanti", + "fr": "groenlandais", + "hi": "ग्रीनलैंडिक", + "hu": "grönlandi", + "id": "Kalaallisut", + "is": "Grænlenska", + "it": "kalaallisut", + "ja": "グリーンランド語", + "kl": "kalaallisut", + "ko": "그린랜드어", + "mr": "ग्रीनलान्डिक", + "mt": "Kalallisut", + "nl": "Kalaallisut", + "nn": "kalaallisut; grønlandsk", + "pt": "groenlandês", + "ru": "эскимосский (гренландский)", + "sv": "grönländska", + "ta": "கிரின்லென்டிக்", + "th": "กรีนแลนด์ดิค", + "tr": "Grönland Dili", + "uk": "Калааллісут", + "zh": "格陵兰文" + }, + { + "type": "language", + "iso": "km", + "name": "ភាសាខ្មែរ", + "countries": [ + { + "_reference": "KH" + } + ], + "am": "ክመርኛ", + "ar": "الخميرية", + "bg": "Кхмерски", + "ca": "cambodjà", + "cs": "Kambodžština", + "da": "Khmer", + "de": "Kambodschanisch", + "en": "Khmer", + "es": "jemer", + "fi": "khmer", + "fr": "khmer", + "hi": "कैम्बोडियन्", + "hr": "kmerski", + "hu": "kambodzsai", + "id": "Khmer", + "is": "Kmer", + "it": "khmer", + "ja": "クメール語", + "km": "ភាសាខ្មែរ", + "ko": "캄보디아어", + "mr": "कंबोडियन", + "mt": "Kmer", + "nb": "khmer", + "nl": "Khmer", + "nn": "khmer", + "pt": "cmer", + "ru": "кхмерский", + "sr": "Кмерски", + "sv": "kambodjanska; khmeriska", + "ta": "கம்போடியன்", + "th": "เขมร", + "tr": "Kamboçya Dili", + "uk": "Кхмерська", + "vi": "Tiếng Campuchia", + "zh": "柬埔寨文" + }, + { + "type": "language", + "iso": "kn", + "name": "ಕನ್ನಡ", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ካናዳኛ", + "ar": "الكانادا", + "ca": "kannada", + "cs": "Kannadština", + "da": "Kannaresisk", + "de": "Kannada", + "en": "Kannada", + "es": "canarés", + "fi": "kannada", + "fr": "kannada", + "ga": "Cannadais", + "hi": "कन्नड़", + "hu": "kannada", + "id": "Kannada", + "is": "Kannada", + "it": "kannada", + "ja": "カンナダ語", + "km": "ភាសាកិណាដា", + "kn": "ಕನ್ನಡ", + "ko": "카나다어", + "mr": "कन्नड", + "mt": "Kannada", + "nb": "kannada", + "nl": "Kannada", + "nn": "kannada", + "pt": "canarês", + "ru": "каннада", + "sv": "kanaresiska; kannada", + "ta": "கன்னடா", + "th": "กานาดา", + "tr": "Kannada", + "uk": "Каннада", + "vi": "Tiếng Kan-na-đa", + "zh": "埃纳德文" + }, + { + "type": "language", + "iso": "ko", + "name": "한국어", + "countries": [ + { + "_reference": "KR" + } + ], + "am": "ኮሪያኛ", + "ar": "الكورية", + "bg": "Корейски", + "ca": "coreà", + "cs": "Korejština", + "da": "Koreansk", + "de": "Koreanisch", + "el": "Κορεατικά", + "en": "Korean", + "es": "coreano", + "et": "Korea", + "fi": "korea", + "fr": "coréen", + "ga": "Cóiréis", + "he": "קוריאנית", + "hi": "कोरीयन्", + "hr": "korejski", + "hu": "koreai", + "id": "Korea", + "is": "Kóreska", + "it": "coreano", + "ja": "韓国語", + "km": "ភាសាកូរ៉េ", + "ko": "한국어", + "lt": "Korėjiečių", + "lv": "korejiešu", + "mr": "कोरियन्", + "mt": "Korejan", + "nb": "koreansk", + "nl": "Koreaans", + "nn": "koreansk", + "pl": "koreański", + "pt": "coreano", + "ro": "Coreeană", + "ru": "корейский", + "sk": "kórejský", + "sl": "Korejščina", + "sr": "Корејски", + "sv": "koreanska", + "ta": "கொரியன்", + "th": "เกาหลี", + "tr": "Korece", + "uk": "Корейська", + "vi": "Tiếng Hàn Quốc", + "zh": "韩文" + }, + { + "type": "language", + "iso": "ku", + "name": "kurdî", + "countries": [ + { + "_reference": "IQ" + }, + { + "_reference": "IR" + }, + { + "_reference": "SY" + }, + { + "_reference": "TR" + } + ], + "am": "ኩርድሽኛ", + "ar": "الكردية", + "bg": "Кюрдски", + "ca": "kurd", + "cs": "Kurdština", + "da": "Kurdisk", + "de": "Kurdisch", + "en": "Kurdish", + "es": "kurdo", + "fi": "kurdi", + "fr": "kurde", + "he": "כורדית", + "hi": "कुरदीश", + "hu": "kurd", + "id": "Kurdi", + "is": "Kúrdneska", + "it": "curdo", + "ja": "クルド語", + "km": "ភាសាឃឺដ", + "ko": "크르드어", + "mr": "कुर्दिष", + "mt": "Kurdiż", + "nb": "kurdisk", + "nl": "Koerdisch", + "nn": "kurdisk", + "ps": "کردي", + "pt": "curdo", + "ru": "курдский", + "sr": "Курдски", + "sv": "kurdiska", + "ta": "குர்திஷ்", + "th": "เคิด", + "tr": "Kürtçe", + "uk": "Курдська", + "zh": "库尔德文" + }, + { + "type": "language", + "iso": "kw", + "name": "kernewek", + "countries": [ + { + "_reference": "GB" + } + ], + "ar": "الكورنية", + "da": "Cornisk", + "de": "Kornisch", + "en": "Cornish", + "es": "córnico", + "fi": "korni", + "fr": "cornique", + "ga": "Cornais", + "id": "Cornish", + "is": "Korníska", + "it": "cornico", + "ja": "コーンウォール語", + "ko": "콘월어", + "kw": "kernewek", + "mt": "Korniku", + "nb": "kornisk", + "nl": "Cornish", + "nn": "kornisk", + "pt": "córnico", + "ru": "корнийский", + "sv": "korniska", + "th": "คอร์นิส", + "zh": "凯尔特文" + }, + { + "type": "language", + "iso": "ky", + "name": "Кыргыз", + "countries": [ + { + "_reference": "KG" + } + ], + "am": "ኪርጊዝኛ", + "ar": "القيرغستانية", + "bg": "Киргизски", + "ca": "kirguís", + "cs": "Kirgizština", + "da": "Kirgisisk", + "de": "Kirgisisch", + "en": "Kirghiz", + "es": "kirghiz", + "fi": "kirgiisi", + "fr": "kirghize", + "ga": "Cirgeasais", + "hi": "किरघिज़", + "hu": "kirgiz", + "id": "Kirghiz", + "is": "Kirgiska", + "it": "kirghiso", + "ja": "キルギス語", + "km": "ភាសាគៀរហ្គីស្តង់", + "ko": "키르기스어", + "mr": "किर्गिज़", + "mt": "Kirgiż", + "nb": "kirgisisk", + "nl": "Kirgizisch", + "nn": "kirgisisk", + "pt": "quirguiz", + "ru": "киргизский", + "sr": "Киргиски", + "sv": "kirgisiska", + "ta": "கிர்கிஷ்", + "th": "เคอร์กิซ", + "tr": "Kırgızca", + "uk": "Киргизька", + "zh": "吉尔吉斯文" + }, + { + "type": "language", + "iso": "ln", + "name": "lingála", + "countries": [ + { + "_reference": "CD" + }, + { + "_reference": "CG" + } + ], + "am": "ሊንጋላኛ", + "ar": "اللينجالا", + "ca": "lingala", + "cs": "Lingalština", + "da": "Lingala", + "de": "Lingala", + "en": "Lingala", + "es": "lingala", + "fi": "lingala", + "fr": "lingala", + "hi": "लिंगाला", + "hu": "lingala", + "id": "Lingala", + "is": "Lingala", + "it": "lingala", + "ja": "リンガラ語", + "ko": "링갈라어", + "mr": "लिंगाला", + "mt": "Lingaljan", + "nb": "lingala", + "nl": "Lingala", + "nn": "lingala", + "pt": "lingala", + "ru": "лингала", + "sv": "lingala", + "ta": "லிங்காலா", + "th": "ลิงกาลา", + "tr": "Lingala", + "uk": "Лінгала", + "zh": "林加拉文" + }, + { + "type": "language", + "iso": "lo", + "name": "ລາວ", + "countries": [ + { + "_reference": "LA" + } + ], + "am": "ላውስኛ", + "ar": "اللاوية", + "bg": "Лаоски", + "ca": "laosià", + "cs": "Laoština", + "da": "Lao", + "de": "Laotisch", + "en": "Lao", + "es": "laosiano", + "fi": "lao", + "fr": "lao", + "ga": "Laosais", + "hi": "लाओथीयन्", + "hu": "laoszi", + "id": "Lao", + "is": "Laó", + "it": "lao", + "ja": "ラオ語", + "km": "ភាសាឡាវ", + "ko": "라오어", + "mr": "लाओतियन्", + "mt": "Lao", + "nb": "laotisk", + "nl": "Lao", + "nn": "laotisk", + "pt": "laosiano", + "ru": "лаосский", + "sv": "laotiska", + "ta": "லோத்தியன்", + "th": "ลาว", + "tr": "Laos Dili", + "uk": "Лаоська", + "vi": "Tiếng Lào", + "zh": "老挝文" + }, + { + "type": "language", + "iso": "lt", + "name": "Lietuvių", + "countries": [ + { + "_reference": "LT" + } + ], + "am": "ሊቱአኒያን", + "ar": "اللتوانية", + "bg": "Литовски", + "ca": "lituà", + "cs": "Litevština", + "da": "Litauisk", + "de": "Litauisch", + "el": "Λιθουανικά", + "en": "Lithuanian", + "es": "lituano", + "et": "Leedu", + "fi": "liettua", + "fr": "lituanien", + "ga": "Liotuáinis", + "he": "ליטאית", + "hi": "लिथुनियन्", + "hr": "litvanski", + "hu": "litván", + "id": "Lithuania", + "is": "Litháíska", + "it": "lituano", + "ja": "リトアニア語", + "km": "ភាសាលីទុយអានី", + "ko": "리투아니아어", + "lt": "Lietuvių", + "lv": "lietuviešu", + "mr": "लिथुआनियन्", + "mt": "Litwanjan", + "nb": "litauisk", + "nl": "Litouws", + "nn": "litauisk", + "pl": "litewski", + "pt": "lituano", + "ro": "Lituaniană", + "ru": "литовский", + "sk": "litovský", + "sl": "Litovščina", + "sr": "Литвански", + "sv": "litauiska", + "ta": "லுத்தேனியன்", + "th": "ลิธัวเนีย", + "tr": "Litvanya Dili", + "uk": "Литовська", + "vi": "Tiếng Lít-va", + "zh": "立陶宛文" + }, + { + "type": "language", + "iso": "lv", + "name": "latviešu", + "countries": [ + { + "_reference": "LV" + } + ], + "am": "ላትቪያን", + "ar": "اللاتفية", + "bg": "Латвийски", + "ca": "letó", + "cs": "Lotyština", + "da": "Lettisk", + "de": "Lettisch", + "el": "Λετονικά", + "en": "Latvian", + "es": "letón", + "et": "Läti", + "fi": "latvia", + "fr": "letton", + "ga": "Laitvis", + "he": "לטבית", + "hi": "लाटवियन् (लेट्टीश)", + "hr": "latvijski", + "hu": "lett", + "id": "Latvian", + "is": "Lettneska", + "it": "lettone", + "ja": "ラトビア語", + "km": "ភាសាឡាតវីយ៉ា", + "ko": "라트비아어", + "lt": "Latvių", + "lv": "latviešu", + "mr": "लाट्वियन् (लेट्टिष)", + "mt": "Latvjan (Lettix)", + "nb": "latvisk", + "nl": "Letlands", + "nn": "latvisk", + "pl": "łotewski", + "pt": "letão", + "ro": "Letonă", + "ru": "латышский", + "sk": "lotyšský", + "sl": "Letonščina", + "sr": "Летонски", + "sv": "lettiska", + "ta": "லேட்வியன் (லேட்டிஷ்)", + "th": "แลตเวีย (เลททิสช์)", + "tr": "Letonya Dili", + "uk": "Латвійська", + "vi": "Tiếng Lát-vi-a", + "zh": "拉脫維亞文" + }, + { + "type": "language", + "iso": "mk", + "name": "македонски", + "countries": [ + { + "_reference": "MK" + } + ], + "am": "ማከዶኒኛ", + "ar": "المقدونية", + "bg": "Македонски", + "ca": "macedoni", + "cs": "Makedonština", + "da": "Makedonsk", + "de": "Mazedonisch", + "el": "Σλαβομακεδονικά", + "en": "Macedonian", + "es": "macedonio", + "fi": "makedonia", + "fr": "macédonien", + "ga": "Macadóinis", + "he": "מקדונית", + "hi": "मैसेडोनियन्", + "hr": "makedonski", + "hu": "macedón", + "id": "Macedonian", + "is": "Makedónska", + "it": "macedone", + "ja": "マケドニア語", + "km": "ភាសាម៉ាសេដូនី", + "ko": "마케도니아어", + "mk": "македонски", + "mr": "मसीडोनियन्", + "mt": "Maċedonjan", + "nb": "makedonsk", + "nl": "Macedonisch", + "nn": "makedonsk", + "ps": "مقدوني", + "pt": "macedônio", + "ru": "македонский", + "sr": "Македонски", + "sv": "makedonska", + "ta": "மெக்கடோனியன்", + "th": "แมซีโดเนีย", + "tr": "Makedonca", + "uk": "Македонська", + "vi": "Tiếng Ma-xê-đô-ni-a", + "zh": "马其顿文" + }, + { + "type": "language", + "iso": "ml", + "name": "മലയാളം", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ማላያላምኛ", + "ar": "الماليالام", + "bg": "Малаялам", + "ca": "malaialam", + "cs": "Malabarština", + "da": "Malayalam", + "de": "Malayalam", + "en": "Malayalam", + "es": "malayalam", + "fi": "malajalam", + "fr": "malayalam", + "ga": "Mailéalaimis", + "hi": "मलयालम", + "hu": "malajalam", + "id": "Malayalam", + "is": "Malajalam", + "it": "malayalam", + "ja": "マラヤーラム語", + "km": "ភាសាម៉ាឡាឡាយ៉ាន", + "ko": "말라얄람어", + "mr": "मलियालम", + "mt": "Malajalam", + "nb": "malayalam", + "nl": "Malayalam", + "nn": "malayalam", + "pt": "malaiala", + "ru": "малаялам", + "sv": "malayalam", + "ta": "மலையாளம்", + "th": "มาลายาลัม", + "tr": "Malayalam", + "uk": "Малайялам", + "zh": "马来亚拉姆文" + }, + { + "type": "language", + "iso": "mn", + "name": "Монгол хэл", + "countries": [ + { + "_reference": "MN" + } + ], + "am": "ሞንጎላዊኛ", + "ar": "المنغولية", + "bg": "Монголски", + "ca": "mongol", + "cs": "Mongolština", + "da": "Mongolsk", + "de": "Mongolisch", + "el": "Μογγολικά", + "en": "Mongolian", + "es": "mongol", + "fi": "mongoli", + "fr": "mongol", + "ga": "Mongóilis", + "he": "מונגולית", + "hi": "मोंगोलियन", + "hr": "mongolski", + "hu": "mongol", + "id": "Mongolian", + "is": "Mongólska", + "it": "mongolo", + "ja": "モンゴル語", + "km": "ភាសាម៉ុងហ្គោលី", + "ko": "몽골어", + "mr": "मंगोलियन्", + "mt": "Mongoljan", + "nb": "mongolsk", + "nl": "Mongools", + "nn": "mongolsk", + "ps": "مغولي", + "pt": "mongol", + "ru": "монгольский", + "sr": "Монголски", + "sv": "mongoliska", + "ta": "மங்கோலியன்", + "th": "มองโกล", + "tr": "Moğol Dili", + "uk": "Монгольська", + "vi": "Tiếng Mông Cổ", + "zh": "蒙古文" + }, + { + "type": "language", + "iso": "mr", + "name": "मराठी", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ማራዚኛ", + "ar": "الماراثى", + "ca": "marathi", + "cs": "Marathi", + "da": "Marathisk", + "de": "Marathi", + "en": "Marathi", + "es": "marathi", + "fi": "marathi", + "fr": "marathe", + "ga": "Maraitis", + "he": "מארתית", + "hi": "मराठी", + "hu": "marati", + "id": "Marathi", + "is": "Maratí", + "it": "marathi", + "ja": "マラーティー語", + "km": "ភាសាម៉ារាធី", + "ko": "마라티어", + "mr": "मराठी", + "mt": "Marati", + "nb": "marathi", + "nl": "Marathi", + "nn": "marathi", + "pt": "marata", + "ru": "маратхи", + "sv": "marathi", + "ta": "மராத்தி", + "th": "มาราที", + "tr": "Marathi", + "uk": "Маратхі", + "zh": "马拉地文" + }, + { + "type": "language", + "iso": "ms", + "name": "Bahasa Melayu", + "countries": [ + { + "_reference": "BN" + }, + { + "_reference": "MY" + } + ], + "am": "ማላይኛ", + "ar": "لغة الملايو", + "bg": "Малайски", + "ca": "malai", + "cs": "Malajština", + "da": "Malay", + "de": "Malaiisch", + "en": "Malay", + "es": "malayo", + "fi": "malaiji", + "fr": "malais", + "hi": "मलय", + "hu": "maláj", + "id": "Malay", + "is": "Malaíska", + "it": "malese", + "ja": "マレー語", + "km": "ភាសាម៉ាលេស៉ី", + "ko": "말레이어", + "mr": "मलय", + "ms": "Bahasa Melayu", + "mt": "Malajan", + "nb": "malayisk", + "nl": "Maleis", + "nn": "malayisk", + "ps": "ملایا", + "pt": "malaio", + "ru": "малайский", + "sv": "malajiska", + "ta": "மலாய்", + "th": "มลายู", + "tr": "Malay", + "uk": "Малайська", + "vi": "Tiếng Ma-lay-xi-a", + "zh": "马来文" + }, + { + "type": "language", + "iso": "mt", + "name": "Malti", + "countries": [ + { + "_reference": "MT" + } + ], + "am": "ማልቲስኛ", + "ar": "المالطية", + "bg": "Малтийски", + "ca": "maltès", + "cs": "Maltština", + "da": "Maltesisk", + "de": "Maltesisch", + "el": "Μαλτεζικά", + "en": "Maltese", + "es": "maltés", + "fi": "malta", + "fr": "maltais", + "ga": "Maltais", + "he": "מלטזית", + "hi": "मालटिस्", + "hr": "malteški", + "hu": "máltai", + "id": "Maltese", + "is": "Maltneska", + "it": "maltese", + "ja": "マルタ語", + "km": "ភាសាម៉ាល់តា", + "ko": "몰타어", + "mr": "मालतीस्", + "mt": "Malti", + "nb": "maltesisk", + "nl": "Maltees", + "nn": "maltesisk", + "pl": "maltański", + "pt": "maltês", + "ru": "мальтийский", + "sv": "maltesiska", + "ta": "மால்டிஸ்", + "th": "มอลตา", + "tr": "Malta Dili", + "uk": "Мальтійська", + "zh": "马耳他文" + }, + { + "type": "language", + "iso": "nb", + "name": "bokmål", + "countries": [ + { + "_reference": "NO" + } + ], + "ar": "البوكمالية النرويجية", + "da": "Norsk Bokmål", + "de": "Norwegisch Bokmål", + "en": "Norwegian Bokmål", + "es": "bokmal noruego", + "fi": "norja (bokmål)", + "fr": "bokmål norvégien", + "ga": "Ioruais Bokmål", + "he": "נורבגית שפת הספר (בוקמול)", + "id": "Norwegian Bokmål", + "is": "Norskt bókmál", + "ja": "ノルウェー語 (ブークモール)", + "ko": "보크말 노르웨이어", + "mt": "Bokmahal Norveġiż", + "nb": "bokmål", + "nl": "Noors - Bokmål", + "nn": "bokmål", + "pt": "bokmål norueguês", + "ru": "норвежский", + "sv": "norska (bokmål)", + "th": "นอร์เวย์บอกมอล", + "tr": "Norveç Kitap Dili", + "zh": "挪威博克马尔文" + }, + { + "type": "language", + "iso": "nl", + "name": "Nederlands", + "countries": [ + { + "_reference": "BE" + }, + { + "_reference": "NL" + } + ], + "am": "ደች", + "ar": "الهولندية", + "bg": "Холандски", + "ca": "neerlandès", + "da": "Hollandsk", + "de": "Niederländisch", + "el": "Ολλανδικά", + "en": "Dutch", + "et": "Hollandi", + "fi": "hollanti", + "fr": "néerlandais", + "ga": "Ollainnais", + "he": "הולנדית", + "hi": "डच्", + "hr": "nizozemski", + "hu": "holland", + "id": "Belanda", + "is": "Hollenska", + "it": "olandese", + "ja": "オランダ語", + "km": "ភាសាហុល្លង់", + "ko": "네덜란드어", + "lt": "Olandų", + "lv": "holandiešu", + "mr": "डच", + "mt": "Olandiż", + "nb": "nederlandsk", + "nl": "Nederlands", + "nn": "nederlandsk", + "pl": "niderlandzki", + "pt": "holandês", + "ro": "Olandeză", + "ru": "голландский", + "sk": "holandský", + "sl": "Nizozemščina", + "sr": "Холандски", + "ta": "டச்சு", + "th": "ฮอลันดา", + "tr": "Hollanda Dili", + "uk": "Голландська", + "vi": "Tiếng Hà Lan", + "zh": "荷兰文" + }, + { + "type": "language", + "iso": "nn", + "name": "nynorsk", + "countries": [ + { + "_reference": "NO" + } + ], + "ar": "النينورسك النرويجي", + "da": "Nynorsk", + "de": "Norwegisch Nynorsk", + "en": "Norwegian Nynorsk", + "es": "nynorsk noruego", + "fi": "norja (nynorsk)", + "fr": "nynorsk norvégien", + "ga": "Ioruais Nynorsk", + "he": "נורבגית חדשה (נינורשק)", + "id": "Norwegian Nynorsk", + "is": "Nýnorska", + "it": "norvegese nynorsk", + "ja": "ノルウェー語 (ニーノシュク)", + "ko": "뉘노르스크 노르웨이어", + "mt": "Ninorsk Norveġiż", + "nb": "nynorsk", + "nl": "Noors - Nynorsk", + "nn": "nynorsk", + "pt": "nynorsk norueguês", + "ru": "новонорвежский", + "sv": "nynorska", + "th": "นอร์เวย์ไนนอรส์ก", + "tr": "Norveççe Nynorsk", + "zh": "挪威尼诺斯克文" + }, + { + "type": "language", + "iso": "om", + "name": "Oromoo", + "countries": [ + { + "_reference": "ET" + }, + { + "_reference": "KE" + } + ], + "am": "ኦሮምኛ", + "ar": "الأورومو", + "ca": "oromo (afan)", + "cs": "Oromo (Afan)", + "da": "Oromo", + "de": "Oromo", + "en": "Oromo", + "es": "oromo", + "fi": "oromo", + "fr": "galla", + "hi": "ओरोमो (अफ़ान)", + "hu": "oromói", + "id": "Oromo", + "is": "Órómó", + "it": "oromo", + "ja": "オロモ語", + "ko": "오로모어 (아판)", + "mr": "ओरोमो (अफान)", + "mt": "Oromo (Afan)", + "nb": "oromo", + "nl": "Oromo", + "nn": "oromo", + "om": "Oromoo", + "pt": "oromo", + "ru": "оромо", + "sv": "oromo", + "ta": "ஒரோம (அபன்)", + "th": "โอโรโม (อาฟาน)", + "tr": "Oromo (Afan)", + "uk": "Оромо", + "zh": "阿曼文" + }, + { + "type": "language", + "iso": "or", + "name": "ଓଡ଼ିଆ", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ኦሪያኛ", + "ar": "الأورييا", + "ca": "oriya", + "cs": "Oriya", + "da": "Oriya", + "de": "Orija", + "en": "Oriya", + "es": "oriya", + "fi": "orija", + "fr": "oriya", + "hi": "उड़िया", + "hu": "orija", + "id": "Oriya", + "is": "Óría", + "it": "oriya", + "ja": "オリヤー語", + "km": "ភាសាអូរីយ៉ា", + "ko": "오리야어", + "mr": "ओरिया", + "mt": "Orija", + "nb": "oriya", + "nl": "Oriya", + "nn": "oriya", + "pt": "oriya", + "ru": "ория", + "sv": "oriya", + "ta": "ஒரியா", + "th": "โอริยา", + "tr": "Oriya", + "uk": "Орія", + "zh": "欧里亚文" + }, + { + "type": "language", + "iso": "pa", + "name": "ਪੰਜਾਬੀ", + "countries": [ + { + "_reference": "IN" + }, + { + "_reference": "PK" + } + ], + "am": "ፓንጃቢኛ", + "ar": "البنجابية", + "bg": "Пенджабски", + "ca": "panjabi", + "cs": "Paňdžábština", + "da": "Punjabi", + "de": "Pandschabisch", + "en": "Punjabi", + "es": "punjabí", + "fi": "pandžabi", + "fr": "pendjabi", + "ga": "Puinseaibis", + "hi": "पंजाबी", + "hu": "pandzsábi", + "id": "Punjabi", + "is": "Púnjabí", + "it": "punjabi", + "ja": "パンジャブ語", + "km": "ភាសាពូនយ៉ាប៊ី", + "ko": "펀잡어", + "mr": "पंजाबी", + "mt": "Punġabi", + "nb": "panjabi", + "nl": "Punjabi", + "nn": "panjabi", + "pa": "ਪੰਜਾਬੀ", + "pt": "panjabi", + "ru": "панджаби (пенджаби)", + "sv": "punjabi", + "ta": "பஞ்சாபி", + "th": "ปัญจาป", + "tr": "Pencap Dili", + "uk": "Панджабі", + "zh": "旁遮普文" + }, + { + "type": "language", + "iso": "pl", + "name": "polski", + "countries": [ + { + "_reference": "PL" + } + ], + "am": "ፖሊሽ", + "ar": "البولندية", + "bg": "Полски", + "ca": "polonès", + "cs": "Polština", + "da": "Polsk", + "de": "Polnisch", + "el": "Πολωνικά", + "en": "Polish", + "es": "polaco", + "et": "Poola", + "fi": "puola", + "fr": "polonais", + "ga": "Polainnis", + "he": "פולנית", + "hi": "पॉलिश", + "hr": "poljski", + "hu": "lengyel", + "id": "Polish", + "is": "Pólska", + "it": "polacco", + "ja": "ポーランド語", + "km": "ភាសាប៉ូឡូញ", + "ko": "폴란드어", + "lt": "Lenkų", + "lv": "poļu", + "mr": "पोलिष", + "mt": "Pollakk", + "nb": "polsk", + "nl": "Pools", + "nn": "polsk", + "pl": "polski", + "ps": "پولنډي", + "pt": "polonês", + "ro": "Poloneză", + "ru": "польский", + "sk": "poľský", + "sl": "Poljščina", + "sr": "Пољски", + "sv": "polska", + "ta": "போலிஷ்", + "th": "โปแลนด์", + "tr": "Polonya Dili", + "uk": "Польська", + "vi": "Tiếng Ba Lan", + "zh": "波兰文" + }, + { + "type": "language", + "iso": "ps", + "name": "پښتو", + "countries": [ + { + "_reference": "AF" + } + ], + "am": "ፑሽቶኛ", + "ar": "البشتونية", + "bg": "Пущу", + "ca": "paixto", + "cs": "Pashto (Pushto)", + "da": "Pashto (Pushto)", + "de": "Afghanisch (Paschtu)", + "es": "pashto", + "fi": "paštu", + "fr": "pachto", + "ga": "Paisteo", + "he": "פאשטו", + "hi": "पॉशतो (पुशतो)", + "hu": "pastu (afgán)", + "id": "Pashto (Pushto)", + "is": "Pastú", + "it": "pashto", + "ja": "パシュトゥー語", + "ko": "파시토어 (푸시토)", + "mr": "पष्टो (पुष्टो)", + "mt": "Paxtun", + "nb": "pashto", + "nl": "Pashto", + "nn": "pashto", + "ps": "پښتو", + "pt": "pashto (pushto)", + "ru": "пашто (пушту)", + "sv": "pashto; afghanska", + "ta": "பேஷ்டோ (புஷ்டோ)", + "th": "พาสช์โต (พุสช์โต)", + "tr": "Peştun Dili", + "uk": "Пашто", + "zh": "普什图文" + }, + { + "type": "language", + "iso": "pt", + "name": "português", + "countries": [ + { + "_reference": "BR" + }, + { + "_reference": "PT" + } + ], + "af": "Portugees", + "am": "ፖርቱጋሊኛ", + "ar": "البرتغالية", + "be": "партугальскі", + "bg": "Португалски", + "ca": "portuguès", + "cs": "Portugalština", + "cy": "Portiwgaleg", + "da": "Portugisisk", + "de": "Portugiesisch", + "el": "Πορτογαλικά", + "en": "Portuguese", + "es": "portugués", + "et": "Portugali", + "eu": "portugalera", + "fi": "portugali", + "fr": "portugais", + "ga": "Portaingéilis", + "he": "פורטוגזית", + "hi": "पुर्तुगी", + "hr": "portugalski", + "hu": "portugál", + "id": "Portugis", + "is": "Portúgalska", + "it": "portoghese", + "ja": "ポルトガル語", + "ka": "პორტუგალიური", + "km": "ភាសាព័រទុយហ្កាល់", + "ko": "포르투칼어", + "ky": "португалча", + "lt": "Portugalų", + "lv": "portugāļu", + "mk": "португалски", + "mn": "португали", + "mr": "पोर्चुगीस्", + "mt": "Portugiż", + "nb": "portugisisk", + "nl": "Portugees", + "nn": "portugisisk", + "pl": "portugalski", + "ps": "پورتګالي", + "pt": "português", + "ro": "Portugheză", + "ru": "португальский", + "sk": "portugalský", + "sl": "Portugalščina", + "sq": "Portugeze", + "sr": "Португалски", + "sv": "portugisiska", + "sw": "kireno", + "ta": "போர்த்துகீஸ்", + "te": "పొర్చుగల్ భాష", + "th": "โปรตุเกส", + "tr": "Portekizce", + "uk": "Португальська", + "vi": "Tiếng Bồ Đào Nha", + "zh": "葡萄牙文" + }, + { + "type": "language", + "iso": "ro", + "name": "Română", + "countries": [ + { + "_reference": "RO" + } + ], + "am": "ሮማኒያን", + "ar": "الرومانية", + "bg": "Румънски", + "ca": "romanès", + "cs": "Rumunština", + "da": "Rumænsk", + "de": "Rumänisch", + "el": "Ρουμανικά", + "en": "Romanian", + "es": "rumano", + "et": "Rumeenia", + "fi": "romania", + "fr": "roumain", + "ga": "Romáinis", + "he": "רומנית", + "hi": "रूमानीयन्", + "hr": "rumunjski", + "hu": "román", + "id": "Romanian", + "is": "Rúmenska", + "it": "rumeno", + "ja": "ルーマニア語", + "km": "ភាសារូម៉ានី", + "ko": "루마니아어", + "lt": "Rumunų", + "lv": "rumāņu", + "mr": "रोमानियन्", + "mt": "Rumen", + "nb": "rumensk", + "nl": "Roemeens", + "nn": "rumensk", + "pl": "rumuński", + "pt": "romeno", + "ro": "Română", + "ru": "румынский", + "sk": "rumunský", + "sl": "Romunščina", + "sr": "Румунски", + "sv": "rumänska", + "ta": "ரோமேனியன்", + "th": "โรมัน", + "tr": "Romence", + "uk": "Румунська", + "vi": "Tiếng Ru-ma-ni", + "zh": "罗马尼亚文" + }, + { + "type": "language", + "iso": "ru", + "name": "русский", + "countries": [ + { + "_reference": "RU" + }, + { + "_reference": "UA" + } + ], + "af": "Russies", + "am": "ራሽኛ", + "ar": "الروسية", + "be": "рускі", + "bg": "Руски", + "ca": "rus", + "cs": "Ruština", + "cy": "Rwsieg", + "da": "Russisk", + "de": "Russisch", + "el": "Ρωσικά", + "en": "Russian", + "es": "ruso", + "et": "Vene", + "eu": "errusiera", + "fi": "venäjä", + "fr": "russe", + "ga": "Rúisis", + "he": "רוסית", + "hi": "रुसी", + "hr": "ruski", + "hu": "orosz", + "id": "Russian", + "is": "Rússneska", + "it": "russo", + "ja": "ロシア語", + "ka": "რუსული", + "km": "ភាសាรัរូស្ស៉ី", + "ko": "러시아어", + "ky": "орусча", + "lt": "Rusų", + "lv": "krievu", + "mk": "руски", + "mn": "орос", + "mr": "रष्यन्", + "mt": "Russu", + "nb": "russisk", + "nl": "Russisch", + "nn": "russisk", + "pl": "rosyjski", + "ps": "روسي", + "pt": "russo", + "ro": "Rusă", + "ru": "русский", + "sk": "ruský", + "sl": "Ruščina", + "sq": "Rusisht", + "sr": "Руски", + "sv": "ryska", + "sw": "kirusi", + "ta": "ரஷியன்", + "te": "రష్యన్ భాష", + "th": "รัสเซีย", + "tr": "Rusça", + "uk": "Російська", + "vi": "Tiếng Nga", + "zh": "俄文" + }, + { + "type": "language", + "iso": "sa", + "name": "संस्कृत", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ሳንስክሪትኛ", + "ar": "السنسكريتية", + "bg": "Санкскритски", + "ca": "sànscrit", + "cs": "Sanskrt", + "da": "Sanskrit", + "de": "Sanskrit", + "en": "Sanskrit", + "es": "sánscrito", + "fi": "sanskrit", + "fr": "sanskrit", + "ga": "Sanscrait", + "he": "סנסקרית", + "hi": "संस्कृत", + "hu": "szanszkrit", + "id": "Sanskrit", + "is": "Sanskrít", + "it": "sanscrito", + "ja": "サンスクリット語", + "km": "ភាសាសំស្ក្រឹត", + "ko": "산스크리트어", + "mr": "संस्कृत", + "mt": "Sanskrit", + "nb": "sanskrit", + "nl": "Sanskrit", + "nn": "sanskrit", + "ps": "سنسکریټ", + "pt": "sânscrito", + "ru": "санскрит", + "sr": "Санскрит", + "sv": "sanskrit", + "ta": "சமஸ்கிருதம்", + "th": "สันสกฤต", + "tr": "Sanskritçe", + "uk": "Санскрит", + "vi": "Tiếng Phạn", + "zh": "梵文" + }, + { + "type": "language", + "iso": "sk", + "name": "slovenský", + "countries": [ + { + "_reference": "SK" + } + ], + "am": "ስሎቫክኛ", + "ar": "السلوفاكية", + "bg": "Словашки", + "ca": "eslovac", + "cs": "Slovenština", + "da": "Slovakisk", + "de": "Slowakisch", + "el": "Σλοβακικά", + "en": "Slovak", + "es": "eslovaco", + "et": "Slovaki", + "fi": "slovakki", + "fr": "slovaque", + "ga": "Slóvacais", + "he": "סלובקית", + "hi": "स्लोवाक्", + "hr": "slovački", + "hu": "szlovák", + "id": "Slovak", + "is": "Slóvakíska", + "it": "slovacco", + "ja": "スロバキア語", + "km": "ភាសាស្លូវ៉ាគី", + "ko": "슬로바키아어", + "lt": "Slovakų", + "lv": "slovāku", + "mr": "स्लोवाक", + "mt": "Slovakk", + "nb": "slovakisk", + "nl": "Slowaaks", + "nn": "slovakisk", + "pl": "słowacki", + "pt": "eslovaco", + "ro": "Slovacă", + "ru": "словацкий", + "sk": "slovenský", + "sl": "Slovaščina", + "sr": "Словачки", + "sv": "slovakiska", + "ta": "ஸ்லோவெக்", + "th": "สโลวัค", + "tr": "Slovakça", + "uk": "Словацька", + "vi": "Tiếng Xlô-vác", + "zh": "斯洛伐克文" + }, + { + "type": "language", + "iso": "sl", + "name": "Slovenščina", + "countries": [ + { + "_reference": "SI" + } + ], + "am": "ስሎቪኛ", + "ar": "السلوفانية", + "bg": "Словенски", + "ca": "eslovè", + "cs": "Slovinština", + "da": "Slovensk", + "de": "Slowenisch", + "el": "Σλοβενικά", + "en": "Slovenian", + "es": "esloveno", + "et": "Sloveeni", + "fi": "sloveeni", + "fr": "slovène", + "ga": "Slóvéinis", + "he": "סלובנית", + "hi": "स्लोवेनियन्", + "hr": "slovenski", + "hu": "szlovén", + "id": "Slovenian", + "is": "Slóvenska", + "it": "sloveno", + "ja": "スロベニア語", + "km": "ភាសាស្លូវ៉ានី", + "ko": "슬로베니아어", + "lt": "Slovėnų", + "lv": "slovēņu", + "mr": "स्लोवेनियन्", + "mt": "Sloven", + "nb": "slovensk", + "nl": "Sloveens", + "nn": "slovensk", + "pl": "słoweński", + "pt": "eslovênio", + "ro": "Slovenă", + "ru": "словенский", + "sk": "slovinský", + "sl": "Slovenščina", + "sr": "Словеначки", + "sv": "slovenska", + "ta": "ஸ்லோவினேயின்", + "th": "สโลเวเนีย", + "tr": "Slovence", + "uk": "Словенська", + "vi": "Tiếng Xlô-ven", + "zh": "斯洛文尼亚文" + }, + { + "type": "language", + "iso": "so", + "name": "Soomaali", + "countries": [ + { + "_reference": "DJ" + }, + { + "_reference": "ET" + }, + { + "_reference": "KE" + }, + { + "_reference": "SO" + } + ], + "am": "ሱማልኛ", + "ar": "الصومالية", + "bg": "Сомалийски", + "ca": "somali", + "cs": "Somálština", + "da": "Somalisk", + "de": "Somali", + "en": "Somali", + "es": "somalí", + "fi": "somali", + "fr": "somali", + "ga": "Somálais", + "he": "סומלית", + "hi": "सोमाली", + "hu": "szomáli", + "id": "Somali", + "is": "Sómalska", + "it": "somalo", + "ja": "ソマリ語", + "km": "ភាសាសូម៉ាលី", + "ko": "소말리아어", + "mr": "सोमाली", + "mt": "Somali", + "nl": "Somalisch", + "nn": "somali", + "pt": "somali", + "ru": "сомали", + "so": "Soomaali", + "sv": "somaliska", + "ta": "சோமாலி", + "th": "โซมาลี", + "tr": "Somali Dili", + "uk": "Сомалі", + "vi": "Tiếng Xô-ma-li", + "zh": "索马里文" + }, + { + "type": "language", + "iso": "sq", + "name": "shqipe", + "countries": [ + { + "_reference": "AL" + } + ], + "am": "ልቤኒኛ", + "ar": "الألبانية", + "bg": "Албански", + "ca": "albanès", + "cs": "Albánština", + "da": "albansk", + "de": "Albanisch", + "el": "Αλβανικά", + "en": "Albanian", + "es": "albanés", + "fi": "albania", + "fr": "albanais", + "ga": "Albáinis", + "he": "אלבנית", + "hi": "अल्बेनियन्", + "hr": "albanski", + "hu": "albán", + "id": "Albanian", + "is": "Albanska", + "it": "albanese", + "ja": "アルバニア語", + "km": "ភាសាអាល់បានី", + "ko": "알바니아어", + "mr": "आल्बेनियन्", + "mt": "Albaniż", + "nb": "albansk", + "nl": "Albanees", + "nn": "albansk", + "pt": "albanês", + "ru": "албанский", + "sq": "shqipe", + "sr": "Албански", + "sv": "albanska", + "ta": "அல்பெனியன்", + "th": "แอลเบเนีย", + "tr": "Arnavutça", + "uk": "Албанська", + "vi": "Tiếng An-ba-ni", + "zh": "阿尔巴尼亚文" + }, + { + "type": "language", + "iso": "sr", + "name": "Српски", + "countries": [ + { + "_reference": "BA" + }, + { + "_reference": "CS" + }, + { + "_reference": "YU" + } + ], + "am": "ሰርቢኛ", + "ar": "الصربية", + "bg": "Сръбски", + "ca": "serbi", + "cs": "Srbština", + "da": "Serbisk", + "de": "Serbisch", + "el": "Σερβικά", + "en": "Serbian", + "es": "serbio", + "fi": "serbia", + "fr": "serbe", + "ga": "Seirbis", + "he": "סרבית", + "hi": "सर्बियन्", + "hr": "srpski", + "hu": "szerb", + "id": "Serbian", + "is": "Serbneska", + "it": "serbo", + "ja": "セルビア語", + "ko": "세르비아어", + "mr": "सेर्बियन्", + "mt": "Serb", + "nb": "serbisk", + "nl": "Servisch", + "nn": "serbisk", + "pt": "sérvio", + "ru": "сербский", + "sr": "Српски", + "sv": "serbiska", + "ta": "சர்பியன்", + "th": "เซอร์เบีย", + "tr": "Sırpça", + "uk": "Сербська", + "vi": "Tiếng Séc-bi", + "zh": "塞尔维亚文" + }, + { + "type": "language", + "iso": "sv", + "name": "svenska", + "countries": [ + { + "_reference": "FI" + }, + { + "_reference": "SE" + } + ], + "am": "ስዊድንኛ", + "ar": "السويدية", + "bg": "Шведски", + "ca": "suec", + "cs": "Švédština", + "da": "Svensk", + "de": "Schwedisch", + "el": "Σουηδικά", + "en": "Swedish", + "es": "sueco", + "et": "Rootsi", + "fi": "ruotsi", + "fr": "suédois", + "ga": "Sualainnis", + "he": "שוודית", + "hi": "स्विडिश", + "hr": "švedski", + "hu": "svéd", + "id": "Swedia", + "is": "Sænska", + "it": "svedese", + "ja": "スウェーデン語", + "km": "ភាសាស៊ុយអែដ", + "ko": "스웨덴어", + "lt": "Švedų", + "lv": "zviedru", + "mr": "स्वीडिष", + "mt": "Svediż", + "nb": "svensk", + "nl": "Zweeds", + "nn": "svensk", + "pl": "szwedzki", + "ps": "سویډنی", + "pt": "sueco", + "ro": "Suedeză", + "ru": "шведский", + "sk": "švédsky", + "sl": "Švedščina", + "sr": "Шведски", + "sv": "svenska", + "ta": "ஷீவிடிஸ்", + "th": "สวีเดน", + "tr": "İsveççe", + "uk": "Шведська", + "vi": "Tiếng Thụy Điển", + "zh": "瑞典文" + }, + { + "type": "language", + "iso": "sw", + "name": "Kiswahili", + "countries": [ + { + "_reference": "KE" + }, + { + "_reference": "TZ" + } + ], + "am": "ስዋሂሊኛ", + "ar": "السواحلية", + "bg": "Суахили", + "ca": "swahili", + "cs": "Svahilština", + "da": "Swahili", + "de": "Suaheli", + "en": "Swahili", + "es": "swahili", + "fi": "swahili", + "fr": "swahili", + "ga": "Svahaílis", + "he": "סווהילית", + "hi": "स्वाहिली", + "hu": "szuahéli", + "id": "Swahili", + "is": "Svahílí", + "it": "swahili", + "ja": "スワヒリ語", + "km": "ភាសាស្វាហ៉ីលី", + "ko": "스와힐리어", + "mr": "स्वाहिली", + "mt": "Swaħili", + "nb": "swahili", + "nl": "Swahili", + "nn": "swahili", + "pt": "suaíli", + "ru": "суахили", + "sr": "Свахили", + "sv": "swahili", + "sw": "Kiswahili", + "ta": "சுவாஹிலி", + "th": "ซวาฮิรี", + "tr": "Swahili", + "uk": "Суахілі", + "zh": "斯瓦希里文" + }, + { + "type": "language", + "iso": "ta", + "name": "தமிழ்", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ታሚልኛ", + "ar": "التاميلية", + "bg": "Тамилски", + "ca": "tàmil", + "cs": "Tamilština", + "da": "Tamilsk", + "de": "Tamilisch", + "en": "Tamil", + "es": "tamil", + "fi": "tamil", + "fr": "tamoul", + "ga": "Tamailis", + "he": "טמילית", + "hi": "तमिल", + "hu": "tamil", + "id": "Tamil", + "is": "Tamílska", + "it": "tamil", + "ja": "タミール語", + "km": "ភាសាតាមីល", + "ko": "타밀어", + "mr": "तमिळ", + "mt": "Tamil", + "nb": "tamil", + "nl": "Tamil", + "nn": "tamil", + "pt": "tâmil", + "ru": "тамильский", + "sv": "tamil", + "ta": "தமிழ்", + "th": "ทมิฬ", + "tr": "Tamil", + "uk": "Тамільська", + "zh": "泰米尔文" + }, + { + "type": "language", + "iso": "te", + "name": "తెలుగు", + "countries": [ + { + "_reference": "IN" + } + ], + "am": "ተሉጉኛ", + "ar": "التيلجو", + "bg": "Телугу", + "ca": "telugu", + "cs": "Telugština", + "da": "Telugu", + "de": "Telugu", + "en": "Telugu", + "es": "telugu", + "fi": "telugu", + "fr": "télougou", + "hi": "तेलेगु", + "hu": "telugu", + "id": "Telugu", + "is": "Telúgú", + "it": "telugu", + "ja": "テルグ語", + "km": "ភាសាតេលូហ្គូ", + "ko": "텔루구어", + "mr": "तेलंगू", + "mt": "Telugu", + "nb": "telugu", + "nl": "Teloegoe", + "nn": "telugu", + "pt": "telugu", + "ru": "телугу", + "sv": "telugiska", + "ta": "தெலுங்கு", + "te": "తెలుగు", + "th": "ทิลูกู", + "tr": "Telugu", + "uk": "Телугу", + "zh": "泰卢固文" + }, + { + "type": "language", + "iso": "th", + "name": "ไทย", + "countries": [ + { + "_reference": "TH" + } + ], + "am": "ታይኛ", + "ar": "التايلاندية", + "bg": "Таи", + "ca": "thai", + "cs": "Thajština", + "da": "Thailandsk", + "de": "Thai", + "el": "Ταϊλανδικά", + "en": "Thai", + "es": "tailandés", + "fi": "thai", + "fr": "thaï", + "ga": "Téalainnis", + "he": "תאי", + "hi": "थाई", + "hu": "thai", + "id": "Thai", + "is": "Taílenska", + "it": "thai", + "ja": "タイ語", + "km": "ភាសាថៃ", + "ko": "태국어", + "lt": "Tajų", + "mr": "थाई", + "mt": "Tajlandiż", + "nb": "thai", + "nl": "Thai", + "nn": "thai", + "pl": "tajski", + "pt": "tailandês", + "ru": "тайский", + "sv": "thailändska", + "ta": "தாய்", + "th": "ไทย", + "tr": "Tay Dili", + "uk": "Тайська", + "vi": "Tiếng Thái", + "zh": "泰文" + }, + { + "type": "language", + "iso": "tr", + "name": "Türkçe", + "countries": [ + { + "_reference": "TR" + } + ], + "am": "ቱርክኛ", + "ar": "التركية", + "bg": "Турски", + "ca": "turc", + "cs": "Turečtina", + "da": "Tyrkisk", + "de": "Türkisch", + "el": "Τουρκικά", + "en": "Turkish", + "es": "turco", + "et": "Türgi", + "fa": "ترکی استانبولی", + "fi": "turkki", + "fr": "turc", + "ga": "Tuircis", + "he": "טורקית", + "hi": "तुक्रीश", + "hr": "turski", + "hu": "török", + "id": "Turkish", + "is": "Tyrkneska", + "it": "turco", + "ja": "トルコ語", + "km": "ភាសាទួរគី", + "ko": "터키어", + "lt": "Turkų", + "lv": "turku", + "mr": "तुर्किष", + "mt": "Tork", + "nb": "tyrkisk", + "nl": "Turks", + "nn": "tyrkisk", + "pl": "turecki", + "pt": "turco", + "ro": "Turcă", + "ru": "турецкий", + "sk": "turecký", + "sl": "Turščina", + "sr": "Турски", + "sv": "turkiska", + "ta": "டர்கிஷ்", + "th": "ตุรกี", + "tr": "Türkçe", + "uk": "Турецька", + "vi": "Tiếng Thổ Nhĩ Kỳ", + "zh": "土耳其文" + }, + { + "type": "language", + "iso": "tt", + "name": "Татар", + "countries": [ + { + "_reference": "RU" + } + ], + "am": "ታታርኛ", + "ar": "التتارية", + "bg": "Татарски", + "ca": "tàtar", + "cs": "Tatarština", + "da": "Tatarisk", + "de": "Tatarisch", + "en": "Tatar", + "fi": "tataari", + "fr": "tatar", + "ga": "Tatarais", + "hi": "टाटर", + "hu": "tatár", + "id": "Tatar", + "is": "Tatarska", + "it": "tatarico", + "ja": "タタール語", + "km": "ភាសាតាតារ", + "ko": "타타르어", + "mr": "टटार", + "mt": "Tatar", + "nb": "tatarisk", + "nl": "Tataars", + "nn": "tatarisk", + "ps": "تاتار", + "pt": "tatar", + "ru": "татарский", + "sv": "tatariska", + "ta": "டாடர்", + "th": "ตาด", + "tr": "Tatarca", + "uk": "Татарська", + "zh": "鞑靼文" + }, + { + "type": "language", + "iso": "uk", + "name": "Українська", + "countries": [ + { + "_reference": "UA" + } + ], + "am": "ዩክረኒኛ", + "ar": "الأوكرانية", + "bg": "Украински", + "ca": "ucraïnès", + "cs": "Ukrajinština", + "da": "Ukrainsk", + "de": "Ukrainisch", + "el": "Ουκρανικά", + "en": "Ukrainian", + "es": "ucraniano", + "fi": "ukraina", + "fr": "ukrainien", + "ga": "Úcráinis", + "he": "אוקראינית", + "hi": "यूक्रेनियन्", + "hr": "ukrajinski", + "hu": "ukrán", + "id": "Ukrainian", + "is": "Úkraínska", + "it": "ucraino", + "ja": "ウクライナ語", + "km": "ភាសាអ៊ុយក្រែន", + "ko": "우크라이나어", + "mr": "युक्रेनियन्", + "mt": "Ukranjan", + "nb": "ukrainsk", + "nl": "Oekraïens", + "nn": "ukrainsk", + "pt": "ucraniano", + "ru": "украинский", + "sr": "Украјински", + "sv": "ukrainska", + "ta": "உக்ரேனியன்", + "th": "ยูเครน", + "tr": "Ukraynaca", + "uk": "Українська", + "vi": "Tiếng U-crai-na", + "zh": "乌克兰文" + }, + { + "type": "language", + "iso": "ur", + "name": "اردو", + "countries": [ + { + "_reference": "IN" + }, + { + "_reference": "PK" + } + ], + "am": "ኡርዱኛ", + "ar": "الأردية", + "bg": "Урду", + "ca": "urdú", + "cs": "Urdština", + "da": "Urdu", + "de": "Urdu", + "en": "Urdu", + "es": "urdu", + "fi": "urdu", + "fr": "ourdou", + "ga": "Urdais", + "he": "אורדו", + "hi": "ऊर्दु", + "hu": "urdu", + "id": "Urdu", + "is": "Úrdú", + "it": "urdu", + "ja": "ウルドゥー語", + "km": "ភាសាអ៊ូរ្ឌូ", + "ko": "우르두어", + "mr": "उर्दू", + "mt": "Urdu", + "nb": "urdu", + "nl": "Urdu", + "nn": "urdu", + "pt": "urdu", + "ru": "урду", + "sv": "urdu", + "ta": "உருது", + "th": "อิรดู", + "tr": "Urduca", + "uk": "Урду", + "ur": "اردو", + "zh": "乌尔都文" + }, + { + "type": "language", + "iso": "uz", + "name": "Ўзбек", + "countries": [ + { + "_reference": "AF" + }, + { + "_reference": "UZ" + } + ], + "am": "ኡዝበክኛ", + "ar": "الاوزباكية", + "bg": "Узбекски", + "ca": "uzbek", + "cs": "Uzbečtina", + "da": "Usbekisk", + "de": "Usbekisch", + "en": "Uzbek", + "es": "uzbeko", + "fi": "uzbekki", + "fr": "ouzbek", + "ga": "Úisbéicis", + "he": "אוזבקית", + "hi": "उज़बेक्", + "hu": "üzbég", + "id": "Uzbek", + "is": "Úsbekska", + "it": "usbeco", + "ja": "ウズベク語", + "km": "ភាសាអ៊ូហ្សបេគីស្តង់", + "ko": "우즈베크어", + "mr": "उज़बेक", + "mt": "Użbek", + "nb": "usbekisk", + "nl": "Oezbeeks", + "nn": "usbekisk", + "ps": "ازبکي", + "pt": "usbeque", + "ru": "узбекский", + "sv": "uzbekiska", + "ta": "உஸ்பெக்", + "th": "อุสเบค", + "tr": "Özbekçe", + "uk": "Узбецька", + "vi": "Tiếng U-dơ-bếch", + "zh": "乌兹别克文" + }, + { + "type": "language", + "iso": "vi", + "name": "Tiếng Việt", + "countries": [ + { + "_reference": "VN" + } + ], + "am": "ቪትናምኛ", + "ar": "الفيتنامية", + "bg": "Виетнамски", + "ca": "vietnamita", + "cs": "Vietnamština", + "da": "Vietnamesisk", + "de": "Vietnamesisch", + "el": "Βιετναμεζικά", + "en": "Vietnamese", + "es": "vietnamita", + "fi": "vietnam", + "fr": "vietnamien", + "ga": "Vítneamais", + "he": "ויאטנמית", + "hi": "वियेतनामी", + "hr": "vijetnamski", + "hu": "vietnámi", + "id": "Vietnamese", + "is": "Víetnamska", + "it": "vietnamita", + "ja": "ベトナム語", + "km": "ភាសាវៀតណាម", + "ko": "베트남어", + "mr": "वियत्नामीज़", + "mt": "Vjetnamiż", + "nb": "vietnamesisk", + "nl": "Vietnamees", + "nn": "vietnamesisk", + "pt": "vietnamita", + "ru": "вьетнамский", + "sr": "Вијетнамски", + "sv": "vietnamesiska", + "ta": "வியட்நாமிஸ்", + "th": "เวียดนาม", + "tr": "Vietnam Dili", + "uk": "Вʼєтнамська", + "vi": "Tiếng Việt", + "zh": "越南文" + }, + { + "type": "language", + "iso": "zh", + "name": "中文", + "countries": [ + { + "_reference": "CN" + }, + { + "_reference": "HK" + }, + { + "_reference": "MO" + }, + { + "_reference": "SG" + }, + { + "_reference": "TW" + } + ], + "af": "Sjinees", + "am": "ቻይንኛ", + "ar": "الصينية", + "be": "кітайскі", + "bg": "Китайски", + "ca": "xinés", + "cs": "Čínština", + "cy": "Tseineeg", + "da": "Kinesisk", + "de": "Chinesisch", + "el": "Κινεζικά", + "en": "Chinese", + "es": "chino", + "et": "Hiina", + "eu": "txinera", + "fi": "kiina", + "fr": "chinois", + "ga": "Sínis", + "he": "סינית", + "hi": "चीनी", + "hr": "kineski", + "hu": "kínai", + "id": "Cina", + "is": "Kínverska", + "it": "cinese", + "ja": "中国語", + "ka": "ჩინური", + "km": "ភាសាចិន", + "ko": "중국어", + "ky": "кытайча", + "lt": "Kinų", + "lv": "ķīniešu", + "mk": "кинески", + "mn": "хятад", + "mr": "चिनीस्", + "mt": "Ċiniż", + "nb": "kinesisk", + "nl": "Chinees", + "nn": "kinesisk", + "pl": "chiński", + "ps": "چیني", + "pt": "chinês", + "ro": "Chineză", + "ru": "китайский", + "sk": "čínsky", + "sl": "Kitajščina", + "sq": "Kineze", + "sr": "Кинески", + "sv": "kinesiska", + "sw": "kichina", + "ta": "சீனம்", + "te": "చైనా భాష", + "th": "จีน", + "tr": "Çince", + "uk": "Китайська", + "vi": "Tiếng Trung Quốc", + "zh": "中文" + }, + { + "type": "languageCountryMap", + "language": "aa", + "country": "DJ", + "iso": "aa_DJ" + }, + { + "type": "languageCountryMap", + "language": "aa", + "country": "ER", + "iso": "aa_ER" + }, + { + "type": "languageCountryMap", + "language": "aa", + "country": "ET", + "iso": "aa_ET" + }, + { + "type": "languageCountryMap", + "language": "af", + "country": "NA", + "iso": "af_NA" + }, + { + "type": "languageCountryMap", + "language": "af", + "country": "ZA", + "iso": "af_ZA" + }, + { + "type": "languageCountryMap", + "language": "ak", + "country": "GH", + "iso": "ak_GH" + }, + { + "type": "languageCountryMap", + "language": "am", + "country": "ET", + "iso": "am_ET" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "AE", + "iso": "ar_AE" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "BH", + "iso": "ar_BH" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "DZ", + "iso": "ar_DZ" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "EG", + "iso": "ar_EG" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "IQ", + "iso": "ar_IQ" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "JO", + "iso": "ar_JO" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "KW", + "iso": "ar_KW" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "LB", + "iso": "ar_LB" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "LY", + "iso": "ar_LY" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "MA", + "iso": "ar_MA" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "OM", + "iso": "ar_OM" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "QA", + "iso": "ar_QA" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "SA", + "iso": "ar_SA" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "SD", + "iso": "ar_SD" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "SY", + "iso": "ar_SY" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "TN", + "iso": "ar_TN" + }, + { + "type": "languageCountryMap", + "language": "ar", + "country": "YE", + "iso": "ar_YE" + }, + { + "type": "languageCountryMap", + "language": "as", + "country": "IN", + "iso": "as_IN" + }, + { + "type": "languageCountryMap", + "language": "az", + "country": "AZ", + "iso": "az_AZ" + }, + { + "type": "languageCountryMap", + "language": "be", + "country": "BY", + "iso": "be_BY" + }, + { + "type": "languageCountryMap", + "language": "bg", + "country": "BG", + "iso": "bg_BG" + }, + { + "type": "languageCountryMap", + "language": "bn", + "country": "BD", + "iso": "bn_BD" + }, + { + "type": "languageCountryMap", + "language": "bn", + "country": "IN", + "iso": "bn_IN" + }, + { + "type": "languageCountryMap", + "language": "bs", + "country": "BA", + "iso": "bs_BA" + }, + { + "type": "languageCountryMap", + "language": "ca", + "country": "ES", + "iso": "ca_ES" + }, + { + "type": "languageCountryMap", + "language": "cs", + "country": "CZ", + "iso": "cs_CZ" + }, + { + "type": "languageCountryMap", + "language": "cy", + "country": "GB", + "iso": "cy_GB" + }, + { + "type": "languageCountryMap", + "language": "da", + "country": "DK", + "iso": "da_DK" + }, + { + "type": "languageCountryMap", + "language": "de", + "country": "AT", + "iso": "de_AT" + }, + { + "type": "languageCountryMap", + "language": "de", + "country": "BE", + "iso": "de_BE" + }, + { + "type": "languageCountryMap", + "language": "de", + "country": "CH", + "iso": "de_CH" + }, + { + "type": "languageCountryMap", + "language": "de", + "country": "DE", + "iso": "de_DE" + }, + { + "type": "languageCountryMap", + "language": "de", + "country": "LI", + "iso": "de_LI" + }, + { + "type": "languageCountryMap", + "language": "de", + "country": "LU", + "iso": "de_LU" + }, + { + "type": "languageCountryMap", + "language": "dv", + "country": "MV", + "iso": "dv_MV" + }, + { + "type": "languageCountryMap", + "language": "dz", + "country": "BT", + "iso": "dz_BT" + }, + { + "type": "languageCountryMap", + "language": "ee", + "country": "GH", + "iso": "ee_GH" + }, + { + "type": "languageCountryMap", + "language": "ee", + "country": "TG", + "iso": "ee_TG" + }, + { + "type": "languageCountryMap", + "language": "el", + "country": "CY", + "iso": "el_CY" + }, + { + "type": "languageCountryMap", + "language": "el", + "country": "GR", + "iso": "el_GR" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "AS", + "iso": "en_AS" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "AU", + "iso": "en_AU" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "BE", + "iso": "en_BE" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "BW", + "iso": "en_BW" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "BZ", + "iso": "en_BZ" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "CA", + "iso": "en_CA" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "GB", + "iso": "en_GB" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "GU", + "iso": "en_GU" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "HK", + "iso": "en_HK" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "IE", + "iso": "en_IE" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "IN", + "iso": "en_IN" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "JM", + "iso": "en_JM" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "MH", + "iso": "en_MH" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "MP", + "iso": "en_MP" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "MT", + "iso": "en_MT" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "NA", + "iso": "en_NA" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "NZ", + "iso": "en_NZ" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "PH", + "iso": "en_PH" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "PK", + "iso": "en_PK" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "SG", + "iso": "en_SG" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "TT", + "iso": "en_TT" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "UM", + "iso": "en_UM" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "US", + "iso": "en_US" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "VI", + "iso": "en_VI" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "ZA", + "iso": "en_ZA" + }, + { + "type": "languageCountryMap", + "language": "en", + "country": "ZW", + "iso": "en_ZW" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "AR", + "iso": "es_AR" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "BO", + "iso": "es_BO" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "CL", + "iso": "es_CL" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "CO", + "iso": "es_CO" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "CR", + "iso": "es_CR" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "DO", + "iso": "es_DO" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "EC", + "iso": "es_EC" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "ES", + "iso": "es_ES" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "GT", + "iso": "es_GT" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "HN", + "iso": "es_HN" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "MX", + "iso": "es_MX" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "NI", + "iso": "es_NI" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "PA", + "iso": "es_PA" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "PE", + "iso": "es_PE" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "PR", + "iso": "es_PR" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "PY", + "iso": "es_PY" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "SV", + "iso": "es_SV" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "US", + "iso": "es_US" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "UY", + "iso": "es_UY" + }, + { + "type": "languageCountryMap", + "language": "es", + "country": "VE", + "iso": "es_VE" + }, + { + "type": "languageCountryMap", + "language": "et", + "country": "EE", + "iso": "et_EE" + }, + { + "type": "languageCountryMap", + "language": "eu", + "country": "ES", + "iso": "eu_ES" + }, + { + "type": "languageCountryMap", + "language": "fa", + "country": "AF", + "iso": "fa_AF" + }, + { + "type": "languageCountryMap", + "language": "fa", + "country": "IR", + "iso": "fa_IR" + }, + { + "type": "languageCountryMap", + "language": "fi", + "country": "FI", + "iso": "fi_FI" + }, + { + "type": "languageCountryMap", + "language": "fo", + "country": "FO", + "iso": "fo_FO" + }, + { + "type": "languageCountryMap", + "language": "fr", + "country": "BE", + "iso": "fr_BE" + }, + { + "type": "languageCountryMap", + "language": "fr", + "country": "CA", + "iso": "fr_CA" + }, + { + "type": "languageCountryMap", + "language": "fr", + "country": "CH", + "iso": "fr_CH" + }, + { + "type": "languageCountryMap", + "language": "fr", + "country": "FR", + "iso": "fr_FR" + }, + { + "type": "languageCountryMap", + "language": "fr", + "country": "LU", + "iso": "fr_LU" + }, + { + "type": "languageCountryMap", + "language": "fr", + "country": "MC", + "iso": "fr_MC" + }, + { + "type": "languageCountryMap", + "language": "ga", + "country": "IE", + "iso": "ga_IE" + }, + { + "type": "languageCountryMap", + "language": "gl", + "country": "ES", + "iso": "gl_ES" + }, + { + "type": "languageCountryMap", + "language": "gu", + "country": "IN", + "iso": "gu_IN" + }, + { + "type": "languageCountryMap", + "language": "gv", + "country": "GB", + "iso": "gv_GB" + }, + { + "type": "languageCountryMap", + "language": "ha", + "country": "GH", + "iso": "ha_GH" + }, + { + "type": "languageCountryMap", + "language": "ha", + "country": "NE", + "iso": "ha_NE" + }, + { + "type": "languageCountryMap", + "language": "ha", + "country": "NG", + "iso": "ha_NG" + }, + { + "type": "languageCountryMap", + "language": "he", + "country": "IL", + "iso": "he_IL" + }, + { + "type": "languageCountryMap", + "language": "hi", + "country": "IN", + "iso": "hi_IN" + }, + { + "type": "languageCountryMap", + "language": "hr", + "country": "HR", + "iso": "hr_HR" + }, + { + "type": "languageCountryMap", + "language": "hu", + "country": "HU", + "iso": "hu_HU" + }, + { + "type": "languageCountryMap", + "language": "hy", + "country": "AM", + "iso": "hy_AM" + }, + { + "type": "languageCountryMap", + "language": "id", + "country": "ID", + "iso": "id_ID" + }, + { + "type": "languageCountryMap", + "language": "ig", + "country": "NG", + "iso": "ig_NG" + }, + { + "type": "languageCountryMap", + "language": "is", + "country": "IS", + "iso": "is_IS" + }, + { + "type": "languageCountryMap", + "language": "it", + "country": "CH", + "iso": "it_CH" + }, + { + "type": "languageCountryMap", + "language": "it", + "country": "IT", + "iso": "it_IT" + }, + { + "type": "languageCountryMap", + "language": "ja", + "country": "JP", + "iso": "ja_JP" + }, + { + "type": "languageCountryMap", + "language": "ka", + "country": "GE", + "iso": "ka_GE" + }, + { + "type": "languageCountryMap", + "language": "kk", + "country": "KZ", + "iso": "kk_KZ" + }, + { + "type": "languageCountryMap", + "language": "kl", + "country": "GL", + "iso": "kl_GL" + }, + { + "type": "languageCountryMap", + "language": "km", + "country": "KH", + "iso": "km_KH" + }, + { + "type": "languageCountryMap", + "language": "kn", + "country": "IN", + "iso": "kn_IN" + }, + { + "type": "languageCountryMap", + "language": "ko", + "country": "KR", + "iso": "ko_KR" + }, + { + "type": "languageCountryMap", + "language": "ku", + "country": "IQ", + "iso": "ku_IQ" + }, + { + "type": "languageCountryMap", + "language": "ku", + "country": "IR", + "iso": "ku_IR" + }, + { + "type": "languageCountryMap", + "language": "ku", + "country": "SY", + "iso": "ku_SY" + }, + { + "type": "languageCountryMap", + "language": "ku", + "country": "TR", + "iso": "ku_TR" + }, + { + "type": "languageCountryMap", + "language": "kw", + "country": "GB", + "iso": "kw_GB" + }, + { + "type": "languageCountryMap", + "language": "ky", + "country": "KG", + "iso": "ky_KG" + }, + { + "type": "languageCountryMap", + "language": "ln", + "country": "CD", + "iso": "ln_CD" + }, + { + "type": "languageCountryMap", + "language": "ln", + "country": "CG", + "iso": "ln_CG" + }, + { + "type": "languageCountryMap", + "language": "lo", + "country": "LA", + "iso": "lo_LA" + }, + { + "type": "languageCountryMap", + "language": "lt", + "country": "LT", + "iso": "lt_LT" + }, + { + "type": "languageCountryMap", + "language": "lv", + "country": "LV", + "iso": "lv_LV" + }, + { + "type": "languageCountryMap", + "language": "mk", + "country": "MK", + "iso": "mk_MK" + }, + { + "type": "languageCountryMap", + "language": "ml", + "country": "IN", + "iso": "ml_IN" + }, + { + "type": "languageCountryMap", + "language": "mn", + "country": "MN", + "iso": "mn_MN" + }, + { + "type": "languageCountryMap", + "language": "mr", + "country": "IN", + "iso": "mr_IN" + }, + { + "type": "languageCountryMap", + "language": "ms", + "country": "BN", + "iso": "ms_BN" + }, + { + "type": "languageCountryMap", + "language": "ms", + "country": "MY", + "iso": "ms_MY" + }, + { + "type": "languageCountryMap", + "language": "mt", + "country": "MT", + "iso": "mt_MT" + }, + { + "type": "languageCountryMap", + "language": "nb", + "country": "NO", + "iso": "nb_NO" + }, + { + "type": "languageCountryMap", + "language": "ne", + "country": "NP", + "iso": "ne_NP" + }, + { + "type": "languageCountryMap", + "language": "nl", + "country": "BE", + "iso": "nl_BE" + }, + { + "type": "languageCountryMap", + "language": "nl", + "country": "NL", + "iso": "nl_NL" + }, + { + "type": "languageCountryMap", + "language": "nn", + "country": "NO", + "iso": "nn_NO" + }, + { + "type": "languageCountryMap", + "language": "nr", + "country": "ZA", + "iso": "nr_ZA" + }, + { + "type": "languageCountryMap", + "language": "ny", + "country": "MW", + "iso": "ny_MW" + }, + { + "type": "languageCountryMap", + "language": "om", + "country": "ET", + "iso": "om_ET" + }, + { + "type": "languageCountryMap", + "language": "om", + "country": "KE", + "iso": "om_KE" + }, + { + "type": "languageCountryMap", + "language": "or", + "country": "IN", + "iso": "or_IN" + }, + { + "type": "languageCountryMap", + "language": "pa", + "country": "IN", + "iso": "pa_IN" + }, + { + "type": "languageCountryMap", + "language": "pa", + "country": "PK", + "iso": "pa_PK" + }, + { + "type": "languageCountryMap", + "language": "pl", + "country": "PL", + "iso": "pl_PL" + }, + { + "type": "languageCountryMap", + "language": "ps", + "country": "AF", + "iso": "ps_AF" + }, + { + "type": "languageCountryMap", + "language": "pt", + "country": "BR", + "iso": "pt_BR" + }, + { + "type": "languageCountryMap", + "language": "pt", + "country": "PT", + "iso": "pt_PT" + }, + { + "type": "languageCountryMap", + "language": "ro", + "country": "RO", + "iso": "ro_RO" + }, + { + "type": "languageCountryMap", + "language": "ru", + "country": "RU", + "iso": "ru_RU" + }, + { + "type": "languageCountryMap", + "language": "ru", + "country": "UA", + "iso": "ru_UA" + }, + { + "type": "languageCountryMap", + "language": "rw", + "country": "RW", + "iso": "rw_RW" + }, + { + "type": "languageCountryMap", + "language": "sa", + "country": "IN", + "iso": "sa_IN" + }, + { + "type": "languageCountryMap", + "language": "se", + "country": "NO", + "iso": "se_NO" + }, + { + "type": "languageCountryMap", + "language": "sh", + "country": "BA", + "iso": "sh_BA" + }, + { + "type": "languageCountryMap", + "language": "sh", + "country": "CS", + "iso": "sh_CS" + }, + { + "type": "languageCountryMap", + "language": "sh", + "country": "YU", + "iso": "sh_YU" + }, + { + "type": "languageCountryMap", + "language": "sk", + "country": "SK", + "iso": "sk_SK" + }, + { + "type": "languageCountryMap", + "language": "sl", + "country": "SI", + "iso": "sl_SI" + }, + { + "type": "languageCountryMap", + "language": "so", + "country": "DJ", + "iso": "so_DJ" + }, + { + "type": "languageCountryMap", + "language": "so", + "country": "ET", + "iso": "so_ET" + }, + { + "type": "languageCountryMap", + "language": "so", + "country": "KE", + "iso": "so_KE" + }, + { + "type": "languageCountryMap", + "language": "so", + "country": "SO", + "iso": "so_SO" + }, + { + "type": "languageCountryMap", + "language": "sq", + "country": "AL", + "iso": "sq_AL" + }, + { + "type": "languageCountryMap", + "language": "sr", + "country": "BA", + "iso": "sr_BA" + }, + { + "type": "languageCountryMap", + "language": "sr", + "country": "CS", + "iso": "sr_CS" + }, + { + "type": "languageCountryMap", + "language": "sr", + "country": "YU", + "iso": "sr_YU" + }, + { + "type": "languageCountryMap", + "language": "ss", + "country": "ZA", + "iso": "ss_ZA" + }, + { + "type": "languageCountryMap", + "language": "st", + "country": "ZA", + "iso": "st_ZA" + }, + { + "type": "languageCountryMap", + "language": "sv", + "country": "FI", + "iso": "sv_FI" + }, + { + "type": "languageCountryMap", + "language": "sv", + "country": "SE", + "iso": "sv_SE" + }, + { + "type": "languageCountryMap", + "language": "sw", + "country": "KE", + "iso": "sw_KE" + }, + { + "type": "languageCountryMap", + "language": "sw", + "country": "TZ", + "iso": "sw_TZ" + }, + { + "type": "languageCountryMap", + "language": "ta", + "country": "IN", + "iso": "ta_IN" + }, + { + "type": "languageCountryMap", + "language": "te", + "country": "IN", + "iso": "te_IN" + }, + { + "type": "languageCountryMap", + "language": "tg", + "country": "TJ", + "iso": "tg_TJ" + }, + { + "type": "languageCountryMap", + "language": "th", + "country": "TH", + "iso": "th_TH" + }, + { + "type": "languageCountryMap", + "language": "ti", + "country": "ER", + "iso": "ti_ER" + }, + { + "type": "languageCountryMap", + "language": "ti", + "country": "ET", + "iso": "ti_ET" + }, + { + "type": "languageCountryMap", + "language": "tn", + "country": "ZA", + "iso": "tn_ZA" + }, + { + "type": "languageCountryMap", + "language": "tr", + "country": "TR", + "iso": "tr_TR" + }, + { + "type": "languageCountryMap", + "language": "ts", + "country": "ZA", + "iso": "ts_ZA" + }, + { + "type": "languageCountryMap", + "language": "tt", + "country": "RU", + "iso": "tt_RU" + }, + { + "type": "languageCountryMap", + "language": "uk", + "country": "UA", + "iso": "uk_UA" + }, + { + "type": "languageCountryMap", + "language": "ur", + "country": "IN", + "iso": "ur_IN" + }, + { + "type": "languageCountryMap", + "language": "ur", + "country": "PK", + "iso": "ur_PK" + }, + { + "type": "languageCountryMap", + "language": "uz", + "country": "AF", + "iso": "uz_AF" + }, + { + "type": "languageCountryMap", + "language": "uz", + "country": "UZ", + "iso": "uz_UZ" + }, + { + "type": "languageCountryMap", + "language": "ve", + "country": "ZA", + "iso": "ve_ZA" + }, + { + "type": "languageCountryMap", + "language": "vi", + "country": "VN", + "iso": "vi_VN" + }, + { + "type": "languageCountryMap", + "language": "xh", + "country": "ZA", + "iso": "xh_ZA" + }, + { + "type": "languageCountryMap", + "language": "yo", + "country": "NG", + "iso": "yo_NG" + }, + { + "type": "languageCountryMap", + "language": "zh", + "country": "CN", + "iso": "zh_CN" + }, + { + "type": "languageCountryMap", + "language": "zh", + "country": "HK", + "iso": "zh_HK" + }, + { + "type": "languageCountryMap", + "language": "zh", + "country": "MO", + "iso": "zh_MO" + }, + { + "type": "languageCountryMap", + "language": "zh", + "country": "SG", + "iso": "zh_SG" + }, + { + "type": "languageCountryMap", + "language": "zh", + "country": "TW", + "iso": "zh_TW" + }, + { + "type": "languageCountryMap", + "language": "zu", + "country": "ZA", + "iso": "zu_ZA" + }, + { + "type": "continent", + "name": "Africa", + "iso": "Africa" + }, + { + "type": "continent", + "name": "Asia", + "iso": "Asia" + }, + { + "type": "continent", + "name": "Europe", + "iso": "Europe" + }, + { + "type": "continent", + "name": "North America", + "iso": "North America" + }, + { + "type": "continent", + "name": "South America", + "iso": "South America" + }, + { + "type": "continent", + "name": "Oceania", + "iso": "Oceania" + }, + { + "type": "continent", + "name": "Antarctica", + "iso": "Antarctica" + }, + { + "type": "country", + "iso": "AF", + "name": "Afghanistan", + "href": "http://en.wikipedia.org/wiki/Afghanistan", + "continent": "Asia", + "languages": [ + { + "_reference": "fa" + }, + { + "_reference": "ps" + }, + { + "_reference": "uz" + } + ] + }, + { + "type": "country", + "iso": "AX", + "name": "Åland Islands", + "href": "http://en.wikipedia.org/wiki/%C3%85land", + "languages": [ + ] + }, + { + "type": "country", + "iso": "AL", + "name": "Albania", + "href": "http://en.wikipedia.org/wiki/Albania", + "continent": "Europe", + "languages": [ + { + "_reference": "sq" + } + ] + }, + { + "type": "country", + "iso": "DZ", + "name": "Algeria", + "href": "http://en.wikipedia.org/wiki/Algeria", + "continent": "Africa", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "AS", + "name": "American Samoa", + "href": "http://en.wikipedia.org/wiki/American_Samoa", + "continent": "Oceania", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "AD", + "name": "Andorra", + "href": "http://en.wikipedia.org/wiki/Andorra", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "AO", + "name": "Angola", + "href": "http://en.wikipedia.org/wiki/Angola", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "AI", + "name": "Anguilla", + "href": "http://en.wikipedia.org/wiki/Anguilla", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "AQ", + "name": "Antarctica", + "href": "http://en.wikipedia.org/wiki/Antarctica", + "languages": [ + ] + }, + { + "type": "country", + "iso": "AG", + "name": "Antigua and Barbuda", + "href": "http://en.wikipedia.org/wiki/Antigua_and_Barbuda", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "AR", + "name": "Argentina", + "href": "http://en.wikipedia.org/wiki/Argentina", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "AM", + "name": "Armenia", + "href": "http://en.wikipedia.org/wiki/Armenia", + "continent": "Asia", + "languages": [ + { + "_reference": "hy" + } + ] + }, + { + "type": "country", + "iso": "AW", + "name": "Aruba", + "href": "http://en.wikipedia.org/wiki/Aruba", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "AU", + "name": "Australia", + "href": "http://en.wikipedia.org/wiki/Australia", + "continent": "Oceania", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "AT", + "name": "Austria", + "href": "http://en.wikipedia.org/wiki/Austria", + "continent": "Europe", + "languages": [ + { + "_reference": "de" + } + ] + }, + { + "type": "country", + "iso": "AZ", + "name": "Azerbaijan", + "href": "http://en.wikipedia.org/wiki/Azerbaijan", + "continent": "Asia", + "languages": [ + { + "_reference": "az" + } + ] + }, + { + "type": "country", + "iso": "BS", + "name": "Bahamas", + "href": "http://en.wikipedia.org/wiki/The_Bahamas", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "BH", + "name": "Bahrain", + "href": "http://en.wikipedia.org/wiki/Bahrain", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "BD", + "name": "Bangladesh", + "href": "http://en.wikipedia.org/wiki/Bangladesh", + "continent": "Asia", + "languages": [ + { + "_reference": "bn" + } + ] + }, + { + "type": "country", + "iso": "BB", + "name": "Barbados", + "href": "http://en.wikipedia.org/wiki/Barbados", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "BY", + "name": "Belarus", + "href": "http://en.wikipedia.org/wiki/Belarus", + "continent": "Europe", + "languages": [ + { + "_reference": "be" + } + ] + }, + { + "type": "country", + "iso": "BE", + "name": "Belgium", + "href": "http://en.wikipedia.org/wiki/Belgium", + "continent": "Europe", + "languages": [ + { + "_reference": "de" + }, + { + "_reference": "en" + }, + { + "_reference": "fr" + }, + { + "_reference": "nl" + } + ] + }, + { + "type": "country", + "iso": "BZ", + "name": "Belize", + "href": "http://en.wikipedia.org/wiki/Belize", + "continent": "North America", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "BJ", + "name": "Benin", + "href": "http://en.wikipedia.org/wiki/Benin", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "BM", + "name": "Bermuda", + "href": "http://en.wikipedia.org/wiki/Bermuda", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "BT", + "name": "Bhutan", + "href": "http://en.wikipedia.org/wiki/Bhutan", + "continent": "Asia", + "languages": [ + { + "_reference": "dz" + } + ] + }, + { + "type": "country", + "iso": "BO", + "name": "Bolivia", + "href": "http://en.wikipedia.org/wiki/Bolivia", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "BA", + "name": "Bosnia and Herzegovina", + "href": "http://en.wikipedia.org/wiki/Bosnia_and_Herzegovina", + "continent": "Europe", + "languages": [ + { + "_reference": "bs" + }, + { + "_reference": "sh" + }, + { + "_reference": "sr" + } + ] + }, + { + "type": "country", + "iso": "BW", + "name": "Botswana", + "href": "http://en.wikipedia.org/wiki/Botswana", + "continent": "Africa", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "BV", + "name": "Bouvet Island", + "href": "http://en.wikipedia.org/wiki/Bouvet_Island", + "continent": "Antarctica", + "languages": [ + ] + }, + { + "type": "country", + "iso": "BR", + "name": "Brazil", + "href": "http://en.wikipedia.org/wiki/Brazil", + "continent": "South America", + "languages": [ + { + "_reference": "pt" + } + ] + }, + { + "type": "country", + "iso": "IO", + "name": "British Indian Ocean Territory", + "href": "http://en.wikipedia.org/wiki/British_Indian_Ocean_Territory", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "BN", + "name": "Brunei Darussalam", + "href": "http://en.wikipedia.org/wiki/Brunei", + "languages": [ + { + "_reference": "ms" + } + ] + }, + { + "type": "country", + "iso": "BG", + "name": "Bulgaria", + "href": "http://en.wikipedia.org/wiki/Bulgaria", + "continent": "Europe", + "languages": [ + { + "_reference": "bg" + } + ] + }, + { + "type": "country", + "iso": "BF", + "name": "Burkina Faso", + "href": "http://en.wikipedia.org/wiki/Burkina_Faso", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "BI", + "name": "Burundi", + "href": "http://en.wikipedia.org/wiki/Burundi", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "KH", + "name": "Cambodia", + "href": "http://en.wikipedia.org/wiki/Cambodia", + "continent": "Asia", + "languages": [ + { + "_reference": "km" + } + ] + }, + { + "type": "country", + "iso": "CM", + "name": "Cameroon", + "href": "http://en.wikipedia.org/wiki/Cameroon", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CA", + "name": "Canada", + "href": "http://en.wikipedia.org/wiki/Canada", + "continent": "North America", + "languages": [ + { + "_reference": "en" + }, + { + "_reference": "fr" + } + ] + }, + { + "type": "country", + "iso": "CV", + "name": "Cape Verde", + "href": "http://en.wikipedia.org/wiki/Cape_Verde", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "KY", + "name": "Cayman Islands", + "href": "http://en.wikipedia.org/wiki/Cayman_Islands", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CF", + "name": "Central African Republic", + "href": "http://en.wikipedia.org/wiki/Central_African_Republic", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "TD", + "name": "Chad", + "href": "http://en.wikipedia.org/wiki/Chad", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CL", + "name": "Chile", + "href": "http://en.wikipedia.org/wiki/Chile", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "CN", + "name": "China", + "continent": "Asia", + "href": "http://en.wikipedia.org/wiki/People%27s_Republic_of_China", + "languages": [ + { + "_reference": "zh" + } + ] + }, + { + "type": "country", + "iso": "CX", + "name": "Christmas Island", + "href": "http://en.wikipedia.org/wiki/Christmas_Island", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CC", + "name": "Cocos (Keeling) Islands", + "href": "http://en.wikipedia.org/wiki/Cocos_%28Keeling%29_Islands", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CO", + "name": "Colombia", + "href": "http://en.wikipedia.org/wiki/Colombia", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "KM", + "name": "Comoros", + "href": "http://en.wikipedia.org/wiki/Comoros", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CG", + "name": "Congo", + "href": "http://en.wikipedia.org/wiki/Republic_of_the_Congo", + "languages": [ + { + "_reference": "ln" + } + ] + }, + { + "type": "country", + "iso": "CD", + "name": "Congo, Democratic Republic of the", + "href": "http://en.wikipedia.org/wiki/Democratic_Republic_of_the_Congo", + "languages": [ + { + "_reference": "ln" + } + ] + }, + { + "type": "country", + "iso": "CK", + "name": "Cook Islands", + "href": "http://en.wikipedia.org/wiki/Cook_Islands", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CR", + "name": "Costa Rica", + "href": "http://en.wikipedia.org/wiki/Costa_Rica", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "CI", + "name": "Côte d'Ivoire", + "href": "http://en.wikipedia.org/wiki/C%C3%B4te_d%27Ivoire", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "HR", + "name": "Croatia", + "href": "http://en.wikipedia.org/wiki/Croatia", + "continent": "Europe", + "languages": [ + { + "_reference": "hr" + } + ] + }, + { + "type": "country", + "iso": "CU", + "name": "Cuba", + "href": "http://en.wikipedia.org/wiki/Cuba", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "CY", + "name": "Cyprus", + "href": "http://en.wikipedia.org/wiki/Cyprus", + "continent": "Asia", + "languages": [ + { + "_reference": "el" + } + ] + }, + { + "type": "country", + "iso": "CZ", + "name": "Czech Republic", + "href": "http://en.wikipedia.org/wiki/Czech_Republic", + "continent": "Europe", + "languages": [ + { + "_reference": "cs" + } + ] + }, + { + "type": "country", + "iso": "DK", + "name": "Denmark", + "href": "http://en.wikipedia.org/wiki/Denmark", + "continent": "Europe", + "languages": [ + { + "_reference": "da" + } + ] + }, + { + "type": "country", + "iso": "DJ", + "name": "Djibouti", + "href": "http://en.wikipedia.org/wiki/Djibouti", + "continent": "Africa", + "languages": [ + { + "_reference": "aa" + }, + { + "_reference": "so" + } + ] + }, + { + "type": "country", + "iso": "DM", + "name": "Dominica", + "href": "http://en.wikipedia.org/wiki/Dominica", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "DO", + "name": "Dominican Republic", + "href": "http://en.wikipedia.org/wiki/Dominican_Republic", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "EC", + "name": "Ecuador", + "href": "http://en.wikipedia.org/wiki/Ecuador", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "EG", + "name": "Egypt", + "href": "http://en.wikipedia.org/wiki/Egypt", + "continent": "Africa", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "SV", + "name": "El Salvador", + "href": "http://en.wikipedia.org/wiki/El_Salvador", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "GQ", + "name": "Equatorial Guinea", + "href": "http://en.wikipedia.org/wiki/Equatorial_Guinea", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "ER", + "name": "Eritrea", + "href": "http://en.wikipedia.org/wiki/Eritrea", + "continent": "Africa", + "languages": [ + { + "_reference": "aa" + }, + { + "_reference": "ti" + } + ] + }, + { + "type": "country", + "iso": "EE", + "name": "Estonia", + "href": "http://en.wikipedia.org/wiki/Estonia", + "continent": "Europe", + "languages": [ + { + "_reference": "et" + } + ] + }, + { + "type": "country", + "iso": "ET", + "name": "Ethiopia", + "href": "http://en.wikipedia.org/wiki/Ethiopia", + "continent": "Africa", + "languages": [ + { + "_reference": "aa" + }, + { + "_reference": "am" + }, + { + "_reference": "om" + }, + { + "_reference": "so" + }, + { + "_reference": "ti" + } + ] + }, + { + "type": "country", + "iso": "FK", + "name": "Falkland Islands (Malvinas)", + "href": "http://en.wikipedia.org/wiki/Falkland_Islands", + "languages": [ + ] + }, + { + "type": "country", + "iso": "FO", + "name": "Faroe Islands", + "href": "http://en.wikipedia.org/wiki/Faroe_Islands", + "continent": "Europe", + "languages": [ + { + "_reference": "fo" + } + ] + }, + { + "type": "country", + "iso": "FJ", + "name": "Fiji", + "href": "http://en.wikipedia.org/wiki/Fiji", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "FI", + "name": "Finland", + "href": "http://en.wikipedia.org/wiki/Finland", + "continent": "Europe", + "languages": [ + { + "_reference": "fi" + }, + { + "_reference": "sv" + } + ] + }, + { + "type": "country", + "iso": "FR", + "name": "France", + "href": "http://en.wikipedia.org/wiki/France", + "continent": "Europe", + "languages": [ + { + "_reference": "fr" + } + ] + }, + { + "type": "country", + "iso": "GF", + "name": "French Guiana", + "href": "http://en.wikipedia.org/wiki/French_Guiana", + "continent": "South America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "PF", + "name": "French Polynesia", + "href": "http://en.wikipedia.org/wiki/French_Polynesia", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "TF", + "name": "French Southern Territories", + "href": "http://en.wikipedia.org/wiki/French_Southern_and_Antarctic_Lands", + "continent": "Antarctica", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GA", + "name": "Gabon", + "href": "http://en.wikipedia.org/wiki/Gabon", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GM", + "name": "Gambia", + "href": "http://en.wikipedia.org/wiki/The_Gambia", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GE", + "name": "Georgia", + "href": "http://en.wikipedia.org/wiki/Georgia_%28country%29", + "continent": "Asia", + "languages": [ + { + "_reference": "ka" + } + ] + }, + { + "type": "country", + "iso": "DE", + "name": "Germany", + "href": "http://en.wikipedia.org/wiki/Germany", + "continent": "Europe", + "languages": [ + { + "_reference": "de" + } + ] + }, + { + "type": "country", + "iso": "GH", + "name": "Ghana", + "href": "http://en.wikipedia.org/wiki/Ghana", + "continent": "Africa", + "languages": [ + { + "_reference": "ak" + }, + { + "_reference": "ee" + }, + { + "_reference": "ha" + } + ] + }, + { + "type": "country", + "iso": "GI", + "name": "Gibraltar", + "href": "http://en.wikipedia.org/wiki/Gibraltar", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GR", + "name": "Greece", + "href": "http://en.wikipedia.org/wiki/Greece", + "continent": "Europe", + "languages": [ + { + "_reference": "el" + } + ] + }, + { + "type": "country", + "iso": "GL", + "name": "Greenland", + "href": "http://en.wikipedia.org/wiki/Greenland", + "continent": "North America", + "languages": [ + { + "_reference": "kl" + } + ] + }, + { + "type": "country", + "iso": "GD", + "name": "Grenada", + "href": "http://en.wikipedia.org/wiki/Grenada", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GP", + "name": "Guadeloupe", + "href": "http://en.wikipedia.org/wiki/Guadeloupe", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GU", + "name": "Guam", + "href": "http://en.wikipedia.org/wiki/Guam", + "continent": "Oceania", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "GT", + "name": "Guatemala", + "href": "http://en.wikipedia.org/wiki/Guatemala", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "GG", + "name": "Guernsey", + "href": "http://en.wikipedia.org/wiki/Guernsey", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GN", + "name": "Guinea", + "href": "http://en.wikipedia.org/wiki/Guinea", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GW", + "name": "Guinea-Bissau", + "href": "http://en.wikipedia.org/wiki/Guinea-Bissau", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "GY", + "name": "Guyana", + "href": "http://en.wikipedia.org/wiki/Guyana", + "continent": "South America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "HT", + "name": "Haiti", + "href": "http://en.wikipedia.org/wiki/Haiti", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "HM", + "name": "Heard Island and McDonald Islands", + "href": "http://en.wikipedia.org/wiki/Heard_Island_and_McDonald_Islands", + "continent": "Antarctica", + "languages": [ + ] + }, + { + "type": "country", + "iso": "VA", + "name": "Holy See (Vatican City State)", + "href": "http://en.wikipedia.org/wiki/Vatican_City", + "languages": [ + ] + }, + { + "type": "country", + "iso": "HN", + "name": "Honduras", + "href": "http://en.wikipedia.org/wiki/Honduras", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "HK", + "name": "Hong Kong", + "href": "http://en.wikipedia.org/wiki/Hong_Kong", + "continent": "Asia", + "languages": [ + { + "_reference": "en" + }, + { + "_reference": "zh" + } + ] + }, + { + "type": "country", + "iso": "HU", + "name": "Hungary", + "href": "http://en.wikipedia.org/wiki/Hungary", + "continent": "Europe", + "languages": [ + { + "_reference": "hu" + } + ] + }, + { + "type": "country", + "iso": "IS", + "name": "Iceland", + "href": "http://en.wikipedia.org/wiki/Iceland", + "continent": "Europe", + "languages": [ + { + "_reference": "is" + } + ] + }, + { + "type": "country", + "iso": "IN", + "name": "India", + "href": "http://en.wikipedia.org/wiki/India", + "continent": "Asia", + "languages": [ + { + "_reference": "as" + }, + { + "_reference": "bn" + }, + { + "_reference": "en" + }, + { + "_reference": "gu" + }, + { + "_reference": "hi" + }, + { + "_reference": "kn" + }, + { + "_reference": "ml" + }, + { + "_reference": "mr" + }, + { + "_reference": "or" + }, + { + "_reference": "pa" + }, + { + "_reference": "sa" + }, + { + "_reference": "ta" + }, + { + "_reference": "te" + }, + { + "_reference": "ur" + } + ] + }, + { + "type": "country", + "iso": "ID", + "name": "Indonesia", + "href": "http://en.wikipedia.org/wiki/Indonesia", + "continent": "Asia", + "languages": [ + { + "_reference": "id" + } + ] + }, + { + "type": "country", + "iso": "IR", + "name": "Iran, Islamic Republic of", + "href": "http://en.wikipedia.org/wiki/Iran", + "languages": [ + { + "_reference": "fa" + }, + { + "_reference": "ku" + } + ] + }, + { + "type": "country", + "iso": "IQ", + "name": "Iraq", + "href": "http://en.wikipedia.org/wiki/Iraq", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + }, + { + "_reference": "ku" + } + ] + }, + { + "type": "country", + "iso": "IE", + "name": "Ireland", + "href": "http://en.wikipedia.org/wiki/Republic_of_Ireland", + "continent": "Europe", + "languages": [ + { + "_reference": "en" + }, + { + "_reference": "ga" + } + ] + }, + { + "type": "country", + "iso": "IM", + "name": "Isle of Man", + "href": "http://en.wikipedia.org/wiki/Isle_of_Man", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "IL", + "name": "Israel", + "href": "http://en.wikipedia.org/wiki/Israel", + "continent": "Asia", + "languages": [ + { + "_reference": "he" + } + ] + }, + { + "type": "country", + "iso": "IT", + "name": "Italy", + "href": "http://en.wikipedia.org/wiki/Italy", + "continent": "Europe", + "languages": [ + { + "_reference": "it" + } + ] + }, + { + "type": "country", + "iso": "JM", + "name": "Jamaica", + "href": "http://en.wikipedia.org/wiki/Jamaica", + "continent": "North America", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "JP", + "name": "Japan", + "href": "http://en.wikipedia.org/wiki/Japan", + "continent": "Asia", + "languages": [ + { + "_reference": "ja" + } + ] + }, + { + "type": "country", + "iso": "JE", + "name": "Jersey", + "href": "http://en.wikipedia.org/wiki/Jersey", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "JO", + "name": "Jordan", + "href": "http://en.wikipedia.org/wiki/Jordan", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "KZ", + "name": "Kazakhstan", + "href": "http://en.wikipedia.org/wiki/Kazakhstan", + "continent": "Asia", + "languages": [ + { + "_reference": "kk" + } + ] + }, + { + "type": "country", + "iso": "KE", + "name": "Kenya", + "href": "http://en.wikipedia.org/wiki/Kenya", + "continent": "Africa", + "languages": [ + { + "_reference": "om" + }, + { + "_reference": "so" + }, + { + "_reference": "sw" + } + ] + }, + { + "type": "country", + "iso": "KI", + "name": "Kiribati", + "href": "http://en.wikipedia.org/wiki/Kiribati", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "KP", + "name": "Korea, Democratic People's Republic of", + "href": "http://en.wikipedia.org/wiki/North_Korea", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "KR", + "name": "Korea, Republic of", + "href": "http://en.wikipedia.org/wiki/South_Korea", + "continent": "Asia", + "languages": [ + { + "_reference": "ko" + } + ] + }, + { + "type": "country", + "iso": "KW", + "name": "Kuwait", + "href": "http://en.wikipedia.org/wiki/Kuwait", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "KG", + "name": "Kyrgyzstan", + "href": "http://en.wikipedia.org/wiki/Kyrgyzstan", + "continent": "Asia", + "languages": [ + { + "_reference": "ky" + } + ] + }, + { + "type": "country", + "iso": "LA", + "name": "Lao People's Democratic Republic", + "href": "http://en.wikipedia.org/wiki/Laos", + "languages": [ + { + "_reference": "lo" + } + ] + }, + { + "type": "country", + "iso": "LV", + "name": "Latvia", + "href": "http://en.wikipedia.org/wiki/Latvia", + "continent": "Europe", + "languages": [ + { + "_reference": "lv" + } + ] + }, + { + "type": "country", + "iso": "LB", + "name": "Lebanon", + "href": "http://en.wikipedia.org/wiki/Lebanon", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "LS", + "name": "Lesotho", + "href": "http://en.wikipedia.org/wiki/Lesotho", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "LR", + "name": "Liberia", + "href": "http://en.wikipedia.org/wiki/Liberia", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "LY", + "name": "Libyan Arab Jamahiriya", + "href": "http://en.wikipedia.org/wiki/Libya", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "LI", + "name": "Liechtenstein", + "href": "http://en.wikipedia.org/wiki/Liechtenstein", + "continent": "Europe", + "languages": [ + { + "_reference": "de" + } + ] + }, + { + "type": "country", + "iso": "LT", + "name": "Lithuania", + "href": "http://en.wikipedia.org/wiki/Lithuania", + "continent": "Europe", + "languages": [ + { + "_reference": "lt" + } + ] + }, + { + "type": "country", + "iso": "LU", + "name": "Luxembourg", + "href": "http://en.wikipedia.org/wiki/Luxembourg", + "continent": "Europe", + "languages": [ + { + "_reference": "de" + }, + { + "_reference": "fr" + } + ] + }, + { + "type": "country", + "iso": "MO", + "name": "Macao", + "href": "http://en.wikipedia.org/wiki/Macau", + "languages": [ + { + "_reference": "zh" + } + ] + }, + { + "type": "country", + "iso": "MK", + "name": "Macedonia, the former Yugoslav Republic of", + "href": "http://en.wikipedia.org/wiki/Republic_of_Macedonia", + "languages": [ + { + "_reference": "mk" + } + ] + }, + { + "type": "country", + "iso": "MG", + "name": "Madagascar", + "href": "http://en.wikipedia.org/wiki/Madagascar", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MW", + "name": "Malawi", + "href": "http://en.wikipedia.org/wiki/Malawi", + "continent": "Africa", + "languages": [ + { + "_reference": "ny" + } + ] + }, + { + "type": "country", + "iso": "MY", + "name": "Malaysia", + "href": "http://en.wikipedia.org/wiki/Malaysia", + "continent": "Asia", + "languages": [ + { + "_reference": "ms" + } + ] + }, + { + "type": "country", + "iso": "MV", + "name": "Maldives", + "href": "http://en.wikipedia.org/wiki/Maldives", + "continent": "Asia", + "languages": [ + { + "_reference": "dv" + } + ] + }, + { + "type": "country", + "iso": "ML", + "name": "Mali", + "href": "http://en.wikipedia.org/wiki/Mali", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MT", + "name": "Malta", + "href": "http://en.wikipedia.org/wiki/Malta", + "continent": "Europe", + "languages": [ + { + "_reference": "en" + }, + { + "_reference": "mt" + } + ] + }, + { + "type": "country", + "iso": "MH", + "name": "Marshall Islands", + "href": "http://en.wikipedia.org/wiki/Marshall_Islands", + "continent": "Oceania", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "MQ", + "name": "Martinique", + "href": "http://en.wikipedia.org/wiki/Martinique", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MR", + "name": "Mauritania", + "href": "http://en.wikipedia.org/wiki/Mauritania", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MU", + "name": "Mauritius", + "href": "http://en.wikipedia.org/wiki/Mauritius", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "YT", + "name": "Mayotte", + "href": "http://en.wikipedia.org/wiki/Mayotte", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MX", + "name": "Mexico", + "href": "http://en.wikipedia.org/wiki/Mexico", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "FM", + "name": "Micronesia, Federated States of", + "href": "http://en.wikipedia.org/wiki/Federated_States_of_Micronesia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MD", + "name": "Moldova, Republic of", + "href": "http://en.wikipedia.org/wiki/Moldova", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MC", + "name": "Monaco", + "href": "http://en.wikipedia.org/wiki/Monaco", + "continent": "Europe", + "languages": [ + { + "_reference": "fr" + } + ] + }, + { + "type": "country", + "iso": "MN", + "name": "Mongolia", + "href": "http://en.wikipedia.org/wiki/Mongolia", + "continent": "Asia", + "languages": [ + { + "_reference": "mn" + } + ] + }, + { + "type": "country", + "iso": "ME", + "name": "Montenegro", + "href": "http://en.wikipedia.org/wiki/Montenegro", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MS", + "name": "Montserrat", + "href": "http://en.wikipedia.org/wiki/Montserrat", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MA", + "name": "Morocco", + "href": "http://en.wikipedia.org/wiki/Morocco", + "continent": "Africa", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "MZ", + "name": "Mozambique", + "href": "http://en.wikipedia.org/wiki/Mozambique", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MM", + "name": "Myanmar", + "href": "http://en.wikipedia.org/wiki/Myanmar", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "NA", + "name": "Namibia", + "href": "http://en.wikipedia.org/wiki/Namibia", + "continent": "Africa", + "languages": [ + { + "_reference": "af" + }, + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "NR", + "name": "Nauru", + "href": "http://en.wikipedia.org/wiki/Nauru", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "NP", + "name": "Nepal", + "href": "http://en.wikipedia.org/wiki/Nepal", + "continent": "Asia", + "languages": [ + { + "_reference": "ne" + } + ] + }, + { + "type": "country", + "iso": "NL", + "name": "Netherlands", + "href": "http://en.wikipedia.org/wiki/Netherlands", + "continent": "Europe", + "languages": [ + { + "_reference": "nl" + } + ] + }, + { + "type": "country", + "iso": "AN", + "name": "Netherlands Antilles", + "href": "http://en.wikipedia.org/wiki/Netherlands_Antilles", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "NC", + "name": "New Caledonia", + "href": "http://en.wikipedia.org/wiki/New_Caledonia", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "NZ", + "name": "New Zealand", + "href": "http://en.wikipedia.org/wiki/New_Zealand", + "continent": "Oceania", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "NI", + "name": "Nicaragua", + "href": "http://en.wikipedia.org/wiki/Nicaragua", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "NE", + "name": "Niger", + "href": "http://en.wikipedia.org/wiki/Niger", + "continent": "Africa", + "languages": [ + { + "_reference": "ha" + } + ] + }, + { + "type": "country", + "iso": "NG", + "name": "Nigeria", + "href": "http://en.wikipedia.org/wiki/Nigeria", + "continent": "Africa", + "languages": [ + { + "_reference": "ha" + }, + { + "_reference": "ig" + }, + { + "_reference": "yo" + } + ] + }, + { + "type": "country", + "iso": "NU", + "name": "Niue", + "href": "http://en.wikipedia.org/wiki/Niue", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "NF", + "name": "Norfolk Island", + "href": "http://en.wikipedia.org/wiki/Norfolk_Island", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "MP", + "name": "Northern Mariana Islands", + "href": "http://en.wikipedia.org/wiki/Northern_Mariana_Islands", + "continent": "Oceania", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "NO", + "name": "Norway", + "href": "http://en.wikipedia.org/wiki/Norway", + "continent": "Europe", + "languages": [ + { + "_reference": "nb" + }, + { + "_reference": "nn" + }, + { + "_reference": "se" + } + ] + }, + { + "type": "country", + "iso": "OM", + "name": "Oman", + "href": "http://en.wikipedia.org/wiki/Oman", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "PK", + "name": "Pakistan", + "href": "http://en.wikipedia.org/wiki/Pakistan", + "continent": "Asia", + "languages": [ + { + "_reference": "en" + }, + { + "_reference": "pa" + }, + { + "_reference": "ur" + } + ] + }, + { + "type": "country", + "iso": "PW", + "name": "Palau", + "href": "http://en.wikipedia.org/wiki/Palau", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "PS", + "name": "Palestinian Territory, Occupied", + "href": "http://en.wikipedia.org/wiki/Palestinian_territories", + "languages": [ + ] + }, + { + "type": "country", + "iso": "PA", + "name": "Panama", + "href": "http://en.wikipedia.org/wiki/Panama", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "PG", + "name": "Papua New Guinea", + "href": "http://en.wikipedia.org/wiki/Papua_New_Guinea", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "PY", + "name": "Paraguay", + "href": "http://en.wikipedia.org/wiki/Paraguay", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "PE", + "name": "Peru", + "href": "http://en.wikipedia.org/wiki/Peru", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "PH", + "name": "Philippines", + "href": "http://en.wikipedia.org/wiki/Philippines", + "continent": "Asia", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "PN", + "name": "Pitcairn", + "href": "http://en.wikipedia.org/wiki/Pitcairn_Islands", + "languages": [ + ] + }, + { + "type": "country", + "iso": "PL", + "name": "Poland", + "href": "http://en.wikipedia.org/wiki/Poland", + "continent": "Europe", + "languages": [ + { + "_reference": "pl" + } + ] + }, + { + "type": "country", + "iso": "PT", + "name": "Portugal", + "href": "http://en.wikipedia.org/wiki/Portugal", + "continent": "Europe", + "languages": [ + { + "_reference": "pt" + } + ] + }, + { + "type": "country", + "iso": "PR", + "name": "Puerto Rico", + "href": "http://en.wikipedia.org/wiki/Puerto_Rico", + "continent": "North America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "QA", + "name": "Qatar", + "href": "http://en.wikipedia.org/wiki/Qatar", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "RE", + "name": "Réunion", + "href": "http://en.wikipedia.org/wiki/R%C3%A9union", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "RO", + "name": "Romania", + "href": "http://en.wikipedia.org/wiki/Romania", + "continent": "Europe", + "languages": [ + { + "_reference": "ro" + } + ] + }, + { + "type": "country", + "iso": "RU", + "name": "Russian Federation", + "href": "http://en.wikipedia.org/wiki/Russia", + "languages": [ + { + "_reference": "ru" + }, + { + "_reference": "tt" + } + ] + }, + { + "type": "country", + "iso": "RW", + "name": "Rwanda", + "href": "http://en.wikipedia.org/wiki/Rwanda", + "continent": "Africa", + "languages": [ + { + "_reference": "rw" + } + ] + }, + { + "type": "country", + "iso": "SH", + "name": "Saint Helena", + "href": "http://en.wikipedia.org/wiki/Saint_Helena", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "KN", + "name": "Saint Kitts and Nevis", + "href": "http://en.wikipedia.org/wiki/Saint_Kitts_and_Nevis", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "LC", + "name": "Saint Lucia", + "href": "http://en.wikipedia.org/wiki/Saint_Lucia", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "PM", + "name": "Saint Pierre and Miquelon", + "href": "http://en.wikipedia.org/wiki/Saint_Pierre_and_Miquelon", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "VC", + "name": "Saint Vincent and the Grenadines", + "href": "http://en.wikipedia.org/wiki/Saint_Vincent_and_the_Grenadines", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "WS", + "name": "Samoa", + "href": "http://en.wikipedia.org/wiki/Samoa", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SM", + "name": "San Marino", + "href": "http://en.wikipedia.org/wiki/San_Marino", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "ST", + "name": "Sao Tome and Principe", + "href": "http://en.wikipedia.org/wiki/S%C3%A3o_Tom%C3%A9_and_Pr%C3%ADncipe", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SA", + "name": "Saudi Arabia", + "href": "http://en.wikipedia.org/wiki/Saudi_Arabia", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "SN", + "name": "Senegal", + "href": "http://en.wikipedia.org/wiki/Senegal", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "RS", + "name": "Serbia", + "href": "http://en.wikipedia.org/wiki/Serbia", + "continent": "Europe", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SC", + "name": "Seychelles", + "href": "http://en.wikipedia.org/wiki/Seychelles", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SL", + "name": "Sierra Leone", + "href": "http://en.wikipedia.org/wiki/Sierra_Leone", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SG", + "name": "Singapore", + "href": "http://en.wikipedia.org/wiki/Singapore", + "continent": "Asia", + "languages": [ + { + "_reference": "en" + }, + { + "_reference": "zh" + } + ] + }, + { + "type": "country", + "iso": "SK", + "name": "Slovakia", + "href": "http://en.wikipedia.org/wiki/Slovakia", + "continent": "Europe", + "languages": [ + { + "_reference": "sk" + } + ] + }, + { + "type": "country", + "iso": "SI", + "name": "Slovenia", + "href": "http://en.wikipedia.org/wiki/Slovenia", + "continent": "Europe", + "languages": [ + { + "_reference": "sl" + } + ] + }, + { + "type": "country", + "iso": "SB", + "name": "Solomon Islands", + "href": "http://en.wikipedia.org/wiki/Solomon_Islands", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SO", + "name": "Somalia", + "href": "http://en.wikipedia.org/wiki/Somalia", + "continent": "Africa", + "languages": [ + { + "_reference": "so" + } + ] + }, + { + "type": "country", + "iso": "ZA", + "name": "South Africa", + "href": "http://en.wikipedia.org/wiki/South_Africa", + "continent": "Africa", + "languages": [ + { + "_reference": "af" + }, + { + "_reference": "en" + }, + { + "_reference": "nr" + }, + { + "_reference": "ss" + }, + { + "_reference": "st" + }, + { + "_reference": "tn" + }, + { + "_reference": "ts" + }, + { + "_reference": "ve" + }, + { + "_reference": "xh" + }, + { + "_reference": "zu" + } + ] + }, + { + "type": "country", + "iso": "GS", + "name": "South Georgia and the South Sandwich Islands", + "href": "http://en.wikipedia.org/wiki/South_Georgia_and_the_South_Sandwich_Islands", + "continent": "Antarctica", + "languages": [ + ] + }, + { + "type": "country", + "iso": "ES", + "name": "Spain", + "href": "http://en.wikipedia.org/wiki/Spain", + "continent": "Europe", + "languages": [ + { + "_reference": "ca" + }, + { + "_reference": "es" + }, + { + "_reference": "eu" + }, + { + "_reference": "gl" + } + ] + }, + { + "type": "country", + "iso": "LK", + "name": "Sri Lanka", + "href": "http://en.wikipedia.org/wiki/Sri_Lanka", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SD", + "name": "Sudan", + "href": "http://en.wikipedia.org/wiki/Sudan", + "continent": "Africa", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "SR", + "name": "Suriname", + "href": "http://en.wikipedia.org/wiki/Suriname", + "continent": "South America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SJ", + "name": "Svalbard and Jan Mayen", + "href": "http://en.wikipedia.org/wiki/Svalbard_and_Jan_Mayen", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SZ", + "name": "Swaziland", + "href": "http://en.wikipedia.org/wiki/Swaziland", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "SE", + "name": "Sweden", + "href": "http://en.wikipedia.org/wiki/Sweden", + "continent": "Europe", + "languages": [ + { + "_reference": "sv" + } + ] + }, + { + "type": "country", + "iso": "CH", + "name": "Switzerland", + "href": "http://en.wikipedia.org/wiki/Switzerland", + "continent": "Europe", + "languages": [ + { + "_reference": "de" + }, + { + "_reference": "fr" + }, + { + "_reference": "it" + } + ] + }, + { + "type": "country", + "iso": "SY", + "name": "Syrian Arab Republic", + "href": "http://en.wikipedia.org/wiki/Syria", + "languages": [ + { + "_reference": "ar" + }, + { + "_reference": "ku" + } + ] + }, + { + "type": "country", + "iso": "TW", + "name": "Taiwan, Province of China", + "href": "http://en.wikipedia.org/wiki/Republic_of_China", + "languages": [ + { + "_reference": "zh" + } + ] + }, + { + "type": "country", + "iso": "TJ", + "name": "Tajikistan", + "href": "http://en.wikipedia.org/wiki/Tajikistan", + "continent": "Asia", + "languages": [ + { + "_reference": "tg" + } + ] + }, + { + "type": "country", + "iso": "TZ", + "name": "Tanzania, United Republic of", + "href": "http://en.wikipedia.org/wiki/Tanzania", + "languages": [ + { + "_reference": "sw" + } + ] + }, + { + "type": "country", + "iso": "TH", + "name": "Thailand", + "href": "http://en.wikipedia.org/wiki/Thailand", + "continent": "Asia", + "languages": [ + { + "_reference": "th" + } + ] + }, + { + "type": "country", + "iso": "TL", + "name": "Timor-Leste", + "href": "http://en.wikipedia.org/wiki/East_Timor", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "TG", + "name": "Togo", + "href": "http://en.wikipedia.org/wiki/Togo", + "continent": "Africa", + "languages": [ + { + "_reference": "ee" + } + ] + }, + { + "type": "country", + "iso": "TK", + "name": "Tokelau", + "href": "http://en.wikipedia.org/wiki/Tokelau", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "TO", + "name": "Tonga", + "href": "http://en.wikipedia.org/wiki/Tonga", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "TT", + "name": "Trinidad and Tobago", + "href": "http://en.wikipedia.org/wiki/Trinidad_and_Tobago", + "continent": "North America", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "TN", + "name": "Tunisia", + "href": "http://en.wikipedia.org/wiki/Tunisia", + "continent": "Africa", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "TR", + "name": "Turkey", + "href": "http://en.wikipedia.org/wiki/Turkey", + "continent": "Asia", + "languages": [ + { + "_reference": "ku" + }, + { + "_reference": "tr" + } + ] + }, + { + "type": "country", + "iso": "TM", + "name": "Turkmenistan", + "href": "http://en.wikipedia.org/wiki/Turkmenistan", + "continent": "Asia", + "languages": [ + ] + }, + { + "type": "country", + "iso": "TC", + "name": "Turks and Caicos Islands", + "href": "http://en.wikipedia.org/wiki/Turks_and_Caicos_Islands", + "continent": "North America", + "languages": [ + ] + }, + { + "type": "country", + "iso": "TV", + "name": "Tuvalu", + "href": "http://en.wikipedia.org/wiki/Tuvalu", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "UG", + "name": "Uganda", + "href": "http://en.wikipedia.org/wiki/Uganda", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "UA", + "name": "Ukraine", + "href": "http://en.wikipedia.org/wiki/Ukraine", + "continent": "Europe", + "languages": [ + { + "_reference": "ru" + }, + { + "_reference": "uk" + } + ] + }, + { + "type": "country", + "iso": "AE", + "name": "United Arab Emirates", + "href": "http://en.wikipedia.org/wiki/United_Arab_Emirates", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "GB", + "name": "United Kingdom", + "href": "http://en.wikipedia.org/wiki/United_Kingdom", + "continent": "Europe", + "languages": [ + { + "_reference": "cy" + }, + { + "_reference": "en" + }, + { + "_reference": "gv" + }, + { + "_reference": "kw" + } + ] + }, + { + "type": "country", + "iso": "US", + "name": "United States", + "href": "http://en.wikipedia.org/wiki/United_States", + "continent": "North America", + "languages": [ + { + "_reference": "en" + }, + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "UM", + "name": "United States Minor Outlying Islands", + "href": "http://en.wikipedia.org/wiki/United_States_Minor_Outlying_Islands", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "UY", + "name": "Uruguay", + "href": "http://en.wikipedia.org/wiki/Uruguay", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "UZ", + "name": "Uzbekistan", + "href": "http://en.wikipedia.org/wiki/Uzbekistan", + "continent": "Asia", + "languages": [ + { + "_reference": "uz" + } + ] + }, + { + "type": "country", + "iso": "VU", + "name": "Vanuatu", + "href": "http://en.wikipedia.org/wiki/Vanuatu", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "VE", + "name": "Venezuela", + "href": "http://en.wikipedia.org/wiki/Venezuela", + "continent": "South America", + "languages": [ + { + "_reference": "es" + } + ] + }, + { + "type": "country", + "iso": "VN", + "name": "Viet Nam", + "href": "http://en.wikipedia.org/wiki/Vietnam", + "languages": [ + { + "_reference": "vi" + } + ] + }, + { + "type": "country", + "iso": "VG", + "name": "Virgin Islands, British", + "href": "http://en.wikipedia.org/wiki/British_Virgin_Islands", + "languages": [ + ] + }, + { + "type": "country", + "iso": "VI", + "name": "Virgin Islands, U.S.", + "href": "http://en.wikipedia.org/wiki/United_States_Virgin_Islands", + "languages": [ + { + "_reference": "en" + } + ] + }, + { + "type": "country", + "iso": "WF", + "name": "Wallis and Futuna", + "href": "http://en.wikipedia.org/wiki/Wallis_and_Futuna", + "continent": "Oceania", + "languages": [ + ] + }, + { + "type": "country", + "iso": "EH", + "name": "Western Sahara", + "href": "http://en.wikipedia.org/wiki/Western_Sahara", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "YE", + "name": "Yemen", + "href": "http://en.wikipedia.org/wiki/Yemen", + "continent": "Asia", + "languages": [ + { + "_reference": "ar" + } + ] + }, + { + "type": "country", + "iso": "ZM", + "name": "Zambia", + "href": "http://en.wikipedia.org/wiki/Zambia", + "continent": "Africa", + "languages": [ + ] + }, + { + "type": "country", + "iso": "ZW", + "name": "Zimbabwe", + "href": "http://en.wikipedia.org/wiki/Zimbabwe", + "continent": "Africa", + "languages": [ + { + "_reference": "en" + } + ] + } +] +} \ No newline at end of file diff --git a/includes/js/dijit/demos/i18n/flags.css b/includes/js/dijit/demos/i18n/flags.css new file mode 100644 index 0000000..a0916b6 --- /dev/null +++ b/includes/js/dijit/demos/i18n/flags.css @@ -0,0 +1,1223 @@ +.countryIcon { + background-image: url('flags.png'); +} +.countryAFIcon { + background-position: 0px 0px; + width: 22px; + height: 15px; +} +.countryAXIcon { + background-position: -22px -1px; + width: 22px; + height: 14px; +} +.countryALIcon { + background-position: -44px 0px; + width: 22px; + height: 15px; +} +.countryDZIcon { + background-position: -66px 0px; + width: 22px; + height: 15px; +} +.countryASIcon { + background-position: -88px -4px; + width: 22px; + height: 11px; +} +.countryADIcon { + background-position: -110px 0px; + width: 22px; + height: 15px; +} +.countryAOIcon { + background-position: -132px 0px; + width: 22px; + height: 15px; +} +.countryAIIcon { + background-position: -154px -4px; + width: 22px; + height: 11px; +} +.countryAQIcon { + background-position: -176px 0px; + width: 22px; + height: 15px; +} +.countryAGIcon { + background-position: -198px 0px; + width: 22px; + height: 15px; +} +.countryARIcon { + background-position: -220px -1px; + width: 22px; + height: 14px; +} +.countryAMIcon { + background-position: -242px -4px; + width: 22px; + height: 11px; +} +.countryAWIcon { + background-position: -264px 0px; + width: 22px; + height: 15px; +} +.countryAUIcon { + background-position: -286px -4px; + width: 22px; + height: 11px; +} +.countryATIcon { + background-position: -308px 0px; + width: 22px; + height: 15px; +} +.countryAZIcon { + background-position: -330px -4px; + width: 22px; + height: 11px; +} +.countryBSIcon { + background-position: -352px -4px; + width: 22px; + height: 11px; +} +.countryBHIcon { + background-position: -374px -2px; + width: 22px; + height: 13px; +} +.countryBDIcon { + background-position: -396px -2px; + width: 22px; + height: 13px; +} +.countryBBIcon { + background-position: -418px 0px; + width: 22px; + height: 15px; +} +.countryBYIcon { + background-position: 0px -24px; + width: 22px; + height: 11px; +} +.countryBEIcon { + background-position: -22px -20px; + width: 22px; + height: 15px; +} +.countryBZIcon { + background-position: -44px -20px; + width: 22px; + height: 15px; +} +.countryBJIcon { + background-position: -66px -20px; + width: 22px; + height: 15px; +} +.countryBMIcon { + background-position: -88px -24px; + width: 22px; + height: 11px; +} +.countryBTIcon { + background-position: -110px -20px; + width: 22px; + height: 15px; +} +.countryBOIcon { + background-position: -132px -20px; + width: 22px; + height: 15px; +} +.countryBAIcon { + background-position: -154px -24px; + width: 22px; + height: 11px; +} +.countryBWIcon { + background-position: -176px -20px; + width: 22px; + height: 15px; +} +.countryBVIcon { + background-position: -198px -19px; + width: 22px; + height: 16px; +} +.countryBRIcon { + background-position: -220px -20px; + width: 22px; + height: 15px; +} +.countryIOIcon { + background-position: -242px -24px; + width: 22px; + height: 11px; +} +.countryBNIcon { + background-position: -264px -24px; + width: 22px; + height: 11px; +} +.countryBGIcon { + background-position: -286px -22px; + width: 22px; + height: 13px; +} +.countryBFIcon { + background-position: -308px -20px; + width: 22px; + height: 15px; +} +.countryBIIcon { + background-position: -330px -22px; + width: 22px; + height: 13px; +} +.countryKHIcon { + background-position: -352px -20px; + width: 22px; + height: 15px; +} +.countryCMIcon { + background-position: -374px -20px; + width: 22px; + height: 15px; +} +.countryCAIcon { + background-position: -396px -24px; + width: 22px; + height: 11px; +} +.countryCVIcon { + background-position: -418px -22px; + width: 22px; + height: 13px; +} +.countryKYIcon { + background-position: 0px -45px; + width: 22px; + height: 11px; +} +.countryCFIcon { + background-position: -22px -41px; + width: 22px; + height: 15px; +} +.countryTDIcon { + background-position: -44px -41px; + width: 22px; + height: 15px; +} +.countryCLIcon { + background-position: -66px -41px; + width: 22px; + height: 15px; +} +.countryCNIcon { + background-position: -88px -41px; + width: 22px; + height: 15px; +} +.countryCXIcon { + background-position: -110px -45px; + width: 22px; + height: 11px; +} +.countryCCIcon { + background-position: -132px -45px; + width: 22px; + height: 11px; +} +.countryCOIcon { + background-position: -154px -41px; + width: 22px; + height: 15px; +} +.countryKMIcon { + background-position: -176px -43px; + width: 22px; + height: 13px; +} +.countryCGIcon { + background-position: -198px -41px; + width: 22px; + height: 15px; +} +.countryCDIcon { + background-position: -220px -41px; + width: 22px; + height: 15px; +} +.countryCKIcon { + background-position: -242px -45px; + width: 22px; + height: 11px; +} +.countryCRIcon { + background-position: -264px -43px; + width: 22px; + height: 13px; +} +.countryCIIcon { + background-position: -286px -41px; + width: 22px; + height: 15px; +} +.countryHRIcon { + background-position: -308px -45px; + width: 22px; + height: 11px; +} +.countryCUIcon { + background-position: -330px -45px; + width: 22px; + height: 11px; +} +.countryCYIcon { + background-position: -352px -43px; + width: 22px; + height: 13px; +} +.countryCZIcon { + background-position: -374px -41px; + width: 22px; + height: 15px; +} +.countryDKIcon { + background-position: -396px -39px; + width: 22px; + height: 17px; +} +.countryDJIcon { + background-position: -418px -41px; + width: 22px; + height: 15px; +} +.countryDMIcon { + background-position: 0px -66px; + width: 22px; + height: 11px; +} +.countryDOIcon { + background-position: -22px -63px; + width: 22px; + height: 14px; +} +.countryECIcon { + background-position: -44px -66px; + width: 22px; + height: 11px; +} +.countryEGIcon { + background-position: -66px -62px; + width: 22px; + height: 15px; +} +.countrySVIcon { + background-position: -88px -65px; + width: 22px; + height: 12px; +} +.countryGQIcon { + background-position: -110px -62px; + width: 22px; + height: 15px; +} +.countryERIcon { + background-position: -132px -66px; + width: 22px; + height: 11px; +} +.countryEEIcon { + background-position: -154px -63px; + width: 22px; + height: 14px; +} +.countryETIcon { + background-position: -176px -66px; + width: 22px; + height: 11px; +} +.countryFKIcon { + background-position: -198px -66px; + width: 22px; + height: 11px; +} +.countryFOIcon { + background-position: -220px -61px; + width: 22px; + height: 16px; +} +.countryFJIcon { + background-position: -242px -66px; + width: 22px; + height: 11px; +} +.countryFIIcon { + background-position: -264px -64px; + width: 22px; + height: 13px; +} +.countryFRIcon { + background-position: -286px -62px; + width: 22px; + height: 15px; +} +.countryGFIcon { + background-position: -308px -62px; + width: 22px; + height: 15px; +} +.countryPFIcon { + background-position: -330px -62px; + width: 22px; + height: 15px; +} +.countryTFIcon { + background-position: -352px -62px; + width: 22px; + height: 15px; +} +.countryGAIcon { + background-position: -374px -60px; + width: 22px; + height: 17px; +} +.countryGMIcon { + background-position: -396px -62px; + width: 22px; + height: 15px; +} +.countryGEIcon { + background-position: -418px -62px; + width: 22px; + height: 15px; +} +.countryDEIcon { + background-position: 0px -88px; + width: 22px; + height: 13px; +} +.countryGHIcon { + background-position: -22px -86px; + width: 22px; + height: 15px; +} +.countryGIIcon { + background-position: -44px -90px; + width: 22px; + height: 11px; +} +.countryGRIcon { + background-position: -66px -86px; + width: 22px; + height: 15px; +} +.countryGLIcon { + background-position: -88px -86px; + width: 22px; + height: 15px; +} +.countryGDIcon { + background-position: -110px -88px; + width: 22px; + height: 13px; +} +.countryGPIcon { + background-position: -132px -86px; + width: 22px; + height: 15px; +} +.countryGUIcon { + background-position: -154px -88px; + width: 22px; + height: 13px; +} +.countryGTIcon { + background-position: -176px -87px; + width: 22px; + height: 14px; +} +.countryGGIcon { + background-position: -198px -86px; + width: 22px; + height: 15px; +} +.countryGNIcon { + background-position: -220px -86px; + width: 22px; + height: 15px; +} +.countryGWIcon { + background-position: -242px -90px; + width: 22px; + height: 11px; +} +.countryGYIcon { + background-position: -264px -88px; + width: 22px; + height: 13px; +} +.countryHTIcon { + background-position: -286px -88px; + width: 22px; + height: 13px; +} +.countryHMIcon { + background-position: -308px -90px; + width: 22px; + height: 11px; +} +.countryVAIcon { + background-position: -330px -81px; + width: 20px; + height: 20px; +} +.countryHNIcon { + background-position: -350px -90px; + width: 22px; + height: 11px; +} +.countryHKIcon { + background-position: -372px -86px; + width: 22px; + height: 15px; +} +.countryHUIcon { + background-position: -394px -90px; + width: 22px; + height: 11px; +} +.countryISIcon { + background-position: -416px -85px; + width: 22px; + height: 16px; +} +.countryINIcon { + background-position: 0px -106px; + width: 22px; + height: 15px; +} +.countryIDIcon { + background-position: -22px -106px; + width: 22px; + height: 15px; +} +.countryIRIcon { + background-position: -44px -108px; + width: 22px; + height: 13px; +} +.countryIQIcon { + background-position: -66px -106px; + width: 22px; + height: 15px; +} +.countryIEIcon { + background-position: -88px -110px; + width: 22px; + height: 11px; +} +.countryIMIcon { + background-position: -110px -110px; + width: 22px; + height: 11px; +} +.countryILIcon { + background-position: -132px -105px; + width: 22px; + height: 16px; +} +.countryITIcon { + background-position: -154px -106px; + width: 22px; + height: 15px; +} +.countryJMIcon { + background-position: -176px -110px; + width: 22px; + height: 11px; +} +.countryJPIcon { + background-position: -198px -106px; + width: 22px; + height: 15px; +} +.countryJEIcon { + background-position: -220px -108px; + width: 22px; + height: 13px; +} +.countryJOIcon { + background-position: -242px -110px; + width: 22px; + height: 11px; +} +.countryKZIcon { + background-position: -264px -110px; + width: 22px; + height: 11px; +} +.countryKEIcon { + background-position: -286px -106px; + width: 22px; + height: 15px; +} +.countryKIIcon { + background-position: -308px -110px; + width: 22px; + height: 11px; +} +.countryKPIcon { + background-position: -330px -110px; + width: 22px; + height: 11px; +} +.countryKRIcon { + background-position: -352px -106px; + width: 22px; + height: 15px; +} +.countryKWIcon { + background-position: -374px -110px; + width: 22px; + height: 11px; +} +.countryKGIcon { + background-position: -396px -108px; + width: 22px; + height: 13px; +} +.countryLAIcon { + background-position: -418px -106px; + width: 22px; + height: 15px; +} +.countryLVIcon { + background-position: 0px -129px; + width: 22px; + height: 11px; +} +.countryLBIcon { + background-position: -22px -125px; + width: 22px; + height: 15px; +} +.countryLSIcon { + background-position: -44px -125px; + width: 22px; + height: 15px; +} +.countryLRIcon { + background-position: -66px -128px; + width: 22px; + height: 12px; +} +.countryLYIcon { + background-position: -88px -129px; + width: 22px; + height: 11px; +} +.countryLIIcon { + background-position: -110px -127px; + width: 22px; + height: 13px; +} +.countryLTIcon { + background-position: -132px -127px; + width: 22px; + height: 13px; +} +.countryLUIcon { + background-position: -154px -127px; + width: 22px; + height: 13px; +} +.countryMOIcon { + background-position: -176px -125px; + width: 22px; + height: 15px; +} +.countryMKIcon { + background-position: -198px -129px; + width: 22px; + height: 11px; +} +.countryMGIcon { + background-position: -220px -125px; + width: 22px; + height: 15px; +} +.countryMWIcon { + background-position: -242px -125px; + width: 22px; + height: 15px; +} +.countryMYIcon { + background-position: -264px -129px; + width: 22px; + height: 11px; +} +.countryMVIcon { + background-position: -286px -125px; + width: 22px; + height: 15px; +} +.countryMLIcon { + background-position: -308px -125px; + width: 22px; + height: 15px; +} +.countryMTIcon { + background-position: -330px -125px; + width: 22px; + height: 15px; +} +.countryMHIcon { + background-position: -352px -128px; + width: 22px; + height: 12px; +} +.countryMQIcon { + background-position: -374px -125px; + width: 22px; + height: 15px; +} +.countryMRIcon { + background-position: -396px -125px; + width: 22px; + height: 15px; +} +.countryMUIcon { + background-position: -418px -125px; + width: 22px; + height: 15px; +} +.countryYTIcon { + background-position: 0px -149px; + width: 22px; + height: 15px; +} +.countryMXIcon { + background-position: -22px -151px; + width: 22px; + height: 13px; +} +.countryFMIcon { + background-position: -44px -152px; + width: 22px; + height: 12px; +} +.countryMDIcon { + background-position: -66px -153px; + width: 22px; + height: 11px; +} +.countryMCIcon { + background-position: -88px -146px; + width: 22px; + height: 18px; +} +.countryMNIcon { + background-position: -110px -153px; + width: 22px; + height: 11px; +} +.countryMEIcon { + background-position: -132px -153px; + width: 22px; + height: 11px; +} +.countryMSIcon { + background-position: -154px -153px; + width: 22px; + height: 11px; +} +.countryMAIcon { + background-position: -176px -149px; + width: 22px; + height: 15px; +} +.countryMZIcon { + background-position: -198px -149px; + width: 22px; + height: 15px; +} +.countryMMIcon { + background-position: -220px -152px; + width: 22px; + height: 12px; +} +.countryNAIcon { + background-position: -242px -149px; + width: 22px; + height: 15px; +} +.countryNRIcon { + background-position: -264px -153px; + width: 22px; + height: 11px; +} +.countryNPIcon { + background-position: -286px -144px; + width: 16px; + height: 20px; +} +.countryNLIcon { + background-position: -302px -149px; + width: 22px; + height: 15px; +} +.countryANIcon { + background-position: -324px -149px; + width: 22px; + height: 15px; +} +.countryNCIcon { + background-position: -346px -149px; + width: 22px; + height: 15px; +} +.countryNZIcon { + background-position: -368px -153px; + width: 22px; + height: 11px; +} +.countryNIIcon { + background-position: -390px -151px; + width: 22px; + height: 13px; +} +.countryNEIcon { + background-position: -412px -145px; + width: 22px; + height: 19px; +} +.countryNGIcon { + background-position: 0px -174px; + width: 22px; + height: 11px; +} +.countryNUIcon { + background-position: -22px -174px; + width: 22px; + height: 11px; +} +.countryNFIcon { + background-position: -44px -174px; + width: 22px; + height: 11px; +} +.countryMPIcon { + background-position: -66px -174px; + width: 22px; + height: 11px; +} +.countryNOIcon { + background-position: -88px -169px; + width: 22px; + height: 16px; +} +.countryOMIcon { + background-position: -110px -174px; + width: 22px; + height: 11px; +} +.countryPKIcon { + background-position: -132px -170px; + width: 22px; + height: 15px; +} +.countryPWIcon { + background-position: -154px -171px; + width: 22px; + height: 14px; +} +.countryPSIcon { + background-position: -176px -174px; + width: 22px; + height: 11px; +} +.countryPAIcon { + background-position: -198px -170px; + width: 22px; + height: 15px; +} +.countryPGIcon { + background-position: -220px -168px; + width: 22px; + height: 17px; +} +.countryPYIcon { + background-position: -242px -172px; + width: 22px; + height: 13px; +} +.countryPEIcon { + background-position: -264px -170px; + width: 22px; + height: 15px; +} +.countryPHIcon { + background-position: -286px -174px; + width: 22px; + height: 11px; +} +.countryPNIcon { + background-position: -308px -174px; + width: 22px; + height: 11px; +} +.countryPLIcon { + background-position: -330px -171px; + width: 22px; + height: 14px; +} +.countryPTIcon { + background-position: -352px -170px; + width: 22px; + height: 15px; +} +.countryPRIcon { + background-position: -374px -170px; + width: 22px; + height: 15px; +} +.countryQAIcon { + background-position: -396px -176px; + width: 22px; + height: 9px; +} +.countryREIcon { + background-position: -418px -170px; + width: 22px; + height: 15px; +} +.countryROIcon { + background-position: 0px -191px; + width: 22px; + height: 15px; +} +.countryRUIcon { + background-position: -22px -191px; + width: 22px; + height: 15px; +} +.countryRWIcon { + background-position: -44px -191px; + width: 22px; + height: 15px; +} +.countrySHIcon { + background-position: -66px -195px; + width: 22px; + height: 11px; +} +.countryKNIcon { + background-position: -88px -191px; + width: 22px; + height: 15px; +} +.countryLCIcon { + background-position: -110px -195px; + width: 22px; + height: 11px; +} +.countryPMIcon { + background-position: -132px -191px; + width: 22px; + height: 15px; +} +.countryVCIcon { + background-position: -154px -191px; + width: 22px; + height: 15px; +} +.countryWSIcon { + background-position: -176px -195px; + width: 22px; + height: 11px; +} +.countrySMIcon { + background-position: -198px -189px; + width: 22px; + height: 17px; +} +.countrySTIcon { + background-position: -220px -195px; + width: 22px; + height: 11px; +} +.countrySAIcon { + background-position: -242px -191px; + width: 22px; + height: 15px; +} +.countrySNIcon { + background-position: -264px -191px; + width: 22px; + height: 15px; +} +.countryRSIcon { + background-position: -286px -191px; + width: 22px; + height: 15px; +} +.countrySCIcon { + background-position: -308px -195px; + width: 22px; + height: 11px; +} +.countrySLIcon { + background-position: -330px -191px; + width: 22px; + height: 15px; +} +.countrySGIcon { + background-position: -352px -191px; + width: 22px; + height: 15px; +} +.countrySKIcon { + background-position: -374px -191px; + width: 22px; + height: 15px; +} +.countrySIIcon { + background-position: -396px -195px; + width: 22px; + height: 11px; +} +.countrySBIcon { + background-position: -418px -195px; + width: 22px; + height: 11px; +} +.countrySOIcon { + background-position: 0px -215px; + width: 22px; + height: 15px; +} +.countryZAIcon { + background-position: -22px -215px; + width: 22px; + height: 15px; +} +.countryGSIcon { + background-position: -44px -219px; + width: 22px; + height: 11px; +} +.countryESIcon { + background-position: -66px -215px; + width: 22px; + height: 15px; +} +.countryLKIcon { + background-position: -88px -219px; + width: 22px; + height: 11px; +} +.countrySDIcon { + background-position: -110px -219px; + width: 22px; + height: 11px; +} +.countrySRIcon { + background-position: -132px -215px; + width: 22px; + height: 15px; +} +.countrySJIcon { + background-position: -154px -214px; + width: 22px; + height: 16px; +} +.countrySZIcon { + background-position: -176px -215px; + width: 22px; + height: 15px; +} +.countrySEIcon { + background-position: -198px -216px; + width: 22px; + height: 14px; +} +.countryCHIcon { + background-position: -220px -210px; + width: 20px; + height: 20px; +} +.countrySYIcon { + background-position: -240px -215px; + width: 22px; + height: 15px; +} +.countryTWIcon { + background-position: -262px -215px; + width: 22px; + height: 15px; +} +.countryTJIcon { + background-position: -284px -219px; + width: 22px; + height: 11px; +} +.countryTZIcon { + background-position: -306px -215px; + width: 22px; + height: 15px; +} +.countryTHIcon { + background-position: -328px -215px; + width: 22px; + height: 15px; +} +.countryTLIcon { + background-position: -350px -219px; + width: 22px; + height: 11px; +} +.countryTGIcon { + background-position: -372px -216px; + width: 22px; + height: 14px; +} +.countryTKIcon { + background-position: -394px -219px; + width: 22px; + height: 11px; +} +.countryTOIcon { + background-position: -416px -219px; + width: 22px; + height: 11px; +} +.countryTTIcon { + background-position: 0px -236px; + width: 22px; + height: 13px; +} +.countryTNIcon { + background-position: -22px -234px; + width: 22px; + height: 15px; +} +.countryTRIcon { + background-position: -44px -234px; + width: 22px; + height: 15px; +} +.countryTMIcon { + background-position: -66px -234px; + width: 22px; + height: 15px; +} +.countryTCIcon { + background-position: -88px -238px; + width: 22px; + height: 11px; +} +.countryTVIcon { + background-position: -110px -238px; + width: 22px; + height: 11px; +} +.countryUGIcon { + background-position: -132px -234px; + width: 22px; + height: 15px; +} +.countryUAIcon { + background-position: -154px -234px; + width: 22px; + height: 15px; +} +.countryAEIcon { + background-position: -176px -238px; + width: 22px; + height: 11px; +} +.countryGBIcon { + background-position: -198px -238px; + width: 22px; + height: 11px; +} +.countryUSIcon { + background-position: -220px -237px; + width: 22px; + height: 12px; +} +.countryUMIcon { + background-position: -242px -237px; + width: 22px; + height: 12px; +} +.countryUYIcon { + background-position: -264px -234px; + width: 22px; + height: 15px; +} +.countryUZIcon { + background-position: -286px -238px; + width: 22px; + height: 11px; +} +.countryVUIcon { + background-position: -308px -236px; + width: 22px; + height: 13px; +} +.countryVEIcon { + background-position: -330px -234px; + width: 22px; + height: 15px; +} +.countryVNIcon { + background-position: -352px -234px; + width: 22px; + height: 15px; +} +.countryVGIcon { + background-position: -374px -238px; + width: 22px; + height: 11px; +} +.countryVIIcon { + background-position: -396px -234px; + width: 22px; + height: 15px; +} +.countryWFIcon { + background-position: -418px -234px; + width: 22px; + height: 15px; +} +.countryEHIcon { + background-position: 0px -257px; + width: 22px; + height: 11px; +} +.countryYEIcon { + background-position: -22px -253px; + width: 22px; + height: 15px; +} +.countryZMIcon { + background-position: -44px -253px; + width: 22px; + height: 15px; +} +.countryZWIcon { + background-position: -66px -257px; + width: 22px; + height: 11px; +} diff --git a/includes/js/dijit/demos/i18n/flags.css.commented.css b/includes/js/dijit/demos/i18n/flags.css.commented.css new file mode 100644 index 0000000..551ffe5 --- /dev/null +++ b/includes/js/dijit/demos/i18n/flags.css.commented.css @@ -0,0 +1,1224 @@ +.countryIcon { + background-image: url('flags.png'); +} + +.countryAFIcon { + background-position: 0px 0px; + width: 22px; + height: 15px; +} +.countryAXIcon { + background-position: -22px -1px; + width: 22px; + height: 14px; +} +.countryALIcon { + background-position: -44px 0px; + width: 22px; + height: 15px; +} +.countryDZIcon { + background-position: -66px 0px; + width: 22px; + height: 15px; +} +.countryASIcon { + background-position: -88px -4px; + width: 22px; + height: 11px; +} +.countryADIcon { + background-position: -110px 0px; + width: 22px; + height: 15px; +} +.countryAOIcon { + background-position: -132px 0px; + width: 22px; + height: 15px; +} +.countryAIIcon { + background-position: -154px -4px; + width: 22px; + height: 11px; +} +.countryAQIcon { + background-position: -176px 0px; + width: 22px; + height: 15px; +} +.countryAGIcon { + background-position: -198px 0px; + width: 22px; + height: 15px; +} +.countryARIcon { + background-position: -220px -1px; + width: 22px; + height: 14px; +} +.countryAMIcon { + background-position: -242px -4px; + width: 22px; + height: 11px; +} +.countryAWIcon { + background-position: -264px 0px; + width: 22px; + height: 15px; +} +.countryAUIcon { + background-position: -286px -4px; + width: 22px; + height: 11px; +} +.countryATIcon { + background-position: -308px 0px; + width: 22px; + height: 15px; +} +.countryAZIcon { + background-position: -330px -4px; + width: 22px; + height: 11px; +} +.countryBSIcon { + background-position: -352px -4px; + width: 22px; + height: 11px; +} +.countryBHIcon { + background-position: -374px -2px; + width: 22px; + height: 13px; +} +.countryBDIcon { + background-position: -396px -2px; + width: 22px; + height: 13px; +} +.countryBBIcon { + background-position: -418px 0px; + width: 22px; + height: 15px; +} +.countryBYIcon { + background-position: 0px -24px; + width: 22px; + height: 11px; +} +.countryBEIcon { + background-position: -22px -20px; + width: 22px; + height: 15px; +} +.countryBZIcon { + background-position: -44px -20px; + width: 22px; + height: 15px; +} +.countryBJIcon { + background-position: -66px -20px; + width: 22px; + height: 15px; +} +.countryBMIcon { + background-position: -88px -24px; + width: 22px; + height: 11px; +} +.countryBTIcon { + background-position: -110px -20px; + width: 22px; + height: 15px; +} +.countryBOIcon { + background-position: -132px -20px; + width: 22px; + height: 15px; +} +.countryBAIcon { + background-position: -154px -24px; + width: 22px; + height: 11px; +} +.countryBWIcon { + background-position: -176px -20px; + width: 22px; + height: 15px; +} +.countryBVIcon { + background-position: -198px -19px; + width: 22px; + height: 16px; +} +.countryBRIcon { + background-position: -220px -20px; + width: 22px; + height: 15px; +} +.countryIOIcon { + background-position: -242px -24px; + width: 22px; + height: 11px; +} +.countryBNIcon { + background-position: -264px -24px; + width: 22px; + height: 11px; +} +.countryBGIcon { + background-position: -286px -22px; + width: 22px; + height: 13px; +} +.countryBFIcon { + background-position: -308px -20px; + width: 22px; + height: 15px; +} +.countryBIIcon { + background-position: -330px -22px; + width: 22px; + height: 13px; +} +.countryKHIcon { + background-position: -352px -20px; + width: 22px; + height: 15px; +} +.countryCMIcon { + background-position: -374px -20px; + width: 22px; + height: 15px; +} +.countryCAIcon { + background-position: -396px -24px; + width: 22px; + height: 11px; +} +.countryCVIcon { + background-position: -418px -22px; + width: 22px; + height: 13px; +} +.countryKYIcon { + background-position: 0px -45px; + width: 22px; + height: 11px; +} +.countryCFIcon { + background-position: -22px -41px; + width: 22px; + height: 15px; +} +.countryTDIcon { + background-position: -44px -41px; + width: 22px; + height: 15px; +} +.countryCLIcon { + background-position: -66px -41px; + width: 22px; + height: 15px; +} +.countryCNIcon { + background-position: -88px -41px; + width: 22px; + height: 15px; +} +.countryCXIcon { + background-position: -110px -45px; + width: 22px; + height: 11px; +} +.countryCCIcon { + background-position: -132px -45px; + width: 22px; + height: 11px; +} +.countryCOIcon { + background-position: -154px -41px; + width: 22px; + height: 15px; +} +.countryKMIcon { + background-position: -176px -43px; + width: 22px; + height: 13px; +} +.countryCGIcon { + background-position: -198px -41px; + width: 22px; + height: 15px; +} +.countryCDIcon { + background-position: -220px -41px; + width: 22px; + height: 15px; +} +.countryCKIcon { + background-position: -242px -45px; + width: 22px; + height: 11px; +} +.countryCRIcon { + background-position: -264px -43px; + width: 22px; + height: 13px; +} +.countryCIIcon { + background-position: -286px -41px; + width: 22px; + height: 15px; +} +.countryHRIcon { + background-position: -308px -45px; + width: 22px; + height: 11px; +} +.countryCUIcon { + background-position: -330px -45px; + width: 22px; + height: 11px; +} +.countryCYIcon { + background-position: -352px -43px; + width: 22px; + height: 13px; +} +.countryCZIcon { + background-position: -374px -41px; + width: 22px; + height: 15px; +} +.countryDKIcon { + background-position: -396px -39px; + width: 22px; + height: 17px; +} +.countryDJIcon { + background-position: -418px -41px; + width: 22px; + height: 15px; +} +.countryDMIcon { + background-position: 0px -66px; + width: 22px; + height: 11px; +} +.countryDOIcon { + background-position: -22px -63px; + width: 22px; + height: 14px; +} +.countryECIcon { + background-position: -44px -66px; + width: 22px; + height: 11px; +} +.countryEGIcon { + background-position: -66px -62px; + width: 22px; + height: 15px; +} +.countrySVIcon { + background-position: -88px -65px; + width: 22px; + height: 12px; +} +.countryGQIcon { + background-position: -110px -62px; + width: 22px; + height: 15px; +} +.countryERIcon { + background-position: -132px -66px; + width: 22px; + height: 11px; +} +.countryEEIcon { + background-position: -154px -63px; + width: 22px; + height: 14px; +} +.countryETIcon { + background-position: -176px -66px; + width: 22px; + height: 11px; +} +.countryFKIcon { + background-position: -198px -66px; + width: 22px; + height: 11px; +} +.countryFOIcon { + background-position: -220px -61px; + width: 22px; + height: 16px; +} +.countryFJIcon { + background-position: -242px -66px; + width: 22px; + height: 11px; +} +.countryFIIcon { + background-position: -264px -64px; + width: 22px; + height: 13px; +} +.countryFRIcon { + background-position: -286px -62px; + width: 22px; + height: 15px; +} +.countryGFIcon { + background-position: -308px -62px; + width: 22px; + height: 15px; +} +.countryPFIcon { + background-position: -330px -62px; + width: 22px; + height: 15px; +} +.countryTFIcon { + background-position: -352px -62px; + width: 22px; + height: 15px; +} +.countryGAIcon { + background-position: -374px -60px; + width: 22px; + height: 17px; +} +.countryGMIcon { + background-position: -396px -62px; + width: 22px; + height: 15px; +} +.countryGEIcon { + background-position: -418px -62px; + width: 22px; + height: 15px; +} +.countryDEIcon { + background-position: 0px -88px; + width: 22px; + height: 13px; +} +.countryGHIcon { + background-position: -22px -86px; + width: 22px; + height: 15px; +} +.countryGIIcon { + background-position: -44px -90px; + width: 22px; + height: 11px; +} +.countryGRIcon { + background-position: -66px -86px; + width: 22px; + height: 15px; +} +.countryGLIcon { + background-position: -88px -86px; + width: 22px; + height: 15px; +} +.countryGDIcon { + background-position: -110px -88px; + width: 22px; + height: 13px; +} +.countryGPIcon { + background-position: -132px -86px; + width: 22px; + height: 15px; +} +.countryGUIcon { + background-position: -154px -88px; + width: 22px; + height: 13px; +} +.countryGTIcon { + background-position: -176px -87px; + width: 22px; + height: 14px; +} +.countryGGIcon { + background-position: -198px -86px; + width: 22px; + height: 15px; +} +.countryGNIcon { + background-position: -220px -86px; + width: 22px; + height: 15px; +} +.countryGWIcon { + background-position: -242px -90px; + width: 22px; + height: 11px; +} +.countryGYIcon { + background-position: -264px -88px; + width: 22px; + height: 13px; +} +.countryHTIcon { + background-position: -286px -88px; + width: 22px; + height: 13px; +} +.countryHMIcon { + background-position: -308px -90px; + width: 22px; + height: 11px; +} +.countryVAIcon { + background-position: -330px -81px; + width: 20px; + height: 20px; +} +.countryHNIcon { + background-position: -350px -90px; + width: 22px; + height: 11px; +} +.countryHKIcon { + background-position: -372px -86px; + width: 22px; + height: 15px; +} +.countryHUIcon { + background-position: -394px -90px; + width: 22px; + height: 11px; +} +.countryISIcon { + background-position: -416px -85px; + width: 22px; + height: 16px; +} +.countryINIcon { + background-position: 0px -106px; + width: 22px; + height: 15px; +} +.countryIDIcon { + background-position: -22px -106px; + width: 22px; + height: 15px; +} +.countryIRIcon { + background-position: -44px -108px; + width: 22px; + height: 13px; +} +.countryIQIcon { + background-position: -66px -106px; + width: 22px; + height: 15px; +} +.countryIEIcon { + background-position: -88px -110px; + width: 22px; + height: 11px; +} +.countryIMIcon { + background-position: -110px -110px; + width: 22px; + height: 11px; +} +.countryILIcon { + background-position: -132px -105px; + width: 22px; + height: 16px; +} +.countryITIcon { + background-position: -154px -106px; + width: 22px; + height: 15px; +} +.countryJMIcon { + background-position: -176px -110px; + width: 22px; + height: 11px; +} +.countryJPIcon { + background-position: -198px -106px; + width: 22px; + height: 15px; +} +.countryJEIcon { + background-position: -220px -108px; + width: 22px; + height: 13px; +} +.countryJOIcon { + background-position: -242px -110px; + width: 22px; + height: 11px; +} +.countryKZIcon { + background-position: -264px -110px; + width: 22px; + height: 11px; +} +.countryKEIcon { + background-position: -286px -106px; + width: 22px; + height: 15px; +} +.countryKIIcon { + background-position: -308px -110px; + width: 22px; + height: 11px; +} +.countryKPIcon { + background-position: -330px -110px; + width: 22px; + height: 11px; +} +.countryKRIcon { + background-position: -352px -106px; + width: 22px; + height: 15px; +} +.countryKWIcon { + background-position: -374px -110px; + width: 22px; + height: 11px; +} +.countryKGIcon { + background-position: -396px -108px; + width: 22px; + height: 13px; +} +.countryLAIcon { + background-position: -418px -106px; + width: 22px; + height: 15px; +} +.countryLVIcon { + background-position: 0px -129px; + width: 22px; + height: 11px; +} +.countryLBIcon { + background-position: -22px -125px; + width: 22px; + height: 15px; +} +.countryLSIcon { + background-position: -44px -125px; + width: 22px; + height: 15px; +} +.countryLRIcon { + background-position: -66px -128px; + width: 22px; + height: 12px; +} +.countryLYIcon { + background-position: -88px -129px; + width: 22px; + height: 11px; +} +.countryLIIcon { + background-position: -110px -127px; + width: 22px; + height: 13px; +} +.countryLTIcon { + background-position: -132px -127px; + width: 22px; + height: 13px; +} +.countryLUIcon { + background-position: -154px -127px; + width: 22px; + height: 13px; +} +.countryMOIcon { + background-position: -176px -125px; + width: 22px; + height: 15px; +} +.countryMKIcon { + background-position: -198px -129px; + width: 22px; + height: 11px; +} +.countryMGIcon { + background-position: -220px -125px; + width: 22px; + height: 15px; +} +.countryMWIcon { + background-position: -242px -125px; + width: 22px; + height: 15px; +} +.countryMYIcon { + background-position: -264px -129px; + width: 22px; + height: 11px; +} +.countryMVIcon { + background-position: -286px -125px; + width: 22px; + height: 15px; +} +.countryMLIcon { + background-position: -308px -125px; + width: 22px; + height: 15px; +} +.countryMTIcon { + background-position: -330px -125px; + width: 22px; + height: 15px; +} +.countryMHIcon { + background-position: -352px -128px; + width: 22px; + height: 12px; +} +.countryMQIcon { + background-position: -374px -125px; + width: 22px; + height: 15px; +} +.countryMRIcon { + background-position: -396px -125px; + width: 22px; + height: 15px; +} +.countryMUIcon { + background-position: -418px -125px; + width: 22px; + height: 15px; +} +.countryYTIcon { + background-position: 0px -149px; + width: 22px; + height: 15px; +} +.countryMXIcon { + background-position: -22px -151px; + width: 22px; + height: 13px; +} +.countryFMIcon { + background-position: -44px -152px; + width: 22px; + height: 12px; +} +.countryMDIcon { + background-position: -66px -153px; + width: 22px; + height: 11px; +} +.countryMCIcon { + background-position: -88px -146px; + width: 22px; + height: 18px; +} +.countryMNIcon { + background-position: -110px -153px; + width: 22px; + height: 11px; +} +.countryMEIcon { + background-position: -132px -153px; + width: 22px; + height: 11px; +} +.countryMSIcon { + background-position: -154px -153px; + width: 22px; + height: 11px; +} +.countryMAIcon { + background-position: -176px -149px; + width: 22px; + height: 15px; +} +.countryMZIcon { + background-position: -198px -149px; + width: 22px; + height: 15px; +} +.countryMMIcon { + background-position: -220px -152px; + width: 22px; + height: 12px; +} +.countryNAIcon { + background-position: -242px -149px; + width: 22px; + height: 15px; +} +.countryNRIcon { + background-position: -264px -153px; + width: 22px; + height: 11px; +} +.countryNPIcon { + background-position: -286px -144px; + width: 16px; + height: 20px; +} +.countryNLIcon { + background-position: -302px -149px; + width: 22px; + height: 15px; +} +.countryANIcon { + background-position: -324px -149px; + width: 22px; + height: 15px; +} +.countryNCIcon { + background-position: -346px -149px; + width: 22px; + height: 15px; +} +.countryNZIcon { + background-position: -368px -153px; + width: 22px; + height: 11px; +} +.countryNIIcon { + background-position: -390px -151px; + width: 22px; + height: 13px; +} +.countryNEIcon { + background-position: -412px -145px; + width: 22px; + height: 19px; +} +.countryNGIcon { + background-position: 0px -174px; + width: 22px; + height: 11px; +} +.countryNUIcon { + background-position: -22px -174px; + width: 22px; + height: 11px; +} +.countryNFIcon { + background-position: -44px -174px; + width: 22px; + height: 11px; +} +.countryMPIcon { + background-position: -66px -174px; + width: 22px; + height: 11px; +} +.countryNOIcon { + background-position: -88px -169px; + width: 22px; + height: 16px; +} +.countryOMIcon { + background-position: -110px -174px; + width: 22px; + height: 11px; +} +.countryPKIcon { + background-position: -132px -170px; + width: 22px; + height: 15px; +} +.countryPWIcon { + background-position: -154px -171px; + width: 22px; + height: 14px; +} +.countryPSIcon { + background-position: -176px -174px; + width: 22px; + height: 11px; +} +.countryPAIcon { + background-position: -198px -170px; + width: 22px; + height: 15px; +} +.countryPGIcon { + background-position: -220px -168px; + width: 22px; + height: 17px; +} +.countryPYIcon { + background-position: -242px -172px; + width: 22px; + height: 13px; +} +.countryPEIcon { + background-position: -264px -170px; + width: 22px; + height: 15px; +} +.countryPHIcon { + background-position: -286px -174px; + width: 22px; + height: 11px; +} +.countryPNIcon { + background-position: -308px -174px; + width: 22px; + height: 11px; +} +.countryPLIcon { + background-position: -330px -171px; + width: 22px; + height: 14px; +} +.countryPTIcon { + background-position: -352px -170px; + width: 22px; + height: 15px; +} +.countryPRIcon { + background-position: -374px -170px; + width: 22px; + height: 15px; +} +.countryQAIcon { + background-position: -396px -176px; + width: 22px; + height: 9px; +} +.countryREIcon { + background-position: -418px -170px; + width: 22px; + height: 15px; +} +.countryROIcon { + background-position: 0px -191px; + width: 22px; + height: 15px; +} +.countryRUIcon { + background-position: -22px -191px; + width: 22px; + height: 15px; +} +.countryRWIcon { + background-position: -44px -191px; + width: 22px; + height: 15px; +} +.countrySHIcon { + background-position: -66px -195px; + width: 22px; + height: 11px; +} +.countryKNIcon { + background-position: -88px -191px; + width: 22px; + height: 15px; +} +.countryLCIcon { + background-position: -110px -195px; + width: 22px; + height: 11px; +} +.countryPMIcon { + background-position: -132px -191px; + width: 22px; + height: 15px; +} +.countryVCIcon { + background-position: -154px -191px; + width: 22px; + height: 15px; +} +.countryWSIcon { + background-position: -176px -195px; + width: 22px; + height: 11px; +} +.countrySMIcon { + background-position: -198px -189px; + width: 22px; + height: 17px; +} +.countrySTIcon { + background-position: -220px -195px; + width: 22px; + height: 11px; +} +.countrySAIcon { + background-position: -242px -191px; + width: 22px; + height: 15px; +} +.countrySNIcon { + background-position: -264px -191px; + width: 22px; + height: 15px; +} +.countryRSIcon { + background-position: -286px -191px; + width: 22px; + height: 15px; +} +.countrySCIcon { + background-position: -308px -195px; + width: 22px; + height: 11px; +} +.countrySLIcon { + background-position: -330px -191px; + width: 22px; + height: 15px; +} +.countrySGIcon { + background-position: -352px -191px; + width: 22px; + height: 15px; +} +.countrySKIcon { + background-position: -374px -191px; + width: 22px; + height: 15px; +} +.countrySIIcon { + background-position: -396px -195px; + width: 22px; + height: 11px; +} +.countrySBIcon { + background-position: -418px -195px; + width: 22px; + height: 11px; +} +.countrySOIcon { + background-position: 0px -215px; + width: 22px; + height: 15px; +} +.countryZAIcon { + background-position: -22px -215px; + width: 22px; + height: 15px; +} +.countryGSIcon { + background-position: -44px -219px; + width: 22px; + height: 11px; +} +.countryESIcon { + background-position: -66px -215px; + width: 22px; + height: 15px; +} +.countryLKIcon { + background-position: -88px -219px; + width: 22px; + height: 11px; +} +.countrySDIcon { + background-position: -110px -219px; + width: 22px; + height: 11px; +} +.countrySRIcon { + background-position: -132px -215px; + width: 22px; + height: 15px; +} +.countrySJIcon { + background-position: -154px -214px; + width: 22px; + height: 16px; +} +.countrySZIcon { + background-position: -176px -215px; + width: 22px; + height: 15px; +} +.countrySEIcon { + background-position: -198px -216px; + width: 22px; + height: 14px; +} +.countryCHIcon { + background-position: -220px -210px; + width: 20px; + height: 20px; +} +.countrySYIcon { + background-position: -240px -215px; + width: 22px; + height: 15px; +} +.countryTWIcon { + background-position: -262px -215px; + width: 22px; + height: 15px; +} +.countryTJIcon { + background-position: -284px -219px; + width: 22px; + height: 11px; +} +.countryTZIcon { + background-position: -306px -215px; + width: 22px; + height: 15px; +} +.countryTHIcon { + background-position: -328px -215px; + width: 22px; + height: 15px; +} +.countryTLIcon { + background-position: -350px -219px; + width: 22px; + height: 11px; +} +.countryTGIcon { + background-position: -372px -216px; + width: 22px; + height: 14px; +} +.countryTKIcon { + background-position: -394px -219px; + width: 22px; + height: 11px; +} +.countryTOIcon { + background-position: -416px -219px; + width: 22px; + height: 11px; +} +.countryTTIcon { + background-position: 0px -236px; + width: 22px; + height: 13px; +} +.countryTNIcon { + background-position: -22px -234px; + width: 22px; + height: 15px; +} +.countryTRIcon { + background-position: -44px -234px; + width: 22px; + height: 15px; +} +.countryTMIcon { + background-position: -66px -234px; + width: 22px; + height: 15px; +} +.countryTCIcon { + background-position: -88px -238px; + width: 22px; + height: 11px; +} +.countryTVIcon { + background-position: -110px -238px; + width: 22px; + height: 11px; +} +.countryUGIcon { + background-position: -132px -234px; + width: 22px; + height: 15px; +} +.countryUAIcon { + background-position: -154px -234px; + width: 22px; + height: 15px; +} +.countryAEIcon { + background-position: -176px -238px; + width: 22px; + height: 11px; +} +.countryGBIcon { + background-position: -198px -238px; + width: 22px; + height: 11px; +} +.countryUSIcon { + background-position: -220px -237px; + width: 22px; + height: 12px; +} +.countryUMIcon { + background-position: -242px -237px; + width: 22px; + height: 12px; +} +.countryUYIcon { + background-position: -264px -234px; + width: 22px; + height: 15px; +} +.countryUZIcon { + background-position: -286px -238px; + width: 22px; + height: 11px; +} +.countryVUIcon { + background-position: -308px -236px; + width: 22px; + height: 13px; +} +.countryVEIcon { + background-position: -330px -234px; + width: 22px; + height: 15px; +} +.countryVNIcon { + background-position: -352px -234px; + width: 22px; + height: 15px; +} +.countryVGIcon { + background-position: -374px -238px; + width: 22px; + height: 11px; +} +.countryVIIcon { + background-position: -396px -234px; + width: 22px; + height: 15px; +} +.countryWFIcon { + background-position: -418px -234px; + width: 22px; + height: 15px; +} +.countryEHIcon { + background-position: 0px -257px; + width: 22px; + height: 11px; +} +.countryYEIcon { + background-position: -22px -253px; + width: 22px; + height: 15px; +} +.countryZMIcon { + background-position: -44px -253px; + width: 22px; + height: 15px; +} +.countryZWIcon { + background-position: -66px -257px; + width: 22px; + height: 11px; +} diff --git a/includes/js/dijit/demos/i18n/flags.png b/includes/js/dijit/demos/i18n/flags.png new file mode 100644 index 0000000..e8eaace Binary files /dev/null and b/includes/js/dijit/demos/i18n/flags.png differ diff --git a/includes/js/dijit/demos/i18n/generate.html b/includes/js/dijit/demos/i18n/generate.html new file mode 100644 index 0000000..39f703d --- /dev/null +++ b/includes/js/dijit/demos/i18n/generate.html @@ -0,0 +1,2353 @@ + + + + + + + + + +

Country / Language JSON Database Generator

+

push step #1 then wait, then step #2

+ + + +

JSON

+ + + +

Country names, flags, and ISO code

+

data taken from wikipedia ISO 3166-1 site

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Official country names used by the ISO 3166/MANumericAlpha-3Alpha-2Local ISO codes
 Afghanistan004AFGAFISO 3166-2:AF
 Åland Islands248ALAAXISO 3166-2:AX
 Albania008ALBALISO 3166-2:AL
 Algeria012DZADZISO 3166-2:DZ
 American Samoa016ASMASISO 3166-2:AS
 Andorra020ANDISO 3166-2:AD
 Angola024AGOAOISO 3166-2:AO
 Anguilla660AIAAIISO 3166-2:AI
 Antarctica010ATAAQISO 3166-2:AQ
 Antigua and Barbuda028ATGAGISO 3166-2:AG
 Argentina032ARGARISO 3166-2:AR
 Armenia051ARMAMISO 3166-2:AM
 Aruba533ABWAWISO 3166-2:AW
 Australia036AUSAUISO 3166-2:AU
 Austria040AUTATISO 3166-2:AT
 Azerbaijan031AZEAZISO 3166-2:AZ
 Bahamas044BHSBSISO 3166-2:BS
 Bahrain048BHRBHISO 3166-2:BH
 Bangladesh050BGDBDISO 3166-2:BD
 Barbados052BRBBBISO 3166-2:BB
 Belarus112BLRBYISO 3166-2:BY
 Belgium056BELBEISO 3166-2:BE
 Belize084BLZBZISO 3166-2:BZ
 Benin204BENBJISO 3166-2:BJ
 Bermuda060BMUBMISO 3166-2:BM
 Bhutan064BTNBTISO 3166-2:BT
 Bolivia068BOLBOISO 3166-2:BO
 Bosnia and Herzegovina070BIHBAISO 3166-2:BA
 Botswana072BWABWISO 3166-2:BW
 Bouvet Island074BVTBVISO 3166-2:BV
 Brazil076BRABRISO 3166-2:BR
 British Indian Ocean Territory086IOTIOISO 3166-2:IO
 Brunei Darussalam096BRNBNISO 3166-2:BN
 Bulgaria100BGRBGISO 3166-2:BG
 Burkina Faso854BFABFISO 3166-2:BF
 Burundi108BDIBIISO 3166-2:BI
 Cambodia116KHMKHISO 3166-2:KH
 Cameroon120CMRCMISO 3166-2:CM
 Canada124CANCAISO 3166-2:CA
 Cape Verde132CPVCVISO 3166-2:CV
 Cayman Islands136CYMKYISO 3166-2:KY
 Central African Republic140CAFCFISO 3166-2:CF
 Chad148TCDTDISO 3166-2:TD
 Chile152CHLCLISO 3166-2:CL
 China156CHNCNISO 3166-2:CN
 Christmas Island162CXRCXISO 3166-2:CX
 Cocos (Keeling) Islands166CCKCCISO 3166-2:CC
 Colombia170COLCOISO 3166-2:CO
 Comoros174COMKMISO 3166-2:KM
 Congo178COGCGISO 3166-2:CG
 Congo, Democratic Republic of the180CODCDISO 3166-2:CD
 Cook Islands184COKCKISO 3166-2:CK
 Costa Rica188CRICRISO 3166-2:CR
 Côte d'Ivoire384CIVCIISO 3166-2:CI
 Croatia191HRVHRISO 3166-2:HR
 Cuba192CUBCUISO 3166-2:CU
 Cyprus196CYPCYISO 3166-2:CY
 Czech Republic203CZECZISO 3166-2:CZ
 Denmark208DNKDKISO 3166-2:DK
 Djibouti262DJIDJISO 3166-2:DJ
 Dominica212DMADMISO 3166-2:DM
 Dominican Republic214DOMDOISO 3166-2:DO
 Ecuador218ECUECISO 3166-2:EC
 Egypt818EGYEGISO 3166-2:EG
 El Salvador222SLVSVISO 3166-2:SV
 Equatorial Guinea226GNQGQISO 3166-2:GQ
 Eritrea232ERIERISO 3166-2:ER
 Estonia233ESTEEISO 3166-2:EE
 Ethiopia231ETHETISO 3166-2:ET
 Falkland Islands (Malvinas)238FLKFKISO 3166-2:FK
 Faroe Islands234FROFOISO 3166-2:FO
 Fiji242FJIFJISO 3166-2:FJ
 Finland246FINFIISO 3166-2:FI
 France250FRAFRISO 3166-2:FR
 French Guiana254GUFGFISO 3166-2:GF
 French Polynesia258PYFPFISO 3166-2:PF
 French Southern Territories260ATFTFISO 3166-2:TF
 Gabon266GABGAISO 3166-2:GA
 Gambia270GMBGMISO 3166-2:GM
 Georgia268GEOGEISO 3166-2:GE
 Germany276DEUDEISO 3166-2:DE
 Ghana288GHAGHISO 3166-2:GH
 Gibraltar292GIBGIISO 3166-2:GI
 Greece300GRCGRISO 3166-2:GR
 Greenland304GRLGLISO 3166-2:GL
 Grenada308GRDGDISO 3166-2:GD
 Guadeloupe[2]312GLPGPISO 3166-2:GP
 Guam316GUMGUISO 3166-2:GU
 Guatemala320GTMGTISO 3166-2:GT
 Guernsey831GGYGGISO 3166-2:GG
 Guinea324GINGNISO 3166-2:GN
 Guinea-Bissau624GNBGWISO 3166-2:GW
 Guyana328GUYGYISO 3166-2:GY
 Haiti332HTIHTISO 3166-2:HT
 Heard Island and McDonald Islands334HMDHMISO 3166-2:HM
 Holy See (Vatican City State)336VATVAISO 3166-2:VA
 Honduras340HNDHNISO 3166-2:HN
 Hong Kong344HKGHKISO 3166-2:HK
 Hungary348HUNHUISO 3166-2:HU
 Iceland352ISLISISO 3166-2:IS
 India356INDINISO 3166-2:IN
 Indonesia360IDNIDISO 3166-2:ID
 Iran, Islamic Republic of364IRNIRISO 3166-2:IR
 Iraq368IRQIQISO 3166-2:IQ
 Ireland372IRLIEISO 3166-2:IE
 Isle of Man833IMNIMISO 3166-2:IM
 Israel376ISRILISO 3166-2:IL
 Italy380ITAITISO 3166-2:IT
 Jamaica388JAMJMISO 3166-2:JM
 Japan392JPNJPISO 3166-2:JP
 Jersey832JEYJEISO 3166-2:JE
 Jordan400JORJOISO 3166-2:JO
 Kazakhstan398KAZKZISO 3166-2:KZ
 Kenya404KENKEISO 3166-2:KE
 Kiribati296KIRKIISO 3166-2:KI
 Korea, Democratic People's Republic of408PRKKPISO 3166-2:KP
 Korea, Republic of410KORKRISO 3166-2:KR
 Kuwait414KWTKWISO 3166-2:KW
 Kyrgyzstan417KGZKGISO 3166-2:KG
 Lao People's Democratic Republic418LAOLAISO 3166-2:LA
 Latvia428LVALVISO 3166-2:LV
 Lebanon422LBNLBISO 3166-2:LB
 Lesotho426LSOLSISO 3166-2:LS
 Liberia430LBRLRISO 3166-2:LR
 Libyan Arab Jamahiriya434LBYLYISO 3166-2:LY
 Liechtenstein438LIELIISO 3166-2:LI
 Lithuania440LTULTISO 3166-2:LT
 Luxembourg442LUXLUISO 3166-2:LU
 Macao446MACMOISO 3166-2:MO
 Macedonia, the former Yugoslav Republic of807MKDMKISO 3166-2:MK
 Madagascar450MDGMGISO 3166-2:MG
 Malawi454MWIMWISO 3166-2:MW
 Malaysia458MYSMYISO 3166-2:MY
 Maldives462MDVMVISO 3166-2:MV
 Mali466MLIMLISO 3166-2:ML
 Malta470MLTMTISO 3166-2:MT
 Marshall Islands584MHLMHISO 3166-2:MH
 Martinique474MTQMQISO 3166-2:MQ
 Mauritania478MRTMRISO 3166-2:MR
 Mauritius480MUSMUISO 3166-2:MU
 Mayotte175MYTYTISO 3166-2:YT
 Mexico484MEXMXISO 3166-2:MX
 Micronesia, Federated States of583FSMFMISO 3166-2:FM
 Moldova, Republic of498MDAMDISO 3166-2:MD
 Monaco492MCOMCISO 3166-2:MC
 Mongolia496MNGMNISO 3166-2:MN
 Montenegro499MNEMEISO 3166-2:ME
 Montserrat500MSRMSISO 3166-2:MS
 Morocco504MARMAISO 3166-2:MA
 Mozambique508MOZMZISO 3166-2:MZ
 Myanmar104MMRMMISO 3166-2:MM
 Namibia516NAMNAISO 3166-2:NA
 Nauru520NRUNRISO 3166-2:NR
 Nepal524NPLNPISO 3166-2:NP
 Netherlands528NLDNLISO 3166-2:NL
 Netherlands Antilles530ANTANISO 3166-2:AN
 New Caledonia540NCLNCISO 3166-2:NC
 New Zealand554NZLNZISO 3166-2:NZ
 Nicaragua558NICNIISO 3166-2:NI
 Niger562NERNEISO 3166-2:NE
 Nigeria566NGANGISO 3166-2:NG
 Niue570NIUNUISO 3166-2:NU
 Norfolk Island574NFKNFISO 3166-2:NF
 Northern Mariana Islands580MNPMPISO 3166-2:MP
 Norway578NORNOISO 3166-2:NO
 Oman512OMNOMISO 3166-2:OM
 Pakistan586PAKPKISO 3166-2:PK
 Palau585PLWPWISO 3166-2:PW
 Palestinian Territory, Occupied275PSEPSISO 3166-2:PS
 Panama591PANPAISO 3166-2:PA
 Papua New Guinea598PNGPGISO 3166-2:PG
 Paraguay600PRYPYISO 3166-2:PY
 Peru604PERPEISO 3166-2:PE
 Philippines608PHLPHISO 3166-2:PH
 Pitcairn612PCNPNISO 3166-2:PN
 Poland616POLPLISO 3166-2:PL
 Portugal620PRTPTISO 3166-2:PT
 Puerto Rico630PRIPRISO 3166-2:PR
 Qatar634QATQAISO 3166-2:QA
 Réunion638REUREISO 3166-2:RE
 Romania642ROUROISO 3166-2:RO
 Russian Federation643RUSRUISO 3166-2:RU
 Rwanda646RWARWISO 3166-2:RW
 Saint Helena654SHNSHISO 3166-2:SH
 Saint Kitts and Nevis659KNAKNISO 3166-2:KN
 Saint Lucia662LCALCISO 3166-2:LC
 Saint Pierre and Miquelon666SPMPMISO 3166-2:PM
 Saint Vincent and the Grenadines670VCTVCISO 3166-2:VC
 Samoa882WSMWSISO 3166-2:WS
 San Marino674SMRSMISO 3166-2:SM
 Sao Tome and Principe678STPSTISO 3166-2:ST
 Saudi Arabia682SAUSAISO 3166-2:SA
 Senegal686SENSNISO 3166-2:SN
 Serbia688SRBRSISO 3166-2:RS
 Seychelles690SYCSCISO 3166-2:SC
 Sierra Leone694SLESLISO 3166-2:SL
 Singapore702SGPSGISO 3166-2:SG
 Slovakia703SVKSKISO 3166-2:SK
 Slovenia705SVNSIISO 3166-2:SI
 Solomon Islands090SLBSBISO 3166-2:SB
 Somalia706SOMSOISO 3166-2:SO
 South Africa710ZAFZAISO 3166-2:ZA
 South Georgia and the South Sandwich Islands239SGSGSISO 3166-2:GS
 Spain724ESPESISO 3166-2:ES
 Sri Lanka144LKALKISO 3166-2:LK
 Sudan736SDNSDISO 3166-2:SD
 Suriname740SURSRISO 3166-2:SR
 Svalbard and Jan Mayen744SJMSJISO 3166-2:SJ
 Swaziland748SWZSZISO 3166-2:SZ
 Sweden752SWESEISO 3166-2:SE
 Switzerland756CHECHISO 3166-2:CH
 Syrian Arab Republic760SYRSYISO 3166-2:SY
 Taiwan, Province of China158TWNTWISO 3166-2:TW
 Tajikistan762TJKTJISO 3166-2:TJ
 Tanzania, United Republic of834TZATZISO 3166-2:TZ
 Thailand764THATHISO 3166-2:TH
 Timor-Leste626TLSTLISO 3166-2:TL
 Togo768TGOTGISO 3166-2:TG
 Tokelau772TKLTKISO 3166-2:TK
 Tonga776TONTOISO 3166-2:TO
 Trinidad and Tobago780TTOTTISO 3166-2:TT
 Tunisia788TUNTNISO 3166-2:TN
 Turkey792TURTRISO 3166-2:TR
 Turkmenistan795TKMTMISO 3166-2:TM
 Turks and Caicos Islands796TCATCISO 3166-2:TC
 Tuvalu798TUVTVISO 3166-2:TV
 Uganda800UGAUGISO 3166-2:UG
 Ukraine804UKRUAISO 3166-2:UA
 United Arab Emirates784AREAEISO 3166-2:AE
 United Kingdom826GBRGBISO 3166-2:GB
 United States840USAUSISO 3166-2:US
 United States Minor Outlying Islands581UMIUMISO 3166-2:UM
 Uruguay858URYUYISO 3166-2:UY
 Uzbekistan860UZBUZISO 3166-2:UZ
 Vanuatu548VUTVUISO 3166-2:VU
 Venezuela862VENVEISO 3166-2:VE
 Viet Nam704VNMVNISO 3166-2:VN
 Virgin Islands, British092VGBVGISO 3166-2:VG
 Virgin Islands, U.S.850VIRVIISO 3166-2:VI
 Wallis and Futuna876WLFWFISO 3166-2:WF
 Western Sahara732ESHEHISO 3166-2:EH
 Yemen887YEMYEISO 3166-2:YE
 Zambia894ZMBZMISO 3166-2:ZM
 Zimbabwe716ZWEZWISO 3166-2:ZW
+ + +

Country Continent Mapping

+

abstracted from wikipedia continent country page

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Africa AlgeriaAlgiers
Africa AngolaLuanda
Africa BeninPorto-Novo (seat of government at Cotonou)
Africa BotswanaGaborone
Africa Burkina FasoOuagadougou
Africa BurundiBujumbura
Africa CameroonYaoundé
Africa Cape VerdePraia
Africa Central African RepublicBangui
Africa ChadN'Djamena
Africa ComorosMoroni
Africa Congo, Democratic Republic of (also known as Congo-Kinshasa, formerly known as Zaire) – Kinshasa
Africa Congo, Republic of (also known as Congo-Brazzaville) – Brazzaville
Africa Côte d'Ivoire (commonly known as Ivory Coast) – Yamoussoukro (seat of government at Abidjan)
Africa DjiboutiDjibouti
Africa EgyptCairo
Africa Equatorial GuineaMalabo
Africa EritreaAsmara
Africa EthiopiaAddis Ababa
Africa GabonLibreville
Africa GambiaBanjul
Africa GhanaAccra
Africa GuineaConakry
Africa Guinea-BissauBissau
Africa KenyaNairobi
Africa LesothoMaseru
Africa LiberiaMonrovia
Africa LibyaTripoli
Africa MadagascarAntananarivo
Africa MalawiLilongwe
Africa MaliBamako
Africa MauritaniaNouakchott
Africa MauritiusPort Louis
Africa Mayotte (overseas territory of France) – Mamoudzou
Africa MoroccoRabat
Africa MozambiqueMaputo
Africa NamibiaWindhoek
Africa NigerNiamey
Africa NigeriaAbuja
Africa Réunion (overseas department of France) – Saint-Denis
Africa RwandaKigali
Africa Saint Helena (overseas territory of the United Kingdom) – Jamestown
Africa Sao Tome and PrincipeSão Tomé
Africa SenegalDakar
Africa SeychellesVictoria
Africa Sierra LeoneFreetown
Africa SomaliaMogadishu
Africa South AfricaPretoria (administrative), Cape Town (legislative), Bloemfontein (judicial)
Africa SudanKhartoum
Africa SwazilandMbabane (administrative), Lobamba (royal and legislative)
Africa TanzaniaDodoma (seat of government at Dar es Salaam)
Africa TogoLomé
Africa TunisiaTunis
Africa UgandaKampala
Africa Western SaharaEl Aaiún (unofficial)
Africa ZambiaLusaka
Africa ZimbabweHarare
Asia AfghanistanKabul
Asia Armenia[2]Yerevan
Asia Azerbaijan[2]Baku
Asia BahrainManama
Asia BangladeshDhaka
Asia BhutanThimphu
Asia British Indian Ocean Territory[3] (overseas territory of the United Kingdom)
Asia BruneiBandar Seri Begawan
Asia CambodiaPhnom Penh
Asia China, People's Republic ofBeijing
Asia China, Republic of (commonly known as Taiwan) – Taipei
Asia Christmas Island[4] (overseas territory of Australia)
Asia Cocos (Keeling) Islands[4] (overseas territory of Australia)
Asia Cyprus[2]Nicosia
Asia Georgia[2]Tbilisi
Asia Hong Kong (special administrative region of the People's Republic of China)
Asia IndiaNew Delhi
Asia IndonesiaJakarta
Asia IranTehran
Asia IraqBaghdad
Asia IsraelJerusalem
Asia JapanTokyo
Asia JordanAmman
Asia KazakhstanAstana
Asia Korea, Democratic People's Republic of (commonly known as North Korea) – Pyongyang
Asia Korea, Republic of (commonly known as South Korea) – Seoul
Asia KuwaitKuwait City
Asia KyrgyzstanBishkek
Asia LaosVientiane
Asia LebanonBeirut
Asia Macau (special administrative region of the People's Republic of China)
Asia MalaysiaKuala Lumpur (seat of government at Putrajaya)
Asia MaldivesMalé
Asia MongoliaUlaanbaatar
Asia Myanmar (formerly known as Burma) – Naypyidaw
Asia NepalKathmandu
Asia OmanMuscat
Asia PakistanIslamabad
Asia Palestinian territories (collectively the territories of the West Bank and the Gaza Strip)
Asia PhilippinesManila
Asia QatarDoha
Asia Saudi ArabiaRiyadh
Asia Singapore – Singapore[5]
Asia Sri LankaSri Jayawardenepura
Asia SyriaDamascus
Asia TajikistanDushanbe
Asia ThailandBangkok
Asia Timor-Leste (commonly known as East Timor) – Dili
Asia Turkey[2]Ankara
Asia TurkmenistanAshgabat
Asia United Arab EmiratesAbu Dhabi
Asia UzbekistanTashkent
Asia VietnamHanoi
Asia YemenSana'a
Europe AlbaniaTirana
Europe AndorraAndorra la Vella
Europe AustriaVienna
Europe BelarusMinsk
Europe BelgiumBrussels
Europe Bosnia and HerzegovinaSarajevo
Europe BulgariaSofia
Europe CroatiaZagreb
Europe Czech RepublicPrague
Europe DenmarkCopenhagen
Europe EstoniaTallinn
Europe Faroe Islands (overseas territory of Denmark) – Tórshavn
Europe FinlandHelsinki
Europe FranceParis
Europe GermanyBerlin
Europe Gibraltar (overseas territory of the United Kingdom) – Gibraltar[5]
Europe GreeceAthens
Europe Guernsey (British crown dependency) – Saint Peter Port
Europe HungaryBudapest
Europe IcelandReykjavík
Europe IrelandDublin
Europe Isle of Man (British crown dependency) – Douglas
Europe ItalyRome
Europe Jersey (British crown dependency) – Saint Helier
Europe LatviaRiga
Europe LiechtensteinVaduz
Europe LithuaniaVilnius
Europe LuxembourgLuxembourg
Europe MacedoniaSkopje
Europe MaltaValletta
Europe MoldovaChişinău
Europe Monaco – Monaco[5]
Europe MontenegroPodgorica
Europe NetherlandsAmsterdam (seat of government at The Hague)
Europe NorwayOslo
Europe PolandWarsaw
Europe PortugalLisbon
Europe RomaniaBucharest
Europe Russia[6]Moscow
Europe San MarinoSan Marino
Europe SerbiaBelgrade
Europe SlovakiaBratislava
Europe SloveniaLjubljana
Europe SpainMadrid
Europe SwedenStockholm
Europe SwitzerlandBerne
Europe UkraineKiev
Europe United KingdomLondon
Europe Vatican City – Vatican City[5]
North America Anguilla (overseas territory of the United Kingdom) – The Valley
North America Antigua and BarbudaSaint John's
North America Aruba (overseas country in the Kingdom of the Netherlands) – Oranjestad
North America BahamasNassau
North America BarbadosBridgetown
North America BelizeBelmopan
North America Bermuda (overseas territory of the United Kingdom) – Hamilton
North America British Virgin Islands (overseas territory of the United Kingdom) – Road Town
North America CanadaOttawa
North America Cayman Islands (overseas territory of the United Kingdom) – George Town
North America Clipperton Island (overseas territory of France)
North America Costa RicaSan José
North America CubaHavana
North America DominicaRoseau
North America Dominican RepublicSanto Domingo
North America El SalvadorSan Salvador
North America Greenland (overseas territory of Denmark) – Nuuk
North America GrenadaSaint George's
North America Guadeloupe (overseas department of France) – Basse-Terre
North America GuatemalaGuatemala City
North America HaitiPort-au-Prince
North America HondurasTegucigalpa
North America JamaicaKingston
North America Martinique (overseas department of France) – Fort-de-France
North America MexicoMexico City
North America Montserrat (overseas territory of the United Kingdom) – Plymouth (seat of government at Brades)
North America Navassa Island (overseas territory of the United States)
North America Netherlands Antilles (overseas country in the Kingdom of the Netherlands) – Willemstad
North America NicaraguaManagua
North America PanamaPanama City
North America Puerto Rico (overseas territory of the United States) – San Juan
North America Saint Barthelemy (overseas territory of France) – Gustavia
North America Saint Kitts and NevisBasseterre
North America Saint LuciaCastries
North America Saint Martin (overseas territory of France) – Marigot
North America Saint Pierre and Miquelon (overseas territory of France) – Saint-Pierre
North America Saint Vincent and the GrenadinesKingstown
North America Trinidad and TobagoPort of Spain
North America Turks and Caicos Islands (overseas territory of the United Kingdom) – Cockburn Town
North America United StatesWashington, D.C.
North America United States Virgin Islands (overseas territory of the United States) – Charlotte Amalie
South America ArgentinaBuenos Aires
South America BoliviaSucre (seat of government at La Paz)
South America BrazilBrasília
South America ChileSantiago
South America ColombiaBogotá
South America EcuadorQuito
South America Falkland Islands (overseas territory of the United Kingdom) – Stanley
South America French Guiana (overseas department of France) – Cayenne
South America GuyanaGeorgetown
South America ParaguayAsunción
South America PeruLima
South America SurinameParamaribo
South America UruguayMontevideo
South America VenezuelaCaracas
Oceania American Samoa (overseas territory of the United States) – Pago Pago (seat of government at Fagatogo)
Oceania AustraliaCanberra
Oceania Baker Island (overseas territory of the United States)
Oceania Cook Islands (territory in free association with New Zealand) – Avarua
Oceania FijiSuva
Oceania French Polynesia (overseas territory of France) – Papeete
Oceania Guam (overseas territory of the United States) – Hagåtña
Oceania Howland Island (overseas territory of the United States)
Oceania Jarvis Island (overseas territory of the United States)
Oceania Johnston Atoll (overseas territory of the United States)
Oceania Kingman Reef (overseas territory of the United States)
Oceania KiribatiSouth Tarawa
Oceania Marshall IslandsMajuro
Oceania MicronesiaPalikir
Oceania Midway Atoll (overseas territory of the United States)
Oceania Nauru – no official capital (seat of government at Yaren)
Oceania New Caledonia (overseas territory of France) – Nouméa
Oceania New ZealandWellington
Oceania Niue (territory in free association with New Zealand) – Alofi
Oceania Norfolk Island (overseas territory of Australia) – Kingston
Oceania Northern Mariana Islands (overseas territory of the United States) – Saipan
Oceania PalauMelekeok
Oceania Palmyra Atoll (overseas territory of the United States)
Oceania Papua New GuineaPort Moresby
Oceania Pitcairn Islands (overseas territory of the United Kingdom) – Adamstown
Oceania SamoaApia
Oceania Solomon IslandsHoniara
Oceania Tokelau (overseas territory of New Zealand) – no official capital (each atoll has its own administrative centre)
Oceania TongaNuku'alofa
Oceania TuvaluFunafuti
Oceania VanuatuPort Vila
Oceania Wake Island (overseas territory of the United States)
Oceania Wallis and Futuna (overseas territory of France) – Mata-Utu
Antarctica Bouvet Island (overseas territory of Norway)
Antarctica French Southern Territories (overseas territory of France)
Antarctica Heard Island and McDonald Islands (overseas territory of Australia)
Antarctica South Georgia and the South Sandwich Islands[7] (overseas territory of the United Kingdom)
+ + + diff --git a/includes/js/dijit/demos/i18n/langCountryMap.json b/includes/js/dijit/demos/i18n/langCountryMap.json new file mode 100644 index 0000000..3730bad --- /dev/null +++ b/includes/js/dijit/demos/i18n/langCountryMap.json @@ -0,0 +1,215 @@ +[ +{ type: "languageCountryMap", language: "aa", country: "DJ"}, +{ type: "languageCountryMap", language: "aa", country: "ER"}, +{ type: "languageCountryMap", language: "aa", country: "ET"}, +{ type: "languageCountryMap", language: "af", country: "NA"}, +{ type: "languageCountryMap", language: "af", country: "ZA"}, +{ type: "languageCountryMap", language: "ak", country: "GH"}, +{ type: "languageCountryMap", language: "am", country: "ET"}, +{ type: "languageCountryMap", language: "ar", country: "AE"}, +{ type: "languageCountryMap", language: "ar", country: "BH"}, +{ type: "languageCountryMap", language: "ar", country: "DZ"}, +{ type: "languageCountryMap", language: "ar", country: "EG"}, +{ type: "languageCountryMap", language: "ar", country: "IQ"}, +{ type: "languageCountryMap", language: "ar", country: "JO"}, +{ type: "languageCountryMap", language: "ar", country: "KW"}, +{ type: "languageCountryMap", language: "ar", country: "LB"}, +{ type: "languageCountryMap", language: "ar", country: "LY"}, +{ type: "languageCountryMap", language: "ar", country: "MA"}, +{ type: "languageCountryMap", language: "ar", country: "OM"}, +{ type: "languageCountryMap", language: "ar", country: "QA"}, +{ type: "languageCountryMap", language: "ar", country: "SA"}, +{ type: "languageCountryMap", language: "ar", country: "SD"}, +{ type: "languageCountryMap", language: "ar", country: "SY"}, +{ type: "languageCountryMap", language: "ar", country: "TN"}, +{ type: "languageCountryMap", language: "ar", country: "YE"}, +{ type: "languageCountryMap", language: "as", country: "IN"}, +{ type: "languageCountryMap", language: "az", country: "AZ"}, +{ type: "languageCountryMap", language: "be", country: "BY"}, +{ type: "languageCountryMap", language: "bg", country: "BG"}, +{ type: "languageCountryMap", language: "bn", country: "BD"}, +{ type: "languageCountryMap", language: "bn", country: "IN"}, +{ type: "languageCountryMap", language: "bs", country: "BA"}, +{ type: "languageCountryMap", language: "ca", country: "ES"}, +{ type: "languageCountryMap", language: "cs", country: "CZ"}, +{ type: "languageCountryMap", language: "cy", country: "GB"}, +{ type: "languageCountryMap", language: "da", country: "DK"}, +{ type: "languageCountryMap", language: "de", country: "AT"}, +{ type: "languageCountryMap", language: "de", country: "BE"}, +{ type: "languageCountryMap", language: "de", country: "CH"}, +{ type: "languageCountryMap", language: "de", country: "DE"}, +{ type: "languageCountryMap", language: "de", country: "LI"}, +{ type: "languageCountryMap", language: "de", country: "LU"}, +{ type: "languageCountryMap", language: "dv", country: "MV"}, +{ type: "languageCountryMap", language: "dz", country: "BT"}, +{ type: "languageCountryMap", language: "ee", country: "GH"}, +{ type: "languageCountryMap", language: "ee", country: "TG"}, +{ type: "languageCountryMap", language: "el", country: "CY"}, +{ type: "languageCountryMap", language: "el", country: "GR"}, +{ type: "languageCountryMap", language: "en", country: "AS"}, +{ type: "languageCountryMap", language: "en", country: "AU"}, +{ type: "languageCountryMap", language: "en", country: "BE"}, +{ type: "languageCountryMap", language: "en", country: "BW"}, +{ type: "languageCountryMap", language: "en", country: "BZ"}, +{ type: "languageCountryMap", language: "en", country: "CA"}, +{ type: "languageCountryMap", language: "en", country: "GB"}, +{ type: "languageCountryMap", language: "en", country: "GU"}, +{ type: "languageCountryMap", language: "en", country: "HK"}, +{ type: "languageCountryMap", language: "en", country: "IE"}, +{ type: "languageCountryMap", language: "en", country: "IN"}, +{ type: "languageCountryMap", language: "en", country: "JM"}, +{ type: "languageCountryMap", language: "en", country: "MH"}, +{ type: "languageCountryMap", language: "en", country: "MP"}, +{ type: "languageCountryMap", language: "en", country: "MT"}, +{ type: "languageCountryMap", language: "en", country: "NA"}, +{ type: "languageCountryMap", language: "en", country: "NZ"}, +{ type: "languageCountryMap", language: "en", country: "PH"}, +{ type: "languageCountryMap", language: "en", country: "PK"}, +{ type: "languageCountryMap", language: "en", country: "SG"}, +{ type: "languageCountryMap", language: "en", country: "TT"}, +{ type: "languageCountryMap", language: "en", country: "UM"}, +{ type: "languageCountryMap", language: "en", country: "US"}, +{ type: "languageCountryMap", language: "en", country: "VI"}, +{ type: "languageCountryMap", language: "en", country: "ZA"}, +{ type: "languageCountryMap", language: "en", country: "ZW"}, +{ type: "languageCountryMap", language: "es", country: "AR"}, +{ type: "languageCountryMap", language: "es", country: "BO"}, +{ type: "languageCountryMap", language: "es", country: "CL"}, +{ type: "languageCountryMap", language: "es", country: "CO"}, +{ type: "languageCountryMap", language: "es", country: "CR"}, +{ type: "languageCountryMap", language: "es", country: "DO"}, +{ type: "languageCountryMap", language: "es", country: "EC"}, +{ type: "languageCountryMap", language: "es", country: "ES"}, +{ type: "languageCountryMap", language: "es", country: "GT"}, +{ type: "languageCountryMap", language: "es", country: "HN"}, +{ type: "languageCountryMap", language: "es", country: "MX"}, +{ type: "languageCountryMap", language: "es", country: "NI"}, +{ type: "languageCountryMap", language: "es", country: "PA"}, +{ type: "languageCountryMap", language: "es", country: "PE"}, +{ type: "languageCountryMap", language: "es", country: "PR"}, +{ type: "languageCountryMap", language: "es", country: "PY"}, +{ type: "languageCountryMap", language: "es", country: "SV"}, +{ type: "languageCountryMap", language: "es", country: "US"}, +{ type: "languageCountryMap", language: "es", country: "UY"}, +{ type: "languageCountryMap", language: "es", country: "VE"}, +{ type: "languageCountryMap", language: "et", country: "EE"}, +{ type: "languageCountryMap", language: "eu", country: "ES"}, +{ type: "languageCountryMap", language: "fa", country: "AF"}, +{ type: "languageCountryMap", language: "fa", country: "IR"}, +{ type: "languageCountryMap", language: "fi", country: "FI"}, +{ type: "languageCountryMap", language: "fo", country: "FO"}, +{ type: "languageCountryMap", language: "fr", country: "BE"}, +{ type: "languageCountryMap", language: "fr", country: "CA"}, +{ type: "languageCountryMap", language: "fr", country: "CH"}, +{ type: "languageCountryMap", language: "fr", country: "FR"}, +{ type: "languageCountryMap", language: "fr", country: "LU"}, +{ type: "languageCountryMap", language: "fr", country: "MC"}, +{ type: "languageCountryMap", language: "ga", country: "IE"}, +{ type: "languageCountryMap", language: "gl", country: "ES"}, +{ type: "languageCountryMap", language: "gu", country: "IN"}, +{ type: "languageCountryMap", language: "gv", country: "GB"}, +{ type: "languageCountryMap", language: "ha", country: "GH"}, +{ type: "languageCountryMap", language: "ha", country: "NE"}, +{ type: "languageCountryMap", language: "ha", country: "NG"}, +{ type: "languageCountryMap", language: "he", country: "IL"}, +{ type: "languageCountryMap", language: "hi", country: "IN"}, +{ type: "languageCountryMap", language: "hr", country: "HR"}, +{ type: "languageCountryMap", language: "hu", country: "HU"}, +{ type: "languageCountryMap", language: "hy", country: "AM"}, +{ type: "languageCountryMap", language: "id", country: "ID"}, +{ type: "languageCountryMap", language: "ig", country: "NG"}, +{ type: "languageCountryMap", language: "is", country: "IS"}, +{ type: "languageCountryMap", language: "it", country: "CH"}, +{ type: "languageCountryMap", language: "it", country: "IT"}, +{ type: "languageCountryMap", language: "ja", country: "JP"}, +{ type: "languageCountryMap", language: "ka", country: "GE"}, +{ type: "languageCountryMap", language: "kk", country: "KZ"}, +{ type: "languageCountryMap", language: "kl", country: "GL"}, +{ type: "languageCountryMap", language: "km", country: "KH"}, +{ type: "languageCountryMap", language: "kn", country: "IN"}, +{ type: "languageCountryMap", language: "ko", country: "KR"}, +{ type: "languageCountryMap", language: "ku", country: "IQ"}, +{ type: "languageCountryMap", language: "ku", country: "IR"}, +{ type: "languageCountryMap", language: "ku", country: "SY"}, +{ type: "languageCountryMap", language: "ku", country: "TR"}, +{ type: "languageCountryMap", language: "kw", country: "GB"}, +{ type: "languageCountryMap", language: "ky", country: "KG"}, +{ type: "languageCountryMap", language: "ln", country: "CD"}, +{ type: "languageCountryMap", language: "ln", country: "CG"}, +{ type: "languageCountryMap", language: "lo", country: "LA"}, +{ type: "languageCountryMap", language: "lt", country: "LT"}, +{ type: "languageCountryMap", language: "lv", country: "LV"}, +{ type: "languageCountryMap", language: "mk", country: "MK"}, +{ type: "languageCountryMap", language: "ml", country: "IN"}, +{ type: "languageCountryMap", language: "mn", country: "MN"}, +{ type: "languageCountryMap", language: "mr", country: "IN"}, +{ type: "languageCountryMap", language: "ms", country: "BN"}, +{ type: "languageCountryMap", language: "ms", country: "MY"}, +{ type: "languageCountryMap", language: "mt", country: "MT"}, +{ type: "languageCountryMap", language: "nb", country: "NO"}, +{ type: "languageCountryMap", language: "ne", country: "NP"}, +{ type: "languageCountryMap", language: "nl", country: "BE"}, +{ type: "languageCountryMap", language: "nl", country: "NL"}, +{ type: "languageCountryMap", language: "nn", country: "NO"}, +{ type: "languageCountryMap", language: "nr", country: "ZA"}, +{ type: "languageCountryMap", language: "ny", country: "MW"}, +{ type: "languageCountryMap", language: "om", country: "ET"}, +{ type: "languageCountryMap", language: "om", country: "KE"}, +{ type: "languageCountryMap", language: "or", country: "IN"}, +{ type: "languageCountryMap", language: "pa", country: "IN"}, +{ type: "languageCountryMap", language: "pa", country: "PK"}, +{ type: "languageCountryMap", language: "pl", country: "PL"}, +{ type: "languageCountryMap", language: "ps", country: "AF"}, +{ type: "languageCountryMap", language: "pt", country: "BR"}, +{ type: "languageCountryMap", language: "pt", country: "PT"}, +{ type: "languageCountryMap", language: "ro", country: "RO"}, +{ type: "languageCountryMap", language: "ru", country: "RU"}, +{ type: "languageCountryMap", language: "ru", country: "UA"}, +{ type: "languageCountryMap", language: "rw", country: "RW"}, +{ type: "languageCountryMap", language: "sa", country: "IN"}, +{ type: "languageCountryMap", language: "se", country: "NO"}, +{ type: "languageCountryMap", language: "sh", country: "BA"}, +{ type: "languageCountryMap", language: "sh", country: "CS"}, +{ type: "languageCountryMap", language: "sh", country: "YU"}, +{ type: "languageCountryMap", language: "sk", country: "SK"}, +{ type: "languageCountryMap", language: "sl", country: "SI"}, +{ type: "languageCountryMap", language: "so", country: "DJ"}, +{ type: "languageCountryMap", language: "so", country: "ET"}, +{ type: "languageCountryMap", language: "so", country: "KE"}, +{ type: "languageCountryMap", language: "so", country: "SO"}, +{ type: "languageCountryMap", language: "sq", country: "AL"}, +{ type: "languageCountryMap", language: "sr", country: "BA"}, +{ type: "languageCountryMap", language: "sr", country: "CS"}, +{ type: "languageCountryMap", language: "sr", country: "YU"}, +{ type: "languageCountryMap", language: "ss", country: "ZA"}, +{ type: "languageCountryMap", language: "st", country: "ZA"}, +{ type: "languageCountryMap", language: "sv", country: "FI"}, +{ type: "languageCountryMap", language: "sv", country: "SE"}, +{ type: "languageCountryMap", language: "sw", country: "KE"}, +{ type: "languageCountryMap", language: "sw", country: "TZ"}, +{ type: "languageCountryMap", language: "ta", country: "IN"}, +{ type: "languageCountryMap", language: "te", country: "IN"}, +{ type: "languageCountryMap", language: "tg", country: "TJ"}, +{ type: "languageCountryMap", language: "th", country: "TH"}, +{ type: "languageCountryMap", language: "ti", country: "ER"}, +{ type: "languageCountryMap", language: "ti", country: "ET"}, +{ type: "languageCountryMap", language: "tn", country: "ZA"}, +{ type: "languageCountryMap", language: "tr", country: "TR"}, +{ type: "languageCountryMap", language: "ts", country: "ZA"}, +{ type: "languageCountryMap", language: "tt", country: "RU"}, +{ type: "languageCountryMap", language: "uk", country: "UA"}, +{ type: "languageCountryMap", language: "ur", country: "IN"}, +{ type: "languageCountryMap", language: "ur", country: "PK"}, +{ type: "languageCountryMap", language: "uz", country: "AF"}, +{ type: "languageCountryMap", language: "uz", country: "UZ"}, +{ type: "languageCountryMap", language: "ve", country: "ZA"}, +{ type: "languageCountryMap", language: "vi", country: "VN"}, +{ type: "languageCountryMap", language: "xh", country: "ZA"}, +{ type: "languageCountryMap", language: "yo", country: "NG"}, +{ type: "languageCountryMap", language: "zh", country: "CN"}, +{ type: "languageCountryMap", language: "zh", country: "HK"}, +{ type: "languageCountryMap", language: "zh", country: "MO"}, +{ type: "languageCountryMap", language: "zh", country: "SG"}, +{ type: "languageCountryMap", language: "zh", country: "TW"}, +{ type: "languageCountryMap", language: "zu", country: "ZA"} +] diff --git a/includes/js/dijit/demos/i18n/languages.json b/includes/js/dijit/demos/i18n/languages.json new file mode 100644 index 0000000..bc4955b --- /dev/null +++ b/includes/js/dijit/demos/i18n/languages.json @@ -0,0 +1,7045 @@ +[ +{ type: "language", iso: "aa", +countries: [ +{_reference: "DJ"}, +{_reference: "ER"}, +{_reference: "ET"}, +], +name: "Qafar", +}, +{ type: "language", iso: "af", +countries: [ +{_reference: "NA"}, +{_reference: "ZA"}, +], +name: "Afrikaans", +"af": "Afrikaans", +"es": "Spaans", +"pt": "Portugees", +"ru": "Russies", +"zh": "Sjinees", +}, +{ type: "language", iso: "ak", +countries: [ +{_reference: "GH"}, +], +}, +{ type: "language", iso: "am", +countries: [ +{_reference: "ET"}, +], +name: "አማርኛ", +"aa": "አፋርኛ", +"ab": "አብሐዚኛ", +"af": "አፍሪቃንስኛ", +"am": "አማርኛ", +"ar": "ዐርቢኛ", +"as": "አሳሜዛዊ", +"ay": "አያማርኛ", +"az": "አዜርባይጃንኛ", +"ba": "ባስኪርኛ", +"be": "ቤላራሻኛ", +"bg": "ቡልጋሪኛ", +"bh": "ቢሃሪ", +"bi": "ቢስላምኛ", +"bn": "በንጋሊኛ", +"bo": "ትበትንኛ", +"br": "ብሬቶንኛ", +"ca": "ካታላንኛ", +"co": "ኮርሲካኛ", +"cs": "ቼክኛ", +"cy": "ወልሽ", +"da": "ዴኒሽ", +"de": "ጀርመን", +"dz": "ድዞንግኻኛ", +"el": "ግሪክኛ", +"en": "እንግሊዝኛ", +"eo": "ኤስፐራንቶ", +"es": "ስፓኒሽ", +"et": "ኤስቶኒአን", +"eu": "ባስክኛ", +"fa": "ፐርሲያኛ", +"fi": "ፊኒሽ", +"fj": "ፊጂኛ", +"fo": "ፋሮኛ", +"fr": "ፈረንሳይኛ", +"fy": "ፍሪስኛ", +"ga": "አይሪሽ", +"gd": "እስኮትስ ጌልክኛ", +"gl": "ጋለጋኛ", +"gn": "ጓራኒኛ", +"gu": "ጉጃርቲኛ", +"ha": "ሃውሳኛ", +"he": "ዕብራስጥ", +"hi": "ሐንድኛ", +"hr": "ክሮሽያንኛ", +"hu": "ሀንጋሪኛ", +"hy": "አርመናዊ", +"ia": "ኢንቴርሊንጓ", +"id": "እንዶኒሲኛ", +"ie": "እንተርሊንግወ", +"ik": "እኑፒያቅኛ", +"is": "አይስላንድኛ", +"it": "ጣሊያንኛ", +"iu": "እኑክቲቱትኛ", +"ja": "ጃፓንኛ", +"jv": "ጃቫንኛ", +"ka": "ጊዮርጊያን", +"kk": "ካዛክኛ", +"kl": "ካላሊሱትኛ", +"km": "ክመርኛ", +"kn": "ካናዳኛ", +"ko": "ኮሪያኛ", +"ks": "ካሽሚርኛ", +"ku": "ኩርድሽኛ", +"ky": "ኪርጊዝኛ", +"la": "ላቲንኛ", +"ln": "ሊንጋላኛ", +"lo": "ላውስኛ", +"lt": "ሊቱአኒያን", +"lv": "ላትቪያን", +"mg": "ማላጋስኛ", +"mi": "ማዮሪኛ", +"mk": "ማከዶኒኛ", +"ml": "ማላያላምኛ", +"mn": "ሞንጎላዊኛ", +"mo": "ሞልዳቫዊና", +"mr": "ማራዚኛ", +"ms": "ማላይኛ", +"mt": "ማልቲስኛ", +"my": "ቡርማኛ", +"na": "ናኡሩ", +"ne": "ኔፓሊኛ", +"nl": "ደች", +"no": "ኖርዌጂያን", +"oc": "ኦኪታንኛ", +"om": "ኦሮምኛ", +"or": "ኦሪያኛ", +"pa": "ፓንጃቢኛ", +"pl": "ፖሊሽ", +"ps": "ፑሽቶኛ", +"pt": "ፖርቱጋሊኛ", +"qu": "ኵቿኛ", +"rm": "ሮማንስ", +"rn": "ሩንዲኛ", +"ro": "ሮማኒያን", +"ru": "ራሽኛ", +"rw": "ኪንያርዋንድኛ", +"sa": "ሳንስክሪትኛ", +"sd": "ሲንድሂኛ", +"sg": "ሳንጎኛ", +"si": "ስንሃልኛ", +"sk": "ስሎቫክኛ", +"sl": "ስሎቪኛ", +"sm": "ሳሞአኛ", +"sn": "ሾናኛ", +"so": "ሱማልኛ", +"sq": "ልቤኒኛ", +"sr": "ሰርቢኛ", +"ss": "ስዋቲኛ", +"st": "ሶዞኛ", +"su": "ሱዳንኛ", +"sv": "ስዊድንኛ", +"sw": "ስዋሂሊኛ", +"ta": "ታሚልኛ", +"te": "ተሉጉኛ", +"tg": "ታጂኪኛ", +"th": "ታይኛ", +"ti": "ትግርኛ", +"tk": "ቱርክመንኛ", +"tl": "ታጋሎገኛ", +"tn": "ጽዋናዊኛ", +"to": "ቶንጋ", +"tr": "ቱርክኛ", +"ts": "ጾንጋኛ", +"tt": "ታታርኛ", +"tw": "ትዊኛ", +"ug": "ኡዊግሁርኛ", +"uk": "ዩክረኒኛ", +"ur": "ኡርዱኛ", +"uz": "ኡዝበክኛ", +"vi": "ቪትናምኛ", +"vo": "ቮላፑክኛ", +"wo": "ዎሎፍኛ", +"xh": "ዞሳኛ", +"yi": "ይዲሻዊኛ", +"yo": "ዮሩባዊኛ", +"za": "ዡዋንግኛ", +"zh": "ቻይንኛ", +"zu": "ዙሉኛ", +}, +{ type: "language", iso: "ar", +countries: [ +{_reference: "AE"}, +{_reference: "BH"}, +{_reference: "DZ"}, +{_reference: "EG"}, +{_reference: "IQ"}, +{_reference: "JO"}, +{_reference: "KW"}, +{_reference: "LB"}, +{_reference: "LY"}, +{_reference: "MA"}, +{_reference: "OM"}, +{_reference: "QA"}, +{_reference: "SA"}, +{_reference: "SD"}, +{_reference: "SY"}, +{_reference: "TN"}, +{_reference: "YE"}, +], +name: "العربية", +"aa": "الأفارية", +"ab": "الأبخازية", +"ae": "الأفستية", +"af": "الأفريقية", +"ak": "الأكانية", +"am": "الأمهرية", +"an": "الأراجونية", +"ar": "العربية", +"as": "الأسامية", +"av": "الأفاريكية", +"ay": "الأيمارا", +"az": "الأذرية", +"ba": "الباشكيرية", +"be": "البيلوروسية", +"bg": "البلغارية", +"bh": "البيهارية", +"bi": "البيسلامية", +"bm": "البامبارا", +"bn": "البنغالية", +"bo": "التبتية", +"br": "البريتونية", +"bs": "البوسنية", +"ca": "الكاتالوينية", +"ce": "الشيشانية", +"ch": "التشامورو", +"co": "الكورسيكية", +"cr": "الكرى", +"cs": "التشيكية", +"cu": "سلافية كنسية", +"cv": "التشفاش", +"cy": "الولزية", +"da": "الدانماركية", +"de": "الألمانية", +"dv": "المالديفية", +"dz": "الزونخاية", +"el": "اليونانية", +"en": "الانجليزية", +"eo": "اسبرانتو", +"es": "الأسبانية", +"et": "الأستونية", +"eu": "لغة الباسك", +"fa": "الفارسية", +"ff": "الفلة", +"fi": "الفنلندية", +"fj": "الفيجية", +"fo": "الفارويز", +"fr": "الفرنسية", +"fy": "الفريزيان", +"ga": "الأيرلندية", +"gd": "الغيلية الأسكتلندية", +"gl": "الجاليكية", +"gn": "الجوارانى", +"gu": "الغوجاراتية", +"gv": "المنكية", +"ha": "الهوسا", +"he": "العبرية", +"hi": "الهندية", +"ho": "الهيرى موتو", +"hr": "الكرواتية", +"ht": "الهايتية", +"hu": "الهنغارية", +"hy": "الأرمينية", +"hz": "الهيريرو", +"ia": "اللّغة الوسيطة", +"id": "الأندونيسية", +"ie": "الانترلينج", +"ig": "الايجبو", +"ii": "السيتشيون يى", +"ik": "الاينبياك", +"io": "الايدو", +"is": "الأيسلاندية", +"it": "الايطالية", +"iu": "الاينكتيتت", +"ja": "اليابانية", +"jv": "الجاوية", +"ka": "الجورجية", +"kg": "الكونغو", +"ki": "الكيكيو", +"kj": "الكيونياما", +"kk": "الكازاخستانية", +"kl": "الكالاليست", +"km": "الخميرية", +"kn": "الكانادا", +"ko": "الكورية", +"kr": "الكانيورى", +"ks": "الكاشميرية", +"ku": "الكردية", +"kv": "الكومى", +"kw": "الكورنية", +"ky": "القيرغستانية", +"la": "اللاتينية", +"lb": "اللوكسمبرجية", +"lg": "الجاندا", +"li": "الليمبرجيشية", +"ln": "اللينجالا", +"lo": "اللاوية", +"lt": "اللتوانية", +"lu": "اللبا-كاتانجا", +"lv": "اللاتفية", +"mg": "المالاجاشية", +"mh": "المارشالية", +"mi": "الماورية", +"mk": "المقدونية", +"ml": "الماليالام", +"mn": "المنغولية", +"mo": "المولدوفية", +"mr": "الماراثى", +"ms": "لغة الملايو", +"mt": "المالطية", +"my": "البورمية", +"na": "النورو", +"nb": "البوكمالية النرويجية", +"nd": "النديبيل الشمالى", +"ne": "النيبالية", +"ng": "الندونجا", +"nl": "الهولندية", +"nn": "النينورسك النرويجي", +"no": "النرويجية", +"nr": "النديبيل الجنوبى", +"nv": "النافاجو", +"ny": "النيانجا، التشيتشوا، التشوا", +"oc": "الأوكيتان (بعد 1500)، بروفينسية", +"oj": "الأوجيبوا", +"om": "الأورومو", +"or": "الأورييا", +"os": "الأوسيتيك", +"pa": "البنجابية", +"pi": "البالية", +"pl": "البولندية", +"ps": "البشتونية", +"pt": "البرتغالية", +"qu": "الكويتشوا", +"rm": "الرهايتو-رومانس", +"rn": "الرندى", +"ro": "الرومانية", +"ru": "الروسية", +"rw": "الكينيارواندا", +"sa": "السنسكريتية", +"sc": "السردينية", +"sd": "السيندى", +"se": "السامي الشمالى", +"sg": "السانجو", +"si": "السريلانكية", +"sk": "السلوفاكية", +"sl": "السلوفانية", +"sm": "الساموائية", +"sn": "الشونا", +"so": "الصومالية", +"sq": "الألبانية", +"sr": "الصربية", +"ss": "السواتى", +"su": "السودانية", +"sv": "السويدية", +"sw": "السواحلية", +"ta": "التاميلية", +"te": "التيلجو", +"tg": "الطاجيكية", +"th": "التايلاندية", +"ti": "التيجرينيا", +"tk": "التركمانية", +"tl": "التاغالوغية", +"tn": "التسوانية", +"to": "تونجا - جزر تونجا", +"tr": "التركية", +"ts": "السونجا", +"tt": "التتارية", +"tw": "التوى", +"ty": "التاهيتية", +"ug": "الأغورية", +"uk": "الأوكرانية", +"ur": "الأردية", +"uz": "الاوزباكية", +"ve": "الفيندا", +"vi": "الفيتنامية", +"wa": "الولونية", +"wo": "الولوف", +"yi": "اليديشية", +"yo": "اليوروبية", +"za": "الزهيونج", +"zh": "الصينية", +}, +{ type: "language", iso: "as", +countries: [ +{_reference: "IN"}, +], +name: "অসমীয়া", +"as": "অসমীয়া", +}, +{ type: "language", iso: "az", +countries: [ +{_reference: "AZ"}, +], +name: "azərbaycanca", +"az": "azərbaycanca", +}, +{ type: "language", iso: "be", +countries: [ +{_reference: "BY"}, +], +name: "Беларускі", +"ar": "арабскі", +"be": "Беларускі", +"de": "нямецкі", +"en": "англійскі", +"es": "іспанскі", +"fr": "французскі", +"hi": "хіндзі", +"it": "італьянскі", +"ja": "японскі", +"pt": "партугальскі", +"ru": "рускі", +"zh": "кітайскі", +}, +{ type: "language", iso: "bg", +countries: [ +{_reference: "BG"}, +], +name: "Български", +"ab": "Абхазски", +"af": "Африканс", +"am": "Амхарски", +"ar": "Арабски", +"av": "Аварски", +"ay": "Аймара", +"az": "Азърбайджански", +"ba": "Башкирски", +"be": "Беларуски", +"bg": "Български", +"bi": "Бислама", +"bn": "Бенгалски", +"bo": "Тибетски", +"br": "Бретонски", +"bs": "Босненски", +"ca": "Каталонски", +"ce": "Чеченски", +"co": "Корсикански", +"cs": "Чешки", +"cu": "Църковно славянски", +"cy": "Уелски", +"da": "Датски", +"de": "Немски", +"dv": "Дивехи", +"el": "Гръцки", +"en": "Английски", +"eo": "Есперанто", +"es": "Испански", +"et": "Естонски", +"eu": "Баски", +"fa": "Персийски", +"fi": "Фински", +"fr": "Френски", +"ga": "Ирландски", +"gd": "Шотландски галски", +"gu": "Гуджарати", +"he": "Иврит", +"hi": "Хинди", +"hr": "Хърватски", +"ht": "Хаитянски", +"hu": "Унгарски", +"hy": "Арменски", +"id": "Индонезийски", +"io": "Идо", +"is": "Исландски", +"it": "Италиански", +"ja": "Японски", +"jv": "Явански", +"ka": "Грузински", +"kg": "Конгоански", +"ki": "кикуйу", +"kk": "Казахски", +"km": "Кхмерски", +"ko": "Корейски", +"ks": "Кашмирски", +"ku": "Кюрдски", +"ky": "Киргизски", +"la": "Латински", +"lb": "Люксембургски", +"lo": "Лаоски", +"lt": "Литовски", +"lv": "Латвийски", +"mg": "Малгашки", +"mi": "Маорски", +"mk": "Македонски", +"ml": "Малаялам", +"mn": "Монголски", +"mo": "Молдовски", +"ms": "Малайски", +"mt": "Малтийски", +"my": "Бирмански", +"ne": "Непалски", +"nl": "Холандски", +"no": "Норвежки", +"ny": "Чинянджа", +"os": "Осетски", +"pa": "Пенджабски", +"pl": "Полски", +"ps": "Пущу", +"pt": "Португалски", +"qu": "Кечуа", +"rm": "Реторомански", +"rn": "Рунди", +"ro": "Румънски", +"ru": "Руски", +"rw": "Киняруанда", +"sa": "Санкскритски", +"sc": "Сардински", +"sg": "Санго", +"sh": "Сърбохърватски", +"si": "Синхалски", +"sk": "Словашки", +"sl": "Словенски", +"sm": "Самоански", +"so": "Сомалийски", +"sq": "Албански", +"sr": "Сръбски", +"ss": "Суази", +"st": "Сесуто", +"sv": "Шведски", +"sw": "Суахили", +"ta": "Тамилски", +"te": "Телугу", +"tg": "Таджикски", +"th": "Таи", +"tk": "Туркменски", +"tr": "Турски", +"tt": "Татарски", +"ty": "Таитянски", +"uk": "Украински", +"ur": "Урду", +"uz": "Узбекски", +"vi": "Виетнамски", +"zh": "Китайски", +"zu": "Зулуски", +}, +{ type: "language", iso: "bn", +countries: [ +{_reference: "BD"}, +{_reference: "IN"}, +], +name: "বাংলা", +"bn": "বাংলা", +}, +{ type: "language", iso: "bs", +countries: [ +{_reference: "BA"}, +], +"de": "njemački", +"en": "engleski", +"es": "španjolski", +"fr": "francuski", +"it": "talijanski", +"ja": "japanski", +"pt": "portugalski", +"ru": "ruski", +"zh": "kineski", +}, +{ type: "language", iso: "ca", +countries: [ +{_reference: "ES"}, +], +name: "català", +"aa": "àfar", +"ab": "abkhaz", +"af": "afrikaans", +"am": "amhàric", +"ar": "àrab", +"as": "assamès", +"ay": "aimara", +"az": "àzeri", +"ba": "baixkir", +"be": "bielorús", +"bg": "búlgar", +"bh": "bihari", +"bi": "bislama", +"bn": "bengalí", +"bo": "tibetà", +"br": "bretó", +"ca": "català", +"co": "cors", +"cs": "txec", +"cy": "gal·lès", +"da": "danès", +"de": "alemany", +"dz": "bhutanès", +"el": "grec", +"en": "anglès", +"eo": "esperanto", +"es": "espanyol", +"et": "estonià", +"eu": "basc", +"fa": "persa", +"fi": "finès", +"fj": "fijià", +"fo": "feroès", +"fr": "francès", +"fy": "frisó", +"ga": "irlandès", +"gd": "escocès", +"gl": "gallec", +"gn": "guaraní", +"gu": "gujarati", +"ha": "hausa", +"he": "hebreu", +"hi": "hindi", +"hr": "croat", +"hu": "hongarès", +"hy": "armeni", +"ia": "interlingua", +"id": "indonesi", +"ie": "interlingue", +"ik": "inupiak", +"is": "islandès", +"it": "italià", +"iu": "inuktitut", +"ja": "japonès", +"jv": "javanès", +"ka": "georgià", +"kk": "kazakh", +"kl": "greenlandès", +"km": "cambodjà", +"kn": "kannada", +"ko": "coreà", +"ks": "caixmiri", +"ku": "kurd", +"ky": "kirguís", +"la": "llatí", +"ln": "lingala", +"lo": "laosià", +"lt": "lituà", +"lv": "letó", +"mg": "malgaix", +"mi": "maori", +"mk": "macedoni", +"ml": "malaialam", +"mn": "mongol", +"mo": "moldau", +"mr": "marathi", +"ms": "malai", +"mt": "maltès", +"my": "birmà", +"na": "nauruà", +"ne": "nepalès", +"nl": "neerlandès", +"no": "noruec", +"oc": "occità", +"om": "oromo (afan)", +"or": "oriya", +"pa": "panjabi", +"pl": "polonès", +"ps": "paixto", +"pt": "portuguès", +"qu": "quètxua", +"rm": "retoromànic", +"rn": "kirundi", +"ro": "romanès", +"ru": "rus", +"rw": "kinyarwanda", +"sa": "sànscrit", +"sd": "sindhi", +"sg": "sango", +"sh": "serbo-croat", +"si": "sinhalès", +"sk": "eslovac", +"sl": "eslovè", +"sm": "samoà", +"sn": "shona", +"so": "somali", +"sq": "albanès", +"sr": "serbi", +"ss": "siswati", +"st": "sotho", +"su": "sundanès", +"sv": "suec", +"sw": "swahili", +"ta": "tàmil", +"te": "telugu", +"tg": "tadjik", +"th": "thai", +"ti": "tigrinya", +"tk": "turcman", +"tl": "tagàlog", +"tn": "tswana", +"to": "tonga", +"tr": "turc", +"ts": "tsonga", +"tt": "tàtar", +"tw": "twi", +"ug": "uigur", +"uk": "ucraïnès", +"ur": "urdú", +"uz": "uzbek", +"vi": "vietnamita", +"vo": "volapuk", +"wo": "wòlof", +"xh": "xosa", +"yi": "jiddish", +"yo": "ioruba", +"za": "zhuang", +"zh": "xinés", +"zu": "zulu", +}, +{ type: "language", iso: "cs", +countries: [ +{_reference: "CZ"}, +], +name: "Čeština", +"aa": "Afarština", +"ab": "Abcházština", +"af": "Afrikánština", +"am": "Amharština", +"ar": "Arabština", +"as": "Assaméština", +"ay": "Aymárština", +"az": "Azerbajdžánština", +"ba": "Baskirština", +"be": "Běloruština", +"bg": "Bulharština", +"bh": "Biharština", +"bi": "Bislámština", +"bn": "Bengálština", +"bo": "Tibetština", +"br": "Bretaňština", +"ca": "Katalánština", +"co": "Korsičtina", +"cs": "Čeština", +"cy": "Velština", +"da": "Dánština", +"de": "Němčina", +"dz": "Bhútánština", +"el": "Řečtina", +"en": "Angličtina", +"eo": "Esperanto", +"es": "Španělština", +"et": "Estonština", +"eu": "Baskičtina", +"fa": "Perština", +"fi": "Finština", +"fj": "Fidži", +"fo": "Faerština", +"fr": "Francouzština", +"fy": "Fríština", +"ga": "Irština", +"gd": "Skotská galština", +"gl": "Haličština", +"gn": "Guaranština", +"gu": "Gujaratština", +"gv": "Manština", +"ha": "Hausa", +"he": "Hebrejština", +"hi": "Hindština", +"hr": "Chorvatština", +"hu": "Maďarština", +"hy": "Arménština", +"ia": "Interlingua", +"id": "Indonéština", +"ie": "Interlingue", +"ik": "Inupiakština", +"is": "Islandština", +"it": "Italština", +"iu": "Inuktitutština", +"ja": "Japonština", +"jv": "Javánština", +"ka": "Gruzínština", +"kk": "Kazachština", +"kl": "Grónština", +"km": "Kambodžština", +"kn": "Kannadština", +"ko": "Korejština", +"ks": "Kašmírština", +"ku": "Kurdština", +"ky": "Kirgizština", +"la": "Latina", +"ln": "Lingalština", +"lo": "Laoština", +"lt": "Litevština", +"lv": "Lotyština", +"mg": "Malgaština", +"mi": "Maorština", +"mk": "Makedonština", +"ml": "Malabarština", +"mn": "Mongolština", +"mo": "Moldavština", +"mr": "Marathi", +"ms": "Malajština", +"mt": "Maltština", +"my": "Barmština", +"na": "Nauru", +"ne": "Nepálština", +"no": "Norština", +"oc": "Occitan", +"om": "Oromo (Afan)", +"or": "Oriya", +"pa": "Paňdžábština", +"pl": "Polština", +"ps": "Pashto (Pushto)", +"pt": "Portugalština", +"qu": "Kečuánština", +"rm": "Rétorománština", +"rn": "Kirundi", +"ro": "Rumunština", +"ru": "Ruština", +"rw": "Kinyarwandština", +"sa": "Sanskrt", +"sd": "Sindhi", +"sg": "Sangho", +"sh": "Srbochorvatština", +"si": "Sinhálština", +"sk": "Slovenština", +"sl": "Slovinština", +"sm": "Samoyština", +"sn": "Shona", +"so": "Somálština", +"sq": "Albánština", +"sr": "Srbština", +"ss": "Siswatština", +"st": "Sesotho", +"su": "Sundanština", +"sv": "Švédština", +"sw": "Svahilština", +"ta": "Tamilština", +"te": "Telugština", +"tg": "Tádžičtina", +"th": "Thajština", +"ti": "Tigrinijština", +"tk": "Turkmenština", +"tl": "Tagalog", +"tn": "Setswanština", +"to": "Tonga", +"tr": "Turečtina", +"ts": "Tsonga", +"tt": "Tatarština", +"tw": "Twi", +"ug": "Uighurština", +"uk": "Ukrajinština", +"ur": "Urdština", +"uz": "Uzbečtina", +"vi": "Vietnamština", +"vo": "Volapuk", +"wo": "Wolof", +"xh": "Xhosa", +"yi": "Jidiš", +"yo": "Yoruba", +"za": "Zhuang", +"zh": "Čínština", +"zu": "Zulu", +}, +{ type: "language", iso: "cy", +countries: [ +{_reference: "GB"}, +], +name: "Cymraeg", +"ar": "Arabeg", +"cy": "Cymraeg", +"de": "Almaeneg", +"en": "Saesneg", +"es": "Sbaeneg", +"fr": "Ffrangeg", +"hi": "Hindi", +"it": "Eidaleg", +"ja": "Siapaneeg", +"pt": "Portiwgaleg", +"ru": "Rwsieg", +"zh": "Tseineeg", +}, +{ type: "language", iso: "da", +countries: [ +{_reference: "DK"}, +], +name: "Dansk", +"aa": "afar", +"ab": "abkhasisk", +"ae": "avestan", +"af": "afrikaans", +"ak": "akan", +"am": "amharisk", +"an": "aragonesisk", +"ar": "arabisk", +"as": "assamesisk", +"ay": "Aymara", +"az": "aserbajdsjansk", +"ba": "bashkir", +"be": "hviderussisk", +"bg": "bulgarsk", +"bh": "bihari", +"bi": "bislama", +"bm": "bambara", +"bn": "bengalsk", +"bo": "Tibetansk", +"br": "bretonsk", +"bs": "bosnisk", +"ca": "katalansk", +"ce": "tjetjensk", +"ch": "chamorro", +"co": "Korsikansk", +"cr": "Cree", +"cs": "Tjekkisk", +"cu": "Kirkeslavisk", +"cv": "Chuvash", +"cy": "Walisisk", +"da": "Dansk", +"de": "Tysk", +"dv": "Divehi", +"dz": "Dzongkha", +"ee": "Ewe", +"el": "Græsk", +"en": "Engelsk", +"eo": "Esperanto", +"es": "Spansk", +"et": "Estisk", +"eu": "baskisk", +"fa": "Persisk", +"ff": "Fulah", +"fi": "Finsk", +"fj": "Fijian", +"fo": "Færøsk", +"fr": "Fransk", +"fy": "Frisisk", +"ga": "Irsk", +"gd": "Gælisk (skotsk)", +"gl": "Galicisk", +"gn": "Guarani", +"gu": "Gujaratisk", +"gv": "Manx", +"ha": "Hausa", +"he": "Hebraisk", +"hi": "Hindi", +"ho": "Hiri Motu", +"hr": "Kroatisk", +"ht": "Haitisk", +"hu": "Ungarsk", +"hy": "armensk", +"hz": "Herero", +"ia": "Interlingua", +"id": "Indonesisk", +"ie": "Interlingue", +"ig": "Igbo", +"ii": "Sichuan Yi", +"ik": "Inupiaq", +"io": "Ido", +"is": "Islandsk", +"it": "Italiensk", +"iu": "Inuktitut", +"ja": "Japansk", +"jv": "Javanesisk", +"ka": "Georgisk", +"kg": "Kongo", +"ki": "Kikuyu", +"kj": "Kuanyama", +"kk": "Kasakhisk", +"kl": "Kalaallisut", +"km": "Khmer", +"kn": "Kannaresisk", +"ko": "Koreansk", +"kr": "Kanuri", +"ks": "Kashmiri", +"ku": "Kurdisk", +"kw": "Cornisk", +"ky": "Kirgisisk", +"la": "Latin", +"lb": "Luxembourgsk", +"lg": "Ganda", +"li": "Limburgsk", +"ln": "Lingala", +"lo": "Lao", +"lt": "Litauisk", +"lu": "Luba-Katanga", +"lv": "Lettisk", +"mg": "Malagasy", +"mh": "Marshallese", +"mi": "Maori", +"mk": "Makedonsk", +"ml": "Malayalam", +"mn": "Mongolsk", +"mo": "Moldovisk", +"mr": "Marathisk", +"ms": "Malay", +"mt": "Maltesisk", +"my": "burmesisk", +"na": "Nauru", +"nb": "Norsk Bokmål", +"nd": "Ndebele, Nord", +"ne": "Nepalesisk", +"ng": "Ndonga", +"nl": "Hollandsk", +"nn": "Nynorsk", +"no": "Norsk", +"nr": "Ndebele, Syd", +"nv": "Navajo", +"ny": "Nyanja; Chichewa; Chewa", +"oc": "Occitansk (efter 1500); Provencalsk", +"oj": "Ojibwa", +"om": "Oromo", +"or": "Oriya", +"os": "Ossetisk", +"pa": "Punjabi", +"pi": "Pali", +"pl": "Polsk", +"ps": "Pashto (Pushto)", +"pt": "Portugisisk", +"qu": "Quechua", +"rm": "Rætoromansk", +"rn": "Rundi", +"ro": "Rumænsk", +"ru": "Russisk", +"rw": "Kinyarwanda", +"sa": "Sanskrit", +"sc": "Sardinsk", +"sd": "Sindhi", +"se": "Nordsamisk", +"sg": "Sango", +"sh": "Serbokroatisk", +"si": "Singalesisk", +"sk": "Slovakisk", +"sl": "Slovensk", +"sm": "Samoansk", +"sn": "Shona", +"so": "Somalisk", +"sq": "albansk", +"sr": "Serbisk", +"ss": "Swati", +"st": "Sotho, Southern", +"su": "Sundanesisk", +"sv": "Svensk", +"sw": "Swahili", +"ta": "Tamilsk", +"te": "Telugu", +"tg": "Tajik", +"th": "Thailandsk", +"ti": "Tigrinya", +"tk": "Turkmensk", +"tl": "Tagalog", +"tn": "Tswana", +"to": "Tonga (Tongaøerne)", +"tr": "Tyrkisk", +"ts": "Tsonga", +"tt": "Tatarisk", +"tw": "Twi", +"ty": "Tahitiansk", +"ug": "Uigurisk", +"uk": "Ukrainsk", +"ur": "Urdu", +"uz": "Usbekisk", +"ve": "Venda", +"vi": "Vietnamesisk", +"vo": "Volapük", +"wa": "Vallonsk", +"wo": "Wolof", +"xh": "Xhosa", +"yi": "Jiddisch", +"yo": "Yoruba", +"za": "Zhuang", +"zh": "Kinesisk", +"zu": "Zulu", +}, +{ type: "language", iso: "de", +countries: [ +{_reference: "AT"}, +{_reference: "BE"}, +{_reference: "CH"}, +{_reference: "DE"}, +{_reference: "LI"}, +{_reference: "LU"}, +], +name: "Deutsch", +"aa": "Afar", +"ab": "Abchasisch", +"ae": "Avestisch", +"af": "Afrikaans", +"ak": "Akan", +"am": "Amharisch", +"an": "Aragonesisch", +"ar": "Arabisch", +"as": "Assamesisch", +"av": "Awarisch", +"ay": "Aymará-Sprache", +"az": "Aserbaidschanisch", +"ba": "Baschkirisch", +"be": "Weißrussisch", +"bg": "Bulgarisch", +"bh": "Biharisch", +"bi": "Bislama", +"bm": "Bambara-Sprache", +"bn": "Bengalisch", +"bo": "Tibetisch", +"br": "Bretonisch", +"bs": "Bosnisch", +"ca": "Katalanisch", +"ce": "Tschetschenisch", +"ch": "Chamorro-Sprache", +"co": "Korsisch", +"cr": "Cree", +"cs": "Tschechisch", +"cu": "Kirchenslawisch", +"cv": "Tschuwaschisch", +"cy": "Kymrisch", +"da": "Dänisch", +"de": "Deutsch", +"dv": "Maledivisch", +"dz": "Bhutanisch", +"ee": "Ewe-Sprache", +"el": "Griechisch", +"en": "Englisch", +"eo": "Esperanto", +"es": "Spanisch", +"et": "Estnisch", +"eu": "Baskisch", +"fa": "Persisch", +"ff": "Ful", +"fi": "Finnisch", +"fj": "Fidschianisch", +"fo": "Färöisch", +"fr": "Französisch", +"fy": "Friesisch", +"ga": "Irisch", +"gd": "Schottisch-Gälisch", +"gl": "Galizisch", +"gn": "Guarani", +"gu": "Gujarati", +"gv": "Manx", +"ha": "Hausa", +"he": "Hebräisch", +"hi": "Hindi", +"ho": "Hiri-Motu", +"hr": "Kroatisch", +"ht": "Kreolisch", +"hu": "Ungarisch", +"hy": "Armenisch", +"hz": "Herero-Sprache", +"ia": "Interlingua", +"id": "Indonesisch", +"ie": "Interlingue", +"ig": "Igbo-Sprache", +"ii": "Sichuan Yi", +"ik": "Inupiak", +"io": "Ido-Sprache", +"is": "Isländisch", +"it": "Italienisch", +"iu": "Inukitut", +"ja": "Japanisch", +"jv": "Javanisch", +"ka": "Georgisch", +"kg": "Kongo", +"ki": "Kikuyu-Sprache", +"kj": "Kwanyama", +"kk": "Kasachisch", +"kl": "Grönländisch", +"km": "Kambodschanisch", +"kn": "Kannada", +"ko": "Koreanisch", +"kr": "Kanuri-Sprache", +"ks": "Kaschmirisch", +"ku": "Kurdisch", +"kv": "Komi-Sprache", +"kw": "Kornisch", +"ky": "Kirgisisch", +"la": "Latein", +"lb": "Luxemburgisch", +"lg": "Ganda-Sprache", +"li": "Limburgisch", +"ln": "Lingala", +"lo": "Laotisch", +"lt": "Litauisch", +"lu": "Luba", +"lv": "Lettisch", +"mg": "Madagassisch", +"mh": "Marschallesisch", +"mi": "Maori", +"mk": "Mazedonisch", +"ml": "Malayalam", +"mn": "Mongolisch", +"mo": "Moldauisch", +"mr": "Marathi", +"ms": "Malaiisch", +"mt": "Maltesisch", +"my": "Birmanisch", +"na": "Nauruisch", +"nb": "Norwegisch Bokmål", +"nd": "Ndebele-Sprache (Nord)", +"ne": "Nepalesisch", +"ng": "Ndonga", +"nl": "Niederländisch", +"nn": "Norwegisch Nynorsk", +"no": "Norwegisch", +"nr": "Ndebele-Sprache (Süd)", +"nv": "Navajo-Sprache", +"ny": "Chewa-Sprache", +"oc": "Okzitanisch", +"oj": "Ojibwa-Sprache", +"om": "Oromo", +"or": "Orija", +"os": "Ossetisch", +"pa": "Pandschabisch", +"pi": "Pali", +"pl": "Polnisch", +"ps": "Afghanisch (Paschtu)", +"pt": "Portugiesisch", +"qu": "Quechua", +"rm": "Rätoromanisch", +"rn": "Rundi-Sprache", +"ro": "Rumänisch", +"ru": "Russisch", +"rw": "Ruandisch", +"sa": "Sanskrit", +"sc": "Sardisch", +"sd": "Sindhi", +"se": "Nord-Samisch", +"sg": "Sango", +"sh": "Serbo-Kroatisch", +"si": "Singhalesisch", +"sk": "Slowakisch", +"sl": "Slowenisch", +"sm": "Samoanisch", +"sn": "Shona", +"so": "Somali", +"sq": "Albanisch", +"sr": "Serbisch", +"ss": "Swazi", +"st": "Süd-Sotho-Sprache", +"su": "Sudanesisch", +"sv": "Schwedisch", +"sw": "Suaheli", +"ta": "Tamilisch", +"te": "Telugu", +"tg": "Tadschikisch", +"th": "Thai", +"ti": "Tigrinja", +"tk": "Turkmenisch", +"tl": "Tagalog", +"tn": "Tswana-Sprache", +"to": "Tongaisch", +"tr": "Türkisch", +"ts": "Tsonga", +"tt": "Tatarisch", +"tw": "Twi", +"ty": "Tahitisch", +"ug": "Uigurisch", +"uk": "Ukrainisch", +"ur": "Urdu", +"uz": "Usbekisch", +"ve": "Venda-Sprache", +"vi": "Vietnamesisch", +"vo": "Volapük", +"wa": "Wallonisch", +"wo": "Wolof", +"xh": "Xhosa", +"yi": "Jiddisch", +"yo": "Joruba", +"za": "Zhuang", +"zh": "Chinesisch", +"zu": "Zulu", +}, +{ type: "language", iso: "dv", +countries: [ +{_reference: "MV"}, +], +name: "ދިވެހިބަސް", +}, +{ type: "language", iso: "dz", +countries: [ +{_reference: "BT"}, +], +name: "རྫོང་ཁ", +}, +{ type: "language", iso: "ee", +countries: [ +{_reference: "GH"}, +{_reference: "TG"}, +], +}, +{ type: "language", iso: "el", +countries: [ +{_reference: "CY"}, +{_reference: "GR"}, +], +name: "Ελληνικά", +"ar": "Αραβικά", +"be": "Λευκορωσικά", +"bg": "Βουλγαρικά", +"bn": "Μπενγκάλι", +"bo": "Θιβετιανά", +"bs": "Βοσνιακά", +"ca": "Καταλανικά", +"co": "Κορσικανικά", +"cs": "Τσεχικά", +"cy": "Ουαλικά", +"da": "Δανικά", +"de": "Γερμανικά", +"el": "Ελληνικά", +"en": "Αγγλικά", +"es": "Ισπανικά", +"et": "Εσθονικά", +"eu": "Βασκικά", +"fa": "Περσικά", +"fi": "Φινλανδικά", +"fr": "Γαλλικά", +"ga": "Ιρλανδικά", +"gd": "Σκωτικά Κελτικά", +"he": "Εβραϊκά", +"hi": "Χίντι", +"hr": "Κροατικά", +"hu": "Ουγγρικά", +"hy": "Αρμενικά", +"id": "Ινδονησιακά", +"is": "Ισλανδικά", +"it": "Ιταλικά", +"ja": "Ιαπωνικά", +"ka": "Γεωργιανά", +"ko": "Κορεατικά", +"la": "Λατινικά", +"lt": "Λιθουανικά", +"lv": "Λετονικά", +"mk": "Σλαβομακεδονικά", +"mn": "Μογγολικά", +"mo": "Μολδαβικά", +"mt": "Μαλτεζικά", +"nl": "Ολλανδικά", +"no": "Νορβηγικά", +"pl": "Πολωνικά", +"pt": "Πορτογαλικά", +"ro": "Ρουμανικά", +"ru": "Ρωσικά", +"sh": "Σερβοκροατικά", +"sk": "Σλοβακικά", +"sl": "Σλοβενικά", +"sq": "Αλβανικά", +"sr": "Σερβικά", +"sv": "Σουηδικά", +"th": "Ταϊλανδικά", +"tr": "Τουρκικά", +"uk": "Ουκρανικά", +"vi": "Βιετναμεζικά", +"yi": "Ιουδαϊκά", +"zh": "Κινεζικά", +}, +{ type: "language", iso: "en", +countries: [ +{_reference: "AS"}, +{_reference: "AU"}, +{_reference: "BE"}, +{_reference: "BW"}, +{_reference: "BZ"}, +{_reference: "CA"}, +{_reference: "GB"}, +{_reference: "GU"}, +{_reference: "HK"}, +{_reference: "IE"}, +{_reference: "IN"}, +{_reference: "JM"}, +{_reference: "MH"}, +{_reference: "MP"}, +{_reference: "MT"}, +{_reference: "NA"}, +{_reference: "NZ"}, +{_reference: "PH"}, +{_reference: "PK"}, +{_reference: "SG"}, +{_reference: "TT"}, +{_reference: "UM"}, +{_reference: "US"}, +{_reference: "VI"}, +{_reference: "ZA"}, +{_reference: "ZW"}, +], +name: "English", +"aa": "Afar", +"ab": "Abkhazian", +"ae": "Avestan", +"af": "Afrikaans", +"ak": "Akan", +"am": "Amharic", +"an": "Aragonese", +"ar": "Arabic", +"as": "Assamese", +"av": "Avaric", +"ay": "Aymara", +"az": "Azerbaijani", +"ba": "Bashkir", +"be": "Belarusian", +"bg": "Bulgarian", +"bh": "Bihari", +"bi": "Bislama", +"bm": "Bambara", +"bn": "Bengali", +"bo": "Tibetan", +"br": "Breton", +"bs": "Bosnian", +"ca": "Catalan", +"ce": "Chechen", +"ch": "Chamorro", +"co": "Corsican", +"cr": "Cree", +"cs": "Czech", +"cu": "Church Slavic", +"cv": "Chuvash", +"cy": "Welsh", +"da": "Danish", +"de": "German", +"dv": "Divehi", +"dz": "Dzongkha", +"ee": "Ewe", +"el": "Greek", +"en": "English", +"eo": "Esperanto", +"es": "Spanish", +"et": "Estonian", +"eu": "Basque", +"fa": "Persian", +"ff": "Fulah", +"fi": "Finnish", +"fj": "Fijian", +"fo": "Faroese", +"fr": "French", +"fy": "Western Frisian", +"ga": "Irish", +"gd": "Scottish Gaelic", +"gl": "Galician", +"gn": "Guarani", +"gu": "Gujarati", +"gv": "Manx", +"ha": "Hausa", +"he": "Hebrew", +"hi": "Hindi", +"ho": "Hiri Motu", +"hr": "Croatian", +"ht": "Haitian", +"hu": "Hungarian", +"hy": "Armenian", +"hz": "Herero", +"ia": "Interlingua", +"id": "Indonesian", +"ie": "Interlingue", +"ig": "Igbo", +"ii": "Sichuan Yi", +"ik": "Inupiaq", +"io": "Ido", +"is": "Icelandic", +"it": "Italian", +"iu": "Inuktitut", +"ja": "Japanese", +"jv": "Javanese", +"ka": "Georgian", +"kg": "Kongo", +"ki": "Kikuyu", +"kj": "Kuanyama", +"kk": "Kazakh", +"kl": "Kalaallisut", +"km": "Khmer", +"kn": "Kannada", +"ko": "Korean", +"kr": "Kanuri", +"ks": "Kashmiri", +"ku": "Kurdish", +"kv": "Komi", +"kw": "Cornish", +"ky": "Kirghiz", +"la": "Latin", +"lb": "Luxembourgish", +"lg": "Ganda", +"li": "Limburgish", +"ln": "Lingala", +"lo": "Lao", +"lt": "Lithuanian", +"lu": "Luba-Katanga", +"lv": "Latvian", +"mg": "Malagasy", +"mh": "Marshallese", +"mi": "Maori", +"mk": "Macedonian", +"ml": "Malayalam", +"mn": "Mongolian", +"mo": "Moldavian", +"mr": "Marathi", +"ms": "Malay", +"mt": "Maltese", +"my": "Burmese", +"na": "Nauru", +"nb": "Norwegian Bokmål", +"nd": "North Ndebele", +"ne": "Nepali", +"ng": "Ndonga", +"nl": "Dutch", +"nn": "Norwegian Nynorsk", +"no": "Norwegian", +"nr": "South Ndebele", +"nv": "Navajo", +"ny": "Nyanja; Chichewa; Chewa", +"oc": "Occitan (post 1500); Provençal", +"oj": "Ojibwa", +"om": "Oromo", +"or": "Oriya", +"os": "Ossetic", +"pa": "Punjabi", +"pi": "Pali", +"pl": "Polish", +"pt": "Portuguese", +"qu": "Quechua", +"rm": "Rhaeto-Romance", +"rn": "Rundi", +"ro": "Romanian", +"ru": "Russian", +"rw": "Kinyarwanda", +"sa": "Sanskrit", +"sc": "Sardinian", +"sd": "Sindhi", +"se": "Northern Sami", +"sg": "Sango", +"sh": "Serbo-Croatian", +"si": "Sinhalese", +"sk": "Slovak", +"sl": "Slovenian", +"sm": "Samoan", +"sn": "Shona", +"so": "Somali", +"sq": "Albanian", +"sr": "Serbian", +"ss": "Swati", +"st": "Southern Sotho", +"su": "Sundanese", +"sv": "Swedish", +"sw": "Swahili", +"ta": "Tamil", +"te": "Telugu", +"tg": "Tajik", +"th": "Thai", +"ti": "Tigrinya", +"tk": "Turkmen", +"tl": "Tagalog", +"tn": "Tswana", +"to": "Tonga (Tonga Islands)", +"tr": "Turkish", +"ts": "Tsonga", +"tt": "Tatar", +"tw": "Twi", +"ty": "Tahitian", +"ug": "Uighur", +"uk": "Ukrainian", +"ur": "Urdu", +"uz": "Uzbek", +"ve": "Venda", +"vi": "Vietnamese", +"vo": "Volapük", +"wa": "Walloon", +"wo": "Wolof", +"xh": "Xhosa", +"yi": "Yiddish", +"yo": "Yoruba", +"za": "Zhuang", +"zh": "Chinese", +"zu": "Zulu", +}, +{ type: "language", iso: "eo", +countries: [ +], +name: "esperanto", +"aa": "afara", +"ab": "abĥaza", +"af": "afrikansa", +"am": "amhara", +"ar": "araba", +"as": "asama", +"ay": "ajmara", +"az": "azerbajĝana", +"ba": "baŝkira", +"be": "belorusa", +"bg": "bulgara", +"bh": "bihara", +"bi": "bislamo", +"bn": "bengala", +"bo": "tibeta", +"br": "bretona", +"ca": "kataluna", +"co": "korsika", +"cs": "ĉeĥa", +"cy": "kimra", +"da": "dana", +"de": "germana", +"dz": "dzonko", +"el": "greka", +"en": "angla", +"eo": "esperanto", +"es": "hispana", +"et": "estona", +"eu": "eŭska", +"fa": "persa", +"fi": "finna", +"fj": "fiĝia", +"fo": "feroa", +"fr": "franca", +"fy": "frisa", +"ga": "irlanda", +"gd": "gaela", +"gl": "galega", +"gn": "gvarania", +"gu": "guĝarata", +"ha": "haŭsa", +"he": "hebrea", +"hi": "hinda", +"hr": "kroata", +"hu": "hungara", +"hy": "armena", +"ia": "interlingvao", +"id": "indonezia", +"ie": "okcidentalo", +"ik": "eskima", +"is": "islanda", +"it": "itala", +"iu": "inuita", +"ja": "japana", +"jv": "java", +"ka": "kartvela", +"kk": "kazaĥa", +"kl": "gronlanda", +"km": "kmera", +"kn": "kanara", +"ko": "korea", +"ks": "kaŝmira", +"ku": "kurda", +"ky": "kirgiza", +"la": "latino", +"ln": "lingala", +"lo": "laŭa", +"lt": "litova", +"lv": "latva", +"mg": "malagasa", +"mi": "maoria", +"mk": "makedona", +"ml": "malajalama", +"mn": "mongola", +"mr": "marata", +"ms": "malaja", +"mt": "malta", +"my": "birma", +"na": "naura", +"ne": "nepala", +"nl": "nederlanda", +"no": "norvega", +"oc": "okcitana", +"om": "oroma", +"or": "orijo", +"pa": "panĝaba", +"pl": "pola", +"ps": "paŝtua", +"pt": "portugala", +"qu": "keĉua", +"rm": "romanĉa", +"rn": "burunda", +"ro": "rumana", +"ru": "rusa", +"rw": "ruanda", +"sa": "sanskrito", +"sd": "sinda", +"sg": "sangoa", +"sh": "serbo-Kroata", +"si": "sinhala", +"sk": "slovaka", +"sl": "slovena", +"sm": "samoa", +"sn": "ŝona", +"so": "somala", +"sq": "albana", +"sr": "serba", +"ss": "svazia", +"st": "sota", +"su": "sunda", +"sv": "sveda", +"sw": "svahila", +"ta": "tamila", +"te": "telugua", +"tg": "taĝika", +"th": "taja", +"ti": "tigraja", +"tk": "turkmena", +"tl": "filipina", +"tn": "cvana", +"to": "tongaa", +"tr": "turka", +"ts": "conga", +"tt": "tatara", +"tw": "akana", +"ug": "ujgura", +"uk": "ukraina", +"ur": "urduo", +"uz": "uzbeka", +"vi": "vjetnama", +"vo": "volapuko", +"wo": "volofa", +"xh": "ksosa", +"yi": "jida", +"yo": "joruba", +"za": "ĝuanga", +"zh": "ĉina", +"zu": "zulua", +}, +{ type: "language", iso: "es", +countries: [ +{_reference: "AR"}, +{_reference: "BO"}, +{_reference: "CL"}, +{_reference: "CO"}, +{_reference: "CR"}, +{_reference: "DO"}, +{_reference: "EC"}, +{_reference: "ES"}, +{_reference: "GT"}, +{_reference: "HN"}, +{_reference: "MX"}, +{_reference: "NI"}, +{_reference: "PA"}, +{_reference: "PE"}, +{_reference: "PR"}, +{_reference: "PY"}, +{_reference: "SV"}, +{_reference: "US"}, +{_reference: "UY"}, +{_reference: "VE"}, +], +name: "español", +"aa": "afar", +"ab": "abjaso", +"ae": "avéstico", +"af": "afrikaans", +"ak": "akan", +"am": "amárico", +"an": "aragonés", +"ar": "árabe", +"as": "asamés", +"av": "avar", +"ay": "aymara", +"az": "azerí", +"ba": "bashkir", +"be": "bielorruso", +"bg": "búlgaro", +"bh": "bihari", +"bi": "bislama", +"bm": "bambara", +"bn": "bengalí", +"bo": "tibetano", +"br": "bretón", +"bs": "bosnio", +"ca": "catalán", +"ce": "checheno", +"ch": "chamorro", +"co": "corso", +"cr": "cree", +"cs": "checo", +"cu": "eslavo eclesiástico", +"cv": "chuvash", +"cy": "galés", +"da": "danés", +"de": "alemán", +"dv": "divehi", +"ee": "ewe", +"el": "griego", +"en": "inglés", +"eo": "esperanto", +"es": "español", +"et": "estonio", +"eu": "vasco", +"fa": "farsi", +"ff": "fula", +"fi": "finés", +"fo": "feroés", +"fr": "francés", +"fy": "frisón", +"ga": "irlandés", +"gd": "gaélico escocés", +"gl": "gallego", +"gn": "guaraní", +"gu": "gujarati", +"gv": "gaélico manés", +"ha": "hausa", +"he": "hebreo", +"hi": "hindi", +"ho": "hiri motu", +"hr": "croata", +"ht": "haitiano", +"hu": "húngaro", +"hy": "armenio", +"hz": "herero", +"ia": "interlingua", +"id": "indonesio", +"ie": "interlingue", +"ig": "igbo", +"ii": "sichuan yi", +"ik": "inupiak", +"io": "ido", +"is": "islandés", +"it": "italiano", +"iu": "inuktitut", +"ja": "japonés", +"jv": "javanés", +"ka": "georgiano", +"kg": "kongo", +"ki": "kikuyu", +"kj": "kuanyama", +"kk": "kazajo", +"kl": "groenlandés", +"km": "jemer", +"kn": "canarés", +"ko": "coreano", +"kr": "kanuri", +"ks": "cachemiro", +"ku": "kurdo", +"kv": "komi", +"kw": "córnico", +"ky": "kirghiz", +"la": "latín", +"lb": "luxemburgués", +"lg": "ganda", +"li": "limburgués", +"ln": "lingala", +"lo": "laosiano", +"lt": "lituano", +"lu": "luba-katanga", +"lv": "letón", +"mg": "malgache", +"mh": "marshalés", +"mi": "maorí", +"mk": "macedonio", +"ml": "malayalam", +"mn": "mongol", +"mo": "moldavo", +"mr": "marathi", +"ms": "malayo", +"mt": "maltés", +"my": "birmano", +"na": "nauruano", +"nb": "bokmal noruego", +"nd": "ndebele septentrional", +"ne": "nepalí", +"ng": "ndonga", +"nn": "nynorsk noruego", +"no": "noruego", +"nr": "ndebele meridional", +"nv": "navajo", +"ny": "nyanja", +"oc": "occitano (después del 1500)", +"oj": "ojibwa", +"om": "oromo", +"or": "oriya", +"os": "osético", +"pa": "punjabí", +"pi": "pali", +"pl": "polaco", +"ps": "pashto", +"pt": "portugués", +"qu": "quechua", +"rm": "reto-romance", +"rn": "kiroundi", +"ro": "rumano", +"ru": "ruso", +"rw": "kinyarwanda", +"sa": "sánscrito", +"sc": "sardo", +"sd": "sindhi", +"se": "sami septentrional", +"sg": "sango", +"sh": "serbocroata", +"sk": "eslovaco", +"sl": "esloveno", +"sm": "samoano", +"sn": "shona", +"so": "somalí", +"sq": "albanés", +"sr": "serbio", +"ss": "siswati", +"st": "sesotho", +"su": "sundanés", +"sv": "sueco", +"sw": "swahili", +"ta": "tamil", +"te": "telugu", +"tg": "tayiko", +"th": "tailandés", +"tl": "tagalo", +"tn": "setchwana", +"to": "tonga (Islas Tonga)", +"tr": "turco", +"ts": "tsonga", +"tw": "twi", +"ty": "tahitiano", +"ug": "uigur", +"uk": "ucraniano", +"ur": "urdu", +"uz": "uzbeko", +"ve": "venda", +"vi": "vietnamita", +"wa": "valón", +"wo": "uolof", +"xh": "xhosa", +"yo": "yoruba", +"za": "zhuang", +"zh": "chino", +"zu": "zulú", +}, +{ type: "language", iso: "et", +countries: [ +{_reference: "EE"}, +], +name: "Eesti", +"ar": "Araabia", +"bg": "Bulgaaria", +"cs": "Tiehhi", +"da": "Taani", +"de": "Saksa", +"el": "Kreeka", +"en": "Inglise", +"es": "Hispaania", +"et": "Eesti", +"fi": "Soome", +"fr": "Prantsuse", +"he": "Heebrea", +"hr": "Horvaadi", +"hu": "Ungari", +"it": "Itaalia", +"ja": "Jaapani", +"ko": "Korea", +"lt": "Leedu", +"lv": "Läti", +"nl": "Hollandi", +"no": "Norra", +"pl": "Poola", +"pt": "Portugali", +"ro": "Rumeenia", +"ru": "Vene", +"sk": "Slovaki", +"sl": "Sloveeni", +"sv": "Rootsi", +"tr": "Türgi", +"zh": "Hiina", +}, +{ type: "language", iso: "eu", +countries: [ +{_reference: "ES"}, +], +name: "euskara", +"de": "alemanera", +"en": "ingelera", +"es": "espainiera", +"eu": "euskara", +"fr": "frantsesera", +"it": "italiera", +"ja": "japoniera", +"pt": "portugalera", +"ru": "errusiera", +"zh": "txinera", +}, +{ type: "language", iso: "fa", +countries: [ +{_reference: "AF"}, +{_reference: "IR"}, +], +name: "فارسی", +"az": "ترکی آذربایجانی", +"bs": "بوسنیایی", +"cu": "اسلاوی کلیسایی", +"ii": "یی سیچوان", +"iu": "اینوکتیتوت", +"li": "لیمبورگی", +"lu": "لوبایی‐کاتانگا", +"ng": "ندونگایی", +"pi": "پالی", +"tr": "ترکی استانبولی", +}, +{ type: "language", iso: "fi", +countries: [ +{_reference: "FI"}, +], +name: "suomi", +"aa": "afar", +"ab": "abhaasi", +"ae": "avesta", +"af": "afrikaans", +"ak": "akan", +"am": "amhara", +"an": "aragonia", +"ar": "arabia", +"as": "assami", +"av": "avaari", +"ay": "aimara", +"az": "azeri", +"ba": "baškiiri", +"be": "valkovenäjä", +"bg": "bulgaria", +"bh": "bihari", +"bi": "bislama", +"bm": "bambara", +"bn": "bengali", +"bo": "tiibet", +"br": "bretoni", +"bs": "bosnia", +"ca": "katalaani", +"ce": "tšetšeeni", +"ch": "tšamorro", +"co": "korsika", +"cr": "cree", +"cs": "tšekki", +"cu": "kirkkoslaavi", +"cv": "tšuvassi", +"cy": "kymri", +"da": "tanska", +"de": "saksa", +"dv": "divehi", +"dz": "dzongkha", +"ee": "ewe", +"el": "kreikka", +"en": "englanti", +"eo": "esperanto", +"es": "espanja", +"et": "viro", +"eu": "baski", +"ff": "fulani", +"fi": "suomi", +"fj": "fidži", +"fo": "fääri", +"fr": "ranska", +"fy": "länsifriisi", +"ga": "iiri", +"gd": "gaeli", +"gl": "galicia", +"gn": "guarani", +"gv": "manx", +"ha": "hausa", +"he": "heprea", +"hi": "hindi", +"ho": "hiri-motu", +"hr": "kroatia", +"ht": "haiti", +"hu": "unkari", +"hy": "armenia", +"hz": "herero", +"ia": "interlingua", +"id": "indonesia", +"ie": "interlingue", +"ig": "igbo", +"ii": "sichuanin-yi", +"ik": "inupiatun", +"io": "ido", +"is": "islanti", +"it": "italia", +"iu": "inuktitut", +"ja": "japani", +"jv": "jaava", +"ka": "georgia", +"kg": "kongo", +"ki": "kikuju", +"kj": "kuanjama", +"kk": "kazakki", +"kl": "kalaallisut; grönlanti", +"km": "khmer", +"kn": "kannada", +"ko": "korea", +"kr": "kanuri", +"ks": "kašmiri", +"ku": "kurdi", +"kv": "komi", +"kw": "korni", +"ky": "kirgiisi", +"la": "latina", +"lb": "luxemburg", +"lg": "ganda", +"li": "limburg", +"ln": "lingala", +"lo": "lao", +"lt": "liettua", +"lu": "luba (Katanga)", +"lv": "latvia", +"mg": "malagassi", +"mh": "marshall", +"mi": "maori", +"mk": "makedonia", +"ml": "malajalam", +"mn": "mongoli", +"mo": "moldavia", +"mr": "marathi", +"ms": "malaiji", +"mt": "malta", +"my": "burma", +"na": "nauru", +"nb": "norja (bokmål)", +"nd": "ndebele, pohjois-", +"ne": "nepali", +"ng": "ndonga", +"nl": "hollanti", +"nn": "norja (nynorsk)", +"no": "norja", +"nr": "ndebele, etelä-", +"nv": "navajo", +"ny": "njandža", +"oc": "oksitaani", +"oj": "odžibwa", +"om": "oromo", +"or": "orija", +"os": "osseetti", +"pa": "pandžabi", +"pi": "paali", +"pl": "puola", +"ps": "paštu", +"pt": "portugali", +"qu": "ketšua", +"rm": "retoromaani", +"rn": "rundi", +"ro": "romania", +"ru": "venäjä", +"rw": "ruanda", +"sa": "sanskrit", +"sc": "sardi", +"sd": "sindhi", +"se": "saame, pohjois-", +"sg": "sango", +"si": "sinhali", +"sk": "slovakki", +"sl": "sloveeni", +"sm": "samoa", +"sn": "šona", +"so": "somali", +"sq": "albania", +"sr": "serbia", +"ss": "swazi", +"st": "sotho, etelä-", +"su": "sunda", +"sv": "ruotsi", +"sw": "swahili", +"ta": "tamil", +"te": "telugu", +"tg": "tadžikki", +"th": "thai", +"ti": "tigrinja", +"tk": "turkmeeni", +"tl": "tagalog", +"tn": "tswana", +"to": "tonga (Tonga)", +"tr": "turkki", +"ts": "tsonga", +"tt": "tataari", +"tw": "twi", +"ty": "tahiti", +"ug": "uiguuri", +"uk": "ukraina", +"ur": "urdu", +"uz": "uzbekki", +"ve": "venda", +"vi": "vietnam", +"vo": "volapük", +"wa": "valloni", +"wo": "wolof", +"xh": "xhosa", +"yi": "jiddiš", +"yo": "joruba", +"za": "zhuang", +"zh": "kiina", +"zu": "zulu", +}, +{ type: "language", iso: "fo", +countries: [ +{_reference: "FO"}, +], +name: "føroyskt", +"fo": "føroyskt", +}, +{ type: "language", iso: "fr", +countries: [ +{_reference: "BE"}, +{_reference: "CA"}, +{_reference: "CH"}, +{_reference: "FR"}, +{_reference: "LU"}, +{_reference: "MC"}, +], +name: "français", +"aa": "afar", +"ab": "abkhaze", +"ae": "avestique", +"af": "afrikaans", +"ak": "akan", +"am": "amharique", +"an": "aragonais", +"ar": "arabe", +"as": "assamais", +"av": "avar", +"ay": "aymara", +"az": "azéri", +"ba": "bachkir", +"be": "biélorusse", +"bg": "bulgare", +"bh": "bihari", +"bi": "bichlamar", +"bm": "bambara", +"bn": "bengali", +"bo": "tibétain", +"br": "breton", +"bs": "bosniaque", +"ca": "catalan", +"ce": "tchétchène", +"ch": "chamorro", +"co": "corse", +"cr": "cree", +"cs": "tchèque", +"cu": "slavon d’église", +"cv": "tchouvache", +"cy": "gallois", +"da": "danois", +"de": "allemand", +"dv": "maldivien", +"dz": "dzongkha", +"ee": "éwé", +"el": "grec", +"en": "anglais", +"eo": "espéranto", +"es": "espagnol", +"et": "estonien", +"eu": "basque", +"fa": "persan", +"ff": "peul", +"fi": "finnois", +"fj": "fidjien", +"fo": "féroïen", +"fr": "français", +"fy": "frison", +"ga": "irlandais", +"gd": "gaélique écossais", +"gl": "galicien", +"gn": "guarani", +"gu": "goudjrati", +"gv": "manx", +"ha": "haoussa", +"he": "hébreu", +"hi": "hindi", +"ho": "hiri motu", +"hr": "croate", +"ht": "haïtien", +"hu": "hongrois", +"hy": "arménien", +"hz": "héréro", +"ia": "interlingua", +"id": "indonésien", +"ie": "interlingue", +"ig": "igbo", +"ii": "yi de Sichuan", +"ik": "inupiaq", +"io": "ido", +"is": "islandais", +"it": "italien", +"iu": "inuktitut", +"ja": "japonais", +"jv": "javanais", +"ka": "géorgien", +"kg": "kongo", +"ki": "kikuyu", +"kj": "kuanyama", +"kk": "kazakh", +"kl": "groenlandais", +"km": "khmer", +"kn": "kannada", +"ko": "coréen", +"kr": "kanouri", +"ks": "kashmiri", +"ku": "kurde", +"kv": "komi", +"kw": "cornique", +"ky": "kirghize", +"la": "latin", +"lb": "luxembourgeois", +"lg": "ganda", +"li": "limbourgeois", +"ln": "lingala", +"lo": "lao", +"lt": "lituanien", +"lu": "luba-katanga", +"lv": "letton", +"mg": "malgache", +"mh": "marshall", +"mi": "maori", +"mk": "macédonien", +"ml": "malayalam", +"mn": "mongol", +"mo": "moldave", +"mr": "marathe", +"ms": "malais", +"mt": "maltais", +"my": "birman", +"na": "nauruan", +"nb": "bokmål norvégien", +"nd": "ndébélé du Nord", +"ne": "népalais", +"ng": "ndonga", +"nl": "néerlandais", +"nn": "nynorsk norvégien", +"no": "norvégien", +"nr": "ndébélé du Sud", +"nv": "navaho", +"ny": "nyanja", +"oc": "occitan (après 1500)", +"oj": "ojibwa", +"om": "galla", +"or": "oriya", +"os": "ossète", +"pa": "pendjabi", +"pi": "pali", +"pl": "polonais", +"ps": "pachto", +"pt": "portugais", +"qu": "quechua", +"rm": "rhéto-roman", +"rn": "roundi", +"ro": "roumain", +"ru": "russe", +"rw": "rwanda", +"sa": "sanskrit", +"sc": "sarde", +"sd": "sindhi", +"se": "sami du Nord", +"sg": "sango", +"sh": "serbo-croate", +"si": "singhalais", +"sk": "slovaque", +"sl": "slovène", +"sm": "samoan", +"sn": "shona", +"so": "somali", +"sq": "albanais", +"sr": "serbe", +"ss": "swati", +"st": "sotho du Sud", +"su": "soundanais", +"sv": "suédois", +"sw": "swahili", +"ta": "tamoul", +"te": "télougou", +"tg": "tadjik", +"th": "thaï", +"ti": "tigrigna", +"tk": "turkmène", +"tl": "tagalog", +"tn": "setswana", +"to": "tongan (Îles Tonga)", +"tr": "turc", +"ts": "tsonga", +"tt": "tatar", +"tw": "twi", +"ty": "tahitien", +"ug": "ouïgour", +"uk": "ukrainien", +"ur": "ourdou", +"uz": "ouzbek", +"ve": "venda", +"vi": "vietnamien", +"vo": "volapük", +"wa": "wallon", +"wo": "wolof", +"xh": "xhosa", +"yi": "yiddish", +"yo": "yoruba", +"za": "zhuang", +"zh": "chinois", +"zu": "zoulou", +}, +{ type: "language", iso: "ga", +countries: [ +{_reference: "IE"}, +], +name: "Gaeilge", +"aa": "Afar", +"ab": "Abcáisis", +"ae": "Aivéistis", +"af": "Afracáinis", +"ar": "Araibis", +"as": "Asaimis", +"az": "Asarbaiseáinis", +"ba": "Baiscíris", +"be": "Bealarúisis", +"bg": "Bulgáiris", +"bn": "Beangálais", +"bo": "Tibéadais", +"br": "Briotáinis", +"bs": "Boisnis", +"ca": "Catalóinis", +"ce": "Sisinis", +"co": "Corsaicis", +"cr": "Craíais", +"cs": "Seicis", +"cu": "Slavais na hEaglaise", +"cv": "Suvaisis", +"cy": "Breatnais", +"da": "Danmhairgis", +"de": "Gearmáinis", +"el": "Gréigis", +"en": "Béarla", +"eo": "Esperanto", +"es": "Spáinnis", +"et": "Eastóinis", +"eu": "Bascais", +"fa": "Peirsis", +"fi": "Fionnlainnis", +"fj": "Fidsis", +"fo": "Faróis", +"fr": "Fraincis", +"fy": "Freaslainnais", +"ga": "Gaeilge", +"gd": "Gaeilge na hAlban", +"gu": "Gúisearáitis", +"gv": "Mannainis", +"he": "Eabhrais", +"hi": "Hiondúis", +"hr": "Cróitis", +"hu": "Ungáiris", +"hy": "Airméinis", +"ia": "Interlingua", +"id": "Indinéisis", +"ie": "Interlingue", +"ik": "Inupiaq", +"io": "Ido", +"is": "Íoslainnais", +"it": "Iodáilis", +"iu": "Ionúitis", +"ja": "Seapáinis", +"jv": "Iávais", +"ka": "Seoirsis", +"kk": "Casachais", +"kn": "Cannadais", +"ko": "Cóiréis", +"ks": "Caismíris", +"kw": "Cornais", +"ky": "Cirgeasais", +"la": "Laidin", +"lb": "Leitseabuirgis", +"lo": "Laosais", +"lt": "Liotuáinis", +"lv": "Laitvis", +"mg": "Malagásais", +"mi": "Maorais", +"mk": "Macadóinis", +"ml": "Mailéalaimis", +"mn": "Mongóilis", +"mo": "Moldáivis", +"mr": "Maraitis", +"mt": "Maltais", +"my": "Burmais", +"na": "Nárúis", +"nb": "Ioruais Bokmål", +"ne": "Neipealais", +"nl": "Ollainnais", +"nn": "Ioruais Nynorsk", +"no": "Ioruais", +"nv": "Navachóis", +"oc": "Ocatáinis (tar éis 1500); Provençal", +"os": "Óiséitis", +"pa": "Puinseaibis", +"pl": "Polainnis", +"ps": "Paisteo", +"pt": "Portaingéilis", +"qu": "Ceatsuais", +"ro": "Romáinis", +"ru": "Rúisis", +"sa": "Sanscrait", +"sc": "Sairdínis", +"sd": "Sindis", +"se": "Sáimis Thuaidh", +"sh": "Seirbea-Chróitis", +"sk": "Slóvacais", +"sl": "Slóvéinis", +"sm": "Samóis", +"so": "Somálais", +"sq": "Albáinis", +"sr": "Seirbis", +"sv": "Sualainnis", +"sw": "Svahaílis", +"ta": "Tamailis", +"th": "Téalainnis", +"tl": "Tagálaigis", +"tr": "Tuircis", +"tt": "Tatarais", +"ty": "Taihítis", +"uk": "Úcráinis", +"ur": "Urdais", +"uz": "Úisbéicis", +"vi": "Vítneamais", +"wa": "Vallúnais", +"yi": "Giúdais", +"zh": "Sínis", +"zu": "Súlúis", +}, +{ type: "language", iso: "gl", +countries: [ +{_reference: "ES"}, +], +name: "galego", +"gl": "galego", +}, +{ type: "language", iso: "gu", +countries: [ +{_reference: "IN"}, +], +name: "ગુજરાતી", +"gu": "ગુજરાતી", +}, +{ type: "language", iso: "gv", +countries: [ +{_reference: "GB"}, +], +name: "Gaelg", +"gv": "Gaelg", +}, +{ type: "language", iso: "ha", +countries: [ +{_reference: "GH"}, +{_reference: "NE"}, +{_reference: "NG"}, +], +}, +{ type: "language", iso: "he", +countries: [ +{_reference: "IL"}, +], +name: "עברית", +"aa": "אתיופית", +"ab": "אבחזית", +"ae": "אבסטן", +"af": "אפריקנית", +"ak": "אקאן", +"am": "אמהרית", +"ar": "ערבית", +"as": "אסאמית", +"az": "אזרית", +"ba": "בשקירית", +"be": "בלארוסית", +"bg": "בולגרית", +"bn": "בנגלית", +"bo": "טיבטית", +"br": "ברטונית", +"bs": "בוסנית", +"ca": "קטלונית", +"ce": "צ'צ'נית", +"co": "קורסיקאית", +"cs": "צ׳כית", +"cy": "וולשית", +"da": "דנית", +"de": "גרמנית", +"dv": "דיבהי", +"el": "יוונית", +"en": "אנגלית", +"eo": "אספרנטו", +"es": "ספרדית", +"et": "אסטונית", +"eu": "בסקית", +"fa": "פרסית", +"fi": "פינית", +"fj": "פיג'ית", +"fo": "פארואזית", +"fr": "צרפתית", +"ga": "אירית", +"gd": "סקוטית גאלית", +"gl": "גליציאנית", +"gu": "גוג'ראטית", +"ha": "האוסה", +"he": "עברית", +"hi": "הינדית", +"hr": "קרואטית", +"ht": "האיטית", +"hu": "הונגרית", +"hy": "ארמנית", +"id": "אינדונזית", +"is": "איסלנדית", +"it": "איטלקית", +"ja": "יפנית", +"ka": "גרוזינית", +"kk": "קזחית", +"ko": "קוריאנית", +"ks": "קשמירית", +"ku": "כורדית", +"la": "לטינית", +"lb": "לוקסמבורגית", +"lt": "ליטאית", +"lv": "לטבית", +"mg": "מלגשית", +"mi": "מאורית", +"mk": "מקדונית", +"mn": "מונגולית", +"mo": "מולדבית", +"mr": "מארתית", +"mt": "מלטזית", +"my": "בורמזית", +"nb": "נורבגית שפת הספר (בוקמול)", +"ne": "נפאלית", +"nl": "הולנדית", +"nn": "נורבגית חדשה (נינורשק)", +"no": "נורווגית", +"nv": "נבחו", +"pl": "פולנית", +"ps": "פאשטו", +"pt": "פורטוגזית", +"ro": "רומנית", +"ru": "רוסית", +"sa": "סנסקרית", +"sc": "סרדינית", +"sd": "סינדהית", +"sh": "סרבו-קרואטית", +"sk": "סלובקית", +"sl": "סלובנית", +"sm": "סמואית", +"so": "סומלית", +"sq": "אלבנית", +"sr": "סרבית", +"sv": "שוודית", +"sw": "סווהילית", +"ta": "טמילית", +"th": "תאי", +"tk": "טורקמנית", +"tr": "טורקית", +"uk": "אוקראינית", +"ur": "אורדו", +"uz": "אוזבקית", +"vi": "ויאטנמית", +"yi": "יידיש", +"zh": "סינית", +"zu": "זולו", +}, +{ type: "language", iso: "hi", +countries: [ +{_reference: "IN"}, +], +name: "हिंदी", +"aa": "अफ़ार", +"ab": "अब्खाज़ियन्", +"af": "अफ्रीकी", +"am": "अम्हारिक्", +"ar": "अरबी", +"as": "असामी", +"ay": "आयमारा", +"az": "अज़रबैंजानी", +"ba": "बशख़िर", +"be": "बैलोरूशियन्", +"bg": "बल्गेरियन्", +"bh": "बिहारी", +"bi": "बिस्लामा", +"bn": "बँगाली", +"bo": "तिब्बती", +"br": "ब्रेटन", +"ca": "कातालान", +"co": "कोर्सीकन", +"cs": "चेक", +"cy": "वेल्श", +"da": "डैनीश", +"de": "ज़र्मन", +"dz": "भुटानी", +"el": "ग्रीक", +"en": "अंग्रेजी", +"eo": "एस्पेरान्तो", +"es": "स्पेनिश", +"et": "ऐस्तोनियन्", +"eu": "बास्क्", +"fa": "पर्शियन्", +"fi": "फिनिश", +"fj": "फ़ीजी", +"fo": "फिरोज़ी", +"fr": "फ्रेंच", +"fy": "फ्रीज़न्", +"ga": "आईरिश", +"gd": "स्काट्स् गायेलिक्", +"gl": "गैलिशियन्", +"gn": "गुआरानी", +"gu": "गुज़राती", +"ha": "होउसा", +"he": "हिब्रीऊ", +"hi": "हिंदी", +"hr": "क्रोएशन्", +"hu": "हंगेरी", +"hy": "अरमेनियन्", +"ia": "ईन्टरलिंगुआ", +"id": "इन्डोनेशियन्", +"ie": "ईन्टरलिंगुइ", +"ik": "इनुपियाक्", +"is": "आईस्लैंडिक्", +"it": "ईटालियन्", +"iu": "इनूकीटूत्", +"ja": "जापानी", +"jv": "जावानीस", +"ka": "जॉर्जीयन्", +"kk": "कज़ाख", +"kl": "ग्रीनलैंडिक", +"km": "कैम्बोडियन्", +"kn": "कन्नड़", +"ko": "कोरीयन्", +"ks": "काश्मिरी", +"ku": "कुरदीश", +"ky": "किरघिज़", +"la": "लैटीन", +"ln": "लिंगाला", +"lo": "लाओथीयन्", +"lt": "लिथुनियन्", +"lv": "लाटवियन् (लेट्टीश)", +"mg": "मालागासी", +"mi": "मेओरी", +"mk": "मैसेडोनियन्", +"ml": "मलयालम", +"mn": "मोंगोलियन", +"mo": "मोलडावियन्", +"mr": "मराठी", +"ms": "मलय", +"mt": "मालटिस्", +"my": "बर्लिस", +"na": "नायरू", +"ne": "नेपाली", +"nl": "डच्", +"no": "नार्वेजीयन्", +"oc": "ओसीटान", +"om": "ओरोमो (अफ़ान)", +"or": "उड़िया", +"pa": "पंजाबी", +"pl": "पॉलिश", +"ps": "पॉशतो (पुशतो)", +"pt": "पुर्तुगी", +"qu": "क्वेशुआ", +"rm": "रहेय्टो-रोमान्स", +"rn": "किरून्दी", +"ro": "रूमानीयन्", +"ru": "रुसी", +"rw": "किन्यारवाण्डा", +"sa": "संस्कृत", +"sd": "सिन्धी", +"sg": "साँग्रो", +"sh": "सेर्बो-क्रोएशन्", +"si": "शिंघालीस्", +"sk": "स्लोवाक्", +"sl": "स्लोवेनियन्", +"sm": "सामोन", +"sn": "सोणा", +"so": "सोमाली", +"sq": "अल्बेनियन्", +"sr": "सर्बियन्", +"ss": "सीस्वाटि", +"st": "सेसोथो", +"su": "सुन्दानीस", +"sv": "स्विडिश", +"sw": "स्वाहिली", +"ta": "तमिल", +"te": "तेलेगु", +"tg": "ताजिक्", +"th": "थाई", +"ti": "तिग्रीन्या", +"tk": "तुक्रमेन", +"tl": "तागालोग", +"tn": "सेत्स्वाना", +"to": "टोंगा", +"tr": "तुक्रीश", +"ts": "सोंगा", +"tt": "टाटर", +"tw": "ट्वी", +"ug": "उईघुर", +"uk": "यूक्रेनियन्", +"ur": "ऊर्दु", +"uz": "उज़बेक्", +"vi": "वियेतनामी", +"vo": "वोलापुक", +"wo": "वोलोफ", +"xh": "षोसा", +"yi": "येहुदी", +"yo": "योरूबा", +"za": "ज़ुआंग", +"zh": "चीनी", +"zu": "ज़ुलू", +}, +{ type: "language", iso: "hr", +countries: [ +{_reference: "HR"}, +], +name: "hrvatski", +"ar": "arapski", +"av": "avarski", +"be": "bjeloruski", +"bg": "bugarski", +"cs": "češki", +"cu": "crkvenoslavenski", +"cy": "velški", +"da": "danski", +"de": "njemački", +"el": "grčki", +"en": "engleski", +"eo": "esperanto", +"es": "španjolski", +"et": "estonijski", +"fa": "perzijski", +"fi": "finski", +"fr": "francuski", +"fy": "frizijski", +"ga": "irski", +"he": "hebrejski", +"hr": "hrvatski", +"hu": "mađarski", +"hy": "armenski", +"is": "islandski", +"it": "talijanski", +"ja": "japanski", +"km": "kmerski", +"ko": "korejski", +"la": "latinski", +"lt": "litvanski", +"lv": "latvijski", +"mk": "makedonski", +"mn": "mongolski", +"mt": "malteški", +"ne": "nepalski", +"nl": "nizozemski", +"no": "norveški", +"pl": "poljski", +"pt": "portugalski", +"ro": "rumunjski", +"ru": "ruski", +"sk": "slovački", +"sl": "slovenski", +"sq": "albanski", +"sr": "srpski", +"sv": "švedski", +"tr": "turski", +"uk": "ukrajinski", +"vi": "vijetnamski", +"zh": "kineski", +}, +{ type: "language", iso: "hu", +countries: [ +{_reference: "HU"}, +], +name: "magyar", +"aa": "afar", +"ab": "abház", +"af": "afrikai", +"am": "amhara", +"ar": "arab", +"as": "asszámi", +"ay": "ajmara", +"az": "azerbajdzsáni", +"ba": "baskír", +"be": "belorusz", +"bg": "bolgár", +"bh": "bihari", +"bi": "bislama", +"bn": "bengáli", +"bo": "tibeti", +"br": "breton", +"ca": "katalán", +"co": "korzikai", +"cs": "cseh", +"cy": "walesi", +"da": "dán", +"de": "német", +"dz": "butáni", +"el": "görög", +"en": "angol", +"eo": "eszperantó", +"es": "spanyol", +"et": "észt", +"eu": "baszk", +"fa": "perzsa", +"fi": "finn", +"fj": "fidzsi", +"fo": "feröeri", +"fr": "francia", +"fy": "fríz", +"ga": "ír", +"gd": "skót (gael)", +"gl": "galíciai", +"gn": "guarani", +"gu": "gudzsaráti", +"ha": "hausza", +"he": "héber", +"hi": "hindi", +"hr": "horvát", +"hu": "magyar", +"hy": "örmény", +"ia": "interlingua", +"id": "indonéz", +"ie": "interlingue", +"ik": "inupiak", +"is": "izlandi", +"it": "olasz", +"iu": "inuktitut", +"ja": "japán", +"jv": "jávai", +"ka": "grúz", +"kk": "kazah", +"kl": "grönlandi", +"km": "kambodzsai", +"kn": "kannada", +"ko": "koreai", +"ks": "kasmíri", +"ku": "kurd", +"ky": "kirgiz", +"la": "latin", +"ln": "lingala", +"lo": "laoszi", +"lt": "litván", +"lv": "lett", +"mg": "madagaszkári", +"mi": "maori", +"mk": "macedón", +"ml": "malajalam", +"mn": "mongol", +"mo": "moldvai", +"mr": "marati", +"ms": "maláj", +"mt": "máltai", +"my": "burmai", +"na": "naurui", +"ne": "nepáli", +"nl": "holland", +"no": "norvég", +"oc": "okszitán", +"om": "oromói", +"or": "orija", +"pa": "pandzsábi", +"pl": "lengyel", +"ps": "pastu (afgán)", +"pt": "portugál", +"qu": "kecsua", +"rm": "rétoromán", +"rn": "kirundi", +"ro": "román", +"ru": "orosz", +"rw": "kiruanda", +"sa": "szanszkrit", +"sd": "szindi", +"sg": "sango", +"sh": "szerb-horvát", +"si": "szingaléz", +"sk": "szlovák", +"sl": "szlovén", +"sm": "szamoai", +"sn": "sona", +"so": "szomáli", +"sq": "albán", +"sr": "szerb", +"ss": "sziszuati", +"st": "szeszotó", +"su": "szundanéz", +"sv": "svéd", +"sw": "szuahéli", +"ta": "tamil", +"te": "telugu", +"tg": "tadzsik", +"th": "thai", +"ti": "tigrinya", +"tk": "türkmén", +"tl": "tagalog", +"tn": "szecsuáni", +"to": "tonga", +"tr": "török", +"ts": "conga", +"tt": "tatár", +"tw": "tui", +"ug": "ujgur", +"uk": "ukrán", +"ur": "urdu", +"uz": "üzbég", +"vi": "vietnámi", +"vo": "volapük", +"wo": "volof", +"xh": "hosza", +"yi": "zsidó", +"yo": "joruba", +"za": "zsuang", +"zh": "kínai", +"zu": "zulu", +}, +{ type: "language", iso: "hy", +countries: [ +{_reference: "AM"}, +], +name: "Հայերէն", +"hy": "Հայերէն", +}, +{ type: "language", iso: "ia", +countries: [ +], +}, +{ type: "language", iso: "id", +countries: [ +{_reference: "ID"}, +], +name: "Bahasa Indonesia", +"aa": "Afar", +"ab": "Abkhaz", +"ae": "Avestan", +"af": "Afrikaans", +"ak": "Akan", +"am": "Amharik", +"ar": "Arab", +"as": "Assam", +"av": "Avarik", +"ay": "Aymara", +"az": "Azerbaijan", +"ba": "Bashkir", +"be": "Belarusia", +"bg": "Bulgaria", +"bh": "Bihari", +"bi": "Bislama", +"bm": "Bambara", +"bn": "Bengal", +"bo": "Tibet", +"br": "Breton", +"bs": "Bosnia", +"ca": "Catalan", +"ce": "Chechen", +"ch": "Chamorro", +"co": "Korsika", +"cr": "Cree", +"cs": "Ceko", +"cv": "Chuvash", +"cy": "Welsh", +"da": "Denmark", +"de": "Jerman", +"dv": "Divehi", +"dz": "Dzongkha", +"ee": "Ewe", +"el": "Yunani", +"en": "Inggris", +"eo": "Esperanto", +"es": "Spanyol", +"et": "Estonian", +"eu": "Basque", +"fa": "Persia", +"ff": "Fulah", +"fi": "Finlandia", +"fj": "Fiji", +"fo": "Faro", +"fr": "Perancis", +"fy": "Frisi", +"ga": "Irlandia", +"gd": "Gaelik Skotlandia", +"gl": "Gallegan", +"gn": "Guarani", +"gu": "Gujarati", +"gv": "Manx", +"ha": "Hausa", +"he": "Ibrani", +"hi": "Hindi", +"ho": "Hiri Motu", +"hr": "Kroasia", +"hu": "Hungaria", +"hy": "Armenia", +"hz": "Herero", +"ia": "Interlingua", +"id": "Bahasa Indonesia", +"ie": "Interlingue", +"ig": "Igbo", +"ii": "Sichuan Yi", +"ik": "Inupiaq", +"io": "Ido", +"is": "Icelandic", +"it": "Italian", +"ja": "Japanese", +"jv": "Jawa", +"ka": "Georgian", +"kg": "Kongo", +"ki": "Kikuyu", +"kj": "Kuanyama", +"kk": "Kazakh", +"kl": "Kalaallisut", +"km": "Khmer", +"kn": "Kannada", +"ko": "Korea", +"kr": "Kanuri", +"ks": "Kashmir", +"ku": "Kurdi", +"kv": "Komi", +"kw": "Cornish", +"ky": "Kirghiz", +"la": "Latin", +"lb": "Luxembourg", +"lg": "Ganda", +"li": "Limburg", +"ln": "Lingala", +"lo": "Lao", +"lt": "Lithuania", +"lu": "Luba-Katanga", +"lv": "Latvian", +"mg": "Malagasi", +"mh": "Marshall", +"mi": "Maori", +"mk": "Macedonian", +"ml": "Malayalam", +"mn": "Mongolian", +"mo": "Moldavian", +"mr": "Marathi", +"ms": "Malay", +"mt": "Maltese", +"my": "Burma", +"na": "Nauru", +"nb": "Norwegian Bokmål", +"ne": "Nepal", +"ng": "Ndonga", +"nl": "Belanda", +"nn": "Norwegian Nynorsk", +"no": "Norwegian", +"nv": "Navajo", +"ny": "Nyanja; Chichewa; Chewa", +"oj": "Ojibwa", +"om": "Oromo", +"or": "Oriya", +"os": "Ossetic", +"pa": "Punjabi", +"pi": "Pali", +"pl": "Polish", +"ps": "Pashto (Pushto)", +"pt": "Portugis", +"qu": "Quechua", +"rm": "Rhaeto-Romance", +"rn": "Rundi", +"ro": "Romanian", +"ru": "Russian", +"rw": "Kinyarwanda", +"sa": "Sanskrit", +"sc": "Sardinian", +"sd": "Sindhi", +"se": "Northern Sami", +"sg": "Sango", +"sh": "Serbo-Croatian", +"si": "Sinhalese", +"sk": "Slovak", +"sl": "Slovenian", +"sm": "Samoan", +"sn": "Shona", +"so": "Somali", +"sq": "Albanian", +"sr": "Serbian", +"ss": "Swati", +"su": "Sundan", +"sv": "Swedia", +"sw": "Swahili", +"ta": "Tamil", +"te": "Telugu", +"tg": "Tajik", +"th": "Thai", +"ti": "Tigrinya", +"tk": "Turkmen", +"tl": "Tagalog", +"tn": "Tswana", +"tr": "Turkish", +"ts": "Tsonga", +"tt": "Tatar", +"tw": "Twi", +"ty": "Tahitian", +"ug": "Uighur", +"uk": "Ukrainian", +"ur": "Urdu", +"uz": "Uzbek", +"ve": "Venda", +"vi": "Vietnamese", +"vo": "Volapük", +"wa": "Walloon", +"wo": "Wolof", +"xh": "Xhosa", +"yi": "Yiddish", +"yo": "Yoruba", +"za": "Zhuang", +"zh": "Cina", +"zu": "Zulu", +}, +{ type: "language", iso: "ig", +countries: [ +{_reference: "NG"}, +], +}, +{ type: "language", iso: "is", +countries: [ +{_reference: "IS"}, +], +name: "Íslenska", +"ab": "Abkasíska", +"ae": "Avestíska", +"af": "Afríkanska", +"ak": "Akan", +"am": "Amharíska", +"an": "Aragonska", +"ar": "Arabíska", +"as": "Assamska", +"av": "Avaríska", +"ay": "Aímara", +"az": "Aserska", +"ba": "Baskír", +"be": "Hvítrússneska", +"bg": "Búlgarska", +"bh": "Bíharí", +"bi": "Bíslama", +"bm": "Bambara", +"bn": "Bengalska", +"bo": "Tíbeska", +"br": "Bretónska", +"bs": "Bosníska", +"ca": "Katalónska", +"ce": "Tsjetsjenska", +"ch": "Kamorró", +"co": "Korsíska", +"cr": "Krí", +"cs": "Tékkneska", +"cu": "Kirkjuslavneska", +"cv": "Sjúvas", +"cy": "Velska", +"da": "Danska", +"de": "Þýska", +"dv": "Dívehí", +"dz": "Dsongka", +"ee": "Eve", +"el": "Nýgríska (1453-)", +"en": "Enska", +"eo": "Esperantó", +"es": "Spænska", +"et": "Eistneska", +"eu": "Baskneska", +"fa": "Persneska", +"ff": "Fúla", +"fi": "Finnska", +"fj": "Fídjeyska", +"fo": "Færeyska", +"fr": "Franska", +"fy": "Frísneska", +"ga": "Írska", +"gd": "Skosk gelíska", +"gl": "Gallegska", +"gn": "Gvaraní", +"gu": "Gújaratí", +"gv": "Manx", +"ha": "Hása", +"he": "Hebreska", +"hi": "Hindí", +"ho": "Hírímótú", +"hr": "Króatíska", +"ht": "Haítíska", +"hu": "Ungverska", +"hy": "Armenska", +"hz": "Hereró", +"ia": "Interlingva", +"id": "Indónesíska", +"ie": "Interlingve", +"ig": "Ígbó", +"ii": "Sísúanjí", +"ik": "Ínúpíak", +"io": "Ídó", +"is": "Íslenska", +"it": "Ítalska", +"iu": "Inúktitút", +"ja": "Japanska", +"jv": "Javanska", +"ka": "Georgíska", +"kg": "Kongó", +"ki": "Kíkújú", +"kj": "Kúanjama", +"kk": "Kasakska", +"kl": "Grænlenska", +"km": "Kmer", +"kn": "Kannada", +"ko": "Kóreska", +"kr": "Kanúrí", +"ks": "Kasmírska", +"ku": "Kúrdneska", +"kv": "Komíska", +"kw": "Korníska", +"ky": "Kirgiska", +"la": "Latína", +"lb": "Lúxemborgíska", +"lg": "Ganda", +"li": "Limbúrgíska", +"ln": "Lingala", +"lo": "Laó", +"lt": "Litháíska", +"lu": "Lúbakatanga", +"lv": "Lettneska", +"mg": "Malagasíska", +"mh": "Marshallska", +"mi": "Maórí", +"mk": "Makedónska", +"ml": "Malajalam", +"mn": "Mongólska", +"mo": "Moldóvska", +"mr": "Maratí", +"ms": "Malaíska", +"mt": "Maltneska", +"my": "Burmneska", +"na": "Nárúska", +"nb": "Norskt bókmál", +"nd": "Norðurndebele", +"ne": "Nepalska", +"ng": "Ndonga", +"nl": "Hollenska", +"nn": "Nýnorska", +"no": "Norska", +"nr": "Suðurndebele", +"nv": "Navahó", +"ny": "Njanja; Sísjeva; Sjeva", +"oc": "Okkitíska (eftir 1500); Próvensalska", +"oj": "Ojibva", +"om": "Órómó", +"or": "Óría", +"os": "Ossetíska", +"pa": "Púnjabí", +"pi": "Palí", +"pl": "Pólska", +"ps": "Pastú", +"pt": "Portúgalska", +"qu": "Kvesjúa", +"rm": "Retórómanska", +"rn": "Rúndí", +"ro": "Rúmenska", +"ru": "Rússneska", +"rw": "Kínjarvanda", +"sa": "Sanskrít", +"sc": "Sardínska", +"sd": "Sindí", +"se": "Norðursamíska", +"sg": "Sangó", +"sh": "Serbókróatíska", +"si": "Singalesíska", +"sk": "Slóvakíska", +"sl": "Slóvenska", +"sm": "Samóska", +"sn": "Shona", +"so": "Sómalska", +"sq": "Albanska", +"sr": "Serbneska", +"ss": "Svatí", +"st": "Suðursótó", +"su": "Súndanska", +"sv": "Sænska", +"sw": "Svahílí", +"ta": "Tamílska", +"te": "Telúgú", +"tg": "Tadsjikska", +"th": "Taílenska", +"ti": "Tígrinja", +"tk": "Túrkmenska", +"tl": "Tagalog", +"tn": "Tsúana", +"to": "Tongverska (Tongaeyjar)", +"tr": "Tyrkneska", +"ts": "Tsonga", +"tt": "Tatarska", +"tw": "Tví", +"ty": "Tahítíska", +"ug": "Úígúr", +"uk": "Úkraínska", +"ur": "Úrdú", +"uz": "Úsbekska", +"ve": "Venda", +"vi": "Víetnamska", +"vo": "Volapük", +"wa": "Vallónska", +"wo": "Volof", +"xh": "Sósa", +"yi": "Jiddíska", +"yo": "Jórúba", +"za": "Súang", +"zh": "Kínverska", +"zu": "Súlú", +}, +{ type: "language", iso: "it", +countries: [ +{_reference: "CH"}, +{_reference: "IT"}, +], +name: "italiano", +"aa": "afar", +"ab": "abkhazian", +"ae": "avestan", +"af": "afrikaans", +"ak": "akan", +"am": "amarico", +"an": "aragonese", +"ar": "arabo", +"as": "assamese", +"av": "avaro", +"ay": "aymara", +"az": "azerbaigiano", +"ba": "baschiro", +"be": "bielorusso", +"bg": "bulgaro", +"bh": "bihari", +"bi": "bislama", +"bm": "bambara", +"bn": "bengalese", +"bo": "tibetano", +"br": "bretone", +"bs": "bosniaco", +"ca": "catalano", +"ce": "ceceno", +"ch": "chamorro", +"co": "corso", +"cr": "cree", +"cs": "ceco", +"cu": "slavo della Chiesa", +"cv": "chuvash", +"cy": "gallese", +"da": "danese", +"de": "tedesco", +"dv": "divehi", +"dz": "dzongkha", +"ee": "ewe", +"el": "greco", +"en": "inglese", +"eo": "esperanto", +"es": "spagnolo", +"et": "estone", +"eu": "basco", +"fa": "persiano", +"ff": "fulah", +"fi": "finlandese", +"fj": "figiano", +"fo": "faroese", +"fr": "francese", +"fy": "frisone", +"ga": "irlandese", +"gd": "gaelico scozzese", +"gl": "galiziano", +"gn": "guarana", +"gu": "gujarati", +"gv": "manx", +"ha": "haussa", +"he": "ebraico", +"hi": "hindi", +"ho": "hiri motu", +"hr": "croato", +"ht": "haitiano", +"hu": "ungherese", +"hy": "armeno", +"hz": "herero", +"ia": "interlingua", +"id": "indonesiano", +"ie": "interlingue", +"ig": "igbo", +"ii": "sichuan yi", +"ik": "inupiak", +"io": "ido", +"is": "islandese", +"it": "italiano", +"iu": "inuktitut", +"ja": "giapponese", +"jv": "giavanese", +"ka": "georgiano", +"kg": "kongo", +"ki": "kikuyu", +"kj": "kuanyama", +"kk": "kazako", +"kl": "kalaallisut", +"km": "khmer", +"kn": "kannada", +"ko": "coreano", +"kr": "kanuri", +"ks": "kashmiri", +"ku": "curdo", +"kv": "komi", +"kw": "cornico", +"ky": "kirghiso", +"la": "latino", +"lb": "lussemburghese", +"lg": "ganda", +"li": "limburgese", +"ln": "lingala", +"lo": "lao", +"lt": "lituano", +"lu": "luba-katanga", +"lv": "lettone", +"mg": "malgascio", +"mh": "marshallese", +"mi": "maori", +"mk": "macedone", +"ml": "malayalam", +"mn": "mongolo", +"mo": "moldavo", +"mr": "marathi", +"ms": "malese", +"mt": "maltese", +"my": "birmano", +"na": "nauru", +"nd": "ndebele del nord", +"ne": "nepalese", +"ng": "ndonga", +"nl": "olandese", +"nn": "norvegese nynorsk", +"no": "norvegese", +"nr": "ndebele del sud", +"nv": "navajo", +"ny": "nyanja; chichewa; chewa", +"oc": "occitano (post 1500); provenzale", +"oj": "ojibwa", +"om": "oromo", +"or": "oriya", +"os": "ossetico", +"pa": "punjabi", +"pi": "pali", +"pl": "polacco", +"ps": "pashto", +"pt": "portoghese", +"qu": "quechua", +"rm": "lingua rhaeto-romance", +"rn": "rundi", +"ro": "rumeno", +"ru": "russo", +"rw": "kinyarwanda", +"sa": "sanscrito", +"sc": "sardo", +"sd": "sindhi", +"se": "sami del nord", +"sg": "sango", +"sh": "serbo-croato", +"si": "singalese", +"sk": "slovacco", +"sl": "sloveno", +"sm": "samoano", +"sn": "shona", +"so": "somalo", +"sq": "albanese", +"sr": "serbo", +"ss": "swati", +"st": "sotho del sud", +"su": "sundanese", +"sv": "svedese", +"sw": "swahili", +"ta": "tamil", +"te": "telugu", +"tg": "tagicco", +"th": "thai", +"ti": "tigrinya", +"tk": "turcomanno", +"tl": "tagalog", +"tn": "tswana", +"to": "tonga (Isole Tonga)", +"tr": "turco", +"ts": "tsonga", +"tt": "tatarico", +"tw": "ci", +"ty": "taitiano", +"ug": "uigurico", +"uk": "ucraino", +"ur": "urdu", +"uz": "usbeco", +"ve": "venda", +"vi": "vietnamita", +"wa": "vallone", +"wo": "volof", +"xh": "xosa", +"yi": "yiddish", +"yo": "yoruba", +"za": "zhuang", +"zh": "cinese", +"zu": "zulu", +}, +{ type: "language", iso: "iu", +countries: [ +], +name: "ᐃᓄᒃᑎᑐᑦ ᑎᑎᕋᐅᓯᖅ", +}, +{ type: "language", iso: "ja", +countries: [ +{_reference: "JP"}, +], +name: "日本語", +"aa": "アファル語", +"ab": "アブハズ語", +"ae": "アヴェスタ語", +"af": "アフリカーンス語", +"ak": "アカン語", +"am": "アムハラ語", +"an": "アラゴン語", +"ar": "アラビア語", +"as": "アッサム語", +"av": "アヴァル語", +"ay": "アイマラ語", +"az": "アゼルバイジャン語", +"ba": "バシキール語", +"be": "ベラルーシ語", +"bg": "ブルガリア語", +"bh": "ビハール語", +"bi": "ビスラマ語", +"bm": "バンバラ語", +"bn": "ベンガル語", +"bo": "チベット語", +"br": "ブルトン語", +"bs": "ボスニア語", +"ca": "カタロニア語", +"ce": "チェチェン語", +"ch": "チャモロ語", +"co": "コルシカ語", +"cr": "クリー語", +"cs": "チェコ語", +"cu": "教会スラブ語", +"cv": "チュヴァシュ語", +"cy": "ウェールズ語", +"da": "デンマーク語", +"de": "ドイツ語", +"dv": "ディベヒ語", +"dz": "ゾンカ語", +"ee": "エウェ語", +"el": "ギリシャ語", +"en": "英語", +"eo": "エスペラント語", +"es": "スペイン語", +"et": "エストニア語", +"eu": "バスク語", +"fa": "ペルシア語", +"ff": "フラニ語", +"fi": "フィンランド語", +"fj": "フィジー語", +"fo": "フェロー語", +"fr": "フランス語", +"fy": "フリジア語", +"ga": "アイルランド語", +"gd": "スコットランド・ゲール語", +"gl": "ガリシア語", +"gn": "グアラニー語", +"gu": "グジャラート語", +"gv": "マン島語", +"ha": "ハウサ語", +"he": "ヘブライ語", +"hi": "ヒンディー語", +"ho": "ヒリモトゥ語", +"hr": "クロアチア語", +"ht": "ハイチ語", +"hu": "ハンガリー語", +"hy": "アルメニア語", +"hz": "ヘレロ語", +"ia": "インターリングア語", +"id": "インドネシア語", +"ie": "インターリング語", +"ig": "イボ語", +"ii": "四川イ語", +"ik": "イヌピアック語", +"io": "イド語", +"is": "アイスランド語", +"it": "イタリア語", +"iu": "イヌクウティトット語", +"ja": "日本語", +"jv": "ジャワ語", +"ka": "グルジア語", +"kg": "コンゴ語", +"ki": "キクユ語", +"kj": "クアニャマ語", +"kk": "カザフ語", +"kl": "グリーンランド語", +"km": "クメール語", +"kn": "カンナダ語", +"ko": "韓国語", +"kr": "カヌリ語", +"ks": "カシミール語", +"ku": "クルド語", +"kv": "コミ語", +"kw": "コーンウォール語", +"ky": "キルギス語", +"la": "ラテン語", +"lb": "ルクセンブルク語", +"lg": "ガンダ語", +"li": "リンブルフ語", +"ln": "リンガラ語", +"lo": "ラオ語", +"lt": "リトアニア語", +"lu": "ルバ・カタンガ語", +"lv": "ラトビア語", +"mg": "マダガスカル語", +"mh": "マーシャル語", +"mi": "マオリ語", +"mk": "マケドニア語", +"ml": "マラヤーラム語", +"mn": "モンゴル語", +"mo": "モルダビア語", +"mr": "マラーティー語", +"ms": "マレー語", +"mt": "マルタ語", +"my": "ビルマ語", +"na": "ナウル語", +"nb": "ノルウェー語 (ブークモール)", +"nd": "北ンデベレ語", +"ne": "ネパール語", +"ng": "ンドンガ語", +"nl": "オランダ語", +"nn": "ノルウェー語 (ニーノシュク)", +"no": "ノルウェー語", +"nr": "南ンデベレ語", +"nv": "ナバホ語", +"ny": "ニャンジャ語、チチェワ語、チェワ語", +"oc": "オック語 (1500以降)、プロバンス語", +"oj": "オブジワ語", +"om": "オロモ語", +"or": "オリヤー語", +"os": "オセト語", +"pa": "パンジャブ語", +"pi": "パーリ語", +"pl": "ポーランド語", +"ps": "パシュトゥー語", +"pt": "ポルトガル語", +"qu": "ケチュア語", +"rm": "レト=ロマン語", +"rn": "ルンディ語", +"ro": "ルーマニア語", +"ru": "ロシア語", +"rw": "ルワンダ語", +"sa": "サンスクリット語", +"sc": "サルデーニャ語", +"sd": "シンド語", +"se": "北サーミ語", +"sg": "サンゴ語", +"sh": "セルボ=クロアチア語", +"si": "シンハラ語", +"sk": "スロバキア語", +"sl": "スロベニア語", +"sm": "サモア語", +"sn": "ショナ語", +"so": "ソマリ語", +"sq": "アルバニア語", +"sr": "セルビア語", +"ss": "シスワティ語", +"st": "南部ソト語", +"su": "スンダ語", +"sv": "スウェーデン語", +"sw": "スワヒリ語", +"ta": "タミール語", +"te": "テルグ語", +"tg": "タジク語", +"th": "タイ語", +"ti": "ティグリニア語", +"tk": "トルクメン語", +"tl": "タガログ語", +"tn": "ツワナ語", +"to": "トンガ語", +"tr": "トルコ語", +"ts": "ツォンガ語", +"tt": "タタール語", +"tw": "トウィ語", +"ty": "タヒチ語", +"ug": "ウイグル語", +"uk": "ウクライナ語", +"ur": "ウルドゥー語", +"uz": "ウズベク語", +"ve": "ベンダ語", +"vi": "ベトナム語", +"vo": "ボラピュク語", +"wa": "ワロン語", +"wo": "ウォロフ語", +"xh": "コサ語", +"yi": "イディッシュ語", +"yo": "ヨルバ語", +"za": "チワン語", +"zh": "中国語", +"zu": "ズールー語", +}, +{ type: "language", iso: "ka", +countries: [ +{_reference: "GE"}, +], +name: "ქართული", +"de": "გერმანული", +"en": "ინგლისური", +"es": "ესპანური", +"fr": "ფრანგული", +"it": "იტალიური", +"ja": "იაპონური", +"ka": "ქართული", +"pt": "პორტუგალიური", +"ru": "რუსული", +"zh": "ჩინური", +}, +{ type: "language", iso: "kk", +countries: [ +{_reference: "KZ"}, +], +name: "Қазақ", +"kk": "Қазақ", +}, +{ type: "language", iso: "kl", +countries: [ +{_reference: "GL"}, +], +name: "kalaallisut", +"kl": "kalaallisut", +}, +{ type: "language", iso: "km", +countries: [ +{_reference: "KH"}, +], +name: "ភាសាខ្មែរ", +"aa": "ភាសាអាហ្វារ", +"ae": "ភាសាអាវែស្តង់", +"af": "ភាសាអាហ្វ្រីកាអាន", +"an": "ភាសាអារ៉ាហ្គោន", +"ar": "ភាសាអារ៉ាប់", +"ay": "ភាសាអីម៉ារ៉ា", +"az": "ភាសាអាហ៊្សែរបែហ្សង់", +"be": "ភាសាបេឡារុស្ស", +"bg": "ភាសាប៊ុលហ្ការី", +"bh": "ភាសាបិហារ", +"bm": "ភាសាបាម្បារា", +"bn": "ភាសាបេន្កាលី", +"bo": "ភាសាទីបេ", +"ca": "ភាសាកាតាឡាន", +"cs": "ភាសាឆេក", +"da": "ភាសាដាណឺម៉ាក", +"de": "ភាសាអាល្លឺម៉ង់", +"dz": "ភាសាប៊ូតាន", +"el": "ភាសាក្រិច", +"en": "ភាសាអង់គ្លេស", +"eo": "ភាសាអេស្ពេរ៉ាន្ទោ", +"es": "ភាសាអេស្ប៉ាញ", +"et": "ភាសាអេស្តូនី", +"eu": "ភាសាបាស្កេ", +"fi": "ភាសាហ្វាំងឡង់", +"fj": "ហ្វ៉ីហ្ស៉ី", +"fr": "ភាសាបារាំង", +"ga": "ភាសាហ្កែលិគ", +"gd": "ភាសាហ្កែលិគ [gd]", +"gl": "ភាសាហ្កាលីស៉ី", +"gn": "ភាសាហ្កួរ៉ានី", +"gu": "ភាសាហ្កុយ៉ារាទី", +"he": "ភាសាហេប្រិ", +"hi": "ភាសាហ៉ិនឌី", +"hu": "ភាសាហុងគ្រី", +"hy": "ភាសាអារមេនី", +"id": "ភាសាឥណ្ឌូនេស៊ី", +"is": "ភាសាអ៉ីស្លង់", +"it": "ភាសាអ៊ីតាលី", +"ja": "ភាសាជប៉ុន", +"jv": "ភាសាយ៉ាវា", +"ka": "ភាសាហ្សកហ្ស៉ី", +"kk": "ភាសាកាហ្សាក់ស្តង់់", +"km": "ភាសាខ្មែរ", +"kn": "ភាសាកិណាដា", +"ko": "ភាសាកូរ៉េ", +"ku": "ភាសាឃឺដ", +"ky": "ភាសាគៀរហ្គីស្តង់", +"la": "ភាសាឡាតំាង", +"lo": "ភាសាឡាវ", +"lt": "ភាសាលីទុយអានី", +"lv": "ភាសាឡាតវីយ៉ា", +"mg": "ភាសាម៉ាដាហ្កាសការ", +"mi": "ភាសាម៉ោរី", +"mk": "ភាសាម៉ាសេដូនី", +"ml": "ភាសាម៉ាឡាឡាយ៉ាន", +"mn": "ភាសាម៉ុងហ្គោលី", +"mo": "ភាសាម៉ុលដាវី", +"mr": "ភាសាម៉ារាធី", +"ms": "ភាសាម៉ាលេស៉ី", +"mt": "ភាសាម៉ាល់តា", +"ne": "ភាសានេប៉ាល់", +"nl": "ភាសាហុល្លង់", +"no": "ភាសាន័រវែស", +"or": "ភាសាអូរីយ៉ា", +"pa": "ភាសាពូនយ៉ាប៊ី", +"pl": "ភាសាប៉ូឡូញ", +"pt": "ភាសាព័រទុយហ្កាល់", +"qu": "ភាសាកេទ្ជូអា", +"rn": "ភាសារូន្ឌី", +"ro": "ភាសារូម៉ានី", +"ru": "ភាសាรัរូស្ស៉ី", +"sa": "ភាសាសំស្ក្រឹត", +"sd": "ភាសាស៉ីន្ដី", +"sk": "ភាសាស្លូវ៉ាគី", +"sl": "ភាសាស្លូវ៉ានី", +"sm": "ភាសាសាមូអា", +"so": "ភាសាសូម៉ាលី", +"sq": "ភាសាអាល់បានី", +"su": "ភាំសាស៊ូដង់", +"sv": "ភាសាស៊ុយអែដ", +"sw": "ភាសាស្វាហ៉ីលី", +"ta": "ភាសាតាមីល", +"te": "ភាសាតេលូហ្គូ", +"tg": "ភាសាតាដហ្ស៉ីគីស្តង់", +"th": "ភាសាថៃ", +"tk": "ភាសាទួគមេនីស្តង់", +"to": "ភាសាតុងហ្គោ", +"tr": "ភាសាទួរគី", +"tt": "ភាសាតាតារ", +"uk": "ភាសាអ៊ុយក្រែន", +"ur": "ភាសាអ៊ូរ្ឌូ", +"uz": "ភាសាអ៊ូហ្សបេគីស្តង់", +"vi": "ភាសាវៀតណាម", +"xh": "ភាសាឃសា", +"yi": "ភាសាយីឌីហ្ស", +"yo": "ភាសាយរូបា", +"za": "ភាសាចួង", +"zh": "ភាសាចិន", +"zu": "ភាសាហ្ស៉ូលូ", +}, +{ type: "language", iso: "kn", +countries: [ +{_reference: "IN"}, +], +name: "ಕನ್ನಡ", +"kn": "ಕನ್ನಡ", +}, +{ type: "language", iso: "ko", +countries: [ +{_reference: "KR"}, +], +name: "한국어", +"aa": "아파르어", +"ab": "압카즈어", +"af": "남아공 공용어", +"ak": "아칸어", +"am": "암하라어", +"an": "아라곤어", +"ar": "아랍어", +"as": "아샘어", +"av": "아바릭어", +"ay": "아이마라어", +"az": "아제르바이잔어", +"ba": "바슈키르어", +"be": "벨로루시어", +"bg": "불가리아어", +"bh": "비하르어", +"bi": "비슬라마어", +"bm": "밤바라어", +"bn": "벵골어", +"bo": "티베트어", +"br": "브르타뉴어", +"bs": "보스니아어", +"ca": "카탈로니아어", +"ch": "차모로어", +"co": "코르시카어", +"cr": "크리어", +"cs": "체코어", +"cu": "교회슬라브어", +"cv": "추바시어", +"cy": "웨일스어", +"da": "덴마크어", +"de": "독일어", +"dv": "디베히어", +"dz": "부탄어", +"ee": "에웨어", +"el": "그리스어", +"en": "영어", +"eo": "에스페란토어", +"es": "스페인어", +"et": "에스토니아어", +"eu": "바스크어", +"fa": "이란어", +"ff": "풀라어", +"fi": "핀란드어", +"fj": "피지어", +"fo": "페로스어", +"fr": "프랑스어", +"fy": "프리지아어", +"ga": "아일랜드어", +"gd": "스코갤릭어", +"gl": "갈리시아어", +"gn": "구아라니어", +"gu": "구자라트어", +"gv": "맹크스어", +"ha": "하우자어", +"he": "히브리어", +"hi": "힌디어", +"ho": "히리 모투어", +"hr": "크로아티아어", +"ht": "아이티어", +"hu": "헝가리어", +"hy": "아르메니아어", +"ia": "인터링거", +"id": "인도네시아어", +"ie": "인터링게어", +"ig": "이그보어", +"ii": "시츄안 이어", +"ik": "이누피아크어", +"io": "이도어", +"is": "아이슬란드어", +"it": "이탈리아어", +"iu": "이눅티투트어", +"ja": "일본어", +"jv": "자바어", +"ka": "그루지야어", +"kg": "콩고어", +"ki": "키쿠유어", +"kj": "쿠안야마어", +"kk": "카자흐어", +"kl": "그린랜드어", +"km": "캄보디아어", +"kn": "카나다어", +"ko": "한국어", +"kr": "칸누리어", +"ks": "카슈미르어", +"ku": "크르드어", +"kv": "코미어", +"kw": "콘월어", +"ky": "키르기스어", +"la": "라틴어", +"lb": "룩셈부르크어", +"lg": "간다어", +"li": "림버거어", +"ln": "링갈라어", +"lo": "라오어", +"lt": "리투아니아어", +"lu": "루바-카탄가어", +"lv": "라트비아어", +"mg": "마다가스카르어", +"mh": "마셜제도어", +"mi": "마오리어", +"mk": "마케도니아어", +"ml": "말라얄람어", +"mn": "몽골어", +"mo": "몰다비아어", +"mr": "마라티어", +"ms": "말레이어", +"mt": "몰타어", +"my": "버마어", +"na": "나우루어", +"nb": "보크말 노르웨이어", +"nd": "은데벨레어, 북부", +"ne": "네팔어", +"ng": "느동가어", +"nl": "네덜란드어", +"nn": "뉘노르스크 노르웨이어", +"no": "노르웨이어", +"nr": "은데벨레어, 남부", +"nv": "나바호어", +"ny": "니안자어; 치츄어; 츄어", +"oc": "옥시트어", +"oj": "오지브웨이어", +"om": "오로모어 (아판)", +"or": "오리야어", +"os": "오세트어", +"pa": "펀잡어", +"pi": "팔리어", +"pl": "폴란드어", +"ps": "파시토어 (푸시토)", +"pt": "포르투칼어", +"qu": "케추아어", +"rm": "레토로만어", +"rn": "반투어(부룬디)", +"ro": "루마니아어", +"ru": "러시아어", +"rw": "반투어(루완다)", +"sa": "산스크리트어", +"sc": "사르디니아어", +"sd": "신디어", +"se": "북부 사미어", +"sg": "산고어", +"sh": "세르보크로아티아어", +"si": "스리랑카어", +"sk": "슬로바키아어", +"sl": "슬로베니아어", +"sm": "사모아어", +"sn": "쇼나어", +"so": "소말리아어", +"sq": "알바니아어", +"sr": "세르비아어", +"ss": "시스와티어", +"st": "세소토어", +"su": "순단어", +"sv": "스웨덴어", +"sw": "스와힐리어", +"ta": "타밀어", +"te": "텔루구어", +"tg": "타지키스탄어", +"th": "태국어", +"ti": "티그리냐어", +"tk": "투르크멘어", +"tl": "타갈로그어", +"tn": "세츠와나어", +"to": "통가어", +"tr": "터키어", +"ts": "총가어", +"tt": "타타르어", +"tw": "트위어", +"ty": "타히티어", +"ug": "위구르어", +"uk": "우크라이나어", +"ur": "우르두어", +"uz": "우즈베크어", +"ve": "벤다어", +"vi": "베트남어", +"vo": "볼라퓌크어", +"wa": "왈론어", +"wo": "올로프어", +"xh": "반투어(남아프리카)", +"yi": "이디시어", +"yo": "요루바어", +"za": "주앙어", +"zh": "중국어", +"zu": "줄루어", +}, +{ type: "language", iso: "ku", +countries: [ +{_reference: "IQ"}, +{_reference: "IR"}, +{_reference: "SY"}, +{_reference: "TR"}, +], +name: "kurdî", +}, +{ type: "language", iso: "kw", +countries: [ +{_reference: "GB"}, +], +name: "kernewek", +"kw": "kernewek", +}, +{ type: "language", iso: "ky", +countries: [ +{_reference: "KG"}, +], +name: "Кыргыз", +"de": "немисче", +"en": "англисче", +"es": "испанча", +"fr": "французча", +"it": "италиянча", +"ja": "япончо", +"pt": "португалча", +"ru": "орусча", +"zh": "кытайча", +}, +{ type: "language", iso: "ln", +countries: [ +{_reference: "CD"}, +{_reference: "CG"}, +], +name: "lingála", +}, +{ type: "language", iso: "lo", +countries: [ +{_reference: "LA"}, +], +name: "ລາວ", +}, +{ type: "language", iso: "lt", +countries: [ +{_reference: "LT"}, +], +name: "Lietuvių", +"ar": "Arabų", +"bg": "Bulgarų", +"bn": "Bengalų", +"cs": "Čekų", +"da": "Danų", +"de": "Vokiečių", +"el": "Graikų", +"en": "Anglų", +"es": "Ispanų", +"et": "Estų", +"fi": "Suomių", +"fr": "Prancūzų", +"he": "Hebrajų", +"hi": "Hindi", +"hr": "Kroatų", +"hu": "Vengrų", +"it": "Italų", +"ja": "Japonų", +"ko": "Korėjiečių", +"lt": "Lietuvių", +"lv": "Latvių", +"nl": "Olandų", +"no": "Norvegų", +"pl": "Lenkų", +"pt": "Portugalų", +"ro": "Rumunų", +"ru": "Rusų", +"sk": "Slovakų", +"sl": "Slovėnų", +"sv": "Švedų", +"th": "Tajų", +"tr": "Turkų", +"zh": "Kinų", +}, +{ type: "language", iso: "lv", +countries: [ +{_reference: "LV"}, +], +name: "latviešu", +"ar": "arābu", +"bg": "bulgāru", +"cs": "čehu", +"da": "dāņu", +"de": "vācu", +"el": "grieķu", +"en": "angļu", +"es": "spāņu", +"et": "igauņu", +"fi": "somu", +"fr": "franču", +"he": "ivrits", +"hr": "horvātu", +"hu": "ungāru", +"it": "itāliešu", +"ja": "japāņu", +"ko": "korejiešu", +"lt": "lietuviešu", +"lv": "latviešu", +"nl": "holandiešu", +"no": "norvēģu", +"pl": "poļu", +"pt": "portugāļu", +"ro": "rumāņu", +"ru": "krievu", +"sk": "slovāku", +"sl": "slovēņu", +"sv": "zviedru", +"tr": "turku", +"zh": "ķīniešu", +}, +{ type: "language", iso: "mk", +countries: [ +{_reference: "MK"}, +], +name: "македонски", +"de": "германски", +"en": "англиски", +"es": "шпански", +"fr": "француски", +"it": "италијански", +"ja": "јапонски", +"mk": "македонски", +"pt": "португалски", +"ru": "руски", +"zh": "кинески", +}, +{ type: "language", iso: "ml", +countries: [ +{_reference: "IN"}, +], +name: "മലയാളം", +}, +{ type: "language", iso: "mn", +countries: [ +{_reference: "MN"}, +], +name: "Монгол хэл", +"de": "герман", +"en": "англи", +"es": "испани", +"fr": "франц", +"it": "итали", +"ja": "япон", +"pt": "португали", +"ru": "орос", +"zh": "хятад", +}, +{ type: "language", iso: "mr", +countries: [ +{_reference: "IN"}, +], +name: "मराठी", +"aa": "अफार", +"ab": "अबखेजियन", +"af": "अफ्रिकान्स", +"am": "अमहारिक", +"ar": "अरेबिक", +"as": "असामी", +"ay": "ऐमरा", +"az": "अज़रबाइजानी", +"ba": "बष्किर", +"be": "बैलोरुसियन", +"bg": "बल्गेरियन", +"bh": "बीहारी", +"bi": "बिसलमा", +"bn": "बंगाली", +"bo": "तिबेटियन", +"br": "ब्रेटन", +"ca": "कटलन", +"co": "कोर्सिकन", +"cs": "ज़ेक", +"cy": "वेल्ष", +"da": "डानिष", +"de": "जर्मन", +"dz": "भूटानी", +"el": "ग्रीक", +"en": "इंग्रेजी", +"eo": "इस्परान्टो", +"es": "स्पानिष", +"et": "इस्टोनियन्", +"eu": "बास्क", +"fa": "पर्षियन्", +"fi": "फिन्निष", +"fj": "फिजी", +"fo": "फेरोस्", +"fr": "फ्रेन्च", +"fy": "फ्रिसियन्", +"ga": "ऐरिष", +"gd": "स्काटस् गेलिक", +"gl": "गेलीशियन", +"gn": "गौरानी", +"gu": "गुजराती", +"ha": "हौसा", +"he": "हेबृ", +"hi": "हिन्दी", +"hr": "क्रोयेषियन्", +"hu": "हंगेरियन्", +"hy": "आर्मीनियन्", +"ia": "इन्टरलिंग्वा", +"id": "इन्डोनेषियन", +"ie": "इन्टरलिंग", +"ik": "इनूपियाक", +"is": "आईसलान्डिक", +"it": "इटालियन", +"iu": "इनुकिटुट्", +"ja": "जापनीस्", +"jv": "जावनीस्", +"ka": "जार्जियन्", +"kk": "कज़क", +"kl": "ग्रीनलान्डिक", +"km": "कंबोडियन", +"kn": "कन्नड", +"ko": "कोरियन्", +"ks": "कश्मीरी", +"ku": "कुर्दिष", +"ky": "किर्गिज़", +"la": "लाटिन", +"ln": "लिंगाला", +"lo": "लाओतियन्", +"lt": "लिथुआनियन्", +"lv": "लाट्वियन् (लेट्टिष)", +"mg": "मलागसी", +"mi": "माओरी", +"mk": "मसीडोनियन्", +"ml": "मलियालम", +"mn": "मंगोलियन्", +"mo": "मोल्डावियन्", +"mr": "मराठी", +"ms": "मलय", +"mt": "मालतीस्", +"my": "बर्मीस्", +"na": "नौरो", +"ne": "नेपाली", +"nl": "डच", +"no": "नोर्वेजियन", +"oc": "ओसिटान्", +"om": "ओरोमो (अफान)", +"or": "ओरिया", +"pa": "पंजाबी", +"pl": "पोलिष", +"ps": "पष्टो (पुष्टो)", +"pt": "पोर्चुगीस्", +"qu": "क्वेचओ", +"rm": "रहटो-रोमान्स्", +"rn": "किरुन्दी", +"ro": "रोमानियन्", +"ru": "रष्यन्", +"rw": "किन्यार्वान्डा", +"sa": "संस्कृत", +"sd": "सिंधी", +"sg": "सांग्रो", +"sh": "सेर्बो-क्रोयेषियन्", +"si": "सिन्हलीस्", +"sk": "स्लोवाक", +"sl": "स्लोवेनियन्", +"sm": "समोन", +"sn": "शोना", +"so": "सोमाली", +"sq": "आल्बेनियन्", +"sr": "सेर्बियन्", +"ss": "सिस्वती", +"st": "सेसोथो", +"su": "सुंदनीस्", +"sv": "स्वीडिष", +"sw": "स्वाहिली", +"ta": "तमिळ", +"te": "तेलंगू", +"tg": "तजिक", +"th": "थाई", +"ti": "तिग्रिन्या", +"tk": "तुर्कमेन", +"tl": "तगालोग", +"tn": "सेत्स्वाना", +"to": "तोंगा", +"tr": "तुर्किष", +"ts": "त्सोगा", +"tt": "टटार", +"tw": "त्वि", +"ug": "उधूर", +"uk": "युक्रेनियन्", +"ur": "उर्दू", +"uz": "उज़बेक", +"vi": "वियत्नामीज़", +"vo": "ओलापुक", +"wo": "उलोफ", +"xh": "क्स्होसा", +"yi": "इद्दिष", +"yo": "यूरुबा", +"za": "झ्हुन्ग", +"zh": "चिनीस्", +"zu": "जुलू", +}, +{ type: "language", iso: "ms", +countries: [ +{_reference: "BN"}, +{_reference: "MY"}, +], +name: "Bahasa Melayu", +"ms": "Bahasa Melayu", +}, +{ type: "language", iso: "mt", +countries: [ +{_reference: "MT"}, +], +name: "Malti", +"aa": "Afar", +"ab": "Abkażjan", +"ae": "Avestan", +"af": "Afrikans", +"ak": "Akan", +"am": "Amħariku", +"an": "Aragonese", +"ar": "Għarbi", +"as": "Assamese", +"av": "Avarik", +"ay": "Ajmara", +"az": "Ażerbajġani", +"ba": "Baxkir", +"be": "Belarussu", +"bg": "Bulgaru", +"bh": "Biħari", +"bi": "Bislama", +"bm": "Bambara", +"bn": "Bengali", +"bo": "Tibetjan", +"br": "Brenton", +"bs": "Bosnijan", +"ca": "Katalan", +"ce": "Ċeċen", +"ch": "Ċamorro", +"co": "Korsiku", +"cr": "Krij", +"cs": "Ċek", +"cu": "Slaviku tal-Knisja", +"cv": "Ċuvax", +"cy": "Welx", +"da": "Daniż", +"de": "Ġermaniż", +"dv": "Diveħi", +"dz": "Dżongka", +"ee": "Ewe", +"el": "Grieg", +"en": "Ingliż", +"eo": "Esperanto", +"es": "Spanjol", +"et": "Estonjan", +"eu": "Bask", +"fa": "Persjan", +"ff": "Fulaħ", +"fi": "Finlandiż", +"fj": "Fiġi", +"fo": "Fawriż", +"fr": "Franċiż", +"fy": "Friżjan", +"ga": "Irlandiż", +"gd": "Galliku Skoċċiż", +"gl": "Gallegjan", +"gn": "Gwarani", +"gu": "Guġarati", +"gv": "Manks", +"ha": "Ħawsa", +"he": "Ebrajk", +"hi": "Ħindi", +"ho": "Ħiri Motu", +"hr": "Kroat", +"ht": "Haitian", +"hu": "Ungeriż", +"hy": "Armenjan", +"hz": "Ħerero", +"ia": "Interlingua", +"id": "Indoneżjan", +"ie": "Interlingue", +"ig": "Igbo", +"ii": "Sichuan Yi", +"ik": "Inupjak", +"io": "Ido", +"is": "Iżlandiż", +"it": "Taljan", +"iu": "Inukitut", +"ja": "Ġappuniż", +"jv": "Ġavaniż", +"ka": "Ġorġjan", +"kg": "Kongo", +"ki": "Kikuju", +"kj": "Kuanyama", +"kk": "Każak", +"kl": "Kalallisut", +"km": "Kmer", +"kn": "Kannada", +"ko": "Korejan", +"kr": "Kanuri", +"ks": "Kaxmiri", +"ku": "Kurdiż", +"kv": "Komi", +"kw": "Korniku", +"ky": "Kirgiż", +"la": "Latin", +"lb": "Letżburgiż", +"lg": "Ganda", +"li": "Limburgish", +"ln": "Lingaljan", +"lo": "Lao", +"lt": "Litwanjan", +"lu": "Luba-Katanga", +"lv": "Latvjan (Lettix)", +"mg": "Malagażi", +"mh": "Marxall", +"mi": "Maori", +"mk": "Maċedonjan", +"ml": "Malajalam", +"mn": "Mongoljan", +"mo": "Moldavjan", +"mr": "Marati", +"ms": "Malajan", +"mt": "Malti", +"my": "Burmiż", +"na": "Nawuru", +"nb": "Bokmahal Norveġiż", +"nd": "Ndebele, ta’ Fuq", +"ne": "Nepaliż", +"ng": "Ndonga", +"nl": "Olandiż", +"nn": "Ninorsk Norveġiż", +"no": "Norveġiż", +"nr": "Ndebele, t’Isfel", +"nv": "Navaħo", +"ny": "Ċiċewa; Njanġa", +"oc": "Provenzal (wara 1500)", +"oj": "Oġibwa", +"om": "Oromo (Afan)", +"or": "Orija", +"os": "Ossettiku", +"pa": "Punġabi", +"pi": "Pali", +"pl": "Pollakk", +"ps": "Paxtun", +"pt": "Portugiż", +"qu": "Keċwa", +"rm": "Reto-Romanz", +"rn": "Rundi", +"ro": "Rumen", +"ru": "Russu", +"rw": "Kinjarwanda", +"sa": "Sanskrit", +"sc": "Sardinjan", +"sd": "Sindi", +"se": "Sami ta’ Fuq", +"sg": "Sango", +"sh": "Serbo-Kroat", +"si": "Sinħaliż", +"sk": "Slovakk", +"sl": "Sloven", +"sm": "Samojan", +"sn": "Xona", +"so": "Somali", +"sq": "Albaniż", +"sr": "Serb", +"ss": "Swati", +"st": "Soto, t’Isfel", +"su": "Sundaniż", +"sv": "Svediż", +"sw": "Swaħili", +"ta": "Tamil", +"te": "Telugu", +"tg": "Taġik", +"th": "Tajlandiż", +"ti": "Tigrinja", +"tk": "Turkmeni", +"tl": "Tagalog", +"tn": "Zwana", +"to": "Tongan (Gżejjer ta’ Tonga)", +"tr": "Tork", +"ts": "Tsonga", +"tt": "Tatar", +"tw": "Twi", +"ty": "Taħitjan", +"ug": "Wigur", +"uk": "Ukranjan", +"ur": "Urdu", +"uz": "Użbek", +"ve": "Venda", +"vi": "Vjetnamiż", +"vo": "Volapuk", +"wa": "Walloon", +"wo": "Wolof", +"xh": "Ħoża", +"yi": "Jiddix", +"yo": "Joruba", +"za": "Żwang", +"zh": "Ċiniż", +"zu": "Żulu", +}, +{ type: "language", iso: "nb", +countries: [ +{_reference: "NO"}, +], +name: "bokmål", +"aa": "afar", +"ab": "abkhasisk", +"ae": "avestisk", +"af": "afrikaans", +"ak": "akan", +"am": "amharisk", +"an": "aragonsk", +"ar": "arabisk", +"as": "assamisk", +"av": "avarisk", +"ay": "aymara", +"az": "aserbajdsjansk", +"ba": "basjkirsk", +"be": "hviterussisk", +"bg": "bulgarsk", +"bh": "bihari", +"bi": "bislama", +"bm": "bambara", +"bn": "bengali", +"bo": "tibetansk", +"br": "bretonsk", +"bs": "bosnisk", +"ca": "katalansk", +"ce": "tsjetsjensk", +"ch": "chamorro", +"co": "korsikansk", +"cr": "cree", +"cs": "tsjekkisk", +"cu": "kirkeslavisk", +"cv": "tsjuvansk", +"cy": "walisisk", +"da": "dansk", +"de": "tysk", +"dv": "divehi", +"dz": "dzongkha", +"ee": "ewe", +"el": "gresk", +"en": "engelsk", +"eo": "esperanto", +"es": "spansk", +"et": "estisk", +"eu": "baskisk", +"fa": "persisk", +"ff": "fulani", +"fi": "finsk", +"fj": "fijiansk", +"fo": "færøysk", +"fr": "fransk", +"ga": "irsk", +"gd": "skotsk gælisk", +"gl": "galicisk", +"gn": "guarani", +"gu": "gujarati", +"gv": "manx", +"ha": "hausa", +"he": "hebraisk", +"hi": "hindi", +"ho": "hiri motu", +"hr": "kroatisk", +"ht": "haitisk", +"hu": "ungarsk", +"hy": "armensk", +"hz": "herero", +"ia": "interlingua", +"id": "indonesisk", +"ie": "interlingue", +"ig": "ibo", +"ii": "sichuan-yi", +"ik": "unupiak", +"io": "ido", +"is": "islandsk", +"it": "italiensk", +"iu": "inuktitut", +"ja": "japansk", +"jv": "javanesisk", +"ka": "georgisk", +"kg": "kikongo", +"ki": "kikuyu", +"kj": "kuanyama", +"kk": "kasakhisk", +"km": "khmer", +"kn": "kannada", +"ko": "koreansk", +"kr": "kanuri", +"ks": "kasjmiri", +"ku": "kurdisk", +"kv": "komi", +"kw": "kornisk", +"ky": "kirgisisk", +"la": "latin", +"lb": "luxemburgsk", +"lg": "ganda", +"li": "limburgisk", +"ln": "lingala", +"lo": "laotisk", +"lt": "litauisk", +"lu": "luba-katanga", +"lv": "latvisk", +"mg": "madagassisk", +"mh": "marshallesisk", +"mi": "maori", +"mk": "makedonsk", +"ml": "malayalam", +"mn": "mongolsk", +"mo": "moldavisk", +"mr": "marathi", +"ms": "malayisk", +"mt": "maltesisk", +"my": "burmesisk", +"na": "nauru", +"nb": "bokmål", +"nd": "nord-ndebele", +"ne": "nepalsk", +"ng": "ndonga", +"nl": "nederlandsk", +"nn": "nynorsk", +"no": "norsk", +"nr": "sør-ndebele", +"nv": "navajo", +"ny": "nyanja", +"oc": "oksitansk (etter 1500)", +"oj": "ojibwa", +"om": "oromo", +"or": "oriya", +"os": "ossetisk", +"pa": "panjabi", +"pi": "pali", +"pl": "polsk", +"ps": "pashto", +"pt": "portugisisk", +"qu": "quechua", +"rm": "retoromansk", +"rn": "rundi", +"ro": "rumensk", +"ru": "russisk", +"rw": "kinjarwanda", +"sa": "sanskrit", +"sc": "sardinsk", +"sd": "sindhi", +"se": "nordsamisk", +"sg": "sango", +"sh": "serbokroatisk", +"si": "singalesisk", +"sk": "slovakisk", +"sl": "slovensk", +"sm": "samoansk", +"sn": "shona", +"sq": "albansk", +"sr": "serbisk", +"ss": "swati", +"st": "sør-sotho", +"su": "sundanesisk", +"sv": "svensk", +"sw": "swahili", +"ta": "tamil", +"te": "telugu", +"tg": "tatsjikisk", +"th": "thai", +"ti": "tigrinja", +"tk": "turkmensk", +"tl": "tagalog", +"tn": "tswana", +"to": "tonga (Tonga-øyene)", +"tr": "tyrkisk", +"ts": "tsonga", +"tt": "tatarisk", +"tw": "twi", +"ty": "tahitisk", +"ug": "uigurisk", +"uk": "ukrainsk", +"ur": "urdu", +"uz": "usbekisk", +"ve": "venda", +"vi": "vietnamesisk", +"vo": "volapyk", +"wa": "vallonsk", +"wo": "wolof", +"xh": "xhosa", +"yi": "jiddisk", +"yo": "joruba", +"za": "zhuang", +"zh": "kinesisk", +"zu": "zulu", +}, +{ type: "language", iso: "ne", +countries: [ +{_reference: "NP"}, +], +}, +{ type: "language", iso: "nl", +countries: [ +{_reference: "BE"}, +{_reference: "NL"}, +], +name: "Nederlands", +"aa": "Afar", +"ab": "Abchazisch", +"ae": "Avestisch", +"af": "Afrikaans", +"ak": "Akan", +"am": "Amhaars", +"an": "Aragonees", +"ar": "Arabisch", +"as": "Assamees", +"av": "Avarisch", +"ay": "Aymara", +"az": "Azerbeidzjaans", +"ba": "Basjkiers", +"be": "Wit-Russisch", +"bg": "Bulgaars", +"bh": "Bihari", +"bi": "Bislama", +"bm": "Bambara", +"bn": "Bengalees", +"bo": "Tibetaans", +"br": "Bretons", +"bs": "Bosnisch", +"ca": "Catalaans", +"ce": "Chechen", +"ch": "Chamorro", +"co": "Corsicaans", +"cr": "Cree", +"cs": "Tsjechisch", +"cu": "Kerkslavisch", +"cv": "Tsjoevasjisch", +"cy": "Welsh", +"da": "Deens", +"de": "Duits", +"dv": "Divehi", +"dz": "Dzongkha", +"ee": "Ewe", +"el": "Grieks", +"en": "Engels", +"eo": "Esperanto", +"es": "Spaans", +"et": "Estlands", +"eu": "Baskisch", +"fa": "Perzisch", +"ff": "Fulah", +"fi": "Fins", +"fj": "Fijisch", +"fo": "Faeröers", +"fr": "Frans", +"fy": "Fries", +"ga": "Iers", +"gd": "Schots Gaelic", +"gl": "Galicisch", +"gn": "Guarani", +"gu": "Gujarati", +"gv": "Manx", +"ha": "Hausa", +"he": "Hebreeuws", +"hi": "Hindi", +"ho": "Hiri Motu", +"hr": "Kroatisch", +"ht": "Haïtiaans", +"hu": "Hongaars", +"hy": "Armeens", +"hz": "Herero", +"ia": "Interlingua", +"id": "Indonesisch", +"ie": "Interlingue", +"ig": "Igbo", +"ii": "Sichuan Yi", +"ik": "Inupiaq", +"io": "Ido", +"is": "IJslands", +"it": "Italiaans", +"iu": "Inuktitut", +"ja": "Japans", +"jv": "Javaans", +"ka": "Georgisch", +"kg": "Kongo", +"ki": "Kikuyu", +"kj": "Kuanyama", +"kk": "Kazachs", +"kl": "Kalaallisut", +"km": "Khmer", +"kn": "Kannada", +"ko": "Koreaans", +"kr": "Kanuri", +"ks": "Kashmiri", +"ku": "Koerdisch", +"kv": "Komi", +"kw": "Cornish", +"ky": "Kirgizisch", +"la": "Latijn", +"lb": "Luxemburgs", +"lg": "Ganda", +"li": "Limburgs", +"ln": "Lingala", +"lo": "Lao", +"lt": "Litouws", +"lu": "Luba-Katanga", +"lv": "Letlands", +"mg": "Malagasisch", +"mh": "Marshallees", +"mi": "Maori", +"mk": "Macedonisch", +"ml": "Malayalam", +"mn": "Mongools", +"mo": "Moldavisch", +"mr": "Marathi", +"ms": "Maleis", +"mt": "Maltees", +"my": "Birmees", +"na": "Nauru", +"nb": "Noors - Bokmål", +"nd": "Ndebele, noord-", +"ne": "Nepalees", +"ng": "Ndonga", +"nl": "Nederlands", +"nn": "Noors - Nynorsk", +"no": "Noors", +"nr": "Ndebele, zuid-", +"nv": "Navajo", +"ny": "Nyanja", +"oc": "Langue d’Oc (na 1500)", +"oj": "Ojibwa", +"om": "Oromo", +"or": "Oriya", +"os": "Ossetisch", +"pa": "Punjabi", +"pi": "Pali", +"pl": "Pools", +"ps": "Pashto", +"pt": "Portugees", +"qu": "Quechua", +"rm": "Retoromaans", +"rn": "Rundi", +"ro": "Roemeens", +"ru": "Russisch", +"rw": "Kinyarwanda", +"sa": "Sanskrit", +"sc": "Sardinisch", +"sd": "Sindhi", +"se": "Noord-Samisch", +"sg": "Sango", +"sh": "Servokroatisch", +"si": "Singalees", +"sk": "Slowaaks", +"sl": "Sloveens", +"sm": "Samoaans", +"sn": "Shona", +"so": "Somalisch", +"sq": "Albanees", +"sr": "Servisch", +"ss": "Swati", +"st": "Sotho, zuid", +"su": "Sundanees", +"sv": "Zweeds", +"sw": "Swahili", +"ta": "Tamil", +"te": "Teloegoe", +"tg": "Tadzjik", +"th": "Thai", +"ti": "Tigrinya", +"tk": "Turkmeens", +"tl": "Tagalog", +"tn": "Tswana", +"to": "Tonga (Tonga-eilanden)", +"tr": "Turks", +"ts": "Tsonga", +"tt": "Tataars", +"tw": "Twi", +"ty": "Tahitisch", +"ug": "Uighur", +"uk": "Oekraïens", +"ur": "Urdu", +"uz": "Oezbeeks", +"ve": "Venda", +"vi": "Vietnamees", +"vo": "Volapük", +"wa": "Wallonisch", +"wo": "Wolof", +"xh": "Xhosa", +"yi": "Jiddisch", +"yo": "Joruba", +"za": "Zhuang", +"zh": "Chinees", +"zu": "Zulu", +}, +{ type: "language", iso: "nn", +countries: [ +{_reference: "NO"}, +], +name: "nynorsk", +"aa": "afar", +"ab": "abkhasisk", +"ae": "avestisk", +"af": "afrikaans", +"ak": "akan", +"am": "amharisk", +"an": "aragonsk", +"ar": "arabisk", +"as": "assamisk", +"av": "avarisk", +"ay": "aymara", +"az": "aserbajdsjansk", +"ba": "basjkirsk", +"be": "kviterussisk", +"bg": "bulgarsk", +"bh": "bihari", +"bi": "bislama", +"bm": "bambara", +"bn": "bengali", +"bo": "tibetansk", +"br": "bretonsk", +"bs": "bosnisk", +"ca": "katalansk", +"ce": "tsjetsjensk", +"ch": "chamorro", +"co": "korsikansk", +"cr": "cree", +"cs": "tsjekkisk", +"cu": "kyrkjeslavisk", +"cv": "tsjuvansk", +"cy": "walisisk", +"da": "dansk", +"de": "tysk", +"dv": "divehi", +"dz": "dzongkha", +"ee": "ewe", +"el": "gresk", +"en": "engelsk", +"eo": "esperanto", +"es": "spansk", +"et": "estisk", +"eu": "baskisk", +"fa": "persisk", +"ff": "fulani", +"fi": "finsk", +"fj": "fijiansk", +"fo": "færøysk", +"fr": "fransk", +"fy": "vestfrisisk", +"ga": "irsk", +"gd": "skotsk-gælisk", +"gl": "galicisk", +"gn": "guarani", +"gu": "gujarati", +"gv": "manx", +"ha": "hausa", +"he": "hebraisk", +"hi": "hindi", +"ho": "hiri motu", +"hr": "kroatisk", +"ht": "haitisk", +"hu": "ungarsk", +"hy": "armensk", +"hz": "herero", +"ia": "interlingua", +"id": "indonesisk", +"ie": "interlingue", +"ig": "ibo", +"ii": "sichuan-yi", +"ik": "inupiak", +"io": "ido", +"is": "islandsk", +"it": "italiensk", +"iu": "inuktitut", +"ja": "japansk", +"jv": "javanesisk", +"ka": "georgisk", +"kg": "kikongo", +"ki": "kikuyu", +"kj": "kuanyama", +"kk": "kasakhisk", +"kl": "kalaallisut; grønlandsk", +"km": "khmer", +"kn": "kannada", +"ko": "koreansk", +"kr": "kanuri", +"ks": "kasjmiri", +"ku": "kurdisk", +"kv": "komi", +"kw": "kornisk", +"ky": "kirgisisk", +"la": "latin", +"lb": "luxemburgsk", +"lg": "ganda", +"li": "limburgisk", +"ln": "lingala", +"lo": "laotisk", +"lt": "litauisk", +"lu": "luba-katanga", +"lv": "latvisk", +"mg": "madagassisk", +"mh": "marshallesisk", +"mi": "maori", +"mk": "makedonsk", +"ml": "malayalam", +"mn": "mongolsk", +"mo": "moldavisk", +"mr": "marathi", +"ms": "malayisk", +"mt": "maltesisk", +"my": "burmesisk", +"na": "nauru", +"nb": "bokmål", +"nd": "nord-ndebele", +"ne": "nepalsk", +"ng": "ndonga", +"nl": "nederlandsk", +"nn": "nynorsk", +"no": "norsk", +"nr": "sør-ndebele", +"nv": "navajo", +"ny": "nyanja", +"oc": "oksitansk (etter 1500)", +"oj": "ojibwa", +"om": "oromo", +"or": "oriya", +"os": "ossetisk", +"pa": "panjabi", +"pi": "pali", +"pl": "polsk", +"ps": "pashto", +"pt": "portugisisk", +"qu": "quechua", +"rm": "retoromansk", +"rn": "rundi", +"ro": "rumensk", +"ru": "russisk", +"rw": "kinjarwanda", +"sa": "sanskrit", +"sc": "sardinsk", +"sd": "sindhi", +"se": "nordsamisk", +"sg": "sango", +"si": "singalesisk", +"sk": "slovakisk", +"sl": "slovensk", +"sm": "samoansk", +"sn": "shona", +"so": "somali", +"sq": "albansk", +"sr": "serbisk", +"ss": "swati", +"st": "sørsotho", +"su": "sundanesisk", +"sv": "svensk", +"sw": "swahili", +"ta": "tamil", +"te": "telugu", +"tg": "tatsjikisk", +"th": "thai", +"ti": "tigrinja", +"tk": "turkmensk", +"tl": "tagalog", +"tn": "tswana", +"to": "tonga (Tonga-øyane)", +"tr": "tyrkisk", +"ts": "tsonga", +"tt": "tatarisk", +"tw": "twi", +"ty": "tahitisk", +"ug": "uigurisk", +"uk": "ukrainsk", +"ur": "urdu", +"uz": "usbekisk", +"ve": "venda", +"vi": "vietnamesisk", +"vo": "volapyk", +"wa": "vallonsk", +"wo": "wolof", +"xh": "xhosa", +"yi": "jiddisk", +"yo": "joruba", +"za": "zhuang", +"zh": "kinesisk", +"zu": "zulu", +}, +{ type: "language", iso: "nr", +countries: [ +{_reference: "ZA"}, +], +}, +{ type: "language", iso: "ny", +countries: [ +{_reference: "MW"}, +], +}, +{ type: "language", iso: "om", +countries: [ +{_reference: "ET"}, +{_reference: "KE"}, +], +name: "Oromoo", +"om": "Oromoo", +}, +{ type: "language", iso: "or", +countries: [ +{_reference: "IN"}, +], +name: "ଓଡ଼ିଆ", +}, +{ type: "language", iso: "pa", +countries: [ +{_reference: "IN"}, +{_reference: "PK"}, +], +name: "ਪੰਜਾਬੀ", +"pa": "ਪੰਜਾਬੀ", +}, +{ type: "language", iso: "pl", +countries: [ +{_reference: "PL"}, +], +name: "polski", +"ar": "arabski", +"bg": "bułgarski", +"bn": "bengalski", +"ca": "kataloński", +"cs": "czeski", +"cy": "walijski", +"da": "duński", +"de": "niemiecki", +"el": "grecki", +"en": "angielski", +"es": "hiszpański", +"et": "estoński", +"eu": "baskijski", +"fi": "fiński", +"fr": "francuski", +"he": "hebrajski", +"hi": "hindi", +"hr": "chorwacki", +"hu": "węgierski", +"it": "włoski", +"ja": "japoński", +"ko": "koreański", +"lt": "litewski", +"lv": "łotewski", +"mt": "maltański", +"nl": "niderlandzki", +"no": "norweski", +"pl": "polski", +"pt": "portugalski", +"ro": "rumuński", +"ru": "rosyjski", +"sk": "słowacki", +"sl": "słoweński", +"sv": "szwedzki", +"th": "tajski", +"tr": "turecki", +"zh": "chiński", +}, +{ type: "language", iso: "ps", +countries: [ +{_reference: "AF"}, +], +name: "پښتو", +"ar": "عربي", +"de": "الماني", +"el": "یوناني", +"en": "انګلیسي", +"et": "حبشي", +"fa": "فارسي", +"fi": "فینلنډي", +"fr": "فرانسوي", +"he": "عبري", +"hi": "هندي", +"hy": "ارمني", +"it": "ایټالوي", +"ja": "جاپانی", +"ku": "کردي", +"la": "لاتیني", +"mg": "ملغاسي", +"mk": "مقدوني", +"mn": "مغولي", +"ms": "ملایا", +"pl": "پولنډي", +"ps": "پښتو", +"pt": "پورتګالي", +"ru": "روسي", +"sa": "سنسکریټ", +"sv": "سویډنی", +"tg": "تاجک", +"tk": "ترکمني", +"tt": "تاتار", +"uz": "ازبکي", +"zh": "چیني", +}, +{ type: "language", iso: "pt", +countries: [ +{_reference: "BR"}, +{_reference: "PT"}, +], +name: "português", +"aa": "afar", +"ab": "abkhazian", +"ae": "avéstico", +"af": "africâner", +"ak": "Akan", +"am": "amárico", +"an": "aragonês", +"ar": "árabe", +"as": "assamês", +"av": "avaric", +"ay": "aimara", +"az": "azerbaijano", +"ba": "bashkir", +"be": "bielo-russo", +"bg": "búlgaro", +"bh": "biari", +"bi": "bislamá", +"bm": "bambara", +"bn": "bengali", +"bo": "tibetano", +"br": "bretão", +"bs": "bósnio", +"ca": "catalão", +"ce": "chechene", +"ch": "chamorro", +"co": "córsico", +"cr": "cree", +"cs": "tcheco", +"cu": "eslavo eclesiástico", +"cv": "chuvash", +"cy": "galês", +"da": "dinamarquês", +"de": "alemão", +"dv": "divehi", +"dz": "dzonga", +"ee": "eve", +"el": "grego", +"en": "inglês", +"eo": "esperanto", +"es": "espanhol", +"et": "estoniano", +"eu": "basco", +"fa": "persa", +"ff": "fula", +"fi": "finlandês", +"fj": "fijiano", +"fo": "feroês", +"fr": "francês", +"fy": "frisão", +"ga": "irlandês", +"gd": "gaélico escocês", +"gl": "galego", +"gn": "guarani", +"gu": "guzerate", +"gv": "manx", +"ha": "hauçá", +"he": "hebraico", +"hi": "hindi", +"ho": "hiri motu", +"hr": "croata", +"ht": "haitiano", +"hu": "húngaro", +"hy": "armênio", +"hz": "herero", +"ia": "interlíngua", +"id": "indonésio", +"ie": "interlingue", +"ig": "ibo", +"ii": "sichuan yi", +"ik": "Inupiaq", +"io": "ido", +"is": "islandês", +"it": "italiano", +"iu": "inuktitut", +"ja": "japonês", +"ka": "georgiano", +"kg": "congolês", +"ki": "quicuio", +"kj": "Kuanyama", +"kk": "cazaque", +"kl": "groenlandês", +"km": "cmer", +"kn": "canarês", +"ko": "coreano", +"kr": "canúri", +"ks": "kashmiri", +"ku": "curdo", +"kv": "komi", +"kw": "córnico", +"ky": "quirguiz", +"la": "latim", +"lb": "luxemburguês", +"lg": "luganda", +"li": "limburgish", +"ln": "lingala", +"lo": "laosiano", +"lt": "lituano", +"lu": "luba-catanga", +"lv": "letão", +"mg": "malgaxe", +"mh": "marshallês", +"mi": "maori", +"mk": "macedônio", +"ml": "malaiala", +"mn": "mongol", +"mo": "moldávio", +"mr": "marata", +"ms": "malaio", +"mt": "maltês", +"my": "birmanês", +"na": "nauruano", +"nb": "bokmål norueguês", +"nd": "ndebele, north", +"ne": "nepali", +"ng": "dongo", +"nl": "holandês", +"nn": "nynorsk norueguês", +"no": "norueguês", +"nr": "ndebele, south", +"nv": "navajo", +"ny": "nianja; chicheua; cheua", +"oc": "occitânico (após 1500); provençal", +"oj": "ojibwa", +"om": "oromo", +"or": "oriya", +"os": "ossetic", +"pa": "panjabi", +"pi": "páli", +"pl": "polonês", +"ps": "pashto (pushto)", +"pt": "português", +"qu": "quíchua", +"rm": "rhaeto-romance", +"rn": "rundi", +"ro": "romeno", +"ru": "russo", +"rw": "kinyarwanda", +"sa": "sânscrito", +"sc": "sardo", +"sd": "sindi", +"se": "northern sami", +"sg": "sango", +"sh": "servo-croata", +"si": "cingalês", +"sk": "eslovaco", +"sl": "eslovênio", +"so": "somali", +"sq": "albanês", +"sr": "sérvio", +"ss": "swati", +"st": "soto, do sul", +"su": "sundanês", +"sv": "sueco", +"sw": "suaíli", +"ta": "tâmil", +"te": "telugu", +"tg": "tadjique", +"th": "tailandês", +"ti": "tigrínia", +"tk": "turcomano", +"tn": "tswana", +"to": "tonga (ilhas tonga)", +"tr": "turco", +"ts": "tsonga", +"tt": "tatar", +"tw": "twi", +"ty": "taitiano", +"ug": "uighur", +"uk": "ucraniano", +"ur": "urdu", +"uz": "usbeque", +"ve": "venda", +"vi": "vietnamita", +"vo": "volapuque", +"wa": "walloon", +"wo": "uolofe", +"xh": "xosa", +"yi": "iídiche", +"yo": "ioruba", +"za": "zhuang", +"zh": "chinês", +"zu": "zulu", +}, +{ type: "language", iso: "ro", +countries: [ +{_reference: "RO"}, +], +name: "Română", +"ar": "Arabă", +"bg": "Bulgară", +"cs": "Cehă", +"da": "Daneză", +"de": "Germană", +"el": "Greacă", +"en": "Engleză", +"es": "Spaniolă", +"et": "Estoniană", +"fi": "Finlandeză", +"fr": "Franceză", +"he": "Ebraică", +"hr": "Croată", +"hu": "Maghiară", +"it": "Italiană", +"ja": "Japoneză", +"ko": "Coreeană", +"lt": "Lituaniană", +"lv": "Letonă", +"nl": "Olandeză", +"no": "Norvegiană", +"pl": "Poloneză", +"pt": "Portugheză", +"ro": "Română", +"ru": "Rusă", +"sk": "Slovacă", +"sl": "Slovenă", +"sv": "Suedeză", +"tr": "Turcă", +"zh": "Chineză", +}, +{ type: "language", iso: "ru", +countries: [ +{_reference: "RU"}, +{_reference: "UA"}, +], +name: "русский", +"aa": "афар", +"ab": "абхазский", +"ae": "авестийский", +"af": "африкаанс", +"am": "амхарский", +"an": "арагонский", +"ar": "арабский", +"as": "ассамский", +"av": "аварский", +"ay": "аймара", +"az": "азербайджанский", +"ba": "башкирский", +"be": "белорусский", +"bg": "болгарский", +"bh": "бихари", +"bi": "бислама", +"bm": "бамбарийский", +"bn": "бенгальский", +"bo": "тибетский", +"br": "бретонский", +"bs": "боснийский", +"ca": "каталанский", +"ce": "чеченский", +"ch": "чаморро", +"co": "корсиканский", +"cr": "криийский", +"cs": "чешский", +"cu": "церковнославянский", +"cv": "чувашский", +"cy": "валлийский", +"da": "датский", +"de": "немецкий", +"dz": "дзонг-кэ", +"ee": "эве", +"el": "греческий", +"en": "английский", +"eo": "эсперанто", +"es": "испанский", +"et": "эстонский", +"eu": "баскский", +"fa": "персидский", +"fi": "финский", +"fj": "фиджи", +"fo": "фарерский", +"fr": "французский", +"fy": "фризский", +"ga": "ирландский", +"gd": "гэльский", +"gl": "галисийский", +"gn": "гуарани", +"gu": "гуджарати", +"gv": "мэнский", +"ha": "хауса", +"he": "иврит", +"hi": "хинди", +"hr": "хорватский", +"ht": "гаитянский", +"hu": "венгерский", +"hy": "армянский", +"hz": "гереро", +"ia": "интерлингва", +"id": "индонезийский", +"ie": "интерлингве", +"ig": "игбо", +"ik": "инупиак", +"is": "исландский", +"it": "итальянский", +"iu": "инуктитут", +"ja": "японский", +"jv": "яванский", +"ka": "грузинский", +"kg": "конго", +"ki": "кикуйю", +"kj": "кунама", +"kk": "казахский", +"kl": "эскимосский (гренландский)", +"km": "кхмерский", +"kn": "каннада", +"ko": "корейский", +"kr": "канури", +"ks": "кашмири", +"ku": "курдский", +"kv": "коми", +"kw": "корнийский", +"ky": "киргизский", +"la": "латинский", +"lb": "люксембургский", +"lg": "ганда", +"ln": "лингала", +"lo": "лаосский", +"lt": "литовский", +"lu": "луба-катанга", +"lv": "латышский", +"mg": "малагасийский", +"mh": "маршальский", +"mi": "маори", +"mk": "македонский", +"ml": "малаялам", +"mn": "монгольский", +"mo": "молдавский", +"mr": "маратхи", +"ms": "малайский", +"mt": "мальтийский", +"my": "бирманский", +"na": "науру", +"nb": "норвежский", +"nd": "ндебели (северный)", +"ne": "непальский", +"nl": "голландский", +"nn": "новонорвежский", +"no": "норвежский", +"nr": "ндебели (южный)", +"nv": "навахо", +"ny": "ньянджа", +"oc": "окситанский", +"oj": "оджибва", +"om": "оромо", +"or": "ория", +"os": "осетинский", +"pa": "панджаби (пенджаби)", +"pi": "пали", +"pl": "польский", +"ps": "пашто (пушту)", +"pt": "португальский", +"qu": "кечуа", +"rm": "ретороманский", +"rn": "рунди", +"ro": "румынский", +"ru": "русский", +"rw": "киньяруанда", +"sa": "санскрит", +"sc": "сардинский", +"sd": "синдхи", +"se": "саамский (северный)", +"sg": "санго", +"sh": "сербскохорватский", +"si": "сингальский", +"sk": "словацкий", +"sl": "словенский", +"sm": "самоанский", +"sn": "шона", +"so": "сомали", +"sq": "албанский", +"sr": "сербский", +"ss": "свази", +"st": "сото южный", +"su": "сунданский", +"sv": "шведский", +"sw": "суахили", +"ta": "тамильский", +"te": "телугу", +"tg": "таджикский", +"th": "тайский", +"ti": "тигринья", +"tk": "туркменский", +"tl": "тагалог", +"tn": "тсвана", +"to": "тонга", +"tr": "турецкий", +"ts": "тсонга", +"tt": "татарский", +"tw": "тви", +"ty": "таитянский", +"ug": "уйгурский", +"uk": "украинский", +"ur": "урду", +"uz": "узбекский", +"ve": "венда", +"vi": "вьетнамский", +"vo": "волапюк", +"wo": "волоф", +"xh": "ксоза", +"yi": "идиш", +"yo": "йоруба", +"za": "чжуань", +"zh": "китайский", +"zu": "зулу", +}, +{ type: "language", iso: "rw", +countries: [ +{_reference: "RW"}, +], +}, +{ type: "language", iso: "sa", +countries: [ +{_reference: "IN"}, +], +name: "संस्कृत", +}, +{ type: "language", iso: "se", +countries: [ +{_reference: "NO"}, +], +}, +{ type: "language", iso: "sh", +countries: [ +{_reference: "BA"}, +{_reference: "CS"}, +{_reference: "YU"}, +], +}, +{ type: "language", iso: "sk", +countries: [ +{_reference: "SK"}, +], +name: "slovenský", +"ar": "arabský", +"bg": "bulharský", +"cs": "český", +"da": "dánsky", +"de": "nemecký", +"el": "grécky", +"en": "anglický", +"es": "španielsky", +"et": "estónsky", +"fi": "fínsky", +"fr": "francúzsky", +"he": "hebrejský", +"hr": "chorvátsky", +"hu": "maďarský", +"it": "taliansky", +"ja": "japonský", +"ko": "kórejský", +"lt": "litovský", +"lv": "lotyšský", +"nl": "holandský", +"no": "nórsky", +"pl": "poľský", +"pt": "portugalský", +"ro": "rumunský", +"ru": "ruský", +"sk": "slovenský", +"sl": "slovinský", +"sv": "švédsky", +"tr": "turecký", +"zh": "čínsky", +}, +{ type: "language", iso: "sl", +countries: [ +{_reference: "SI"}, +], +name: "Slovenščina", +"ar": "Arabščina", +"bg": "Bolgarščina", +"cs": "Češčina", +"da": "Danščina", +"de": "Nemščina", +"el": "Grščina", +"en": "Angleščina", +"es": "Španščina", +"et": "Estonščina", +"fi": "Finščina", +"fr": "Francoščina", +"he": "Hebrejščina", +"hr": "Hrvaščina", +"hu": "Madžarščina", +"it": "Italijanščina", +"ja": "Japonščina", +"ko": "Korejščina", +"lt": "Litovščina", +"lv": "Letonščina", +"nl": "Nizozemščina", +"no": "Norveščina", +"pl": "Poljščina", +"pt": "Portugalščina", +"ro": "Romunščina", +"ru": "Ruščina", +"sk": "Slovaščina", +"sl": "Slovenščina", +"sv": "Švedščina", +"tr": "Turščina", +"zh": "Kitajščina", +}, +{ type: "language", iso: "so", +countries: [ +{_reference: "DJ"}, +{_reference: "ET"}, +{_reference: "KE"}, +{_reference: "SO"}, +], +name: "Soomaali", +"so": "Soomaali", +}, +{ type: "language", iso: "sq", +countries: [ +{_reference: "AL"}, +], +name: "shqipe", +"ar": "Arabisht", +"de": "Gjermanisht", +"en": "Anglisht", +"es": "Spanjisht", +"fr": "Frengjisht", +"hi": "Hindi", +"it": "Italisht", +"ja": "Japanisht", +"pt": "Portugeze", +"ru": "Rusisht", +"sq": "shqipe", +"zh": "Kineze", +}, +{ type: "language", iso: "sr", +countries: [ +{_reference: "BA"}, +{_reference: "CS"}, +{_reference: "YU"}, +], +name: "Српски", +"af": "Африканерски", +"ar": "Арапски", +"be": "Белоруски", +"bg": "Бугарски", +"br": "Бретонски", +"ca": "Каталонски", +"co": "Корзикански", +"cs": "Чешки", +"da": "Дански", +"de": "Немачки", +"el": "Грчки", +"en": "Енглески", +"eo": "Есперанто", +"es": "Шпански", +"et": "Естонски", +"eu": "Баскијски", +"fa": "Персијски", +"fi": "Фински", +"fr": "Француски", +"ga": "Ирски", +"he": "Хебрејски", +"hi": "Хинди", +"hr": "Хрватски", +"hu": "Мађарски", +"hy": "Арменски", +"id": "Индонезијски", +"is": "Исландски", +"it": "Италијански", +"ja": "Јапански", +"ka": "Грузијски", +"km": "Кмерски", +"ko": "Корејски", +"ku": "Курдски", +"ky": "Киргиски", +"la": "Латински", +"lt": "Литвански", +"lv": "Летонски", +"mk": "Македонски", +"mn": "Монголски", +"mo": "Молдавски", +"my": "Бурмански", +"nl": "Холандски", +"no": "Норвешки", +"pl": "Пољски", +"pt": "Португалски", +"rm": "Рето-Романски", +"ro": "Румунски", +"ru": "Руски", +"sa": "Санскрит", +"sh": "Српско-Хрватски", +"sk": "Словачки", +"sl": "Словеначки", +"sq": "Албански", +"sr": "Српски", +"sv": "Шведски", +"sw": "Свахили", +"tr": "Турски", +"uk": "Украјински", +"vi": "Вијетнамски", +"yi": "Јидиш", +"zh": "Кинески", +}, +{ type: "language", iso: "ss", +countries: [ +{_reference: "ZA"}, +], +}, +{ type: "language", iso: "st", +countries: [ +{_reference: "ZA"}, +], +}, +{ type: "language", iso: "sv", +countries: [ +{_reference: "FI"}, +{_reference: "SE"}, +], +name: "svenska", +"aa": "afar", +"ab": "abchasiska", +"ae": "avestiska", +"af": "afrikaans", +"ak": "akan", +"am": "amhariska", +"an": "aragonesiska", +"ar": "arabiska", +"as": "assamesiska", +"av": "avariskt språk", +"ay": "aymara", +"az": "azerbajdzjanska", +"ba": "basjkiriska", +"be": "vitryska", +"bg": "bulgariska", +"bh": "bihari", +"bi": "bislama", +"bm": "bambara", +"bn": "bengali", +"bo": "tibetanska", +"br": "bretonska", +"bs": "bosniska", +"ca": "katalanska", +"ce": "tjetjenska", +"ch": "chamorro", +"co": "korsikanska", +"cr": "cree", +"cs": "tjeckiska", +"cu": "kyrkslaviska", +"cv": "tjuvasjiska", +"cy": "walesiska", +"da": "danska", +"de": "tyska", +"dv": "divehi", +"dz": "bhutanesiska", +"ee": "ewe", +"el": "grekiska", +"en": "engelska", +"eo": "esperanto", +"es": "spanska", +"et": "estniska", +"eu": "baskiska", +"fa": "persiska", +"ff": "fulani", +"fi": "finska", +"fj": "fidjianska", +"fo": "färöiska", +"fr": "franska", +"fy": "västfrisiska", +"gd": "höglandsskotska", +"gl": "galiciska", +"gn": "guaraní", +"gu": "gujarati", +"gv": "manx", +"ha": "haussa", +"he": "hebreiska", +"hi": "hindi", +"ho": "hirimotu", +"hr": "kroatiska", +"ht": "haitiska", +"hu": "ungerska", +"hy": "armeniska", +"hz": "herero", +"ia": "interlingua", +"id": "indonesiska", +"ie": "interlingue", +"ig": "ibo", +"ii": "szezuan i", +"ik": "inupiak", +"io": "ido", +"is": "isländska", +"it": "italienska", +"iu": "inuktitut", +"ja": "japanska", +"jv": "javanesiska", +"ka": "georgiska", +"kg": "kikongo", +"ki": "kikuyu", +"kj": "kuanyama", +"kk": "kazakstanska", +"kl": "grönländska", +"km": "kambodjanska; khmeriska", +"kn": "kanaresiska; kannada", +"ko": "koreanska", +"kr": "kanuri", +"ks": "kashmiriska", +"ku": "kurdiska", +"kv": "kome", +"kw": "korniska", +"ky": "kirgisiska", +"la": "latin", +"lb": "luxemburgiska", +"lg": "luganda", +"li": "limburgiska", +"ln": "lingala", +"lo": "laotiska", +"lt": "litauiska", +"lu": "luba-katanga", +"lv": "lettiska", +"mg": "malagassiska", +"mh": "marshalliska", +"mi": "maori", +"mk": "makedonska", +"ml": "malayalam", +"mn": "mongoliska", +"mo": "moldaviska", +"mr": "marathi", +"ms": "malajiska", +"mt": "maltesiska", +"my": "burmesiska", +"na": "nauru", +"nb": "norska (bokmål)", +"ne": "nepalesiska", +"ng": "ndonga", +"nn": "nynorska", +"no": "norska", +"nv": "navaho", +"ny": "nyanja", +"oc": "provensalska (efter 1500); occitanska", +"oj": "odjibwa; chippewa", +"om": "oromo", +"or": "oriya", +"os": "ossetiska", +"pa": "punjabi", +"pi": "pali", +"pl": "polska", +"ps": "pashto; afghanska", +"pt": "portugisiska", +"qu": "quechua", +"rn": "rundi", +"ro": "rumänska", +"ru": "ryska", +"rw": "rwanda; kinjarwanda", +"sa": "sanskrit", +"sc": "sardiska", +"sd": "sindhi", +"sg": "sango", +"si": "singalesiska", +"sk": "slovakiska", +"sl": "slovenska", +"sm": "samoanska", +"sn": "shona; manshona", +"so": "somaliska", +"sq": "albanska", +"sr": "serbiska", +"ss": "swati", +"su": "sundanesiska", +"sv": "svenska", +"sw": "swahili", +"ta": "tamil", +"te": "telugiska", +"tg": "tadzjikiska", +"th": "thailändska", +"ti": "tigrinja", +"tk": "turkmeniska", +"tl": "tagalog", +"tn": "tswana", +"to": "tonganska", +"tr": "turkiska", +"ts": "tsonga", +"tt": "tatariska", +"tw": "twi", +"ty": "tahitiska", +"ug": "uiguriska", +"uk": "ukrainska", +"ur": "urdu", +"uz": "uzbekiska", +"ve": "venda", +"vi": "vietnamesiska", +"vo": "volapük", +"wa": "vallonska", +"wo": "wolof", +"xh": "xhosa", +"yi": "jiddisch", +"yo": "yoruba", +"za": "zhuang", +"zh": "kinesiska", +"zu": "zulu", +}, +{ type: "language", iso: "sw", +countries: [ +{_reference: "KE"}, +{_reference: "TZ"}, +], +name: "Kiswahili", +"de": "kijerumani", +"en": "kiingereza", +"es": "kihispania", +"fr": "kifaransa", +"it": "kiitaliano", +"ja": "kijapani", +"pt": "kireno", +"ru": "kirusi", +"sw": "Kiswahili", +"zh": "kichina", +}, +{ type: "language", iso: "ta", +countries: [ +{_reference: "IN"}, +], +name: "தமிழ்", +"aa": "அபார்", +"ab": "அப்காஸின்", +"af": "ஆப்ரிகன்ஸ்", +"am": "அம்ஹாரிக்", +"ar": "அரபு", +"as": "அஸ்ஸாமி", +"ay": "அயமரா", +"az": "அசர்பாய்ஜானி", +"ba": "பாஷ்கிர்0", +"be": "பைலோருஷ்ன்", +"bg": "பல்கேரியன்", +"bh": "பிஹாரி", +"bi": "பிஸ்லாமா", +"bn": "வங்காளம்", +"bo": "திபெத்து", +"br": "பிரிடன்", +"ca": "காடலான்", +"co": "கார்சியன்", +"cs": "செக்", +"cy": "வெல்ஷ்", +"da": "டானிஷ்", +"de": "ஜெர்மன்", +"dz": "புடானி", +"el": "கிரேக்கம்", +"en": "ஆங்கிலம்", +"eo": "எஸ்பரேன்டோ", +"es": "ஸ்பேனிஷ்", +"et": "எஸ்டோனியன்", +"eu": "பஸ்க்", +"fa": "பர்ஸியன்", +"fi": "பின்னிஷ்", +"fj": "பிஜி", +"fo": "பைரோஸி", +"fr": "பிரெஞ்சு", +"fy": "பிரிஷியன்", +"ga": "ஐரிஷ்", +"gd": "ஸ்காட்ஸ் காலெக்", +"gl": "கெலிஸியன்", +"gn": "குரானி", +"gu": "குஜராத்தி", +"ha": "ஹொஸா", +"he": "ஹுப்ரு", +"hi": "இந்தி", +"hr": "கரோஷியன்", +"hu": "ஹங்கேரியன்", +"hy": "ஆர்மேனியன்", +"ia": "இன்டர்லிங்குவா [ia]", +"id": "இந்தோனேஷியன்", +"ie": "இன்டர்லிங்குவா", +"ik": "இனுபெக்", +"is": "ஐஸ்லென்டிக்", +"it": "இத்தாலியன்", +"iu": "இனுகிடட்", +"ja": "ஜப்பானீஸ்", +"jv": "ஜாவானீஸ்", +"ka": "கன்னடம்", +"kk": "கசாக்", +"kl": "கிரின்லென்டிக்", +"km": "கம்போடியன்", +"kn": "கன்னடா", +"ko": "கொரியன்", +"ks": "காஷ்மிரி", +"ku": "குர்திஷ்", +"ky": "கிர்கிஷ்", +"la": "லாதின்", +"ln": "லிங்காலா", +"lo": "லோத்தியன்", +"lt": "லுத்தேனியன்", +"lv": "லேட்வியன் (லேட்டிஷ்)", +"mg": "மலகெஸி", +"mi": "மோரி", +"mk": "மெக்கடோனியன்", +"ml": "மலையாளம்", +"mn": "மங்கோலியன்", +"mo": "மோல்டேவியன்", +"mr": "மராத்தி", +"ms": "மலாய்", +"mt": "மால்டிஸ்", +"my": "பர்மிஸ்", +"na": "நாரூ", +"ne": "நேப்பாலி", +"nl": "டச்சு", +"no": "நார்வேகியன்", +"oc": "ஆகிடியன்", +"om": "ஒரோம (அபன்)", +"or": "ஒரியா", +"pa": "பஞ்சாபி", +"pl": "போலிஷ்", +"ps": "பேஷ்டோ (புஷ்டோ)", +"pt": "போர்த்துகீஸ்", +"qu": "கியுசா", +"rm": "ரைட்டோ-ரோமென்ஸ்", +"rn": "கிருந்தி", +"ro": "ரோமேனியன்", +"ru": "ரஷியன்", +"rw": "கின்யர்வென்டா", +"sa": "சமஸ்கிருதம்", +"sd": "சிந்தி", +"sg": "சென்க்ரோ", +"sh": "செர்போ-க்ரோஷியன்", +"si": "சிங்களம்", +"sk": "ஸ்லோவெக்", +"sl": "ஸ்லோவினேயின்", +"sm": "ஸெமோன்", +"sn": "ஷோனா", +"so": "சோமாலி", +"sq": "அல்பெனியன்", +"sr": "சர்பியன்", +"ss": "ஷிஸ்வாதி", +"st": "ஷெஸ்ஸோதோ", +"su": "சுடானீஸ்", +"sv": "ஷீவிடிஸ்", +"sw": "சுவாஹிலி", +"ta": "தமிழ்", +"te": "தெலுங்கு", +"tg": "தாஜிக்", +"th": "தாய்", +"ti": "டிக்ரின்யா", +"tk": "டர்க்மென்", +"tl": "டாகாலோக்", +"tn": "ஸெட்ஸ்வானா", +"to": "டோங்கா", +"tr": "டர்கிஷ்", +"ts": "ஸோங்கா", +"tt": "டாடர்", +"tw": "த்திவி", +"ug": "யுகுர்", +"uk": "உக்ரேனியன்", +"ur": "உருது", +"uz": "உஸ்பெக்", +"vi": "வியட்நாமிஸ்", +"vo": "ஒலபுக்", +"wo": "ஒலோப்", +"xh": "ஹோஷா", +"yi": "ஈத்திஷ", +"yo": "யோருப்பா", +"za": "ஜுவாங்", +"zh": "சீனம்", +"zu": "ஜூலூ", +}, +{ type: "language", iso: "te", +countries: [ +{_reference: "IN"}, +], +name: "తెలుగు", +"ar": "అరబిక్", +"de": "ఙర్మన్", +"en": "ఆంగ్లం", +"es": "స్పానిష్", +"fr": "ఫ్రెంచ్", +"hi": "హిందీ", +"it": "ఇటాలియన్ భాష", +"ja": "జపాను భాష", +"pt": "పొర్చుగల్ భాష", +"ru": "రష్యన్ భాష", +"te": "తెలుగు", +"zh": "చైనా భాష", +}, +{ type: "language", iso: "tg", +countries: [ +{_reference: "TJ"}, +], +}, +{ type: "language", iso: "th", +countries: [ +{_reference: "TH"}, +], +name: "ไทย", +"aa": "อาฟา", +"ab": "แอบกาเซีย", +"af": "แอฟริกัน", +"ak": "อาคาน", +"am": "อัมฮาริค", +"an": "อาราโกนิส", +"as": "อัสสัมมิส", +"av": "อาวาริก", +"ay": "ไอมารา", +"az": "อาเซอร์ไบจานี", +"ba": "บาสช์กีร์", +"be": "บายโลรัสเซีย", +"bg": "บัลแกเรีย", +"bh": "บิฮารี", +"bi": "บิสลามา", +"bm": "บามบารา", +"bo": "ทิเบต", +"br": "บรีทัน", +"bs": "บอสเนีย", +"ca": "แคตาแลน", +"ce": "เชเชิน", +"co": "คอร์ซิกา", +"cr": "ครี", +"cu": "เชอร์ชสลาวิก", +"cv": "ชูวาส", +"cy": "เวลส์", +"da": "เดนมาร์ก", +"de": "เยอรมัน", +"dv": "ดิเวฮิ", +"dz": "ดซองคา", +"ee": "อีเว", +"el": "กรีก", +"en": "อังกฤษ", +"eo": "เอสเปอรันโต", +"es": "สเปน", +"et": "เอสโตเนีย", +"eu": "แบสก์", +"fa": "เปอร์เซีย", +"ff": "ฟูลาฮ์", +"fi": "ฟิน", +"fj": "ฟิจิ", +"fo": "ฟาโรส", +"fr": "ฝรั่งเศส", +"fy": "ฟรีสแลนด์", +"ga": "ไอริช", +"gd": "สก็อตส์เกลิค", +"gl": "กะลีเชีย", +"gn": "กัวรานี", +"gu": "กูจาราติ", +"gv": "มานซ์", +"ha": "โฮซา", +"he": "ฮิบรู", +"hi": "ฮินดี", +"ho": "ฮิริโมทุ", +"hr": "โครเอเทีย", +"ht": "ไฮเทียน", +"hu": "ฮังการี", +"hy": "อาร์มีเนีย", +"hz": "เฮียร์โร", +"id": "อินโดนีเชีย", +"ie": "อินเตอร์ลิงค์", +"ig": "อิกโบ", +"ii": "สิชวนยิ", +"ik": "ไอนูเปียก", +"io": "อิโด", +"is": "ไอซ์แลนด์ดิค", +"it": "อิตาลี", +"iu": "ไอนุกติตัท", +"ja": "ญี่ปุ่น", +"jv": "ชวา", +"ka": "จอร์เจียน", +"kg": "คองโก", +"ki": "กิกุยุ", +"kj": "กวนยามา", +"kk": "คาซัค", +"kl": "กรีนแลนด์ดิค", +"km": "เขมร", +"kn": "กานาดา", +"ko": "เกาหลี", +"kr": "กานุริ", +"ks": "คัชมีรี", +"ku": "เคิด", +"kv": "โกมิ", +"kw": "คอร์นิส", +"ky": "เคอร์กิซ", +"la": "ละติน", +"lb": "ลักเซมเบิร์ก", +"lg": "กานดา", +"li": "ลิมเบิร์ก", +"ln": "ลิงกาลา", +"lo": "ลาว", +"lt": "ลิธัวเนีย", +"lu": "ลูกา-กาทันกา", +"lv": "แลตเวีย (เลททิสช์)", +"mg": "มาลากาซี", +"mh": "มาร์แชลลิส", +"mi": "เมารี", +"mk": "แมซีโดเนีย", +"ml": "มาลายาลัม", +"mn": "มองโกล", +"mo": "โมดาเวีย", +"mr": "มาราที", +"ms": "มลายู", +"mt": "มอลตา", +"my": "พม่า", +"na": "นอรู", +"nb": "นอร์เวย์บอกมอล", +"nd": "เอ็นเดเบเลเหนือ", +"ne": "เนปาล", +"ng": "ดองกา", +"nl": "ฮอลันดา", +"nn": "นอร์เวย์ไนนอรส์ก", +"no": "นอร์เวย์", +"nv": "นาวาโจ", +"ny": "เนียนจา; ชิเชวา; เชวา", +"oc": "ออกซิทัน", +"oj": "โอจิบวา", +"om": "โอโรโม (อาฟาน)", +"or": "โอริยา", +"os": "ออสเซทิก", +"pa": "ปัญจาป", +"pi": "บาลี", +"pl": "โปแลนด์", +"ps": "พาสช์โต (พุสช์โต)", +"pt": "โปรตุเกส", +"qu": "คิวชัว", +"rm": "เรโต-โรแมนซ์", +"rn": "คิรันดี", +"ro": "โรมัน", +"ru": "รัสเซีย", +"rw": "คินยาวันดา", +"sa": "สันสกฤต", +"sc": "ซาร์ดิเนียน", +"sd": "ซินดิ", +"se": "ซามิเหนือ", +"sg": "สันโค", +"sh": "เซอร์โบ-โครเอเทียน", +"si": "สิงหล", +"sk": "สโลวัค", +"sl": "สโลเวเนีย", +"sm": "ซามัว", +"sn": "โซนา", +"so": "โซมาลี", +"sq": "แอลเบเนีย", +"sr": "เซอร์เบีย", +"ss": "ซีสวาติ", +"st": "เซโสโท", +"su": "ซันดานีส", +"sv": "สวีเดน", +"sw": "ซวาฮิรี", +"ta": "ทมิฬ", +"te": "ทิลูกู", +"tg": "ทาจิค", +"th": "ไทย", +"ti": "ทิกรินยา", +"tk": "เติร์กเมน", +"tl": "ตากาล็อก", +"tn": "เซตสวานา", +"to": "ทองก้า", +"tr": "ตุรกี", +"ts": "ซองกา", +"tt": "ตาด", +"tw": "ทวี", +"ty": "ทาฮิเทียน", +"ug": "อุยกัว", +"uk": "ยูเครน", +"ur": "อิรดู", +"uz": "อุสเบค", +"ve": "เวนดา", +"vi": "เวียดนาม", +"vo": "โวลาพุก", +"wa": "วอลลูน", +"wo": "วูลอฟ", +"xh": "โซสา", +"yi": "ยีดิช", +"yo": "โยรูบา", +"za": "จวง", +"zh": "จีน", +"zu": "ซูลู", +}, +{ type: "language", iso: "ti", +countries: [ +{_reference: "ER"}, +{_reference: "ET"}, +], +}, +{ type: "language", iso: "tn", +countries: [ +{_reference: "ZA"}, +], +}, +{ type: "language", iso: "tr", +countries: [ +{_reference: "TR"}, +], +name: "Türkçe", +"aa": "Afar", +"ab": "Abazca", +"af": "Afrikaan Dili", +"am": "Amharik", +"ar": "Arapça", +"av": "Avar Dili", +"ay": "Aymara", +"az": "Azerice", +"ba": "Başkırt Dili", +"be": "Beyaz Rusça", +"bg": "Bulgarca", +"bh": "Bihari", +"bi": "Bislama", +"bn": "Bengal Dili", +"bo": "Tibetçe", +"br": "Breton Dili", +"bs": "Bosna Dili", +"ca": "Katalan Dili", +"ce": "Çeçence", +"co": "Korsika Dili", +"cs": "Çekçe", +"cu": "Kilise Slavcası", +"cv": "Çuvaş", +"cy": "Gal Dili", +"da": "Danca", +"de": "Almanca", +"dz": "Bhutan Dili", +"ee": "Ewe", +"el": "Yunanca", +"en": "İngilizce", +"eo": "Esperanto", +"es": "İspanyolca", +"et": "Estonya Dili", +"eu": "Bask Dili", +"fa": "Farsça", +"fi": "Fince", +"fj": "Fiji Dili", +"fo": "Faroe Dili", +"fr": "Fransızca", +"fy": "Frizye Dili", +"ga": "İrlanda Dili", +"gd": "İskoç Gal Dili", +"gl": "Galiçya Dili", +"gn": "Guarani", +"gu": "Gujarati", +"ha": "Hausa", +"he": "İbranice", +"hi": "Hint Dili", +"hr": "Hırvatça", +"ht": "Haiti Dili", +"hu": "Macarca", +"hy": "Ermenice", +"ia": "Interlingua", +"id": "Endonezya Dili", +"ie": "Interlingue", +"ik": "Inupiak", +"io": "Ido", +"is": "İzlandaca", +"it": "İtalyanca", +"iu": "Inuktitut", +"ja": "Japonca", +"jv": "Java Dili", +"ka": "Gürcüce", +"kk": "Kazak Dili", +"kl": "Grönland Dili", +"km": "Kamboçya Dili", +"kn": "Kannada", +"ko": "Korece", +"ks": "Keşmirce", +"ku": "Kürtçe", +"ky": "Kırgızca", +"la": "Latince", +"lb": "Lüksemburg Dili", +"ln": "Lingala", +"lo": "Laos Dili", +"lt": "Litvanya Dili", +"lv": "Letonya Dili", +"mg": "Malaga Dili", +"mh": "Marshall Adaları Dili", +"mi": "Maori", +"mk": "Makedonca", +"ml": "Malayalam", +"mn": "Moğol Dili", +"mo": "Moldavya Dili", +"mr": "Marathi", +"ms": "Malay", +"mt": "Malta Dili", +"my": "Birmanya Dili", +"na": "Nauru", +"nb": "Norveç Kitap Dili", +"nd": "Kuzey Ndebele", +"ne": "Nepal Dili", +"nl": "Hollanda Dili", +"nn": "Norveççe Nynorsk", +"no": "Norveççe", +"nr": "Güney Ndebele", +"oc": "Occitan (1500 sonrası); Provençal", +"oj": "Ojibwa", +"om": "Oromo (Afan)", +"or": "Oriya", +"os": "Oset", +"pa": "Pencap Dili", +"pl": "Polonya Dili", +"ps": "Peştun Dili", +"pt": "Portekizce", +"qu": "Quechua", +"rm": "Rhaeto-Roman Dili", +"rn": "Kirundi", +"ro": "Romence", +"ru": "Rusça", +"rw": "Kinyarwanda", +"sa": "Sanskritçe", +"sc": "Sardunya Dili", +"sd": "Sindhi", +"se": "Kuzey Sami", +"sg": "Sangho", +"sh": "Sırp-Hırvat Dili", +"si": "Sinhal Dili", +"sk": "Slovakça", +"sl": "Slovence", +"sm": "Samoa Dili", +"sn": "Shona", +"so": "Somali Dili", +"sq": "Arnavutça", +"sr": "Sırpça", +"ss": "Siswati", +"st": "Sesotho", +"su": "Sudan Dili", +"sv": "İsveççe", +"sw": "Swahili", +"ta": "Tamil", +"te": "Telugu", +"tg": "Tacik Dili", +"th": "Tay Dili", +"ti": "Tigrinya", +"tk": "Türkmence", +"tl": "Tagalog", +"tn": "Setswana", +"to": "Tonga (Tonga Adaları)", +"tr": "Türkçe", +"ts": "Tsonga", +"tt": "Tatarca", +"tw": "Twi", +"ty": "Tahiti Dili", +"ug": "Uygurca", +"uk": "Ukraynaca", +"ur": "Urduca", +"uz": "Özbekçe", +"vi": "Vietnam Dili", +"vo": "Volapuk", +"wo": "Wolof", +"xh": "Xhosa", +"yi": "Yiddiş", +"yo": "Yoruba", +"za": "Zhuang", +"zh": "Çince", +"zu": "Zulu", +}, +{ type: "language", iso: "ts", +countries: [ +{_reference: "ZA"}, +], +}, +{ type: "language", iso: "tt", +countries: [ +{_reference: "RU"}, +], +name: "Татар", +}, +{ type: "language", iso: "uk", +countries: [ +{_reference: "UA"}, +], +name: "Українська", +"aa": "Афарська", +"ab": "Абхазька", +"af": "Африканс", +"am": "Амхарік", +"ar": "Арабська", +"as": "Ассамська", +"ay": "Аймара", +"az": "Азербайджанська", +"ba": "Башкирська", +"be": "Білоруська", +"bg": "Болгарська", +"bh": "Біхарійська", +"bi": "Бісламійська", +"bn": "Бенгальська", +"bo": "Тибетська", +"br": "Бретонська", +"ca": "Каталонська", +"co": "Корсиканська", +"cs": "Чеська", +"cy": "Валлійська", +"da": "Датська", +"de": "Німецька", +"dz": "Дзонг-ке", +"el": "Грецька", +"en": "Англійська", +"eo": "Есперанто", +"es": "Іспанська", +"et": "Естонська", +"eu": "Басків", +"fa": "Перська", +"fi": "Фінська", +"fj": "Фіджі", +"fo": "Фарерська", +"fr": "Французька", +"fy": "Фризька", +"ga": "Ірландська", +"gd": "Гаельська", +"gl": "Галісійська", +"gn": "Гуарані", +"gu": "Гуяраті", +"ha": "Хауса", +"he": "Іврит", +"hi": "Гінді", +"hr": "Хорватська", +"hu": "Угорська", +"hy": "Вірменська", +"ia": "Інтерлінгва", +"id": "Індонезійська", +"ie": "Інтерлінгве", +"ik": "Інупіак", +"is": "Ісландська", +"it": "Італійська", +"ja": "Японська", +"jv": "Яванська", +"ka": "Грузинська", +"kk": "Казахська", +"kl": "Калааллісут", +"km": "Кхмерська", +"kn": "Каннада", +"ko": "Корейська", +"ks": "Кашмірська", +"ku": "Курдська", +"ky": "Киргизька", +"la": "Латинська", +"ln": "Лінгала", +"lo": "Лаоська", +"lt": "Литовська", +"lv": "Латвійська", +"mg": "Малагасійська", +"mi": "Маорі", +"mk": "Македонська", +"ml": "Малайялам", +"mn": "Монгольська", +"mo": "Молдавська", +"mr": "Маратхі", +"ms": "Малайська", +"mt": "Мальтійська", +"my": "Бірманська", +"na": "Науру", +"ne": "Непальська", +"nl": "Голландська", +"no": "Норвезька", +"oc": "Окитан", +"om": "Оромо", +"or": "Орія", +"pa": "Панджабі", +"pl": "Польська", +"ps": "Пашто", +"pt": "Португальська", +"qu": "Кечуа", +"rm": "Ретророманські діалекти", +"rn": "Кірундійська", +"ro": "Румунська", +"ru": "Російська", +"rw": "Кінаруанда", +"sa": "Санскрит", +"sd": "Сіндтхі", +"sg": "Сангро", +"sh": "Сербсько-хорватська", +"si": "Сингальська", +"sk": "Словацька", +"sl": "Словенська", +"sm": "Самоанська", +"sn": "Шона", +"so": "Сомалі", +"sq": "Албанська", +"sr": "Сербська", +"ss": "Сісваті", +"st": "Сото, південний діалект", +"su": "Суданська", +"sv": "Шведська", +"sw": "Суахілі", +"ta": "Тамільська", +"te": "Телугу", +"tg": "Таджицька", +"th": "Тайська", +"ti": "Тигріні", +"tk": "Туркменська", +"tl": "Тагальська", +"tn": "Сетсванська", +"to": "Тонга (острови Тонга)", +"tr": "Турецька", +"ts": "Тсонго", +"tt": "Татарська", +"tw": "Тві", +"ug": "Уйгурська", +"uk": "Українська", +"ur": "Урду", +"uz": "Узбецька", +"vi": "Вʼєтнамська", +"vo": "Волапак", +"wo": "Волоф", +"xh": "Кхоса", +"yi": "Ідиш", +"yo": "Йоруба", +"za": "Зуанг", +"zh": "Китайська", +"zu": "Зулуська", +}, +{ type: "language", iso: "ur", +countries: [ +{_reference: "IN"}, +{_reference: "PK"}, +], +name: "اردو", +"ur": "اردو", +}, +{ type: "language", iso: "uz", +countries: [ +{_reference: "AF"}, +{_reference: "UZ"}, +], +name: "Ўзбек", +}, +{ type: "language", iso: "ve", +countries: [ +{_reference: "ZA"}, +], +}, +{ type: "language", iso: "vi", +countries: [ +{_reference: "VN"}, +], +name: "Tiếng Việt", +"ar": "Tiếng A-rập", +"az": "Tiếng Ai-déc-bai-gian", +"be": "Tiếng Bê-la-rút", +"bg": "Tiếng Bun-ga-ri", +"bo": "Tiếng Tây Tạng", +"ca": "Tiếng Ca-ta-lăng", +"cs": "Tiếng Séc", +"da": "Tiếng Đan Mạch", +"de": "Tiếng Đức", +"el": "Tiếng Hy Lạp", +"en": "Tiếng Anh", +"eo": "Tiếng Quốc Tế Ngữ", +"es": "Tiếng Tây Ban Nha", +"et": "Tiếng E-xtô-ni-a", +"fa": "Tiếng Ba Tư", +"fi": "Tiếng Phần Lan", +"fr": "Tiếng Pháp", +"ga": "Tiếng Ai-len", +"he": "Tiếng Hê-brơ", +"hi": "Tiếng Hin-đi", +"hr": "Tiếng Crô-a-ti-a", +"hu": "Tiếng Hung-ga-ri", +"hy": "Tiếng Ác-mê-ni", +"ia": "Tiếng Khoa Học Quốc Tế", +"id": "Tiếng In-đô-nê-xia", +"is": "Tiếng Ai-xơ-len", +"it": "Tiếng Ý", +"ja": "Tiếng Nhật", +"jv": "Tiếng Gia-va", +"km": "Tiếng Campuchia", +"kn": "Tiếng Kan-na-đa", +"ko": "Tiếng Hàn Quốc", +"la": "Tiếng La-tinh", +"lo": "Tiếng Lào", +"lt": "Tiếng Lít-va", +"lv": "Tiếng Lát-vi-a", +"mk": "Tiếng Ma-xê-đô-ni-a", +"mn": "Tiếng Mông Cổ", +"ms": "Tiếng Ma-lay-xi-a", +"ne": "Tiếng Nê-pan", +"nl": "Tiếng Hà Lan", +"no": "Tiếng Na Uy", +"pl": "Tiếng Ba Lan", +"pt": "Tiếng Bồ Đào Nha", +"ro": "Tiếng Ru-ma-ni", +"ru": "Tiếng Nga", +"sa": "Tiếng Phạn", +"sk": "Tiếng Xlô-vác", +"sl": "Tiếng Xlô-ven", +"so": "Tiếng Xô-ma-li", +"sq": "Tiếng An-ba-ni", +"sr": "Tiếng Séc-bi", +"sv": "Tiếng Thụy Điển", +"th": "Tiếng Thái", +"tr": "Tiếng Thổ Nhĩ Kỳ", +"uk": "Tiếng U-crai-na", +"uz": "Tiếng U-dơ-bếch", +"vi": "Tiếng Việt", +"yi": "Tiếng Y-đit", +"zh": "Tiếng Trung Quốc", +}, +{ type: "language", iso: "xh", +countries: [ +{_reference: "ZA"}, +], +}, +{ type: "language", iso: "yo", +countries: [ +{_reference: "NG"}, +], +}, +{ type: "language", iso: "zh", +countries: [ +{_reference: "CN"}, +{_reference: "HK"}, +{_reference: "MO"}, +{_reference: "SG"}, +{_reference: "TW"}, +], +name: "中文", +"aa": "阿法文", +"ab": "阿布哈西亚文", +"ae": "阿维斯塔文", +"af": "南非荷兰文", +"ak": "阿肯文", +"am": "阿姆哈拉文", +"ar": "阿拉伯文", +"as": "阿萨姆文", +"av": "阿瓦尔文", +"ay": "艾马拉文", +"az": "阿塞拜疆文", +"ba": "巴什客尔文", +"be": "白俄罗斯文", +"bg": "保加利亚文", +"bh": "比哈尔文", +"bi": "比斯拉马文", +"bm": "班巴拉文", +"bn": "孟加拉文", +"bo": "西藏文", +"br": "布里多尼文", +"bs": "波斯尼亚文", +"ca": "加泰罗尼亚文", +"ce": "车臣文", +"ch": "查莫罗文", +"co": "科西嘉文", +"cr": "克里族文", +"cs": "捷克文", +"cu": "宗教斯拉夫文", +"cv": "楚瓦什文", +"cy": "威尔士文", +"da": "丹麦文", +"de": "德文", +"dv": "迪维希文", +"dz": "不丹文", +"ee": "幽文", +"el": "希腊文", +"en": "英文", +"eo": "世界文", +"es": "西班牙文", +"et": "爱沙尼亚文", +"eu": "巴斯克文", +"fa": "波斯文", +"ff": "夫拉文", +"fi": "芬兰文", +"fj": "斐济文", +"fo": "法罗文", +"fr": "法文", +"fy": "弗里斯兰文", +"ga": "爱尔兰文", +"gd": "苏格兰- 盖尔文", +"gl": "加利西亚文", +"gn": "瓜拉尼文", +"gu": "古加拉提文", +"gv": "马恩岛文", +"ha": "豪撒文", +"he": "希伯来文", +"hi": "印地文", +"ho": "新里木托文", +"hr": "克罗地亚文", +"hu": "匈牙利文", +"hy": "亚美尼亚文", +"hz": "赫雷罗文", +"ia": "拉丁国际文 Interlingua", +"id": "印度尼西亚文", +"ie": "拉丁国际文 Interlingue", +"ig": "伊格博文", +"ii": "四川话", +"ik": "依奴皮维克文", +"io": "爱德莪文(人工语言)", +"is": "冰岛文", +"it": "意大利文", +"iu": "爱斯基摩文", +"ja": "日文", +"jv": "爪哇文", +"ka": "格鲁吉亚文", +"kg": "刚果文", +"ki": "吉库尤文", +"kj": "关琊玛文", +"kk": "哈萨克文", +"kl": "格陵兰文", +"km": "柬埔寨文", +"kn": "埃纳德文", +"ko": "韩文", +"kr": "卡努里文", +"ks": "克什米尔文", +"ku": "库尔德文", +"kv": "科米文", +"kw": "凯尔特文", +"ky": "吉尔吉斯文", +"la": "拉丁文", +"lb": "卢森堡文", +"lg": "卢干达文", +"li": "淋布尔吉文", +"ln": "林加拉文", +"lo": "老挝文", +"lt": "立陶宛文", +"lu": "鲁巴加丹加文", +"lv": "拉脫維亞文", +"mg": "马尔加什文", +"mh": "马绍尔文", +"mi": "毛利文", +"mk": "马其顿文", +"ml": "马来亚拉姆文", +"mn": "蒙古文", +"mo": "摩尔多瓦文", +"mr": "马拉地文", +"ms": "马来文", +"mt": "马耳他文", +"my": "缅甸文", +"na": "瑙鲁文", +"nb": "挪威博克马尔文", +"nd": "北恩德贝勒文", +"ne": "尼泊尔文", +"ng": "恩东加文", +"nl": "荷兰文", +"nn": "挪威尼诺斯克文", +"no": "挪威文", +"nr": "南部恩德贝勒文", +"nv": "纳瓦霍文", +"ny": "尼昂加文;切瓦文;切瓦文", +"oc": "奥西坦文", +"oj": "奥季布瓦文", +"om": "阿曼文", +"or": "欧里亚文", +"os": "奥塞提文", +"pa": "旁遮普文", +"pi": "帕利文", +"pl": "波兰文", +"ps": "普什图文", +"pt": "葡萄牙文", +"qu": "盖丘亚文", +"rm": "里托罗曼斯文", +"rn": "基隆迪文", +"ro": "罗马尼亚文", +"ru": "俄文", +"rw": "卢旺达文", +"sa": "梵文", +"sc": "萨丁文", +"sd": "信德语", +"se": "北萨迷文", +"sg": "桑戈文", +"sh": "塞波尼斯-克罗地亚文", +"si": "僧伽罗文", +"sk": "斯洛伐克文", +"sl": "斯洛文尼亚文", +"sm": "萨摩亚文", +"sn": "塞内加尔文", +"so": "索马里文", +"sq": "阿尔巴尼亚文", +"sr": "塞尔维亚文", +"ss": "辛辛那提文", +"st": "塞索托文", +"su": "巽他语", +"sv": "瑞典文", +"sw": "斯瓦希里文", +"ta": "泰米尔文", +"te": "泰卢固文", +"tg": "塔吉克文", +"th": "泰文", +"ti": "提格里尼亚文", +"tk": "土库曼文", +"tl": "塔加路族文", +"tn": "突尼斯文", +"to": "汤加文", +"tr": "土耳其文", +"ts": "特松加文", +"tt": "鞑靼文", +"tw": "台湾文", +"ty": "塔西提文", +"ug": "维吾尔文", +"uk": "乌克兰文", +"ur": "乌尔都文", +"uz": "乌兹别克文", +"ve": "文达文", +"vi": "越南文", +"vo": "沃拉普克文", +"wa": "華隆文", +"wo": "沃尔夫文", +"xh": "科萨语", +"yi": "依地文", +"yo": "约鲁巴文", +"za": "藏文", +"zh": "中文", +"zu": "祖鲁文", +}, +{ type: "language", iso: "zu", +countries: [ +{_reference: "ZA"}, +], +}, +] diff --git a/includes/js/dijit/demos/i18n/languages.sh b/includes/js/dijit/demos/i18n/languages.sh new file mode 100644 index 0000000..5d353ee --- /dev/null +++ b/includes/js/dijit/demos/i18n/languages.sh @@ -0,0 +1,18 @@ +echo "[" +for lang in $(ls [a-z][a-z].xml |sed s/.xml//) +do + echo '{ type: "language", iso: "'${lang}'",' + + # countries that use this language + echo 'countries: [' + ls ${lang}_[A-Z][A-Z].xml | sed -e 's/^.*_/{_reference: "/' -e 's/.xml/"},/' + echo '],' + + # name of this language (in this language) + grep ']' ${lang}.xml |head -1 |sed -e 's/.*]*>/name: "/' -e 's/<\/language>/",/' + + # names of other langauges (in this language) + grep '' ${lang}.xml |sed -e 's/.*/",/' -e 's/>/: "/' -e 's/-->//' + echo '},' +done +echo "]" diff --git a/includes/js/dijit/demos/i18n/sprite.html b/includes/js/dijit/demos/i18n/sprite.html new file mode 100644 index 0000000..c34ef3e --- /dev/null +++ b/includes/js/dijit/demos/i18n/sprite.html @@ -0,0 +1,2319 @@ + + + + + + + + + + +

Flag Sprite/CSS Generator

+ + +

Sprite

+
+
+
+ +

CSS

+ + + +

Country names, flags, and ISO code

+

data taken from wikipedia ISO 3166-1 site

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Official country names used by the ISO 3166/MANumericAlpha-3Alpha-2Local ISO codes
Flag of Afghanistan Afghanistan004AFGAFISO 3166-2:AF
Flag of Åland Åland Islands248ALAAXISO 3166-2:AX
Flag of Albania Albania008ALBALISO 3166-2:AL
Flag of Algeria Algeria012DZADZISO 3166-2:DZ
Flag of American Samoa American Samoa016ASMASISO 3166-2:AS
Flag of Andorra Andorra020ANDISO 3166-2:AD
Flag of Angola Angola024AGOAOISO 3166-2:AO
Flag of Anguilla Anguilla660AIAAIISO 3166-2:AI
Flag of Antarctica Antarctica010ATAAQISO 3166-2:AQ
Flag of Antigua and Barbuda Antigua and Barbuda028ATGAGISO 3166-2:AG
Flag of Argentina Argentina032ARGARISO 3166-2:AR
Flag of Armenia Armenia051ARMAMISO 3166-2:AM
Flag of Aruba Aruba533ABWAWISO 3166-2:AW
Flag of Australia Australia036AUSAUISO 3166-2:AU
Flag of Austria Austria040AUTATISO 3166-2:AT
Flag of Azerbaijan Azerbaijan031AZEAZISO 3166-2:AZ
Flag of the Bahamas Bahamas044BHSBSISO 3166-2:BS
Flag of Bahrain Bahrain048BHRBHISO 3166-2:BH
Flag of Bangladesh Bangladesh050BGDBDISO 3166-2:BD
Flag of Barbados Barbados052BRBBBISO 3166-2:BB
Flag of Belarus Belarus112BLRBYISO 3166-2:BY
Flag of Belgium Belgium056BELBEISO 3166-2:BE
Flag of Belize Belize084BLZBZISO 3166-2:BZ
Flag of Benin Benin204BENBJISO 3166-2:BJ
Flag of Bermuda Bermuda060BMUBMISO 3166-2:BM
Flag of Bhutan Bhutan064BTNBTISO 3166-2:BT
Flag of Bolivia Bolivia068BOLBOISO 3166-2:BO
Flag of Bosnia and Herzegovina Bosnia and Herzegovina070BIHBAISO 3166-2:BA
Flag of Botswana Botswana072BWABWISO 3166-2:BW
Flag of Bouvet Island Bouvet Island074BVTBVISO 3166-2:BV
Flag of Brazil Brazil076BRABRISO 3166-2:BR
Flag of British Indian Ocean Territory British Indian Ocean Territory086IOTIOISO 3166-2:IO
Flag of Brunei Brunei Darussalam096BRNBNISO 3166-2:BN
Flag of Bulgaria Bulgaria100BGRBGISO 3166-2:BG
Flag of Burkina Faso Burkina Faso854BFABFISO 3166-2:BF
Flag of Burundi Burundi108BDIBIISO 3166-2:BI
Flag of Cambodia Cambodia116KHMKHISO 3166-2:KH
Flag of Cameroon Cameroon120CMRCMISO 3166-2:CM
Flag of Canada Canada124CANCAISO 3166-2:CA
Flag of Cape Verde Cape Verde132CPVCVISO 3166-2:CV
Flag of Cayman Islands Cayman Islands136CYMKYISO 3166-2:KY
Flag of the Central African Republic Central African Republic140CAFCFISO 3166-2:CF
Flag of Chad Chad148TCDTDISO 3166-2:TD
Flag of Chile Chile152CHLCLISO 3166-2:CL
Flag of the People's Republic of China China156CHNCNISO 3166-2:CN
Flag of Christmas Island Christmas Island162CXRCXISO 3166-2:CX
Flag of the Cocos (Keeling) Islands Cocos (Keeling) Islands166CCKCCISO 3166-2:CC
Flag of Colombia Colombia170COLCOISO 3166-2:CO
Flag of the Comoros Comoros174COMKMISO 3166-2:KM
Flag of the Republic of the Congo Congo178COGCGISO 3166-2:CG
Flag of the Democratic Republic of the Congo Congo, Democratic Republic of the180CODCDISO 3166-2:CD
Flag of the Cook Islands Cook Islands184COKCKISO 3166-2:CK
Flag of Costa Rica Costa Rica188CRICRISO 3166-2:CR
Flag of Côte d'Ivoire Côte d'Ivoire384CIVCIISO 3166-2:CI
Flag of Croatia Croatia191HRVHRISO 3166-2:HR
Flag of Cuba Cuba192CUBCUISO 3166-2:CU
Flag of Cyprus Cyprus196CYPCYISO 3166-2:CY
Flag of the Czech Republic Czech Republic203CZECZISO 3166-2:CZ
Flag of Denmark Denmark208DNKDKISO 3166-2:DK
Flag of Djibouti Djibouti262DJIDJISO 3166-2:DJ
Flag of Dominica Dominica212DMADMISO 3166-2:DM
Flag of the Dominican Republic Dominican Republic214DOMDOISO 3166-2:DO
Flag of Ecuador Ecuador218ECUECISO 3166-2:EC
Flag of Egypt Egypt818EGYEGISO 3166-2:EG
Flag of El Salvador El Salvador222SLVSVISO 3166-2:SV
Flag of Equatorial Guinea Equatorial Guinea226GNQGQISO 3166-2:GQ
Flag of Eritrea Eritrea232ERIERISO 3166-2:ER
Flag of Estonia Estonia233ESTEEISO 3166-2:EE
Flag of Ethiopia Ethiopia231ETHETISO 3166-2:ET
Flag of the Falkland Islands Falkland Islands (Malvinas)238FLKFKISO 3166-2:FK
Flag of the Faroe Islands Faroe Islands234FROFOISO 3166-2:FO
Flag of Fiji Fiji242FJIFJISO 3166-2:FJ
Flag of Finland Finland246FINFIISO 3166-2:FI
Flag of France France250FRAFRISO 3166-2:FR
Flag of French Guiana French Guiana254GUFGFISO 3166-2:GF
Flag of French Polynesia French Polynesia258PYFPFISO 3166-2:PF
Flag of the French Southern and Antarctic Lands French Southern Territories260ATFTFISO 3166-2:TF
Flag of Gabon Gabon266GABGAISO 3166-2:GA
Flag of The Gambia Gambia270GMBGMISO 3166-2:GM
Flag of Georgia (country) Georgia268GEOGEISO 3166-2:GE
Flag of Germany Germany276DEUDEISO 3166-2:DE
Flag of Ghana Ghana288GHAGHISO 3166-2:GH
Flag of Gibraltar Gibraltar292GIBGIISO 3166-2:GI
Flag of Greece Greece300GRCGRISO 3166-2:GR
Flag of Greenland Greenland304GRLGLISO 3166-2:GL
Flag of Grenada Grenada308GRDGDISO 3166-2:GD
Flag of Guadeloupe Guadeloupe[2]312GLPGPISO 3166-2:GP
Flag of Guam Guam316GUMGUISO 3166-2:GU
Flag of Guatemala Guatemala320GTMGTISO 3166-2:GT
Flag of Guernsey Guernsey831GGYGGISO 3166-2:GG
Flag of Guinea Guinea324GINGNISO 3166-2:GN
Flag of Guinea-Bissau Guinea-Bissau624GNBGWISO 3166-2:GW
Flag of Guyana Guyana328GUYGYISO 3166-2:GY
Flag of Haiti Haiti332HTIHTISO 3166-2:HT
Flag of Heard Island and McDonald Islands Heard Island and McDonald Islands334HMDHMISO 3166-2:HM
Flag of the Vatican City Holy See (Vatican City State)336VATVAISO 3166-2:VA
Flag of Honduras Honduras340HNDHNISO 3166-2:HN
Flag of Hong Kong Hong Kong344HKGHKISO 3166-2:HK
Flag of Hungary Hungary348HUNHUISO 3166-2:HU
Flag of Iceland Iceland352ISLISISO 3166-2:IS
Flag of India India356INDINISO 3166-2:IN
Flag of Indonesia Indonesia360IDNIDISO 3166-2:ID
Flag of Iran Iran, Islamic Republic of364IRNIRISO 3166-2:IR
Flag of Iraq Iraq368IRQIQISO 3166-2:IQ
Flag of Ireland Ireland372IRLIEISO 3166-2:IE
Flag of the Isle of Man Isle of Man833IMNIMISO 3166-2:IM
Flag of Israel Israel376ISRILISO 3166-2:IL
Flag of Italy Italy380ITAITISO 3166-2:IT
Flag of Jamaica Jamaica388JAMJMISO 3166-2:JM
Flag of Japan Japan392JPNJPISO 3166-2:JP
Flag of Jersey Jersey832JEYJEISO 3166-2:JE
Flag of Jordan Jordan400JORJOISO 3166-2:JO
Flag of Kazakhstan Kazakhstan398KAZKZISO 3166-2:KZ
Flag of Kenya Kenya404KENKEISO 3166-2:KE
Flag of Kiribati Kiribati296KIRKIISO 3166-2:KI
Flag of North Korea Korea, Democratic People's Republic of408PRKKPISO 3166-2:KP
Flag of South Korea Korea, Republic of410KORKRISO 3166-2:KR
Flag of Kuwait Kuwait414KWTKWISO 3166-2:KW
Flag of Kyrgyzstan Kyrgyzstan417KGZKGISO 3166-2:KG
Flag of Laos Lao People's Democratic Republic418LAOLAISO 3166-2:LA
Flag of Latvia Latvia428LVALVISO 3166-2:LV
Flag of Lebanon Lebanon422LBNLBISO 3166-2:LB
Flag of Lesotho Lesotho426LSOLSISO 3166-2:LS
Flag of Liberia Liberia430LBRLRISO 3166-2:LR
Flag of Libya Libyan Arab Jamahiriya434LBYLYISO 3166-2:LY
Flag of Liechtenstein Liechtenstein438LIELIISO 3166-2:LI
Flag of Lithuania Lithuania440LTULTISO 3166-2:LT
Flag of Luxembourg Luxembourg442LUXLUISO 3166-2:LU
Flag of Macau Macao446MACMOISO 3166-2:MO
Flag of the Republic of Macedonia Macedonia, the former Yugoslav Republic of807MKDMKISO 3166-2:MK
Flag of Madagascar Madagascar450MDGMGISO 3166-2:MG
Flag of Malawi Malawi454MWIMWISO 3166-2:MW
Flag of Malaysia Malaysia458MYSMYISO 3166-2:MY
Flag of the Maldives Maldives462MDVMVISO 3166-2:MV
Flag of Mali Mali466MLIMLISO 3166-2:ML
Flag of Malta Malta470MLTMTISO 3166-2:MT
Flag of the Marshall Islands Marshall Islands584MHLMHISO 3166-2:MH
Flag of Martinique Martinique474MTQMQISO 3166-2:MQ
Flag of Mauritania Mauritania478MRTMRISO 3166-2:MR
Flag of Mauritius Mauritius480MUSMUISO 3166-2:MU
Flag of Mayotte Mayotte175MYTYTISO 3166-2:YT
Flag of Mexico Mexico484MEXMXISO 3166-2:MX
Flag of the Federated States of Micronesia Micronesia, Federated States of583FSMFMISO 3166-2:FM
Flag of Moldova Moldova, Republic of498MDAMDISO 3166-2:MD
Flag of Monaco Monaco492MCOMCISO 3166-2:MC
Flag of Mongolia Mongolia496MNGMNISO 3166-2:MN
Flag of Montenegro Montenegro499MNEMEISO 3166-2:ME
Flag of Montserrat Montserrat500MSRMSISO 3166-2:MS
Flag of Morocco Morocco504MARMAISO 3166-2:MA
Flag of Mozambique Mozambique508MOZMZISO 3166-2:MZ
Flag of Myanmar Myanmar104MMRMMISO 3166-2:MM
Flag of Namibia Namibia516NAMNAISO 3166-2:NA
Flag of Nauru Nauru520NRUNRISO 3166-2:NR
Flag of Nepal Nepal524NPLNPISO 3166-2:NP
Flag of the Netherlands Netherlands528NLDNLISO 3166-2:NL
Flag of the Netherlands Antilles Netherlands Antilles530ANTANISO 3166-2:AN
Flag of New Caledonia New Caledonia540NCLNCISO 3166-2:NC
Flag of New Zealand New Zealand554NZLNZISO 3166-2:NZ
Flag of Nicaragua Nicaragua558NICNIISO 3166-2:NI
Flag of Niger Niger562NERNEISO 3166-2:NE
Flag of Nigeria Nigeria566NGANGISO 3166-2:NG
Flag of Niue Niue570NIUNUISO 3166-2:NU
Flag of Norfolk Island Norfolk Island574NFKNFISO 3166-2:NF
Flag of the Northern Mariana Islands Northern Mariana Islands580MNPMPISO 3166-2:MP
Flag of Norway Norway578NORNOISO 3166-2:NO
Flag of Oman Oman512OMNOMISO 3166-2:OM
Flag of Pakistan Pakistan586PAKPKISO 3166-2:PK
Flag of Palau Palau585PLWPWISO 3166-2:PW
Palestinian flag Palestinian Territory, Occupied275PSEPSISO 3166-2:PS
Flag of Panama Panama591PANPAISO 3166-2:PA
Flag of Papua New Guinea Papua New Guinea598PNGPGISO 3166-2:PG
Flag of Paraguay Paraguay600PRYPYISO 3166-2:PY
Flag of Peru Peru604PERPEISO 3166-2:PE
Flag of the Philippines Philippines608PHLPHISO 3166-2:PH
Flag of the Pitcairn Islands Pitcairn612PCNPNISO 3166-2:PN
Flag of Poland Poland616POLPLISO 3166-2:PL
Flag of Portugal Portugal620PRTPTISO 3166-2:PT
Flag of Puerto Rico Puerto Rico630PRIPRISO 3166-2:PR
Flag of Qatar Qatar634QATQAISO 3166-2:QA
Flag of Réunion Réunion638REUREISO 3166-2:RE
Flag of Romania Romania642ROUROISO 3166-2:RO
Flag of Russia Russian Federation643RUSRUISO 3166-2:RU
Flag of Rwanda Rwanda646RWARWISO 3166-2:RW
Flag of Saint Helena Saint Helena654SHNSHISO 3166-2:SH
Flag of Saint Kitts and Nevis Saint Kitts and Nevis659KNAKNISO 3166-2:KN
Flag of Saint Lucia Saint Lucia662LCALCISO 3166-2:LC
Flag of Saint Pierre and Miquelon Saint Pierre and Miquelon666SPMPMISO 3166-2:PM
Flag of Saint Vincent and the Grenadines Saint Vincent and the Grenadines670VCTVCISO 3166-2:VC
Flag of Samoa Samoa882WSMWSISO 3166-2:WS
Flag of San Marino San Marino674SMRSMISO 3166-2:SM
Flag of São Tomé and Príncipe Sao Tome and Principe678STPSTISO 3166-2:ST
Flag of Saudi Arabia Saudi Arabia682SAUSAISO 3166-2:SA
Flag of Senegal Senegal686SENSNISO 3166-2:SN
Flag of Serbia Serbia688SRBRSISO 3166-2:RS
Flag of the Seychelles Seychelles690SYCSCISO 3166-2:SC
Flag of Sierra Leone Sierra Leone694SLESLISO 3166-2:SL
Flag of Singapore Singapore702SGPSGISO 3166-2:SG
Flag of Slovakia Slovakia703SVKSKISO 3166-2:SK
Flag of Slovenia Slovenia705SVNSIISO 3166-2:SI
Flag of the Solomon Islands Solomon Islands090SLBSBISO 3166-2:SB
Flag of Somalia Somalia706SOMSOISO 3166-2:SO
Flag of South Africa South Africa710ZAFZAISO 3166-2:ZA
Flag of South Georgia and the South Sandwich Islands South Georgia and the South Sandwich Islands239SGSGSISO 3166-2:GS
Flag of Spain Spain724ESPESISO 3166-2:ES
Flag of Sri Lanka Sri Lanka144LKALKISO 3166-2:LK
Flag of Sudan Sudan736SDNSDISO 3166-2:SD
Flag of Suriname Suriname740SURSRISO 3166-2:SR
Flag of Svalbard and Jan Mayen Svalbard and Jan Mayen744SJMSJISO 3166-2:SJ
Flag of Swaziland Swaziland748SWZSZISO 3166-2:SZ
Flag of Sweden Sweden752SWESEISO 3166-2:SE
Flag of Switzerland Switzerland756CHECHISO 3166-2:CH
Flag of Syria Syrian Arab Republic760SYRSYISO 3166-2:SY
Flag of the Republic of China Taiwan, Province of China158TWNTWISO 3166-2:TW
Flag of Tajikistan Tajikistan762TJKTJISO 3166-2:TJ
Flag of Tanzania Tanzania, United Republic of834TZATZISO 3166-2:TZ
Flag of Thailand Thailand764THATHISO 3166-2:TH
Flag of East Timor Timor-Leste626TLSTLISO 3166-2:TL
Flag of Togo Togo768TGOTGISO 3166-2:TG
Flag of Tokelau Tokelau772TKLTKISO 3166-2:TK
Flag of Tonga Tonga776TONTOISO 3166-2:TO
Flag of Trinidad and Tobago Trinidad and Tobago780TTOTTISO 3166-2:TT
Flag of Tunisia Tunisia788TUNTNISO 3166-2:TN
Flag of Turkey Turkey792TURTRISO 3166-2:TR
Flag of Turkmenistan Turkmenistan795TKMTMISO 3166-2:TM
Flag of the Turks and Caicos Islands Turks and Caicos Islands796TCATCISO 3166-2:TC
Flag of Tuvalu Tuvalu798TUVTVISO 3166-2:TV
Flag of Uganda Uganda800UGAUGISO 3166-2:UG
Flag of Ukraine Ukraine804UKRUAISO 3166-2:UA
Flag of the United Arab Emirates United Arab Emirates784AREAEISO 3166-2:AE
Flag of the United Kingdom United Kingdom826GBRGBISO 3166-2:GB
Flag of the United States United States840USAUSISO 3166-2:US
Flag of United States Minor Outlying Islands United States Minor Outlying Islands581UMIUMISO 3166-2:UM
Flag of Uruguay Uruguay858URYUYISO 3166-2:UY
Flag of Uzbekistan Uzbekistan860UZBUZISO 3166-2:UZ
Flag of Vanuatu Vanuatu548VUTVUISO 3166-2:VU
Flag of Venezuela Venezuela862VENVEISO 3166-2:VE
Flag of Vietnam Viet Nam704VNMVNISO 3166-2:VN
Flag of the British Virgin Islands Virgin Islands, British092VGBVGISO 3166-2:VG
Flag of the United States Virgin Islands Virgin Islands, U.S.850VIRVIISO 3166-2:VI
Flag of Wallis and Futuna Wallis and Futuna876WLFWFISO 3166-2:WF
Flag of Western Sahara Western Sahara732ESHEHISO 3166-2:EH
Flag of Yemen Yemen887YEMYEISO 3166-2:YE
Flag of Zambia Zambia894ZMBZMISO 3166-2:ZM
Flag of Zimbabwe Zimbabwe716ZWEZWISO 3166-2:ZW
+ +

Country Continent Mapping

+

abstracted from wikipedia continent country page

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
AfricaFlag of Algeria AlgeriaAlgiers
AfricaFlag of Angola AngolaLuanda
AfricaFlag of Benin BeninPorto-Novo (seat of government at Cotonou)
AfricaFlag of Botswana BotswanaGaborone
AfricaFlag of Burkina Faso Burkina FasoOuagadougou
AfricaFlag of Burundi BurundiBujumbura
AfricaFlag of Cameroon CameroonYaoundé
AfricaFlag of Cape Verde Cape VerdePraia
AfricaFlag of the Central African Republic Central African RepublicBangui
AfricaFlag of Chad ChadN'Djamena
AfricaFlag of the Comoros ComorosMoroni
AfricaFlag of the Democratic Republic of the Congo Congo, Democratic Republic of (also known as Congo-Kinshasa, formerly known as Zaire) – Kinshasa
AfricaFlag of the Republic of the Congo Congo, Republic of (also known as Congo-Brazzaville) – Brazzaville
AfricaFlag of Côte d'Ivoire Côte d'Ivoire (commonly known as Ivory Coast) – Yamoussoukro (seat of government at Abidjan)
AfricaFlag of Djibouti DjiboutiDjibouti
AfricaFlag of Egypt EgyptCairo
AfricaFlag of Equatorial Guinea Equatorial GuineaMalabo
AfricaFlag of Eritrea EritreaAsmara
AfricaFlag of Ethiopia EthiopiaAddis Ababa
AfricaFlag of Gabon GabonLibreville
AfricaFlag of The Gambia GambiaBanjul
AfricaFlag of Ghana GhanaAccra
AfricaFlag of Guinea GuineaConakry
AfricaFlag of Guinea-Bissau Guinea-BissauBissau
AfricaFlag of Kenya KenyaNairobi
AfricaFlag of Lesotho LesothoMaseru
AfricaFlag of Liberia LiberiaMonrovia
AfricaFlag of Libya LibyaTripoli
AfricaFlag of Madagascar MadagascarAntananarivo
AfricaFlag of Malawi MalawiLilongwe
AfricaFlag of Mali MaliBamako
AfricaFlag of Mauritania MauritaniaNouakchott
AfricaFlag of Mauritius MauritiusPort Louis
AfricaFlag of Mayotte Mayotte (overseas territory of France) – Mamoudzou
AfricaFlag of Morocco MoroccoRabat
AfricaFlag of Mozambique MozambiqueMaputo
AfricaFlag of Namibia NamibiaWindhoek
AfricaFlag of Niger NigerNiamey
AfricaFlag of Nigeria NigeriaAbuja
AfricaFlag of Réunion Réunion (overseas department of France) – Saint-Denis
AfricaFlag of Rwanda RwandaKigali
AfricaFlag of Saint Helena Saint Helena (overseas territory of the United Kingdom) – Jamestown
AfricaFlag of São Tomé and Príncipe Sao Tome and PrincipeSão Tomé
AfricaFlag of Senegal SenegalDakar
AfricaFlag of the Seychelles SeychellesVictoria
AfricaFlag of Sierra Leone Sierra LeoneFreetown
AfricaFlag of Somalia SomaliaMogadishu
AfricaFlag of South Africa South AfricaPretoria (administrative), Cape Town (legislative), Bloemfontein (judicial)
AfricaFlag of Sudan SudanKhartoum
AfricaFlag of Swaziland SwazilandMbabane (administrative), Lobamba (royal and legislative)
AfricaFlag of Tanzania TanzaniaDodoma (seat of government at Dar es Salaam)
AfricaFlag of Togo TogoLomé
AfricaFlag of Tunisia TunisiaTunis
AfricaFlag of Uganda UgandaKampala
AfricaFlag of Western Sahara Western SaharaEl Aaiún (unofficial)
AfricaFlag of Zambia ZambiaLusaka
AfricaFlag of Zimbabwe ZimbabweHarare
AsiaFlag of Afghanistan AfghanistanKabul
AsiaFlag of Armenia Armenia[2]Yerevan
AsiaFlag of Azerbaijan Azerbaijan[2]Baku
AsiaFlag of Bahrain BahrainManama
AsiaFlag of Bangladesh BangladeshDhaka
AsiaFlag of Bhutan BhutanThimphu
AsiaFlag of British Indian Ocean Territory British Indian Ocean Territory[3] (overseas territory of the United Kingdom)
AsiaFlag of Brunei BruneiBandar Seri Begawan
AsiaFlag of Cambodia CambodiaPhnom Penh
AsiaFlag of the People's Republic of China China, People's Republic ofBeijing
AsiaFlag of the Republic of China China, Republic of (commonly known as Taiwan) – Taipei
AsiaFlag of Christmas Island Christmas Island[4] (overseas territory of Australia)
AsiaFlag of the Cocos (Keeling) Islands Cocos (Keeling) Islands[4] (overseas territory of Australia)
AsiaFlag of Cyprus Cyprus[2]Nicosia
AsiaFlag of Georgia (country) Georgia[2]Tbilisi
AsiaFlag of Hong Kong Hong Kong (special administrative region of the People's Republic of China)
AsiaFlag of India IndiaNew Delhi
AsiaFlag of Indonesia IndonesiaJakarta
AsiaFlag of Iran IranTehran
AsiaFlag of Iraq IraqBaghdad
AsiaFlag of Israel IsraelJerusalem
AsiaFlag of Japan JapanTokyo
AsiaFlag of Jordan JordanAmman
AsiaFlag of Kazakhstan KazakhstanAstana
AsiaFlag of North Korea Korea, Democratic People's Republic of (commonly known as North Korea) – Pyongyang
AsiaFlag of South Korea Korea, Republic of (commonly known as South Korea) – Seoul
AsiaFlag of Kuwait KuwaitKuwait City
AsiaFlag of Kyrgyzstan KyrgyzstanBishkek
AsiaFlag of Laos LaosVientiane
AsiaFlag of Lebanon LebanonBeirut
AsiaFlag of Macau Macau (special administrative region of the People's Republic of China)
AsiaFlag of Malaysia MalaysiaKuala Lumpur (seat of government at Putrajaya)
AsiaFlag of the Maldives MaldivesMalé
AsiaFlag of Mongolia MongoliaUlaanbaatar
AsiaFlag of Myanmar Myanmar (formerly known as Burma) – Naypyidaw
AsiaFlag of Nepal NepalKathmandu
AsiaFlag of Oman OmanMuscat
AsiaFlag of Pakistan PakistanIslamabad
AsiaPalestinian flag Palestinian territories (collectively the territories of the West Bank and the Gaza Strip)
AsiaFlag of the Philippines PhilippinesManila
AsiaFlag of Qatar QatarDoha
AsiaFlag of Saudi Arabia Saudi ArabiaRiyadh
AsiaFlag of Singapore Singapore – Singapore[5]
AsiaFlag of Sri Lanka Sri LankaSri Jayawardenepura
AsiaFlag of Syria SyriaDamascus
AsiaFlag of Tajikistan TajikistanDushanbe
AsiaFlag of Thailand ThailandBangkok
AsiaFlag of East Timor Timor-Leste (commonly known as East Timor) – Dili
AsiaFlag of Turkey Turkey[2]Ankara
AsiaFlag of Turkmenistan TurkmenistanAshgabat
AsiaFlag of the United Arab Emirates United Arab EmiratesAbu Dhabi
AsiaFlag of Uzbekistan UzbekistanTashkent
AsiaFlag of Vietnam VietnamHanoi
AsiaFlag of Yemen YemenSana'a
EuropeFlag of Albania AlbaniaTirana
EuropeFlag of Andorra AndorraAndorra la Vella
EuropeFlag of Austria AustriaVienna
EuropeFlag of Belarus BelarusMinsk
EuropeFlag of Belgium BelgiumBrussels
EuropeFlag of Bosnia and Herzegovina Bosnia and HerzegovinaSarajevo
EuropeFlag of Bulgaria BulgariaSofia
EuropeFlag of Croatia CroatiaZagreb
EuropeFlag of the Czech Republic Czech RepublicPrague
EuropeFlag of Denmark DenmarkCopenhagen
EuropeFlag of Estonia EstoniaTallinn
EuropeFlag of the Faroe Islands Faroe Islands (overseas territory of Denmark) – Tórshavn
EuropeFlag of Finland FinlandHelsinki
EuropeFlag of France FranceParis
EuropeFlag of Germany GermanyBerlin
EuropeFlag of Gibraltar Gibraltar (overseas territory of the United Kingdom) – Gibraltar[5]
EuropeFlag of Greece GreeceAthens
EuropeFlag of Guernsey Guernsey (British crown dependency) – Saint Peter Port
EuropeFlag of Hungary HungaryBudapest
EuropeFlag of Iceland IcelandReykjavík
EuropeFlag of Ireland IrelandDublin
EuropeFlag of the Isle of Man Isle of Man (British crown dependency) – Douglas
EuropeFlag of Italy ItalyRome
EuropeFlag of Jersey Jersey (British crown dependency) – Saint Helier
EuropeFlag of Latvia LatviaRiga
EuropeFlag of Liechtenstein LiechtensteinVaduz
EuropeFlag of Lithuania LithuaniaVilnius
EuropeFlag of Luxembourg LuxembourgLuxembourg
EuropeFlag of the Republic of Macedonia MacedoniaSkopje
EuropeFlag of Malta MaltaValletta
EuropeFlag of Moldova MoldovaChişinău
EuropeFlag of Monaco Monaco – Monaco[5]
EuropeFlag of Montenegro MontenegroPodgorica
EuropeFlag of the Netherlands NetherlandsAmsterdam (seat of government at The Hague)
EuropeFlag of Norway NorwayOslo
EuropeFlag of Poland PolandWarsaw
EuropeFlag of Portugal PortugalLisbon
EuropeFlag of Romania RomaniaBucharest
EuropeFlag of Russia Russia[6]Moscow
EuropeFlag of San Marino San MarinoSan Marino
EuropeFlag of Serbia SerbiaBelgrade
EuropeFlag of Slovakia SlovakiaBratislava
EuropeFlag of Slovenia SloveniaLjubljana
EuropeFlag of Spain SpainMadrid
EuropeFlag of Sweden SwedenStockholm
EuropeFlag of Switzerland SwitzerlandBerne
EuropeFlag of Ukraine UkraineKiev
EuropeFlag of the United Kingdom United KingdomLondon
EuropeFlag of the Vatican City Vatican City – Vatican City[5]
North AmericaFlag of Anguilla Anguilla (overseas territory of the United Kingdom) – The Valley
North AmericaFlag of Antigua and Barbuda Antigua and BarbudaSaint John's
North AmericaFlag of Aruba Aruba (overseas country in the Kingdom of the Netherlands) – Oranjestad
North AmericaFlag of the Bahamas BahamasNassau
North AmericaFlag of Barbados BarbadosBridgetown
North AmericaFlag of Belize BelizeBelmopan
North AmericaFlag of Bermuda Bermuda (overseas territory of the United Kingdom) – Hamilton
North AmericaFlag of the British Virgin Islands British Virgin Islands (overseas territory of the United Kingdom) – Road Town
North AmericaFlag of Canada CanadaOttawa
North AmericaFlag of Cayman Islands Cayman Islands (overseas territory of the United Kingdom) – George Town
North AmericaFlag of France Clipperton Island (overseas territory of France)
North AmericaFlag of Costa Rica Costa RicaSan José
North AmericaFlag of Cuba CubaHavana
North AmericaFlag of Dominica DominicaRoseau
North AmericaFlag of the Dominican Republic Dominican RepublicSanto Domingo
North AmericaFlag of El Salvador El SalvadorSan Salvador
North AmericaFlag of Greenland Greenland (overseas territory of Denmark) – Nuuk
North AmericaFlag of Grenada GrenadaSaint George's
North AmericaFlag of Guadeloupe Guadeloupe (overseas department of France) – Basse-Terre
North AmericaFlag of Guatemala GuatemalaGuatemala City
North AmericaFlag of Haiti HaitiPort-au-Prince
North AmericaFlag of Honduras HondurasTegucigalpa
North AmericaFlag of Jamaica JamaicaKingston
North AmericaFlag of Martinique Martinique (overseas department of France) – Fort-de-France
North AmericaFlag of Mexico MexicoMexico City
North AmericaFlag of Montserrat Montserrat (overseas territory of the United Kingdom) – Plymouth (seat of government at Brades)
North AmericaFlag of Navassa Island Navassa Island (overseas territory of the United States)
North AmericaFlag of the Netherlands Antilles Netherlands Antilles (overseas country in the Kingdom of the Netherlands) – Willemstad
North AmericaFlag of Nicaragua NicaraguaManagua
North AmericaFlag of Panama PanamaPanama City
North AmericaFlag of Puerto Rico Puerto Rico (overseas territory of the United States) – San Juan
North AmericaFlag of Saint Barthelemy Saint Barthelemy (overseas territory of France) – Gustavia
North AmericaFlag of Saint Kitts and Nevis Saint Kitts and NevisBasseterre
North AmericaFlag of Saint Lucia Saint LuciaCastries
North AmericaFlag of Saint Martin (France) Saint Martin (overseas territory of France) – Marigot
North AmericaFlag of Saint Pierre and Miquelon Saint Pierre and Miquelon (overseas territory of France) – Saint-Pierre
North AmericaFlag of Saint Vincent and the Grenadines Saint Vincent and the GrenadinesKingstown
North AmericaFlag of Trinidad and Tobago Trinidad and TobagoPort of Spain
North AmericaFlag of the Turks and Caicos Islands Turks and Caicos Islands (overseas territory of the United Kingdom) – Cockburn Town
North AmericaFlag of the United States United StatesWashington, D.C.
North AmericaFlag of the United States Virgin Islands United States Virgin Islands (overseas territory of the United States) – Charlotte Amalie
South AmericaFlag of Argentina ArgentinaBuenos Aires
South AmericaFlag of Bolivia BoliviaSucre (seat of government at La Paz)
South AmericaFlag of Brazil BrazilBrasília
South AmericaFlag of Chile ChileSantiago
South AmericaFlag of Colombia ColombiaBogotá
South AmericaFlag of Ecuador EcuadorQuito
South AmericaFlag of the Falkland Islands Falkland Islands (overseas territory of the United Kingdom) – Stanley
South AmericaFlag of French Guiana French Guiana (overseas department of France) – Cayenne
South AmericaFlag of Guyana GuyanaGeorgetown
South AmericaFlag of Paraguay ParaguayAsunción
South AmericaFlag of Peru PeruLima
South AmericaFlag of Suriname SurinameParamaribo
South AmericaFlag of Uruguay UruguayMontevideo
South AmericaFlag of Venezuela VenezuelaCaracas
OceaniaFlag of American Samoa American Samoa (overseas territory of the United States) – Pago Pago (seat of government at Fagatogo)
OceaniaFlag of Australia AustraliaCanberra
OceaniaFlag of the United States Baker Island (overseas territory of the United States)
OceaniaFlag of the Cook Islands Cook Islands (territory in free association with New Zealand) – Avarua
OceaniaFlag of Fiji FijiSuva
OceaniaFlag of French Polynesia French Polynesia (overseas territory of France) – Papeete
OceaniaFlag of Guam Guam (overseas territory of the United States) – Hagåtña
OceaniaFlag of the United States Howland Island (overseas territory of the United States)
OceaniaFlag of the United States Jarvis Island (overseas territory of the United States)
OceaniaFlag of the United States Johnston Atoll (overseas territory of the United States)
OceaniaFlag of the United States Kingman Reef (overseas territory of the United States)
OceaniaFlag of Kiribati KiribatiSouth Tarawa
OceaniaFlag of the Marshall Islands Marshall IslandsMajuro
OceaniaFlag of the Federated States of Micronesia MicronesiaPalikir
OceaniaFlag of the United States Midway Atoll (overseas territory of the United States)
OceaniaFlag of Nauru Nauru – no official capital (seat of government at Yaren)
OceaniaFlag of New Caledonia New Caledonia (overseas territory of France) – Nouméa
OceaniaFlag of New Zealand New ZealandWellington
OceaniaFlag of Niue Niue (territory in free association with New Zealand) – Alofi
OceaniaFlag of Norfolk Island Norfolk Island (overseas territory of Australia) – Kingston
OceaniaFlag of the Northern Mariana Islands Northern Mariana Islands (overseas territory of the United States) – Saipan
OceaniaFlag of Palau PalauMelekeok
OceaniaFlag of the United States Palmyra Atoll (overseas territory of the United States)
OceaniaFlag of Papua New Guinea Papua New GuineaPort Moresby
OceaniaFlag of the Pitcairn Islands Pitcairn Islands (overseas territory of the United Kingdom) – Adamstown
OceaniaFlag of Samoa SamoaApia
OceaniaFlag of the Solomon Islands Solomon IslandsHoniara
OceaniaFlag of Tokelau Tokelau (overseas territory of New Zealand) – no official capital (each atoll has its own administrative centre)
OceaniaFlag of Tonga TongaNuku'alofa
OceaniaFlag of Tuvalu TuvaluFunafuti
OceaniaFlag of Vanuatu VanuatuPort Vila
OceaniaFlag of the United States Wake Island (overseas territory of the United States)
OceaniaFlag of Wallis and Futuna Wallis and Futuna (overseas territory of France) – Mata-Utu
AntarcticaFlag of Bouvet Island Bouvet Island (overseas territory of Norway)
AntarcticaFlag of the French Southern and Antarctic Lands French Southern Territories (overseas territory of France)
AntarcticaFlag of Heard Island and McDonald Islands Heard Island and McDonald Islands (overseas territory of Australia)
AntarcticaFlag of South Georgia and the South Sandwich Islands South Georgia and the South Sandwich Islands[7] (overseas territory of the United Kingdom)
+ + + diff --git a/includes/js/dijit/demos/mail.html b/includes/js/dijit/demos/mail.html new file mode 100644 index 0000000..0eae49f --- /dev/null +++ b/includes/js/dijit/demos/mail.html @@ -0,0 +1,426 @@ + + + + Demo Mail Application + + + + + + + + + + +
+ + + + + + + + + + + + + + + +
+ + +
+
+
+ + + + + + + + + +
+ +
+ +
+
+
+ + + +
+ +
+ + +
+
+
+ + +
+ + +
+
+ + Get Mail +
    +
  • Yahoo
  • +
  • GMail
  • +
+
+ Click to download new mail. + + + Click to compose new message. + + +
Set various options
+
+ +
+ +
+
+
+
+ + +
+
+
+ + + + +
+
+ + +
+ + + +
+ + +
+

+ This is a simple application mockup showing some of the dojo widgets: +

+
    +
  • layout widgets: BorderContainer, AccordionContainer
  • +
  • TooltipDialog, Tooltip
  • +
  • Tree
  • +
  • form widgets: Button, DropDownButton, ComboButton, FilteringSelect, ComboBox
  • +
  • Editor
  • +
+

+ The message list above originally contains all the messages, but you can filter it + by clicking on items in the left Accordion. + Then click on the messages in the above list to display them. + There's no server running, so the app is just a facade and it doesn't really do anything. + +

+

+ -- Bill +

+
+ +
+
+ + +
+ +
+ + + + + + + + +
+
+
+ + +
+
+
+
+
+
+
+ + diff --git a/includes/js/dijit/demos/mail/icons.gif b/includes/js/dijit/demos/mail/icons.gif new file mode 100644 index 0000000..d0b1760 Binary files /dev/null and b/includes/js/dijit/demos/mail/icons.gif differ diff --git a/includes/js/dijit/demos/mail/icons.png b/includes/js/dijit/demos/mail/icons.png new file mode 100644 index 0000000..f333fbe Binary files /dev/null and b/includes/js/dijit/demos/mail/icons.png differ diff --git a/includes/js/dijit/demos/mail/mail.css b/includes/js/dijit/demos/mail/mail.css new file mode 100644 index 0000000..13474c4 --- /dev/null +++ b/includes/js/dijit/demos/mail/mail.css @@ -0,0 +1,133 @@ +html, body, #main{ + width: 100%; + height: 100%; + overflow: hidden; + padding: 0 0 0 0; + margin: 0 0 0 0; + font: 10pt Arial,Myriad,Tahoma,Verdana,sans-serif; +} +#banner, #footer { +background-color: #ededff; +color: #333; +padding:3px; +} +#banner { text-align:right; } +#listPane tr:hover, #listPane td:hover, .dijitTreeContent:hover { + background-color: #ededed; + color: #333; + cursor: pointer; +} +#listPane tr, #listPane td { cursor: pointer; } +table.demoTable { + border-collapse: collapse; +} +th { + background-color: #4f8ce5; + color: #666; + font-weight:: bold !important; + margin:0; + padding:3px; + background-image:url('../../themes/soria/images/titleBar.png'); + background-position:0px -1px; +} +.dijitRtl caption, +.dijitRtl th { + text-align:right; +} +th .arrowNode { + position:relative; + float:left; + top:4px; + left:4px; + width:16px; + height:16px; +} +.dijitRtl th .arrowNode{ + float:right; +} +th.arrowUp .arrowNode { + margin-right: 5px; + margin-top: -4px; + margin-bottom: 5px; + width: 15px; + height:15px; + background:transparent url("../../themes/soria/images/spriteRoundedIconsSmall.png") -45px top no-repeat; +} +th.arrowDown .arrowNode { + margin-right: 5px; + margin-top: -4px; + margin-bottom: 5px; + width: 15px; + height:15px; + background:transparent url("../../themes/soria/images/spriteRoundedIconsSmall.png") -15px top no-repeat; +} +.demoTable td { padding:3px; } +.demoTable { + border-spacing:0; + padding:0; margin:0; + width:98%; + +} +.oddRow { + background-color: #f2f5f9; +} +#message { + padding: 8px; +} +.subject { + background: gray; + width: 100%; + padding-top: 5px; + padding-bottom: 10px; +} +.message { + border: black 2px; +} +.messageHeader { + font:12pt Arial,sans-serif; + font-weight:bold; + color:#333; +} +body .dojoSplitPane { + background: #ededff; + overflow: auto; +} +.mailIconCancel, +.mailIconOptions, +.mailIconFolderDocuments, +.mailIconFolderInbox, +.mailIconFolderSent, +.mailIconGetMail, +.mailIconNewMessage, +.mailIconMailbox, +.mailIconOk, +.mailIconTrashcanFull { + background-image: url('icons.png'); + background-repeat: no-repeat; + width: 16px; + height: 16px; + text-align: center; + padding-right:4px; +} +.dj_ie6 .mailIconCancel, +.dj_ie6 .mailIconOptions, +.dj_ie6 .mailIconFolderDocuments, +.dj_ie6 .mailIconFolderInbox, +.dj_ie6 .mailIconFolderSent, +.dj_ie6 .mailIconGetMail, +.dj_ie6 .mailIconNewMessage, +.dj_ie6 .mailIconMailbox, +.dj_ie6 .mailIconOk, +.dj_ie6 .mailIconTrashcanFull { + background-image: url('icons.gif'); +} +.mailIconCancel { background-position: 0px; } +.mailIconOptions { background-position: -22px; } +.mailIconFolderDocuments { background-position: -44px; } +.mailIconFolderInbox { background-position: -66px; } +.mailIconFolderSent { background-position: -88px; } +.mailIconGetMail { background-position: -110px; } +.mailIconNewMessage { background-position: -132px; } +.mailIconMailbox { background-position: -154px; } +.mailIconOk { background-position: -176px; } +.mailIconTrashcanFull { background-position: -198px; } diff --git a/includes/js/dijit/demos/mail/mail.css.commented.css b/includes/js/dijit/demos/mail/mail.css.commented.css new file mode 100644 index 0000000..02e2635 --- /dev/null +++ b/includes/js/dijit/demos/mail/mail.css.commented.css @@ -0,0 +1,157 @@ +html, body, #main{ + width: 100%; /* make the body expand to fill the visible window */ + height: 100%; + overflow: hidden; /* erase window level scrollbars */ + padding: 0 0 0 0; + margin: 0 0 0 0; + font: 10pt Arial,Myriad,Tahoma,Verdana,sans-serif; +} + +#banner, #footer { +background-color: #ededff; +color: #333; +padding:3px; +} +#banner { text-align:right; } + +/* list of messages +TODO: If i add the rules below as a plain tr/td it seems to mess up accordion, tree, etc. ??? +*/ +#listPane tr:hover, #listPane td:hover, .dijitTreeContent:hover { + background-color: #ededed; + color: #333; + cursor: pointer; +} +#listPane tr, #listPane td { cursor: pointer; } + +table.demoTable { + border-collapse: collapse; +} + +th { + background-color: #4f8ce5; + color: #666; + font-weight:: bold !important; + margin:0; + padding:3px; + background-image:url('../../themes/soria/images/titleBar.png'); + background-position:0px -1px; +} + +.dijitRtl caption, +.dijitRtl th { + text-align:right; +} + +th .arrowNode { + position:relative; + float:left; + top:4px; + left:4px; + width:16px; + height:16px; +} + +.dijitRtl th .arrowNode{ + float:right; +} + +th.arrowUp .arrowNode { + margin-right: 5px; + margin-top: -4px; + margin-bottom: 5px; + width: 15px; + height:15px; + background:transparent url("../../themes/soria/images/spriteRoundedIconsSmall.png") -45px top no-repeat; +} + +th.arrowDown .arrowNode { + margin-right: 5px; + margin-top: -4px; + margin-bottom: 5px; + width: 15px; + height:15px; + background:transparent url("../../themes/soria/images/spriteRoundedIconsSmall.png") -15px top no-repeat; +} + +.demoTable td { padding:3px; } +.demoTable { + border-spacing:0; + padding:0; margin:0; + width:98%; + +} +.oddRow { + background-color: #f2f5f9; +} + +#message { + padding: 8px; +} + +/* Stuff for new messages */ + +.subject { + background: gray; + width: 100%; + padding-top: 5px; + padding-bottom: 10px; +} + +.message { + border: black 2px; +} +.messageHeader { + font:12pt Arial,sans-serif; + font-weight:bold; + color:#333; +} +body .dojoSplitPane { + background: #ededff; + overflow: auto; +} + +/* Icons */ + +.mailIconCancel, +.mailIconOptions, +.mailIconFolderDocuments, +.mailIconFolderInbox, +.mailIconFolderSent, +.mailIconGetMail, +.mailIconNewMessage, +.mailIconMailbox, +.mailIconOk, +.mailIconTrashcanFull { + background-image: url('icons.png'); /* mail icons sprite image */ + background-repeat: no-repeat; + width: 16px; + height: 16px; + text-align: center; + padding-right:4px; +} + +.dj_ie6 .mailIconCancel, +.dj_ie6 .mailIconOptions, +.dj_ie6 .mailIconFolderDocuments, +.dj_ie6 .mailIconFolderInbox, +.dj_ie6 .mailIconFolderSent, +.dj_ie6 .mailIconGetMail, +.dj_ie6 .mailIconNewMessage, +.dj_ie6 .mailIconMailbox, +.dj_ie6 .mailIconOk, +.dj_ie6 .mailIconTrashcanFull { + background-image: url('icons.gif'); +} + + +.mailIconCancel { background-position: 0px; } +.mailIconOptions { background-position: -22px; } +.mailIconFolderDocuments { background-position: -44px; } +.mailIconFolderInbox { background-position: -66px; } +.mailIconFolderSent { background-position: -88px; } +.mailIconGetMail { background-position: -110px; } +.mailIconNewMessage { background-position: -132px; } +.mailIconMailbox { background-position: -154px; } +.mailIconOk { background-position: -176px; } +.mailIconTrashcanFull { background-position: -198px; } diff --git a/includes/js/dijit/demos/mail/mail.json b/includes/js/dijit/demos/mail/mail.json new file mode 100644 index 0000000..67f1a04 --- /dev/null +++ b/includes/js/dijit/demos/mail/mail.json @@ -0,0 +1,75 @@ +{ + identifier: 'id', + label: 'label', + items: [ + + // Hierarchy of folders + { type: 'folder', id: 'inbox', label:'Inbox', icon:'mailIconFolderInbox' }, + { type: 'folder', id: 'deleted', label:'Trash', icon:'mailIconTrashcanFull' }, + { type: 'folder', id: 'save', label:'Save', folders:[ + { id: 'work', label:'stuff for work'}, + { id: 'fun', label:'stuff for fun'} + ]}, + + // Address book (list of people that have sent me messages) + { type: 'address', id: 'adam', label: "Adam Arlen" }, + { type: 'address', id: 'bob', label: "Bob Baxter" }, + { type: 'address', id: 'carrie', label: "Carrie Crow" }, + + // Flat list of messages (each message lists it's folder) + + { type: 'message', id: 'node1.1', folder: 'inbox', label: "today's meeting", sender: "Adam Arlen", sent: "2005-12-19", + text: "Today's meeting is cancelled.
Let's do it tomorrow instead.

Adam" }, + { type: 'message', id: 'node1.2', folder: 'inbox', label: "remaining work", sender: "Bob Baxter", sent: "2005-12-18", + text: + "

Hey, we need to talk about who's gonna do all the left over work. Pick a day you want to meet:

" + }, + { type: 'message', id: 'node1.3', folder: 'inbox', label: "Hey, look!", sender: "Carrey Crown", sent: "2005-12-17", text: + "This is our new simple mail app. What do you think?

You can navigate around this demo with arrows and tabs ...

Regards,
Carrey" + }, + { type: 'message', id: 'node1.4', folder: 'inbox', label: "paint", sender: "David Davis", sent: "2005-12-16", text: + "

what color is good for the new office?

Let me know soon

" + }, + { type: 'message', id: 'node2.1', folder: 'deleted', label: "today's meeting", sender: "Madam Marlen", sent: "2005-12-19", + text: "Today's meeting is cancelled.
Let's do it tomorrow instead.

Madam" }, + { type: 'message', id: 'node2.2', folder: 'deleted', label: "congratulations", sender: "Rob Raxter", sent: "2005-12-18", text: " Good job on that project! " }, + { type: 'message', id: 'node2.3', folder: 'deleted', label: "schedule", sender: "Carrie Crow", sent: "2005-12-17", text: " Are we still on schedule?
The deadline is next Friday. " }, + { type: 'message', id: 'node2.4', folder: 'deleted', label: "paint", sender: "Daniel Dooey", sent: "2005-12-16", text: + "

what color is good for the new office?

Let me know soon

" + }, + { type: 'message', id: 'node3.1', folder: 'work', label: "today's meeting", sender: "Bob Baxter", sent: "2005-12-19", + text: "Today's meeting is cancelled.
Unnecessary.

Bob" }, + { type: 'message', id: 'node3.2', folder: 'work', label: "remaining work", sender: "Bob Baxter", sent: "2005-12-18", text: " Are we still on schedule?
The deadline is next Friday. " }, + { type: 'message', id: 'node3.3', folder: 'work', label: "lunch", sender: "Bob Baxter", sent: "2005-12-17", text: + "Where do you want to go for lunch?

  • Fresh Choice
  • Starbucks
  • Dominos


Let me know..." + }, + { type: 'message', id: 'node3.4', folder: 'work', label: "paint", sender: "Bob Baxter", sent: "2005-12-16", text: + "

what color is good for the new office?

Let me know soon

" + }, + { type: 'message', id: 'node4.1', folder: 'fun', label: "today's meeting", sender: "Jack Jackson", sent: "2005-12-19", + text: "Today's meeting is cancelled.
Let's do it friday instead.

Joe" }, + { type: 'message', id: 'node4.2', folder: 'fun', label: "remaining work", sender: "Jack Jackson", sent: "2005-12-18", + text: + "

Hey, we need to talk about who's gonna do all the left over work. Pick a day you want to meet:

" + }, + { type: 'message', id: 'node4.3', folder: 'fun', label: "lunch", sender: "Jack Jackson", sent: "2005-12-17", text: + "Where do you want to go for lunch?

  • Indian
  • Mexican
  • Chinese
  • Japanese
  • Pizza


Let me know..." + }, + { type: 'message', id: 'node4.4', folder: 'fun', label: "paint", sender: "Jack Jackson", sent: "2005-12-16", text: + "

what color is good for the new office?

Let me know soon

" + }, + + { type: 'message', id: 'node5.1', folder: 'deleted', label: "today's meeting", sender: "Jill Jones", sent: "2005-12-19", + text: "Today's meeting is cancelled.
Let's do it thursday instead.

Jill" }, + { type: 'message', id: 'node5.2', folder: 'deleted', label: "remaining work", sender: "Jill Jones", sent: "2005-12-18", + text: + "

Hey, we need to talk about who's gonna do all the left over work. Pick a day you want to meet:

" + }, + { type: 'message', id: 'node5.3', folder: 'deleted', label: "lunch", sender: "Jill Jones", sent: "2005-12-17", text: + "Where do you want to go for lunch?

  • McDonalds
  • Burger King
  • KFC


Let me know..." + }, + { type: 'message', id: 'node5.4', folder: 'deleted', label: "paint", sender: "Jill Jones", sent: "2005-12-16", text: + "

what color is good for the new office?

Let me know soon

" + } + ] +} diff --git a/includes/js/dijit/demos/mail/newMail.html b/includes/js/dijit/demos/mail/newMail.html new file mode 100644 index 0000000..f269ad3 --- /dev/null +++ b/includes/js/dijit/demos/mail/newMail.html @@ -0,0 +1,8 @@ + diff --git a/includes/js/dijit/demos/nihao.html b/includes/js/dijit/demos/nihao.html new file mode 100644 index 0000000..113a750 --- /dev/null +++ b/includes/js/dijit/demos/nihao.html @@ -0,0 +1,91 @@ + + + + + Dojo Globalization Hello World + + + + + + + + + + + +

Dojo Globalization Hello World

+

+ + +

+
+

+

+ + +

+

+ + \ No newline at end of file diff --git a/includes/js/dijit/demos/nihao/nls/en/helloworld.js b/includes/js/dijit/demos/nihao/nls/en/helloworld.js new file mode 100644 index 0000000..9c726e3 --- /dev/null +++ b/includes/js/dijit/demos/nihao/nls/en/helloworld.js @@ -0,0 +1 @@ +({"localeSelect":"Locale:","contentStr":"Hello Dojo Globalization! Today is ${0}.","dateSelect":"Select a date:","dateStr":"${0} seconds to go from now."}) \ No newline at end of file diff --git a/includes/js/dijit/demos/nihao/nls/fr/helloworld.js b/includes/js/dijit/demos/nihao/nls/fr/helloworld.js new file mode 100644 index 0000000..aaa5560 --- /dev/null +++ b/includes/js/dijit/demos/nihao/nls/fr/helloworld.js @@ -0,0 +1 @@ +({"localeSelect":"Lieu :","contentStr":"Bonjour globalisation de Dojo! Aujourd'hui est ${0}.","dateSelect":"Choisir une date :","dateStr":"${0} secondes à aller dès maintenant."}) \ No newline at end of file diff --git a/includes/js/dijit/demos/nihao/nls/helloworld.js b/includes/js/dijit/demos/nihao/nls/helloworld.js new file mode 100644 index 0000000..9c726e3 --- /dev/null +++ b/includes/js/dijit/demos/nihao/nls/helloworld.js @@ -0,0 +1 @@ +({"localeSelect":"Locale:","contentStr":"Hello Dojo Globalization! Today is ${0}.","dateSelect":"Select a date:","dateStr":"${0} seconds to go from now."}) \ No newline at end of file diff --git a/includes/js/dijit/demos/nihao/nls/zh/helloworld.js b/includes/js/dijit/demos/nihao/nls/zh/helloworld.js new file mode 100644 index 0000000..881d0d3 --- /dev/null +++ b/includes/js/dijit/demos/nihao/nls/zh/helloworld.js @@ -0,0 +1 @@ +({"localeSelect":"区域:","contentStr":"你好Dojo全球化! 今天是${0}。","dateSelect":"选择一个日期:","dateStr":"距离现在还有${0}秒。"}) \ No newline at end of file -- cgit v1.2.3-54-g00ecf