diff --git a/i18n/lambda_function.py b/i18n/lambda_function.py index c7ba7fb..b894841 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): """ 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 0000000..89fa5db Binary files /dev/null and b/i18n/locales/de-DE/LC_MESSAGES/data.mo differ 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 0000000..1e0b8aa Binary files /dev/null and b/i18n/locales/en-AU/LC_MESSAGES/data.mo differ 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 0000000..4688c20 Binary files /dev/null and b/i18n/locales/en-CA/LC_MESSAGES/data.mo differ 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 0000000..699f64c Binary files /dev/null and b/i18n/locales/en-GB/LC_MESSAGES/data.mo differ 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 0000000..f44a57f Binary files /dev/null and b/i18n/locales/en-IN/LC_MESSAGES/data.mo differ diff --git a/i18n/locales/en-IN/LC_MESSAGES/data.po b/i18n/locales/en-IN/LC_MESSAGES/data.po new file mode 100644 index 0000000..0842c1d --- /dev/null +++ b/i18n/locales/en-IN/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_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 0000000..30b7264 Binary files /dev/null and b/i18n/locales/es-ES/LC_MESSAGES/data.mo differ 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 0000000..cfa93a1 Binary files /dev/null and b/i18n/locales/es-MX/LC_MESSAGES/data.mo differ 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 0000000..afef721 Binary files /dev/null and b/i18n/locales/es-US/LC_MESSAGES/data.mo differ 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 0000000..def3beb Binary files /dev/null and b/i18n/locales/pt-BR/LC_MESSAGES/data.mo differ diff --git a/i18n/locales/pt-BR/LC_MESSAGES/data.po b/i18n/locales/pt-BR/LC_MESSAGES/data.po new file mode 100644 index 0000000..d38b773 --- /dev/null +++ b/i18n/locales/pt-BR/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: 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" +} 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",