From 5ae8ef2df2a393b2942a68b23a8cd0b520fc435c Mon Sep 17 00:00:00 2001 From: expouic Date: Tue, 6 Jan 2015 10:17:10 +0000 Subject: [PATCH] Update Strings.js Add pt (portuguese) language --- i18n/Strings.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/i18n/Strings.js b/i18n/Strings.js index a04ddef8c..25d12ba4b 100644 --- a/i18n/Strings.js +++ b/i18n/Strings.js @@ -19,10 +19,11 @@ define(['text!i18n/_locales/de/messages.json', 'text!i18n/_locales/it/messages.json', 'text!i18n/_locales/ja/messages.json', 'text!i18n/_locales/ko/messages.json', + 'text!i18n/_locales/pt/messages.json', 'text!i18n/_locales/pt_BR/messages.json', 'text!i18n/_locales/zh_CN/messages.json', 'text!i18n/_locales/zh_TW/messages.json'], -function(de, es, en_US, fr, id, it, ja, ko, pt_BR, zh_CN, zh_TW){ +function(de, es, en_US, fr, id, it, ja, ko, pt, pt_BR, zh_CN, zh_TW){ var Strings = {}; Strings['de'] = de; @@ -33,6 +34,7 @@ function(de, es, en_US, fr, id, it, ja, ko, pt_BR, zh_CN, zh_TW){ Strings['it'] = it; Strings['ja'] = ja; Strings['ko'] = ko; + Strings['pt'] = pt; Strings['pt_BR'] = pt_BR; Strings['zh_CN'] = zh_CN; Strings['zh_TW'] = zh_TW; @@ -57,4 +59,4 @@ function(de, es, en_US, fr, id, it, ja, ko, pt_BR, zh_CN, zh_TW){ } return i18nObj; -}); \ No newline at end of file +});