]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blobdiff - app/src/main/res/values-pt-rBR/strings.xml
Migrate five classes to Kotlin. https://redmine.stoutner.com/issues/950
[PrivacyBrowserAndroid.git] / app / src / main / res / values-pt-rBR / strings.xml
index 4dac8dc442696e8f309e8dabdac46e75cc95f301..fc55bb85c5cfaccca253cc7aef73ee82b55c740c 100644 (file)
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 
 <!--
-  Copyright 2015-2022 Soren Stoutner <soren@stoutner.com>.
+  Copyright 2015-2023 Soren Stoutner <soren@stoutner.com>.
 
   Translation 2020-2022 Thiago Nazareno Conceição Silva de Jesus <mochileiro2006-trilhas@yahoo.com.br>.  Copyright assigned to Soren Stoutner <soren@stoutner.com>.
 
@@ -41,7 +41,7 @@
     <string name="dom_storage_deleted">Armazenamento DOM excluído</string>
     <string name="form_data_deleted">Dados do formulário excluídos</string>
     <string name="open_navigation_drawer">Abrir a caixa de navegação</string>
-    <string name="close_navigation_drawer">Fechar  a caixa de navegação</string>
+    <string name="close_navigation_drawer">Fechar a caixa de navegação</string>
     <string name="unrecognized_url">URL desconhecida:</string>
     <string name="add_tab">Adicionar aba</string>
     <string name="close_tab">Fechar aba</string>
     <string name="settings">Configurações</string>
     <string name="import_export">Importar/Exportar</string>
     <string name="logcat">Logcat</string>
+    <string name="webview_devtools">WebView DevTools</string>
     <string name="guide">Guia</string>
     <string name="about">Sobre</string>
 
         <string name="add_to_home_screen">Adicionar à tela inicial</string>
         <string name="view_source">Ver fonte</string>
     <string name="share">Compartilhar</string>
+        <string name="share_message">Compartilhar mensagem</string>
         <string name="share_url">Compartilhar URL</string>
         <string name="open_with_app">Abrir com aplicativo</string>
         <string name="open_with_browser">Abrir com navegador</string>
     <string name="file_is_mht">Este é um arquivo MHT da web.</string>
     <string name="mht_checkbox_explanation">Às vezes, os arquivos da web MIME Encapsulated HTML (MHT) precisam ser especificados manualmente para serem abertos corretamente.</string>
 
-    <!-- Save Dialog.  Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.
-        The `%1$s` code inserts variables into the displayed text and should be preserved in translation.  <https://developer.android.com/reference/kotlin/java/util/Formatter> -->
+    <!-- Save Dialog.  Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.  `%%` writes a literal `%`.
+        The `%*$s` code inserts variables into the displayed text and should be preserved in translation.  <https://developer.android.com/reference/kotlin/java/util/Formatter> -->
     <string name="save_url">Salvar URL</string>
     <string name="save_archive">Salvar Arquivo</string>
     <string name="save_text">Salvar Texto</string>
     <string name="bytes">bytes</string>
     <string name="unknown_size">tamanho desconhecido</string>
     <string name="invalid_url">URL inválida</string>
-    <string name="saving_file">Salvando file:</string>
-    <string name="processing_image">Processando imagem… :</string>
+    <string name="saving_file">Salvando file: \u0020 %1$d%% - %2$s</string>
+    <string name="saving_file_progress">Salvando file: \u0020 %1$s bytes - %2$s</string>
+    <string name="saving_file_percentage_progress">Salvando file: \u0020 %1$d%% - %2$s bytes / %3$s bytes - %4$s</string>
+    <string name="processing_image">Processando imagem: \u0020 %1$s</string>
+    <string name="error_saving_file">Erro ao salvar %1$s: \u0020 %2$s</string>
+    <string name="unknown_error">Erro desconhecido</string>
 
     <!-- View Source. -->
     <string name="request_headers">Solicitar cabeçalhos</string>
         <string name="default_label">Padrão</string>
         <string name="default_allowed">Padrão - Permitido</string>
         <string name="allowed">Permitido</string>
-        <string name="allowed_plural">Permitido</string>
+        <string name="request_allowed">%1$d. Permitido</string>
+        <string name="allowed_plural">Permitidos</string>
         <string name="third_party_plural">Terceiros</string>
