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({ ...@@ -82,6 +82,7 @@ require.config({
"locales": "src/locales", "locales": "src/locales",
"jed": "components/jed/jed", "jed": "components/jed/jed",
"af": "locale/af/LC_MESSAGES/converse.json", "af": "locale/af/LC_MESSAGES/converse.json",
"ca": "locale/ca/LC_MESSAGES/converse.json",
"de": "locale/de/LC_MESSAGES/converse.json", "de": "locale/de/LC_MESSAGES/converse.json",
"en": "locale/en/LC_MESSAGES/converse.json", "en": "locale/en/LC_MESSAGES/converse.json",
"es": "locale/es/LC_MESSAGES/converse.json", "es": "locale/es/LC_MESSAGES/converse.json",
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
## 1.0.0 (Unreleased) ## 1.0.0 (Unreleased)
- Add catalan language
- Split converse.js up into different plugin modules. [jcbrand] - Split converse.js up into different plugin modules. [jcbrand]
- Better Sass/CSS for responsive/mobile views. New mobile-only build. [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 - 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 @@ ...@@ -9,6 +9,7 @@
(function (root, factory) { (function (root, factory) {
define("locales", ['jed', define("locales", ['jed',
'text!af', 'text!af',
'text!ca',
'text!de', 'text!de',
'text!en', 'text!en',
'text!es', 'text!es',
...@@ -28,22 +29,23 @@ ...@@ -28,22 +29,23 @@
], function ($, Jed) { ], function ($, Jed) {
root.locales = { root.locales = {
'af': arguments[1], 'af': arguments[1],
'de': arguments[2], 'ca': arguments[2],
'en': arguments[3], 'de': arguments[3],
'es': arguments[4], 'en': arguments[4],
'fr': arguments[5], 'es': arguments[5],
'he': arguments[6], 'fr': arguments[6],
'hu': arguments[7], 'he': arguments[7],
'id': arguments[8], 'hu': arguments[8],
'it': arguments[9], 'id': arguments[9],
'ja': arguments[10], 'it': arguments[10],
'nb': arguments[11], 'ja': arguments[11],
'nl': arguments[12], 'nb': arguments[12],
'pl': arguments[13], 'nl': arguments[13],
'pt-br': arguments[14], 'pl': arguments[14],
'ru': arguments[15], 'pt-br': arguments[15],
'uk': arguments[16], 'ru': arguments[16],
'zh': arguments[17] 'uk': arguments[17],
'zh': arguments[18]
}; };
return root.locales; 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