Commit 6c3300fd authored by JC Brand's avatar JC Brand

Merge pull request #24 from Conectivo/master

Add Spanish translations
parents e20d653f 4e32e9e2
*~
*.mo
*.kpf
*.swp
.*.cfg
.hg/
.bzr/
.svn/
.project
.pydevproject
# OSX
.DS_Store
...@@ -4,6 +4,7 @@ Changelog ...@@ -4,6 +4,7 @@ Changelog
0.4 (Unreleased) 0.4 (Unreleased)
---------------- ----------------
- Add Spanish translations. [macagua]
- CSS tweaks: fixed overflowing text in status message and chatrooms list. [jcbrand] - CSS tweaks: fixed overflowing text in status message and chatrooms list. [jcbrand]
- Bugfix: Couldn't join chatroom when clicking from a list of rooms. [jcbrand] - Bugfix: Couldn't join chatroom when clicking from a list of rooms. [jcbrand]
- Add better support for kicking or banning users from chatrooms. [jcbrand] - Add better support for kicking or banning users from chatrooms. [jcbrand]
......
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
...@@ -4,6 +4,7 @@ ...@@ -4,6 +4,7 @@
"jed": "Libraries/jed", "jed": "Libraries/jed",
"af": "locale/af/LC_MESSAGES/af", "af": "locale/af/LC_MESSAGES/af",
"en": "locale/en/LC_MESSAGES/en", "en": "locale/en/LC_MESSAGES/en",
"es": "locale/en/LC_MESSAGES/es",
"de": "locale/de/LC_MESSAGES/de", "de": "locale/de/LC_MESSAGES/de",
"hu": "locale/hu/LC_MESSAGES/hu", "hu": "locale/hu/LC_MESSAGES/hu",
"it": "locale/it/LC_MESSAGES/it" "it": "locale/it/LC_MESSAGES/it"
...@@ -14,13 +15,15 @@ ...@@ -14,13 +15,15 @@
'jed', 'jed',
'af', 'af',
'en', 'en',
'es',
'de', 'de',
'hu', 'hu',
"it" "it"
], function (jed, af, en, de, hu, it) { ], function (jed, af, en, es, de, hu, it) {
root.locales = {}; root.locales = {};
root.locales.af = af; root.locales.af = af;
root.locales.en = en; root.locales.en = en;
root.locales.es = es;
root.locales.de = de; root.locales.de = de;
root.locales.hu = hu; root.locales.hu = hu;
root.locales.it = it; root.locales.it = it;
......
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