-        <string name="third_party_blocked">Terceiros - Bloqueados</string>
+        <string name="third_party_blocked">Terceiros - Bloqueado</string>
         <string name="blocked">Bloqueado</string>
+        <string name="request_blocked">%1$d. Bloqueado</string>
         <string name="blocked_plural">Bloqueados</string>
     <string name="blocklist">Lista de bloqueios</string>
         <string name="sublist">Sublista</string>
         <string name="saved_ip_addresses">Endereços IP salvos</string>
         <string name="current_ip_addresses">Endereços IP atuais</string>
 
-    <!-- Import/Export. -->
+    <!-- Import/Export.  Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.
+      The `%1$s` code inserts variables into the displayed text and should be preserved in translation.  <https://developer.android.com/reference/kotlin/java/util/Formatter> -->
     <string name="encryption">Encriptação</string>
     <string-array name="encryption_type">
         <item>Nenhum</item>
     <string name="import_button">Importar</string>  <!-- `import` is a reserved word and cannot be used as the name. -->
     <string name="decrypt">Descriptografar</string>
     <string name="export_successful">Exportação bem sucedida.</string>
-    <string name="export_failed">A exportação falhou:</string>
-    <string name="import_failed">A importação falhou:</string>
+    <string name="export_failed">A exportação falhou: \u0020 %1$s</string>
+    <string name="import_failed">A importação falhou: \u0020 %1$s</string>
 
     <!-- Logcat.  Android removes double spaces, but extra spaces can be manually specified with the Unicode `\u0020` formatting.
         The `%1$s` code inserts variables into the displayed text and should be preserved in translation.  <https://developer.android.com/reference/kotlin/java/util/Formatter> -->
     <string name="ssl_certificates">Certificados SSL</string>
     <string name="proxies">Proxies</string>
     <string name="tracking_ids">IDs de rastreamento</string>
+    <string name="gui">Interface</string>
 
     <!-- Proxy. -->
     <string name="orbot_not_installed_title">Orbot Não  Instalado</string>
             <string name="webview_version">Versão do WebView:</string>
             <string name="orbot">Orbot:</string>
             <string name="i2p">I2P:</string>
+                <string name="fdroid_flavor">%1$s (Derivação do F-Droid)</string>
+                <string name="google_play_flavor">%1$s (Derivação do Google Play)</string>
             <string name="openkeychain">OpenKeychain:</string>
         <string name="memory_usage">Uso da Memória</string>
             <string name="app_consumed_memory">Consumo da Memória do Aplicativo:</string>
         <string name="block_all_third_party_requests">Bloquear todas as solicitações de terceiros</string>
         <string name="block_all_third_party_requests_summary">Bloquear todas as solicitações de terceiros aumenta a privacidade, mas quebra muitos sites.</string>
     <string name="url_modification">Modificação de URL</string>
+        <string name="tracking_queries">Consultas de rastreamento</string>
+        <string name="tracking_queries_summary">Remova consultas de rastreamento conhecidas de URLs.</string>
+        <string name="amp_redirects">Redirecionamentos de AMP</string>
+        <string name="amp_redirects_summary">Remova consultas de redirecionamento AMP (páginas aceleradas para dispositivos móveis) conhecidas de URLs.</string>
     <string name="search">Search</string>
         <string-array name="search_entries">
             <item>Mojeek</item>
         <string name="swipe_to_refresh">Deslize para atualizar</string>
         <string name="swipe_to_refresh_summary">Alguns sites não funcionam bem se deslizar para atualizar estiver habilitado.</string>
         <string name="download_with_external_app">Download com aplicativo externo</string>
+        <string name="download_with_external_app_summary">Aplicativos externos não respeitarão as configurações de proxy do Privacy Browser e não terão acesso a cookies
+            (o que significa que é improvável que os arquivos baixados de sites que exigem login funcionem).</string>
         <string name="scroll_app_bar">Role a barra de aplicativos</string>
         <string name="scroll_app_bar_summary">Role a barra de aplicativos para fora da parte superior da tela quando o WebView rola para baixo.</string>
         <string name="bottom_app_bar">Barra de aplicativos inferior</string>