From 4de7486b92f37ae5908bb1c7aa5ac1ea3c7e94e4 Mon Sep 17 00:00:00 2001 From: bbezerra Date: Fri, 6 Dec 2019 17:16:07 +0000 Subject: [PATCH 1/4] added logic to change date format based on locale triggering the skill --- i18n/lambda_function.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/i18n/lambda_function.py b/i18n/lambda_function.py index c7ba7fb..acf27fc 100644 --- a/i18n/lambda_function.py +++ b/i18n/lambda_function.py @@ -147,6 +147,7 @@ def can_handle(self, handler_input): def handle(self, handler_input): _ = handler_input.attributes_manager.request_attributes["_"] slots = handler_input.request_envelope.request.intent.slots + locale = handler_input.request_envelope.request.locale # extract slot values year = slots["year"].value @@ -163,10 +164,25 @@ def handle(self, handler_input): handler_input.attributes_manager.persistent_attributes = session_attr handler_input.attributes_manager.save_persistent_attributes() - speech = _(data.REGISTER_BIRTHDAY_MSG).format(month, day, year) + date = self.formatDate(year, month, day, locale) + + speech = _(data.REGISTER_BIRTHDAY_MSG).format(date[0], date[1], date[2]) handler_input.response_builder.speak(speech) return handler_input.response_builder.response + # function to ensure that the date format corresponds with the locale that is triggering thee skill + def formatDate(self, year, month, day, locale): + if locale == 'en-US': + date = [month, day, year] + elif locale == 'jp-JP': + date = [year, month, day] + else: + date = [day, month, year] + + return date + + + class HelpIntentHandler(AbstractRequestHandler): """ From e00bacb4e9fa4083fe5895a540205bc0c182d246 Mon Sep 17 00:00:00 2001 From: bbezerra Date: Fri, 6 Dec 2019 17:17:23 +0000 Subject: [PATCH 2/4] added logic to change date format based on locale triggering the skill --- i18n/lambda_function.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/i18n/lambda_function.py b/i18n/lambda_function.py index acf27fc..b894841 100644 --- a/i18n/lambda_function.py +++ b/i18n/lambda_function.py @@ -170,16 +170,16 @@ def handle(self, handler_input): handler_input.response_builder.speak(speech) return handler_input.response_builder.response - # function to ensure that the date format corresponds with the locale that is triggering thee skill - def formatDate(self, year, month, day, locale): - if locale == 'en-US': - date = [month, day, year] - elif locale == 'jp-JP': - date = [year, month, day] - else: - date = [day, month, year] - - return date + # function to ensure that the date format corresponds with the locale that is triggering thee skill + def formatDate(self, year, month, day, locale): + if locale == 'en-US': + date = [month, day, year] + elif locale == 'jp-JP': + date = [year, month, day] + else: + date = [day, month, year] + + return date From c9b0531bd75961106b3e83078727c10ce3520b99 Mon Sep 17 00:00:00 2001 From: Gaetano Ursomanno Date: Fri, 6 Dec 2019 17:26:27 +0000 Subject: [PATCH 3/4] added all the remaining locales --- i18n/skill.json | 42 +++++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/i18n/skill.json b/i18n/skill.json index 6082ac6..dc10556 100644 --- a/i18n/skill.json +++ b/i18n/skill.json @@ -3,27 +3,51 @@ "publishingInformation": { "locales": { "en-US": { - "name": "Cake Walk" + "name": "cake walk" + }, + "en-AU": { + "name": "cake walk" + }, + "en-CA": { + "name": "cake walk" + }, + "en-GB": { + "name": "cake walk" + }, + "en-IN": { + "name": "cake walk" + }, + "pt-BR": { + "name": "feliz aniversário" + }, + "it-IT": { + "name": "buon compleanno" }, "fr-FR": { "name": "Joyeux Anniversaire" - }, + }, "fr-CA": { "name": "Bonne Fête" }, - "it-IT": { - "name": "Buon Compleanno" + "hi-IN": { + "name": "cake walk" }, "ja-JP": { "name": "ケークウォーク" }, - "en-IN": { - "name": "cake walk" + "de-DE": { + "name": "Herzlichen Glückwunsch" }, - "hi-IN": { - "name": "cake walk" + "es-ES": { + "name": "feliz cumpleaños" + }, + "es-MX": { + "name": "feliz cumpleaños" + }, + "es-US": { + "name": "feliz cumpleaños" } - }, + }, "isAvailableWorldwide": true, "testingInstructions": "Sample Testing Instructions.", "category": "EDUCATION_AND_REFERENCE", From 57a8302d3adb500ee9f0167d5d291832e4f3f5c2 Mon Sep 17 00:00:00 2001 From: Gaetano Ursomanno Date: Wed, 11 Dec 2019 17:12:36 +0000 Subject: [PATCH 4/4] new commit for remaining locales --- i18n/locales/de-DE/LC_MESSAGES/data.mo | Bin 0 -> 2187 bytes i18n/locales/de-DE/LC_MESSAGES/data.po | 70 +++++++++++++ i18n/locales/en-AU/LC_MESSAGES/data.mo | Bin 0 -> 359 bytes i18n/locales/en-AU/LC_MESSAGES/data.po | 64 ++++++++++++ i18n/locales/en-CA/LC_MESSAGES/data.mo | Bin 0 -> 359 bytes i18n/locales/en-CA/LC_MESSAGES/data.po | 64 ++++++++++++ i18n/locales/en-GB/LC_MESSAGES/data.mo | Bin 0 -> 359 bytes i18n/locales/en-GB/LC_MESSAGES/data.po | 64 ++++++++++++ i18n/locales/en-IN/LC_MESSAGES/data.mo | Bin 0 -> 359 bytes i18n/locales/en-IN/LC_MESSAGES/data.po | 64 ++++++++++++ i18n/locales/es-ES/LC_MESSAGES/data.mo | Bin 0 -> 1862 bytes i18n/locales/es-ES/LC_MESSAGES/data.po | 68 +++++++++++++ i18n/locales/es-MX/LC_MESSAGES/data.mo | Bin 0 -> 1862 bytes i18n/locales/es-MX/LC_MESSAGES/data.po | 68 +++++++++++++ i18n/locales/es-US/LC_MESSAGES/data.mo | Bin 0 -> 1862 bytes i18n/locales/es-US/LC_MESSAGES/data.po | 68 +++++++++++++ i18n/locales/pt-BR/LC_MESSAGES/data.mo | Bin 0 -> 2120 bytes i18n/locales/pt-BR/LC_MESSAGES/data.po | 70 +++++++++++++ i18n/models/de-DE.json | 125 +++++++++++++++++++++++ i18n/models/en-CA.json | 124 ++++++++++++++++++++++ i18n/models/en-GB.json | 124 ++++++++++++++++++++++ i18n/models/es-ES.json | 136 +++++++++++++++++++++++++ i18n/models/es-MX.json | 136 +++++++++++++++++++++++++ i18n/models/es-US.json | 136 +++++++++++++++++++++++++ i18n/models/pt-BR.json | 115 +++++++++++++++++++++ 25 files changed, 1496 insertions(+) create mode 100644 i18n/locales/de-DE/LC_MESSAGES/data.mo create mode 100644 i18n/locales/de-DE/LC_MESSAGES/data.po create mode 100644 i18n/locales/en-AU/LC_MESSAGES/data.mo create mode 100644 i18n/locales/en-AU/LC_MESSAGES/data.po create mode 100644 i18n/locales/en-CA/LC_MESSAGES/data.mo create mode 100644 i18n/locales/en-CA/LC_MESSAGES/data.po create mode 100644 i18n/locales/en-GB/LC_MESSAGES/data.mo create mode 100644 i18n/locales/en-GB/LC_MESSAGES/data.po create mode 100644 i18n/locales/en-IN/LC_MESSAGES/data.mo create mode 100644 i18n/locales/en-IN/LC_MESSAGES/data.po create mode 100644 i18n/locales/es-ES/LC_MESSAGES/data.mo create mode 100644 i18n/locales/es-ES/LC_MESSAGES/data.po create mode 100644 i18n/locales/es-MX/LC_MESSAGES/data.mo create mode 100644 i18n/locales/es-MX/LC_MESSAGES/data.po create mode 100644 i18n/locales/es-US/LC_MESSAGES/data.mo create mode 100644 i18n/locales/es-US/LC_MESSAGES/data.po create mode 100644 i18n/locales/pt-BR/LC_MESSAGES/data.mo create mode 100644 i18n/locales/pt-BR/LC_MESSAGES/data.po create mode 100644 i18n/models/de-DE.json create mode 100644 i18n/models/en-CA.json create mode 100644 i18n/models/en-GB.json create mode 100644 i18n/models/es-ES.json create mode 100644 i18n/models/es-MX.json create mode 100644 i18n/models/es-US.json create mode 100644 i18n/models/pt-BR.json diff --git a/i18n/locales/de-DE/LC_MESSAGES/data.mo b/i18n/locales/de-DE/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..89fa5db432e7d95a81e17f880df31cdcdd2c3bdf GIT binary patch literal 2187 zcmbVMO>Z1U5N$#ruv`e@gb*s943cNEYeEPcS;mPS$AS=x7#xsL)U#8&JK3J@rMoA~ zI?B(03n!%f3`-nVxgdT6XMO@Vc-7;z6C?zpwXL@^(_J60Ue#}Joc~^7y@vfZcErAj z{VTSt*I!WT72rkSo4~h#?*lIZe*_MIIq*;5$H4rYQazvp-UR*x+yVX$l=JzEN@Y0v z3-DDu|8ZWacYx z(ta!XVKrb19AjlifwV2D7Du7+Oq!N=;W*%w;X&jwr>!A8P?RvHtxeBv$`-G1by69V zEJZ&jJ<^q3L2P27aNg2q?qN<>;&_eLyS>Yj4KB_Y{*X^PvZ?Mm@8@fTj9g<%Nvg3W z`w%6-nfR5nL01UohPLU+^U(RaF*@?5Iv8s^39zt=SUlHU7t4s{W^$LJdGr|6mlOkk5s6S%% za2%Q3u&sC^IAs^5Ue-kvczI2m;OIdUA}9iltDZ+ykdoE&Q@yOV7HB5b8Z}j!yhu5! z!I+>InhE!b+Li=IDCnlz_wE67knNS(mncc)Y@a&&ce2l+C3(uW5oceD`%%{GX5Dq_ zeb~qU?&WT`^QpF@Mvpi!S;Y=s<#qkOc+UV7~@MhCt7o*G(8P&lXR{MrKsZ zY4O8w2*0Ja8X=XibT>_iS;c7SWOnLZQAvw|AoiA3y2MP*6XbS0Oe(YCP63>q|5`_~;olt~`t2r33M@(D;7;CY6a+WDB*Qw#aJhFbU?&t{j~~+w8||hOH(7 S%@)Ur@V3ZM6fGr&D*grgD7JzC literal 0 HcmV?d00001 diff --git a/i18n/locales/de-DE/LC_MESSAGES/data.po b/i18n/locales/de-DE/LC_MESSAGES/data.po new file mode 100644 index 0000000..50d0196 --- /dev/null +++ b/i18n/locales/de-DE/LC_MESSAGES/data.po @@ -0,0 +1,70 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: de_DE\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "Hallo! Herzlich willkommen zu Herzlichen Glückwunsch. Wann hast du Geburtstag?" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "Ich bin am 6. November 2014 geboren. Wann bist du geboren?" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "Willkommen zurück. Es sieht so aus, als ob noch {} Tag bis zu Deinem {}. Geburtstag verbleibt." + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "Willkommen zurück. Es sieht so aus, als ob noch {} Tage zu Deinem {}. Geburtstag verbleiben." + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "Alles Gute zum {}. Geburtstag!" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "Danke, ich werde mir merken, dass du am {} {} {} geboren wurdest." + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" +"Du kannst mir sagen, wann du Geburtstag hast und ich werde es mir merken. " +"Du kannst auch einfach 'merke dir meinen Geburtstag' sagen und ich werde " +"dir weiterhelfen. Was würdest du gerne probieren?" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "Tschüss!" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "Sorry, ich konnte nicht verstehen was du gesagt hast. Kannst du das bitte umformulieren?" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" +"Ich kann deine Zeitzone nicht bestimmen. Bitte überprüfe deine Geräteoptionen " +"und stelle sicher, dass eine Zeitzone ausgeewählt ist. Öffne danach den Skill " +"wieder und probiere es erneut!" \ No newline at end of file diff --git a/i18n/locales/en-AU/LC_MESSAGES/data.mo b/i18n/locales/en-AU/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..1e0b8aaecd934b59ab3d44dfc15a2f3a40a6e96a GIT binary patch literal 359 zcmYL^&q~BF5XM*Zl%r=4BY047YFbw8ru5*SU0HCkNLRc`Y{y#ZCMC^^eGp&IXK|{s z`@xUQFkik*zW4XOMyws?fH`7znNwy^%peaZd=8$CGH2hZ@Hj8=kz7|>qd;W$_&^`^ z(BX~tq#%;v1Vf23g789dEyq%dJ8i19t_X9|E55gwFQ(g=Fp%Qf8c)V!-nX3M>C>OJ zjjl}s#hZ2=`E;4jFy8u{Hr*>ZoSMRxwW$=uFSQr9WXSO*C0_Lk+P)$`gavI6VQ?;< z@ZVsag3MA`dx(N481sr9zdock+7DBaHEX9EoLRT(6qxq6?b0ZLzcM{GaF{}Pl5GB` LfXwsdQjC58r|o0e literal 0 HcmV?d00001 diff --git a/i18n/locales/en-AU/LC_MESSAGES/data.po b/i18n/locales/en-AU/LC_MESSAGES/data.po new file mode 100644 index 0000000..5e3fb9f --- /dev/null +++ b/i18n/locales/en-AU/LC_MESSAGES/data.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: en_AU\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "" + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "" + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "" + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" diff --git a/i18n/locales/en-CA/LC_MESSAGES/data.mo b/i18n/locales/en-CA/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..4688c20caf9375e7976b6d7d3e177ba8badab5b5 GIT binary patch literal 359 zcmYL^!Ait15QbOul%r=4BY047YFbw8ru3let}M7%q>49*?N}?_q@-D~58~_jEKXH+ zfB47@^XJdxdw=h1#M)sFm?LJFIb{aL4DxWo=iu2WbM~DIkBbr?$#u0g3Pg5?_w-Q@ z9bRis3L+U!Fq9}G2rm@ZaxA5|)uvkOiZCa=;(N=*a<+{L11YA~crqUIzU358pZ=_E zbZrtS-n8q;rw{oYqBaz{V)|-vv#_{xpk{ffoXr+E{ziSE7M~Ghbe?7$>x6w K$UILk#pnm8xnsuw literal 0 HcmV?d00001 diff --git a/i18n/locales/en-CA/LC_MESSAGES/data.po b/i18n/locales/en-CA/LC_MESSAGES/data.po new file mode 100644 index 0000000..b6b6320 --- /dev/null +++ b/i18n/locales/en-CA/LC_MESSAGES/data.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: en_CA\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "" + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "" + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "" + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" \ No newline at end of file diff --git a/i18n/locales/en-GB/LC_MESSAGES/data.mo b/i18n/locales/en-GB/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..699f64cdcd31de8115479957c97dbd18033ba7fb GIT binary patch literal 359 zcmYL^!AiqG5QZyy+M{O=BY047;wDr~H{?=nOTl80DBfgE#u!O=!)7byL3}-*#feJ$ z!^h4r|NcAseR%LSV(l?U%n7s4oHK)B26;H)bMS1HIr~n9$7P9+M`jFaaKTJi|Y@BXzZr!?5VA|idOQQt-%JkI0aSGvCvi+X| KGS7>t82tdJ%wx;| literal 0 HcmV?d00001 diff --git a/i18n/locales/en-GB/LC_MESSAGES/data.po b/i18n/locales/en-GB/LC_MESSAGES/data.po new file mode 100644 index 0000000..d66845e --- /dev/null +++ b/i18n/locales/en-GB/LC_MESSAGES/data.po @@ -0,0 +1,64 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: en_GB\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "" + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "" + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "" + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" \ No newline at end of file diff --git a/i18n/locales/en-IN/LC_MESSAGES/data.mo b/i18n/locales/en-IN/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..f44a57f6a35c58b4ce2b30241c188b46aafb7d08 GIT binary patch literal 359 zcmYL^!Ait15QbOul%r=4BY047YFbw8X6Z%Um4d59s(6#wj72y@a)zPCshvu#WmNO5J2C*v{iTTb!x>Cf6m z*JcXEyLKJ<, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: en_IN\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "" + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "" + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "" + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" \ No newline at end of file diff --git a/i18n/locales/es-ES/LC_MESSAGES/data.mo b/i18n/locales/es-ES/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..30b72642cd6b3815221e14071d9f6be945c491a4 GIT binary patch literal 1862 zcma)6&u<$=6ds^0U^r0332}J75RkH4+l0_MiVRJYG!iX_hL)btc=y?!dUj@+nRVDy z{WCamf*Xe(5I3&AA^rg_J@Y4UgKu^lSBO+%l<}9Do%i1Nem;5g!gm7eHSBk=1NLR? z-?8I*;{_pJ0bT~a1$-O$0q_d&dte4kfqw%(2Bt3x(Fa=K0q_UlKJZUqe4oA~M1r@! z0bj@YuM0wK054u_-zPwYa{$KsC%|`smo5o01SY_1z&UUm_#;pQ{{TX5v!X9?b+BPp z;8WuRV7*{oyo?R?0u-9{YWzL4HlNho6*pyB*7WdEnA1eLFwbR;OV-+U=^pFM7EHm? zo?I}UNWDnu-dqM!o@!gUwaiEyQ6|kspqvA{LK$u!1Xb{NCITg{6uN;%4Gg%n+c%?ZDoTv236c#8%8fB}~u`Su)3Ze_8b)zY`n&eC> z(*?JvVPc)3+jg1Kc9?I{px57u-azn#VGsT^Pe$U7b*|ndcw{S`N2e;2v-2SmJc)MW zTQ3#J>`Bv{98aw)DlG$##PM93g@=X>aB*C4F*#!#B^z@Mn}?4Odi;sAP)}rr5FZ87 z)-F70g=oO77!GW_MSeW!1f|;;{ws6;Lk$wwYI&}bRNMzgB$EQlfRKN1b}$^6?6l2z z6X3?X5c6ehK!VT2r1q8`R6Za?2;+w1nes7ZMZK<9f`5C4^RimQJ&mIN|ZH2>Wn{2zCbO-Q*r}5hcUU=l727g4XFRo5dZhK zdcDr4(#$G38HKUo;86@NRI0gS^|F?u9O-zw1c{p4wbt556BzD-KwzQ`)PF*fp!4t?$xJTT|9tG-VNQ(fwA-E?rk_mTXjR(U|lfSyX-{ zHSAERXv&BVI-iWpQ~|+YN8+|6^kZoQRII0hMB`S3fgovaopeg3ggmOL%D_{isRCIr?C1J zwZkrlt$vDX&-ZlLwlIFvCUk3J zT{@5&Goxv^)niPcQiAd~6^3ApIWEwOO(xElJQIAbTq?$qyd_y;BuE!$^|{$d=?3O- j3~-w&BqW}5e(GQIf0S*Dq2)xMSMa;UWK$SGekA?@_BB7& literal 0 HcmV?d00001 diff --git a/i18n/locales/es-ES/LC_MESSAGES/data.po b/i18n/locales/es-ES/LC_MESSAGES/data.po new file mode 100644 index 0000000..c960b52 --- /dev/null +++ b/i18n/locales/es-ES/LC_MESSAGES/data.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_ES\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "Hola! Bienvenidos a Feliz Cumpleaños. Cual es tu fecha de nacimiento?" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "Yo nací el 6 de noviembre 2014. Y tú?" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "Hola otra vez! Falta {} día para que cumplas {} año." + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "Hola otra vez! Faltan {} días para que cumplas {} años." + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "Feliz Cumpleaños! Hoy cumples {} año!" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "Gracias, me acordaré de tu fecha de nacimiento: {} {} {}." + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" +"PPuedo apuntarme tu fecha de nacimiento. Dime la fecha o dime de" +"acordarme de tu cumpleaños. Qué prefieres?" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "Hasta luego!" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "Perdona, no entendido. Puedes repetir?" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" +"No he potido determinar tu zona horaria. Verifica la configuración" +"de tu dispositivo, y intenta otra vez." \ No newline at end of file diff --git a/i18n/locales/es-MX/LC_MESSAGES/data.mo b/i18n/locales/es-MX/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..cfa93a14daea02aa77da276c0bb904d167e621b1 GIT binary patch literal 1862 zcma)6O>Y}T7#^S>U^r0J6XNjtLO{xH?GQriC^9rn(nzEj2>m#r@$PGT>e-oPX4YX- z^=EM61UC*nAZ}cJL;L|QJ@XT|!85y!D?}(3*QN>*RkKh4%k<) zf5(pN&6k9D6?g@B75Fyr1K>5__rMI80{;en3`}1Zq7Ssdec%tkJ>Z|f_&$9_hy-tc z1HOUtUl)W}175t?zE6M(=KzfNPl4|OFI^I108D^4fHUA0@JFBq{sDyAW<_7(>R`jH zz^BFsz-qy~xQq?;0u-9{TKqk*HXqmA6}M$s*7WFcn9*3dFw13)OV-+U=^pFM7EHm? zuADQSNIg&K-b@Bko@!gUmCR5aQYOt>pqvA{LK$u!1Xb{z{PRF#rTYIlx)m3Y#u#E=d?!tL24CQt<#BkxU9G14916*}-sNvXeIB zO@JHkLd=)30SP`6liFK)SoweuA&hH|r^?5a74@oK)>;j860P%m^6 zW8Z|f4T2>kbSOs7K13ZPhk0@rDN)u8s5AO3`2w{RPsuIt9K___Ncz2`w?X}n2Kc|X z+3R&am1bJWDJRD)3&9>(@%SyU26iHkQ~<~v;_V(Tq`wdXd87a9V&I_tKc79e@^3)wzdpL( zL3g8QNmo3zU9rzvoziYq#I9NXY<-t*+nTcGqA81bi|)5tcIl>KvtXlgi^in?$fEKq zsbPmgMH5DJ(D`I!rV0oKI}~>;p&v^dpkg%@BpSCO3!edMCFD^}R0f_B9cLzL z3b!(~`~^)HU+2n~)~lcvcAaWcO@<`d;3O^hG}dc0ynI5eX{(`O7YaRxj%l0x0fptS zs2z4WEU%+p2^`tvpoYOzaSlHmmmHKEii2ofqJ2^NGP5q1ZuwJGd%mZGwuSMVHlbS) z>(ai|m>EsOEuUZll@gS{sW1d%%yEHMY%+1a literal 0 HcmV?d00001 diff --git a/i18n/locales/es-MX/LC_MESSAGES/data.po b/i18n/locales/es-MX/LC_MESSAGES/data.po new file mode 100644 index 0000000..38b4406 --- /dev/null +++ b/i18n/locales/es-MX/LC_MESSAGES/data.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_MX\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "Hola! Bienvenidos a Feliz Cumpleaños. Cual es tu fecha de nacimiento?" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "Yo nací el 6 de noviembre 2014. Y tú?" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "Hola otra vez! Falta {} día para que cumplas {} año." + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "Hola otra vez! Faltan {} días para que cumplas {} años." + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "Feliz Cumpleaños! Hoy cumples {} año!" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "Gracias, me acordaré de tu fecha de nacimiento: {} {} {}." + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" +"PPuedo apuntarme tu fecha de nacimiento. Dime la fecha o dime de" +"acordarme de tu cumpleaños. Qué prefieres?" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "Hasta luego!" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "Perdona, no entendido. Puedes repetir?" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" +"No he potido determinar tu zona horaria. Verifica la configuración" +"de tu dispositivo, y intenta otra vez." diff --git a/i18n/locales/es-US/LC_MESSAGES/data.mo b/i18n/locales/es-US/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..afef721d52e4f07afdb16751f97f2855c4793671 GIT binary patch literal 1862 zcma)6&u<$=6ds^0U^r0332}J75RkH4+l0_MiVRJYG!iX_rj(x0c=y?!dUj@+nRVDy z{WCamf*Xe(5I3&AA^rg_J@Y4UgKu^lSBO+%l<}9Do%i1Nem;5g!gm7eHSBk=1NLR? z-?8I*;{_pJ0bT~a1$-O$0q_d&dte4kfqw%(2Bt3x(Fa=K0q_UlKJZUqe4oA~M1r@! z0bj@YuM0wK054u_-zPwYa{$KsC%|`smo5o01SY_1z&UUm_#;pQ{{TX5v!X9?b+BPp z;8WuRV7*{oyo?R?0u-9{YWzL4HlNho6*pyB*7WdEnA1eLFwbR;OV-+U=^pFM7EHm? zo?I}UNWDnu-dqM!o@!gUwaiEyQ6|kspqvA{LK$u!1Xb{NCITg{6uN;%4Gg%n+c%?ZDoTv236c#8%8fB}~u`Su)3Ze_8b)zY`n&eC> z(*?JvVPc)3+jg1Kc9?I{px57u-azn#VGsT^Pe$U7b*|ndcw{S`N2e;2v-2SmJc)MW zTQ3#J>`Bv{98aw)DlG$##PM93g@=X>aB*C4F*#!#B^z@Mn}?4Odi;sAP)}rr5FZ87 z)-F70g=oO77!GW_MSeW!1f|;;{ws6;Lk$wwYI&}bRNMzgB$EQlfRKN1b}$^6?6l2z z6X3?X5c6ehK!VT2r1q8`R6Za?2;+w1nes7ZMZK<9f`5C4^RimQJ#E>lqhS4)ER%4e1Teur{o5B4r6k!CH-E~8&LnFA^z`e z^?IF8rI}T7#>p|u0&=&GZtXu)(@%SyJ!=A+kQ~<~v;_V(Tq!kbXa{vG9V&JA?(so# z_1QZoji0hh_DyDURPm6mPE_a|vS9}%d2+oTQd!SX<4~5O*ZS#)ov)Io53C!~*mAA{ z4bnln1&SWlqgIqs{Ms4o%1NCZpuGH$OxYa$?qCPiAHVFrXQ;bN{r7j){tb!!*LUx9 z(A_9n(iP8aR~)cbr?giUv1?X8Ti>Odwx+DPXv!kqqWi6uUAnH=EZL~sqA}?|vZ(w@ zYS^Jr(UcJ#bUqoGsRDw*j>K(C=*Q9qs8~-0iN>u613}W533*ggm4T;3$C;^` z!L3ZKenHd4*SYeg^(v^P-K3gSlOahqI7v%BjrAH0uO1U?+HPprr9#i4W7;OaPhs^d zYKL78%bTcI0!KDEs9`WwoWl>tB?sk3;xJm5XkV1R%&g0$Tm2N(p6}_fZDIVTP3YFd zx^y5lW=7L+tH+o?r3B?~Dh$CGb6lVmn@pT9c_#Q=xm1iJc}udyNRTeh>T|P^(hbbv j7~nQlNJu>A{M5hZ|0vrQL(7Riui$ry$)+%X{7C!*8)QG` literal 0 HcmV?d00001 diff --git a/i18n/locales/es-US/LC_MESSAGES/data.po b/i18n/locales/es-US/LC_MESSAGES/data.po new file mode 100644 index 0000000..5453b0b --- /dev/null +++ b/i18n/locales/es-US/LC_MESSAGES/data.po @@ -0,0 +1,68 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR ORGANIZATION +# FIRST AUTHOR , YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es_US\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "Hola! Bienvenidos a Feliz Cumpleaños. Cual es tu fecha de nacimiento?" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "Yo nací el 6 de noviembre 2014. Y tú?" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "Hola otra vez! Falta {} día para que cumplas {} año." + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "Hola otra vez! Faltan {} días para que cumplas {} años." + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "Feliz Cumpleaños! Hoy cumples {} año!" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "Gracias, me acordaré de tu fecha de nacimiento: {} {} {}." + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" +"PPuedo apuntarme tu fecha de nacimiento. Dime la fecha o dime de" +"acordarme de tu cumpleaños. Qué prefieres?" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "Hasta luego!" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "Perdona, no entendido. Puedes repetir?" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" +"No he potido determinar tu zona horaria. Verifica la configuración" +"de tu dispositivo, y intenta otra vez." diff --git a/i18n/locales/pt-BR/LC_MESSAGES/data.mo b/i18n/locales/pt-BR/LC_MESSAGES/data.mo new file mode 100644 index 0000000000000000000000000000000000000000..def3beb5155939fb56f83d3270735ae22933928c GIT binary patch literal 2120 zcmbVNO>Y}T7#^T}nF~c6D#YRSDIjIHb_i{8WTnkli9{Q>goa8;XuLbNr=FcLGqVm( z)t}K57eWuH9Fe$i#5aV*Kj6ZJpTMm=?{1PNDhR|XvyXT8o%iE;pLz4!8|NMhT(4oh zjTN!ZWBr1~*Xz#-@e1%f@J--b!1sU`fnNbLUxm|9MV`3&1D9b>M{;h4>Zt8SpZ25k_5L4!jEd26z|vJ8%!!eOZX_fe(Rj zTU}fWUkxmTt>SPEr!RyT*dh={Aar%T%J=Ke<^7pziVx*vGNbzs;)wd%$5Ae4c&UtW zP1;i?bA_VlXkCsK?MpLGX>TMW=|D4A`jb7YVw*B)7b4{OT@sb`c7 zin5W)#`U*cO?9Rys2H^!29h?Xf&+!pE0T1)7l8w;jLM?QQ@S=l1d5!-r1t5Rn<$G{ z*gDq6RGy-rksL~Go5+nl^qseK(@j&l6i17+)M_ttHQ2bX5D)cKCadCO=lyJvP?0N5 z&PA0rS3X2eaG&F{ZIBwttV>%xc{OmpD2hz1{TlO{O2SB40RK;wc}Lmjwf#q2~c3$+K@=WY#4 zomWw~9XcBk^g{d0eMN0ef+I9^RrI{O2OT8ad2$CW(av_L(c4LGLreUWY#`4LH}`|2 z-AY(}ivr*ZY?9L|e64jUS;>18h zE6}aMv4K^*(;>PUmHDBdTEj^$SZWnPO8VyU0Q+q`Ahd5OU*8| z-(5MW4-w<%YquL>7g?80v89YYK;M7*5wzS{ONB#lsA6o(6J? zJCe`?{Y4332i`r, YEAR. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: 2019-10-02 17:11-0400\n" +"PO-Revision-Date: 2019-10-02 17:19-0400\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: pygettext.py 1.5\n" +"X-Generator: Poedit 2.2.4\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: pt_BR\n" + +#: alexa\data.py:3 +msgid "Hello! Welcome to Cake walk. What is your birthday?" +msgstr "Olá! Boas vindas à skill Feliz Aniversário. Quando você nasceu?" + +#: alexa\data.py:4 +msgid "I was born Nov. 6th, 2014. When were you born?" +msgstr "Eu nasci em 6 de novembro de 2014. Quando você nasceu?" + +#: alexa\data.py:5 +msgid "Welcome back. It looks like there is {} day until your {}th birthday." +msgstr "Que bom que você está de volta! Parece que falta {} dia até o seu {}º aniversário." + +#: alexa\data.py:7 +msgid "Welcome back. It looks like there are {} days until your {}th birthday" +msgstr "Que bom que você está de volta! Parece que faltam {} dias até o seu {}º aniversário." + +#: alexa\data.py:9 +msgid "Happy {}th birthday!" +msgstr "Feliz {}º aniversário!" + +#: alexa\data.py:10 +msgid "Thanks, I'll remember that you were born {} {} {}" +msgstr "Obrigada, eu vou lembrar que você nasceu no dia {} de {} de {}." + +#: alexa\data.py:11 +msgid "" +"You can tell me your date of birth and I'll take note. You can also just " +"say, 'register my birthday' and I will guide you. Which one would you like " +"to try?" +msgstr "" +"Você pode me dizer o dia em que você nasceu e eu vou tomar nota. Você " +"também pode dizer, 'anote meu aniversário' eu irei guiar sua interação. " +"Qual deles você quer tentar?" + +#: alexa\data.py:12 +msgid "Goodbye!" +msgstr "Tchau!" + +#: alexa\data.py:13 +msgid "Sorry, I couldn't understand what you said. Can you reformulate?" +msgstr "Desculpe, eu não entendi o que você disse. Pode reformular?" + +#: alexa\data.py:15 +msgid "" +"I can't determine your timezone. Please check your device settings and make " +"sure a timezone was selected. After that please reopen the skill and try " +"again!" +msgstr "" +"Não consegui determinar seu fuso horário. Por favor verifique as " +"configurações de seu aparelho e certifique-se de que um fuso horário está " +"selecionado. Depois disso, reinicie a skill e tente novamente!" \ No newline at end of file diff --git a/i18n/models/de-DE.json b/i18n/models/de-DE.json new file mode 100644 index 0000000..e732bd6 --- /dev/null +++ b/i18n/models/de-DE.json @@ -0,0 +1,125 @@ +{ + "interactionModel": { + "languageModel": { + "invocationName": "herzlichen glückwunsch", + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "name": "AMAZON.NavigateHomeIntent", + "samples": [] + }, + { + "name": "CaptureBirthdayIntent", + "slots": [ + { + "name": "month", + "type": "AMAZON.Month" + }, + { + "name": "day", + "type": "AMAZON.Ordinal" + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER" + } + ], + "samples": [ + "{day} {month}", + "{day} {month} {year}", + "{month} {year}", + "Ich bin am {day} {month} geboren", + "Ich bin am {day} {month} {year} geboren", + "Ich bin am {month} {year} geboren", + "merke dir meinen Geburtstag" + ] + } + ], + "types": [] + }, + "dialog": { + "intents": [ + { + "name": "CaptureBirthdayIntent", + "confirmationRequired": false, + "prompts": {}, + "slots": [ + { + "name": "month", + "type": "AMAZON.Month", + "elicitationRequired": true, + "confirmationRequired": false, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.795077103633" + } + }, + { + "name": "day", + "type": "AMAZON.Ordinal", + "elicitationRequired": true, + "confirmationRequired": false, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.985837334781" + } + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER", + "elicitationRequired": true, + "confirmationRequired": false, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.27341833344" + } + } + ] + } + ], + "delegationStrategy": "ALWAYS" + }, + "prompts": [ + { + "id": "Elicit.Slot.303899476312.795077103633", + "variations": [ + { + "type": "PlainText", + "value": "Ich wurde im November geboren. In welchem Monat wurdest du geboren?" + }, + { + "type": "PlainText", + "value": "In welchem Monat wurdest du geboren?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.985837334781", + "variations": [ + { + "type": "PlainText", + "value": "Ich wurde am sechsten geboren. An welchem Tag wurdest du geboren?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.27341833344", + "variations": [ + { + "type": "PlainText", + "value": "Ich wurde im Jahr zweitausendvierzehn geboren. In welchem Jahr wurdest du geboren?" + } + ] + } + ] + }, + "version": "2" + } \ No newline at end of file diff --git a/i18n/models/en-CA.json b/i18n/models/en-CA.json new file mode 100644 index 0000000..5a0b593 --- /dev/null +++ b/i18n/models/en-CA.json @@ -0,0 +1,124 @@ +{ + "interactionModel": { + "languageModel": { + "invocationName": "cake walk", + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "name": "AMAZON.NavigateHomeIntent", + "samples": [] + }, + { + "name": "CaptureBirthdayIntent", + "slots": [ + { + "name": "month", + "type": "AMAZON.Month" + }, + { + "name": "day", + "type": "AMAZON.Ordinal" + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER" + } + ], + "samples": [ + "{month} {day}", + "{month} {day} {year}", + "{month} {year}", + "I was born on {month} {day} ", + "I was born on {month} {day} {year}", + "I was born on {month} {year}", + "register my birthday" + ] + } + ], + "types": [] + }, + "dialog": { + "intents": [ + { + "name": "CaptureBirthdayIntent", + "confirmationRequired": false, + "prompts": {}, + "slots": [ + { + "name": "month", + "type": "AMAZON.Month", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.795077103633" + } + }, + { + "name": "day", + "type": "AMAZON.Ordinal", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.985837334781" + } + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.27341833344" + } + } + ] + } + ], + "delegationStrategy": "ALWAYS" + }, + "prompts": [ + { + "id": "Elicit.Slot.303899476312.795077103633", + "variations": [ + { + "type": "PlainText", + "value": "I was born in November. What month were you born?" + }, + { + "type": "PlainText", + "value": "What month were you born?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.985837334781", + "variations": [ + { + "type": "PlainText", + "value": "I was born on the sixth. What day were you born?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.27341833344", + "variations": [ + { + "type": "PlainText", + "value": "I was born in two thousand fourteen, what year were you born?" + } + ] + } + ] + } +} \ No newline at end of file diff --git a/i18n/models/en-GB.json b/i18n/models/en-GB.json new file mode 100644 index 0000000..245304d --- /dev/null +++ b/i18n/models/en-GB.json @@ -0,0 +1,124 @@ +{ + "interactionModel": { + "languageModel": { + "invocationName": "cake walk", + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "name": "AMAZON.NavigateHomeIntent", + "samples": [] + }, + { + "name": "CaptureBirthdayIntent", + "slots": [ + { + "name": "month", + "type": "AMAZON.Month" + }, + { + "name": "day", + "type": "AMAZON.Ordinal" + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER" + } + ], + "samples": [ + "{month} {day}", + "{month} {day} {year}", + "{month} {year}", + "I was born on {month} {day} ", + "I was born on {month} {day} {year}", + "I was born on {month} {year}", + "register my birthday" + ] + } + ], + "types": [] + }, + "dialog": { + "intents": [ + { + "name": "CaptureBirthdayIntent", + "confirmationRequired": false, + "prompts": {}, + "slots": [ + { + "name": "month", + "type": "AMAZON.Month", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.795077103633" + } + }, + { + "name": "day", + "type": "AMAZON.Ordinal", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.985837334781" + } + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.27341833344" + } + } + ] + } + ], + "delegationStrategy": "ALWAYS" + }, + "prompts": [ + { + "id": "Elicit.Slot.303899476312.795077103633", + "variations": [ + { + "type": "PlainText", + "value": "I was born in November. What month were you born?" + }, + { + "type": "PlainText", + "value": "What month were you born?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.985837334781", + "variations": [ + { + "type": "PlainText", + "value": "I was born on the sixth. What day were you born?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.27341833344", + "variations": [ + { + "type": "PlainText", + "value": "I was born in two thousand fourteen, what year were you born?" + } + ] + } + ] + } +} \ No newline at end of file diff --git a/i18n/models/es-ES.json b/i18n/models/es-ES.json new file mode 100644 index 0000000..b86c272 --- /dev/null +++ b/i18n/models/es-ES.json @@ -0,0 +1,136 @@ +{ + "interactionModel": { + "languageModel": { + "invocationName": "feliz cumpleaños", + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "name": "AMAZON.NavigateHomeIntent", + "samples": [] + }, + { + "name": "CaptureBirthdayIntent", + "slots": [ + { + "name": "month", + "type": "AMAZON.Month" + }, + { + "name": "day", + "type": "AMAZON.NUMBER" + }, + { + "name": "year", + "type": "AMAZON.NUMBER" + } + ], + "samples": [ + "{month} del {year}", + "{day} de {month}", + "el año {year}", + "en {year}", + "nací en {year}", + "nací en {year}", + "el {day} de {month}", + "el día {day} de {month}", + "mi fecha de nacimiento es el {day} de {month} de {year}", + "mi fecha de nacimiento es el {day} de {month} {year}", + "nací el {day} de {month} {year}", + "mi cumpleaños es el {day} de {month} {year}", + "registra mi cumpleaños", + "apunta mi cumpleaños", + "apunta mi fecha de nacimiento", + "registra mi fecha de nacimiento", + "recuerda mi cumpleaños", + "acuérdate de mi cumpleaños", + "apúntate mi cumple" + ] + } + ], + "types": [] + }, + "dialog": { + "intents": [ + { + "name": "CaptureBirthdayIntent", + "confirmationRequired": false, + "prompts": {}, + "slots": [ + { + "name": "month", + "type": "AMAZON.Month", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.795077103633" + } + }, + { + "name": "day", + "type": "AMAZON.NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.985837334781" + } + }, + { + "name": "year", + "type": "AMAZON.NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.27341833344" + } + } + ] + } + ], + "delegationStrategy": "ALWAYS" + }, + "prompts": [ + { + "id": "Elicit.Slot.303899476312.795077103633", + "variations": [ + { + "type": "PlainText", + "value": "Yo nací en noviembre. Y tú?" + }, + { + "type": "PlainText", + "value": "Cual es tu mes de nacimiento?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.985837334781", + "variations": [ + { + "type": "PlainText", + "value": "Nací el 6. Qué día del mes es tu cumpleaños?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.27341833344", + "variations": [ + { + "type": "PlainText", + "value": "Nací en dos mil catorce, y tú en qué año?" + } + ] + } + ] + } +} \ No newline at end of file diff --git a/i18n/models/es-MX.json b/i18n/models/es-MX.json new file mode 100644 index 0000000..b86c272 --- /dev/null +++ b/i18n/models/es-MX.json @@ -0,0 +1,136 @@ +{ + "interactionModel": { + "languageModel": { + "invocationName": "feliz cumpleaños", + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "name": "AMAZON.NavigateHomeIntent", + "samples": [] + }, + { + "name": "CaptureBirthdayIntent", + "slots": [ + { + "name": "month", + "type": "AMAZON.Month" + }, + { + "name": "day", + "type": "AMAZON.NUMBER" + }, + { + "name": "year", + "type": "AMAZON.NUMBER" + } + ], + "samples": [ + "{month} del {year}", + "{day} de {month}", + "el año {year}", + "en {year}", + "nací en {year}", + "nací en {year}", + "el {day} de {month}", + "el día {day} de {month}", + "mi fecha de nacimiento es el {day} de {month} de {year}", + "mi fecha de nacimiento es el {day} de {month} {year}", + "nací el {day} de {month} {year}", + "mi cumpleaños es el {day} de {month} {year}", + "registra mi cumpleaños", + "apunta mi cumpleaños", + "apunta mi fecha de nacimiento", + "registra mi fecha de nacimiento", + "recuerda mi cumpleaños", + "acuérdate de mi cumpleaños", + "apúntate mi cumple" + ] + } + ], + "types": [] + }, + "dialog": { + "intents": [ + { + "name": "CaptureBirthdayIntent", + "confirmationRequired": false, + "prompts": {}, + "slots": [ + { + "name": "month", + "type": "AMAZON.Month", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.795077103633" + } + }, + { + "name": "day", + "type": "AMAZON.NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.985837334781" + } + }, + { + "name": "year", + "type": "AMAZON.NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.27341833344" + } + } + ] + } + ], + "delegationStrategy": "ALWAYS" + }, + "prompts": [ + { + "id": "Elicit.Slot.303899476312.795077103633", + "variations": [ + { + "type": "PlainText", + "value": "Yo nací en noviembre. Y tú?" + }, + { + "type": "PlainText", + "value": "Cual es tu mes de nacimiento?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.985837334781", + "variations": [ + { + "type": "PlainText", + "value": "Nací el 6. Qué día del mes es tu cumpleaños?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.27341833344", + "variations": [ + { + "type": "PlainText", + "value": "Nací en dos mil catorce, y tú en qué año?" + } + ] + } + ] + } +} \ No newline at end of file diff --git a/i18n/models/es-US.json b/i18n/models/es-US.json new file mode 100644 index 0000000..b86c272 --- /dev/null +++ b/i18n/models/es-US.json @@ -0,0 +1,136 @@ +{ + "interactionModel": { + "languageModel": { + "invocationName": "feliz cumpleaños", + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "name": "AMAZON.NavigateHomeIntent", + "samples": [] + }, + { + "name": "CaptureBirthdayIntent", + "slots": [ + { + "name": "month", + "type": "AMAZON.Month" + }, + { + "name": "day", + "type": "AMAZON.NUMBER" + }, + { + "name": "year", + "type": "AMAZON.NUMBER" + } + ], + "samples": [ + "{month} del {year}", + "{day} de {month}", + "el año {year}", + "en {year}", + "nací en {year}", + "nací en {year}", + "el {day} de {month}", + "el día {day} de {month}", + "mi fecha de nacimiento es el {day} de {month} de {year}", + "mi fecha de nacimiento es el {day} de {month} {year}", + "nací el {day} de {month} {year}", + "mi cumpleaños es el {day} de {month} {year}", + "registra mi cumpleaños", + "apunta mi cumpleaños", + "apunta mi fecha de nacimiento", + "registra mi fecha de nacimiento", + "recuerda mi cumpleaños", + "acuérdate de mi cumpleaños", + "apúntate mi cumple" + ] + } + ], + "types": [] + }, + "dialog": { + "intents": [ + { + "name": "CaptureBirthdayIntent", + "confirmationRequired": false, + "prompts": {}, + "slots": [ + { + "name": "month", + "type": "AMAZON.Month", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.795077103633" + } + }, + { + "name": "day", + "type": "AMAZON.NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.985837334781" + } + }, + { + "name": "year", + "type": "AMAZON.NUMBER", + "confirmationRequired": false, + "elicitationRequired": true, + "prompts": { + "elicitation": "Elicit.Slot.303899476312.27341833344" + } + } + ] + } + ], + "delegationStrategy": "ALWAYS" + }, + "prompts": [ + { + "id": "Elicit.Slot.303899476312.795077103633", + "variations": [ + { + "type": "PlainText", + "value": "Yo nací en noviembre. Y tú?" + }, + { + "type": "PlainText", + "value": "Cual es tu mes de nacimiento?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.985837334781", + "variations": [ + { + "type": "PlainText", + "value": "Nací el 6. Qué día del mes es tu cumpleaños?" + } + ] + }, + { + "id": "Elicit.Slot.303899476312.27341833344", + "variations": [ + { + "type": "PlainText", + "value": "Nací en dos mil catorce, y tú en qué año?" + } + ] + } + ] + } +} \ No newline at end of file diff --git a/i18n/models/pt-BR.json b/i18n/models/pt-BR.json new file mode 100644 index 0000000..5fd1d3d --- /dev/null +++ b/i18n/models/pt-BR.json @@ -0,0 +1,115 @@ +{ + "interactionModel": { + "languageModel": { + "invocationName": "feliz aniversário python", + "intents": [ + { + "name": "AMAZON.CancelIntent", + "samples": [] + }, + { + "name": "AMAZON.HelpIntent", + "samples": [] + }, + { + "name": "AMAZON.StopIntent", + "samples": [] + }, + { + "name": "CaptureBirthdayIntent", + "slots": [ + { + "name": "month", + "type": "AMAZON.Month" + }, + { + "name": "day", + "type": "AMAZON.Ordinal" + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER" + } + ], + "samples": [ + "{day} {month} {year}" + ] + }, + { + "name": "AMAZON.NavigateHomeIntent", + "samples": [] + } + ], + "types": [] + }, + "dialog": { + "intents": [ + { + "name": "CaptureBirthdayIntent", + "confirmationRequired": false, + "prompts": {}, + "slots": [ + { + "name": "month", + "type": "AMAZON.Month", + "elicitationRequired": true, + "confirmationRequired": false, + "prompts": { + "elicitation": "Elicit.Slot.1120431295394.93973209839" + } + }, + { + "name": "day", + "type": "AMAZON.Ordinal", + "elicitationRequired": true, + "confirmationRequired": false, + "prompts": { + "elicitation": "Elicit.Slot.1120431295394.1224801514378" + } + }, + { + "name": "year", + "type": "AMAZON.FOUR_DIGIT_NUMBER", + "elicitationRequired": true, + "confirmationRequired": false, + "prompts": { + "elicitation": "Elicit.Slot.1120431295394.1093063127079" + } + } + ] + } + ], + "delegationStrategy": "ALWAYS" + }, + "prompts": [ + { + "id": "Elicit.Slot.1120431295394.93973209839", + "variations": [ + { + "type": "PlainText", + "value": "What month were you born in?" + } + ] + }, + { + "id": "Elicit.Slot.1120431295394.1224801514378", + "variations": [ + { + "type": "PlainText", + "value": "What day were you born in?" + } + ] + }, + { + "id": "Elicit.Slot.1120431295394.1093063127079", + "variations": [ + { + "type": "PlainText", + "value": "What year were you born in?" + } + ] + } + ] + }, + "version": "3" +}