Commit 902cf072 authored by José María Rubio Moral's avatar José María Rubio Moral Committed by JC Brand

Feature/add catalan language (#634)

* feature add catalan language

* feature add catalan language
parent d2ee62da
......@@ -82,6 +82,7 @@ require.config({
"locales": "src/locales",
"jed": "components/jed/jed",
"af": "locale/af/LC_MESSAGES/converse.json",
"ca": "locale/ca/LC_MESSAGES/converse.json",
"de": "locale/de/LC_MESSAGES/converse.json",
"en": "locale/en/LC_MESSAGES/converse.json",
"es": "locale/es/LC_MESSAGES/converse.json",
......
......@@ -2,6 +2,7 @@
## 1.0.0 (Unreleased)
- Add catalan language
- Split converse.js up into different plugin modules. [jcbrand]
- Better Sass/CSS for responsive/mobile views. New mobile-only build. [jcbrand]
- Roster contacts can now be filtered by chat state and roster filters are
......
This diff is collapsed.
This diff is collapsed.
......@@ -9,6 +9,7 @@
(function (root, factory) {
define("locales", ['jed',
'text!af',
'text!ca',
'text!de',
'text!en',
'text!es',
......@@ -28,22 +29,23 @@
], function ($, Jed) {
root.locales = {
'af': arguments[1],
'de': arguments[2],
'en': arguments[3],
'es': arguments[4],
'fr': arguments[5],
'he': arguments[6],
'hu': arguments[7],
'id': arguments[8],
'it': arguments[9],
'ja': arguments[10],
'nb': arguments[11],
'nl': arguments[12],
'pl': arguments[13],
'pt-br': arguments[14],
'ru': arguments[15],
'uk': arguments[16],
'zh': arguments[17]
'ca': arguments[2],
'de': arguments[3],
'en': arguments[4],
'es': arguments[5],
'fr': arguments[6],
'he': arguments[7],
'hu': arguments[8],
'id': arguments[9],
'it': arguments[10],
'ja': arguments[11],
'nb': arguments[12],
'nl': arguments[13],
'pl': arguments[14],
'pt-br': arguments[15],
'ru': arguments[16],
'uk': arguments[17],
'zh': arguments[18]
};
return root.locales;
});
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment