-
-
Notifications
You must be signed in to change notification settings - Fork 512
/
Copy pathaction.ts
37 lines (36 loc) · 1.23 KB
/
action.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const action = {
sign_in: 'Entrar',
continue: 'Continuar',
create_account: 'Criar conta',
create_account_without_linking: 'Criar um novo em vez disso',
create: 'Criar',
enter_passcode: 'Inserir código de verificação',
confirm: 'Confirmar',
cancel: 'Cancelar',
save_password: 'Salvar senha',
bind: 'Link com {{address}}',
bind_and_continue: 'Linkar e continuar',
back: 'Voltar',
nav_back: 'Voltar',
nav_skip: 'Pular',
agree: 'Aceito',
got_it: 'Entendido',
sign_in_with: 'Continuar com {{name}}',
forgot_password: 'Esqueceu sua senha?',
switch_to: 'Trocar para {{method}}',
sign_in_via_passcode: 'Fazer login com código de verificação',
sign_in_via_password: 'Fazer login com senha',
change: 'Alterar {{method}}',
link_another_email: 'Vincular outro e-mail',
link_another_phone: 'Vincular outro telefone',
link_another_email_or_phone: 'Vincular outro e-mail ou telefone',
show_password: 'Mostrar senha',
copy: 'Copiar',
verify_via_passkey: 'Verificar via chave de acesso',
download: 'Baixar',
single_sign_on: 'Single Sign-On',
authorize: '授权',
use_another_account: '使用其他帐户',
back_to_current_account: 'Voltar para a conta atual',
};
export default Object.freeze(action);