From 1a6d7286700b3827590c388f9e019d6a6865e523 Mon Sep 17 00:00:00 2001 From: Marlon Luan Date: Thu, 7 Jan 2021 16:45:37 -0300 Subject: [PATCH] feat: add brazilian portuguese language --- .../src/translations/__pt-BR._pt-BR.json | 35 +++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 generators/app/templates/src/translations/__pt-BR._pt-BR.json diff --git a/generators/app/templates/src/translations/__pt-BR._pt-BR.json b/generators/app/templates/src/translations/__pt-BR._pt-BR.json new file mode 100755 index 00000000..4a50ff3a --- /dev/null +++ b/generators/app/templates/src/translations/__pt-BR._pt-BR.json @@ -0,0 +1,35 @@ +{ + "APP_NAME": "<%= props.appName %>", + "About": "Sobre", + "Hello world !": "Olá Mundo !", + "Home": "Início", +<% if (props.ui === 'ionic') { -%> + "Cancel": "Cancelar", + "Change language": "Alterar idioma", + "Language": "Idioma", + "Ok": "Ok", +<% if (props.layout === 'tabs') { -%> + "Settings": "Configurações", + "Notifications": "Notificações", + "Preferences": "Preferências", + "Account": "Conta", +<% if (props.auth) { -%> + "Profile": "Perfil", +<% } -%> +<% } -%> +<% } -%> +<% if (props.auth) { -%> +<% if (props.ui !== 'ionic') { -%> + "Logged in as": "Conectado como", +<% } -%> + "Login": "Entrar", + "Logout": "Sair", + "Password": "Senha", + "Password is required": "A senha é obrigatória", + "Username": "Usuário", + "Username is required": "O usuário é obrigatório", + "Username or password incorrect.": "Usuário ou senha incorretos.", + "Remember me": "Lembre-se de mim", +<% } -%> + "Version": "Versão" +}