Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding pt_br lang file and option to select #36

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions assets/META-INF/com/google/android/aroma/langs/pt_br.lang
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
### LICENSE:
#
# Copyright (C) 2011 Ahmad Amarullah ( http://amarullz.com/ )
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
### LANGUAGE STRING RESOURCE FILE
#
# Language : Portugues do Brasil
# By : pedrolucasbp
#

#
#--- COMMON SYSTEM STRING RESOURCE
#
text_ok=OK
text_next=Próximo
text_back=Voltar
text_yes=Sim
text_no=Não
text_about=Sobre
text_calibrating=Ferramentas de Calibração
text_quit=Instalação rápida
text_quit_msg=Você tem certeza que deseja sair do instalador?

#
#-- CUSTOM STRING RESOURCE
#
common.for=para

devsel.name=Configurações de instalação
devsel.cpt=Por favor, selecione a configuração para o instalador:
devsel.type=Selecione seu dispositivo:
devsel.sim=Selecione o número de cartões SIM que são suportados pelo seu celular:
devsel.other=A300F e outros
ins.type=Selecione o tipo de instalação:
ins.clean=Instalação completa
ins.fmt=Atualizar com limpeza do Sistema (recomendada)
ins.update=Atualizar o Sistema e dar boot
ins.boot=Reparar o boot
ins.clean1=Instalação limpa. PERDERÁ TODAS AS APPS!!!
ins.fmt1=Todas as mudanças no /system serão canceladas. Se você tem o Google Services, vai precisar reinsta-las.
ins.update1=Atualizar o sistema, todos os dados serão salvos.
ins.boot1=Apenas atualizar a boot.img.

langtest.title=Teste de linguagem
langtest.multiline=Esse texto está localizado em langs/pt_br.lang\
Use barra invertida antes para adicionar nova linha\
\
Você pode fazer <b>Formatação</b> dentro do recurso string.\
\
Obrigado por usar o instalador AROMA

#-- End of string without any backslash for multiline text


themes.title=Selecione o tema
themes.desc=Por favor, selecione o tema do instalador que você quer usar neste teste de instalação:

welcome.title=Bem vindo
welcome.text1=Você está prestes a instalar
welcome.text2=O desenvolvedor não será responsável em caso de danos no seu dispositivo.
welcome.version=VERSION
welcome.codename=AUTHOR
welcome.updated=UPDATED
welcome.next= Precione próximo para continuar a instalação

inst.1=Instalando
inst.2=Por favor, aguarde...
inst.3=Instalado com sucesso!
13 changes: 9 additions & 4 deletions assets/META-INF/com/google/android/aroma/language_select.edify
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,14 @@ selectbox(
"English", "Welcome to Installer", 1, #-- selected.0 = 1
"Indonesian", "Selamat datang di Installer", 0, #-- selected.0 = 2
"Espanol", "Bienvenido al Instalador", 0, #-- selected.0 = 3
"Simplified Chinesse","欢迎到安装", 0, #-- selected.0 = 4
"Simplified Chinesse","欢迎到安装", 0, #-- selected.0 = 4
"French", "Bienvenue dans l'installateur", 0, #-- selected.0 = 5
"Russian", "Добро пожаловать в установщик", 0, #-- selected.0 = 6
"Italian", "Benvenuti Installer", 0, #-- selected.0 = 7
"Germany", "Willkommen bei Installer", 0, #-- selected.0 = 8
"Hebrew", "ברוכים הבאים להתקנה", 0 #-- selected.0 = 9
"Japanese", "インストーラへようこそ", 0, #-- selected.0 = 10
"Germany", "Willkommen bei Installer", 0, #-- selected.0 = 8
"Hebrew", "ברוכים הבאים להתקנה", 0, #-- selected.0 = 9
"Japanese", "インストーラへようこそ", 0, #-- selected.0 = 10
"Português do Brasil", "Bem vindo ao Instalador" 0 #-- selected.0 = 11
#--------[ Initial Value = 0: Unselected, 1: Selected, 2: Group Item, 3: Not Visible ]---------#
);

Expand Down Expand Up @@ -75,3 +76,7 @@ if prop("lang.prop","selected.0")=="10" then
loadlang("langs/ja.lang");
endif;

if prop("lang.prop","selected.0")=="11" then
loadlang("langs/pt_br.lang");
endif;