-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Support Proxy Authentication (#6)
* allow config proxy auth info * add i18n support * support providing auth info
- Loading branch information
Showing
19 changed files
with
685 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
[main] | ||
host = https://app.transifex.com | ||
|
||
[o:bytevet:p:proxyverse:r:messagesjson] | ||
file_filter = public/_locales/<lang>/messages.json | ||
source_file = public/_locales/en/messages.json | ||
type = CHROME | ||
minimum_perc = 0 | ||
resource_name = messages.json | ||
replace_edited_strings = false | ||
keep_translations = false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
{ | ||
"app_desc": { | ||
"message": "Uma ferramenta para ajudar você a gerenciar e alternar seus perfis de proxy" | ||
}, | ||
|
||
|
||
"nav_preference": { | ||
"message": "Preferência" | ||
}, | ||
"nav_config": { | ||
"message": "Config" | ||
}, | ||
"nav_custome_profiles": { | ||
"message": "Perfis Personalizados" | ||
}, | ||
|
||
|
||
"theme_light_mode": { | ||
"message": "Modo claro" | ||
}, | ||
"theme_dark_mode": { | ||
"message": "Modo escuro" | ||
}, | ||
"theme_auto_mode": { | ||
"message": "Siga o sistema" | ||
}, | ||
|
||
|
||
"mode_auto_switch": { | ||
"message": "Auto Switch" | ||
}, | ||
"mode_direct": { | ||
"message": "Direto" | ||
}, | ||
"mode_system": { | ||
"message": "Usar Proxy do Sistema" | ||
}, | ||
"mode_profile_create": { | ||
"message": "Criar Novo Perfil" | ||
}, | ||
|
||
|
||
"config_proxy_type": { | ||
"message": "Tipo de Proxy" | ||
}, | ||
"config_proxy_type_proxy": { | ||
"message": "Proxy" | ||
}, | ||
"config_proxy_type_pac": { | ||
"message": "Script PAC" | ||
}, | ||
"config_proxy_type_default": { | ||
"message": "Mesmo como o Padrão" | ||
}, | ||
"config_section_proxy_server": { | ||
"message": "Servidor Proxy" | ||
}, | ||
"config_section_proxy_server_default": { | ||
"message": "Servidor Padrão" | ||
}, | ||
"config_section_proxy_server_http": { | ||
"message": "HTTP" | ||
}, | ||
"config_section_proxy_server_https": { | ||
"message": "HTTPS" | ||
}, | ||
"config_section_proxy_server_ftp": { | ||
"message": "FTP" | ||
}, | ||
"config_section_proxy_auth_tips": { | ||
"message": "Defina nome de usuário e senha se o seu proxy exigir autenticação" | ||
}, | ||
"config_section_proxy_auth_title": { | ||
"message": "Autenticação de Proxy" | ||
}, | ||
"config_section_proxy_auth_username": { | ||
"message": "Nome de usuário" | ||
}, | ||
"config_section_proxy_auth_password": { | ||
"message": "Senha" | ||
}, | ||
|
||
"config_section_bypass_list": { | ||
"message": "Lista de Bypass" | ||
}, | ||
"config_section_advance": { | ||
"message": "Configuração Avançada" | ||
}, | ||
"config_reference_bypass_list": { | ||
"message": "Saiba mais sobre a lista de bypass." | ||
}, | ||
|
||
"config_action_edit": { | ||
"message": "Editar" | ||
}, | ||
"config_action_delete": { | ||
"message": "Excluir Perfil" | ||
}, | ||
"config_action_delete_double_confirm": { | ||
"message": "Você tem certeza de que deseja excluir o perfil atual" | ||
}, | ||
"config_action_save": { | ||
"message": "Salvar" | ||
}, | ||
"config_action_cancel": { | ||
"message": "Descartar alteração" | ||
}, | ||
"config_action_clear": { | ||
"message": "Claro" | ||
}, | ||
|
||
"config_feedback_saved": { | ||
"message": "O perfil foi salvo" | ||
}, | ||
"config_feedback_deleted": { | ||
"message": "O perfil foi deletado" | ||
}, | ||
"config_feedback_error_occured": { | ||
"message": "Ocorreu um erro: $1" | ||
}, | ||
|
||
|
||
"form_is_required": { | ||
"message": "$1 é necessário." | ||
}, | ||
|
||
"_": { | ||
"message": "<DUMMY>" | ||
} | ||
} |
Oops, something went wrong.