diff --git a/AUTHORS b/AUTHORS index 8d6d675aa..afd98a502 100644 --- a/AUTHORS +++ b/AUTHORS @@ -16,7 +16,6 @@ Translators: Jonathan Hooverman (German) Heimen Stoffels (Dutch) Peter Vacula (Slovak) -Ján Ďanovský (Slovak) Unink-Lio (Chinese) Federico Fabiani (Italian) Francesco Marinucci (Italian) @@ -29,6 +28,7 @@ Vasilis Tsivikis (Greek) Rustam Salakhutdinov (Russian) Oleg Brezhnev (Russian) Sérgio Marques (Portuguese) +Alexandre Carvalho (Brazilian Portuguese) Mladen Pejaković (Serbian) Wu Cheng-Hong (Traditional Chinese) diff --git a/src/network/qupzillaschemehandler.cpp b/src/network/qupzillaschemehandler.cpp index d85adcd49..169800531 100644 --- a/src/network/qupzillaschemehandler.cpp +++ b/src/network/qupzillaschemehandler.cpp @@ -185,10 +185,10 @@ QString QupZillaSchemeReply::aboutPage() aPage.replace("%VERSION-INFO%", QString("
%1
%2
").arg(tr("Version"), QupZilla::VERSION -#ifdef GIT_REVISION - + " (" + GIT_REVISION + ")" -#endif - ) + + #ifdef GIT_REVISION + + " (" + GIT_REVISION + ")" + #endif + ) + QString("
%1
%2
").arg(tr("WebKit version"), QupZilla::WEBKITVERSION)); aPage.replace("%MAIN-DEVELOPER%", tr("Main developer")); aPage.replace("%MAIN-DEVELOPER-TEXT%", authorString(QupZilla::AUTHOR.toUtf8(), "nowrep@gmail.com")); @@ -199,7 +199,7 @@ QString QupZillaSchemeReply::aboutPage() authorString("Mariusz Fik", "fisiu@opensuse.org") + "
" + authorString("Jan Rajnoha", "honza.rajny@hotmail.com") + "
" + authorString("Daniele Cocca", "jmc@chakra-project.org") - ); + ); aPage.replace("%TRANSLATORS%", tr("Translators")); aPage.replace("%TRANSLATORS-TEXT%", authorString("Heimen Stoffels", "vistausss@gmail.com") + " (Dutch)
" + @@ -217,10 +217,11 @@ QString QupZillaSchemeReply::aboutPage() authorString("Rustam Salakhutdinov", "salahutd@gmail.com") + " (Russian)
" + authorString("Oleg Brezhnev", "oleg-423@yandex.ru") + " (Russian)
" + authorString("Sérgio Marques", "smarquespt@gmail.com") + " (Portuguese)
" + + authorString("Alexandre Carvalho", "alexandre05@live.com") + " (Brazilian Portuguese)
" + authorString("Mladen Pejaković", "pejakm@gmail.com") + " (Serbian)
" + authorString("Unink-Lio", "unink4451@163.com") + " (Chinese)
" + authorString("Wu Cheng-Hong", "stu2731652@gmail.com") + " (Traditional Chinese)" - ); + ); } return aPage; @@ -274,6 +275,7 @@ QString QupZillaSchemeReply::speeddialPage() page.replace("%B_SIZE%", dial->backgroundImageSize()); page.replace("%ROW-PAGES%", QString::number(dial->pagesInRow())); page.replace("%SD-SIZE%", QString::number(dial->sdSize())); + return page; } @@ -312,76 +314,77 @@ QString QupZillaSchemeReply::configPage() QString("
%1
%2
").arg(tr("Themes"), mApp->THEMESDIR) + QString("
%1
%2
").arg(tr("Translations"), mApp->TRANSLATIONSDIR)); - cPage.replace("%USER-AGENT%", mApp->getWindow()->weView()->webPage()->userAgentForUrl(QUrl())); - - cPage.replace("%VERSION-INFO%", QString("
%1
%2
").arg(tr("Application version"), QupZilla::VERSION -#ifdef GIT_REVISION - + " (" + GIT_REVISION + ")" -#endif - ) + + #ifdef GIT_REVISION + + " (" + GIT_REVISION + ")" + #endif + ) + QString("
%1
%2
").arg(tr("Qt version"), QT_VERSION_STR) + QString("
%1
%2
").arg(tr("WebKit version"), QupZilla::WEBKITVERSION) + QString("
%1
%2
").arg(tr("Build time"), QupZilla::BUILDTIME) + QString("
%1
%2
").arg(tr("Platform"), qz_buildSystem())); + } - QString pluginsString; - const QList &availablePlugins = mApp->plugins()->getAvailablePlugins(); + QString page = cPage; + page.replace("%USER-AGENT%", mApp->getWindow()->weView()->webPage()->userAgentForUrl(QUrl())); - foreach(const Plugins::Plugin & plugin, availablePlugins) { - PluginSpec spec = plugin.pluginSpec; - pluginsString.append(QString("%1%2%3%4").arg( - spec.name, spec.version, Qt::escape(spec.author), spec.description)); - } + QString pluginsString; + const QList &availablePlugins = mApp->plugins()->getAvailablePlugins(); - if (pluginsString.isEmpty()) { - pluginsString = QString("%1").arg(tr("No available plugins.")); - } + foreach(const Plugins::Plugin & plugin, availablePlugins) { + PluginSpec spec = plugin.pluginSpec; + pluginsString.append(QString("%1%2%3%4").arg( + spec.name, spec.version, Qt::escape(spec.author), spec.description)); + } - cPage.replace("%PLUGINS-INFO%", pluginsString); + if (pluginsString.isEmpty()) { + pluginsString = QString("%1").arg(tr("No available plugins.")); + } - QString allGroupsString; - QSettings* settings = Settings::globalSettings(); - foreach(const QString & group, settings->childGroups()) { - QString groupString = QString("%1").arg(group); - settings->beginGroup(group); + page.replace("%PLUGINS-INFO%", pluginsString); - foreach(const QString & key, settings->childKeys()) { - const QVariant &keyValue = settings->value(key); - QString keyString; + QString allGroupsString; + QSettings* settings = Settings::globalSettings(); + foreach(const QString & group, settings->childGroups()) { + QString groupString = QString("%1").arg(group); + settings->beginGroup(group); - switch (keyValue.type()) { - case QVariant::ByteArray: - keyString = "QByteArray"; - break; + foreach(const QString & key, settings->childKeys()) { + const QVariant &keyValue = settings->value(key); + QString keyString; - case QVariant::Point: { - const QPoint point = keyValue.toPoint(); - keyString = QString("QPoint(%1, %2)").arg(QString::number(point.x()), QString::number(point.y())); - break; - } + switch (keyValue.type()) { + case QVariant::ByteArray: + keyString = "QByteArray"; + break; - case QVariant::StringList: - keyString = keyValue.toStringList().join(","); - break; - - default: - keyString = keyValue.toString(); - } - - if (keyString.isEmpty()) { - keyString = "\"empty\""; - } - - groupString.append(QString("%1%2").arg(key, Qt::escape(keyString))); + case QVariant::Point: { + const QPoint point = keyValue.toPoint(); + keyString = QString("QPoint(%1, %2)").arg(QString::number(point.x()), QString::number(point.y())); + break; } - settings->endGroup(); - allGroupsString.append(groupString); + case QVariant::StringList: + keyString = keyValue.toStringList().join(","); + break; + + default: + keyString = keyValue.toString(); + } + + if (keyString.isEmpty()) { + keyString = "\"empty\""; + } + + groupString.append(QString("%1%2").arg(key, Qt::escape(keyString))); } - cPage.replace("%PREFS-INFO%", allGroupsString); + settings->endGroup(); + allGroupsString.append(groupString); } - return cPage; + + page.replace("%PREFS-INFO%", allGroupsString); + + return page; } diff --git a/src/other/aboutdialog.cpp b/src/other/aboutdialog.cpp index 7c82e12a0..04c36a6af 100644 --- a/src/other/aboutdialog.cpp +++ b/src/other/aboutdialog.cpp @@ -85,24 +85,24 @@ void AboutDialog::showAuthors() "Daniele Cocca") )); m_authorsHtml.append(tr("

Translators:
%1

").arg( - QString::fromUtf8("Heimen Stoffels (Dutch)
" - "Peter Vacula (Slovakia)
" - "Ján Ďanovský (Slovakia)
" - "Jonathan Hooverman (German)
" - "Federico Fabiani (Italian)
" - "Francesco Marinucci (Italian)
" - "Jorge Sevilla (Spanish)
" - "Michał Szymanowski (Polish)
" - "Mariusz Fik (Polish)
" - "Jérôme Giry (French)
" - "Nicolas Ourceau (French)
" - "Vasilis Tsivikis (Greek)
" - "Rustam Salakhutdinov (Russian)
" - "Oleg Brezhnev (Russian)
" - "Sérgio Marques (Portuguese)
" - "Mladen Pejaković (Serbian)
" - "Unink-Lio (Chinese)
" - "Wu Cheng-Hong (Trad. Chinese)") + QString::fromUtf8("Heimen Stoffels
" + "Peter Vacula
" + "Jonathan Hooverman
" + "Federico Fabiani
" + "Francesco Marinucci
" + "Jorge Sevilla
" + "Michał Szymanowski
" + "Mariusz Fik
" + "Jérôme Giry
" + "Nicolas Ourceau
" + "Vasilis Tsivikis
" + "Rustam Salakhutdinov
" + "Oleg Brezhnev
" + "Sérgio Marques
" + "Alexandre Carvalho
" + "Mladen Pejaković
" + "Unink-Lio
" + "Wu Cheng-Hong") )); m_authorsHtml.append(""); } diff --git a/translations/pt_BR.ts b/translations/pt_BR.ts new file mode 100644 index 000000000..c724594f0 --- /dev/null +++ b/translations/pt_BR.ts @@ -0,0 +1,3866 @@ + + + + + Preferences + + 1 + 1 + + + ... + ... + + + HTTP + HTTP + + + Tabs + Guias + + + Allow JavaScript + Permitir JavaScript + + + Check for updates on start + Procurar atualizações ao iniciar + + + Mouse wheel scrolls + Roda do mouse move + + + 50 MB + 50 MB + + + Fixed + Fixa + + + Fonts + Fontes + + + Are you sure to permanently delete "%1" profile? This action cannot be undone! + Tem a certeza que deseja eliminar o perfil "%1" permanentemente? Esta ação não pode ser desfeita! + + + Filter tracking cookies + Filtrar cookies de rastreio + + + Other + Outras + + + Port: + Porta: + + + Serif + Serif + + + Enter the new profile's name: + Digite o nome do novo perfil: + + + Allow local storage of HTML5 web content + Permitir armazenamento local de conteúdo HTML5 + + + <b>Notifications</b> + <b>Notificações</b> + + + <b>Tabs behavior</b> + <b>Comportamento das guias</b> + + + Delete history on close + Limpar histórico ao fechar + + + <b>Download Location</b> + <b>Localização de Downloads</b> + + + Minimum Font Size + Tamanho mínimo da fonte + + + Available translations: + Traduções disponíveis: + + + <b>Profiles</b> + <b>Perfis</b> + + + Allow storing network cache on disk + Permitir armazenamento da cache de rede no disco + + + Drag it on the screen to place it where you want. + Arraste a notificação para a teça para a posicionar. + + + Show StatusBar on start + Mostrar barra de status ao iniciar + + + <b>External download manager</b> + <b>Gerenciador de Downloads exterbo</b> + + + Do not use proxy + Não usar proxy + + + Enable XSS Auditing + Ativar auditoria XSS + + + Match domain exactly + Coincidir com domínio + + + Open blank tab + Abrir guia em branco + + + Activate last tab when closing active tab + Ativar a última guia quando fechar guia atual + + + Startup profile: + Perfil ao iniciar: + + + Use external download manager + Usar gerenciador de downloads externos + + + Allow storing web icons + Permitir armazenar icons da web + + + Allow saving passwords from sites + Permitir salvar senha das páginas + + + SSL Manager + Gerenciador SSL + + + JavaScript can access clipboard + Os JavaScripts podem acessar à área de transferência + + + Proxy Configuration + Configuração de proxy + + + Restore session + Restaurar sessão + + + System proxy configuration + Proxy do sistema + + + Open homepage + Abrir página inicial + + + Active profile: + Perfil ativo: + + + Open new tabs after active tab + Abrir guia após a atual + + + Delete + Eliminar + + + Error! + Erro! + + + In order to change language, you must restart browser. + Para poder mudar o idioma, você deve reiniciar o navegador. + + + Languages + Idiomas + + + <b>Language</b> + <b>Idioma</b> + + + <b>Warning:</b> Match domain exactly and filter tracking cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! + <b>Aviso:</b> Os domínios devem ser iguais e a opção de cookies de rastreio devem estar habilitadas para poder negar os cookids de alguns sites. Se você estiver com problemas com os cookies, tente desativar essa opção antes! + + + Show Add Tab button + Mostrar botão Nova Guia + + + After launch: + Ao iniciar: + + + Sans Serif + Sans Serif + + + <b>Navigation ToolBar</b> + <b>Barra de Navegação</b> + + + Use defined location: + Usar esta localização: + + + Cookies Manager + Gerenciador de cookies + + + SOCKS5 + SOCKS5 + + + Make tabs movable + Permitir movimentar guias + + + Use Native System Notifications (Linux only) + Utilizar notificações do sistema (somente para Linux) + + + Themes + Temas + + + Open other page... + Abrir outra página... + + + <b>Browser Window</b> + <b>Janela do navegador</b> + + + Ask everytime for download location + Sempre perguntar aonde salvar os arquivos + + + Edit CA certificates in SSL Manager + Editar certificados no gerenciador SSL + + + Allow JAVA + Permitir Java + + + Web Configuration + Configuração web + + + <b>Download Options</b> + <b>Opções de downloads</b> + + + <b>Font Sizes</b> + <b>Tamanho da fonte</b> + + + Allow saving history + Permitir salvar histórico + + + Add .co.uk domain by pressing ALT key + Adicionar .com.br na barra de endereço, ao apertar a tecla ALT + + + lines on page + linhas na página + + + Plugins + Plugins + + + Minimum Logical Font Size + Tamanho mínimo da fonte + + + Print element background + Imprimir os elementos do background + + + Open speed dial + Abrir Acesso rápido + + + Show Navigation ToolBar on start + Mostrar barra de navegação ao iniciar + + + Choose stylesheet location... + Escolha a localização da folha de estilo... + + + Note: You cannot delete active profile. + Observação: Você não pode apagar o perfil que está ativo no momento. + + + Privacy + Privacidade + + + <b>SSL Certificates</b> + <b>Certificados SSL</b> + + + New Profile + Novo perfil + + + Don't use on: + Não utilizar em: + + + Use native system file dialog +(may or may not cause problems with downloading SSL secured content) + Utilizar caixa de diálogo do sistema +(pode interferir na transferência de conteúdo seguro SSL) + + + Use transparent background + Utilizar plano de fundo transparente + + + Ask when entering Private Browsing mode + Perguntar ao entrar no modo de navegação privada + + + Create New + Criar novo + + + Allow DNS Prefetch + Permitir obtenção prévia de DNS + + + Open blank page + Abrir página em branco + + + Closed tabs list instead of opened in tab bar + Lista de guias fechadas invés de abertos na barra dos favoritos + + + Maximum + Máximo + + + <b>AutoFill options</b> + <b>Preenchimento automático</b> + + + Default Font Size + Tamanho padrão da fonte + + + Zoom text only + Ampliar apenas o texto + + + Browsing + Navegação + + + Password Manager + Gerenciador de senhas + + + seconds + segundos + + + <b>Cookies</b> + <b>Cookies</b> + + + Ask when closing multiple tabs + Perguntar ao fechar várias guias + + + Local Storage + Armazenamento local + + + Expiration timeout: + Terminam em: + + + Standard + Padrão + + + Use current + Utilizar atual + + + Password: + Senha: + + + Deleted + Eliminado + + + Cursive + Cursiva + + + OSD Notification + Notificação + + + <b>Other</b> + <b>Outros</b> + + + Include links in focus chain + Incluir ligações na cadeia de foco + + + Appearance + Aparência + + + Delete cookies on close + Eliminar cookies ao fechar + + + Send Do Not Track header to servers + Enviar aos servidores uma notificação que o monitoramento não está funcionando + + + Fixed Font Size + Tamanho fixo da fonte + + + Show Back / Forward buttons + Mostrar botões Voltar/Avançar + + + Maximum pages in cache: + Número máximo de páginas em cache: + + + Change browser identification: + Alterar identificação do navegador: + + + On new tab: + Nova guia: + + + <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. + <b>Observação: </b> Você pode alterar a posição da notificação arrastando-a para o local desejado. + + + Arguments: + Argumentos: + + + Choose download location... + Escolha o local dos downlods... + + + QupZilla + QupZilla + + + Homepage: + Página inicial: + + + Cannot create profile directory! + Não foi possível criar a pasta para o seu perfil! + + + Fantasy + Fantasia + + + Username: + Usuário: + + + <b>Address Bar behaviour</b> + <b>Comportamento da barra de endereço</b> + + + Delete now + Apagar agora + + + Send Referer header to servers + Enviar endereço para os servidores + + + Preferences + Preferências + + + Notifications + Notificações + + + Executable: + Executável: + + + Delete locally stored HTML5 web content on close + Eliminar conteúdo HTML5 ao fechar o navegador + + + <b>Font Families</b> + <b>Famílias da Fonte</b> + + + Confirmation + Confirmação + + + <b>Background<b/> + <b>Fundo</b> + + + Use OSD Notifications + Utilizar notificações + + + Block popup windows + Bloquear janelas popup + + + General + Geral + + + StyleSheet automatically loaded with all websites: + Carregar folha de estilo automaticamente ao entrar em todos os sites: + + + Do not use Notifications + Não utilizar notificações + + + Advanced options + Opções avançadas + + + Downloads + Downloads + + + Choose executable location... + Escolha a localização do executável... + + + Manual configuration + Configuração manual + + + <b>Preferred language for web sites</b> + <b>Idioma preferido para páginas web</b> + + + Close download manager when downloading finishes + Fechar gerenciador de download após finalizar todos os downloads + + + Don't quit upon closing last tab + Não sair ao fechar a última guia + + + <b>Launching</b> + <b>Iniciar</b> + + + This profile already exists! + Esse perfil já existe! + + + Show Bookmarks ToolBar on start + Mostrar barra de favoritos ao iniciar + + + Allow Plugins (Flash plugin) + Permitir plugins (Flash) + + + Select all text by clicking in address bar + Selecionar todo o texto ao clicar na barra de endereço + + + Select all text by double clicking in address bar + Selecionar todo o texto ao clicar duas vezes na barra de endereço + + + Hide tabs when there is only one tab + Ocultar guias caso exista apenas uma + + + Show Home button + Mostrar botão Página inicial + + + Default zoom on pages: + Tamanho padrão das páginas: + + + Allow storing of cookies + Permitir armazenamento de cookies + + + + AcceptLanguage + + Up + Para cima + + + Down + Para baixo + + + Personal [%1] + Personalizado [%1] + + + Add... + Adicionar... + + + Remove + Remover + + + Preferred Languages + Idiomas Preferencial + + + + SearchEnginesDialog + + Up + Para cima + + + Down + Para baixo + + + Edit + Editar + + + Add... + Adicionar... + + + Remove + Remover + + + Manage Search Engines + Gerenciador dos site de pesquisa + + + Edit Search Engine + Editar site de pesquisa + + + Defaults + Padrão + + + Search Engine + Site de pesquisa + + + Add Search Engine + Adicionar site de pesquisa + + + Shortcut + Atalho + + + + PluginsList + + Add + Adicionar + + + Allow Click To Flash + Permitir ClickToFlash + + + Whitelist + Lista de permissões + + + Add site to whitelist + Adicionar página à lista de permissões + + + Allow Application Extensions to be loaded + Permitir carregar extensões + + + Load Plugins + Carregar plugins + + + Application Extensions + Extensões + + + Click To Flash is a plugin which blocks auto loading of Flash content at page. You can always load it manually by clicking on the Flash play icon. + O plugin ClickToFlash permite bloquear o conteúdo Flash das páginas web. Você pode abrir o plugin clicando no ícone Flash. + + + <b>Click To Flash Plugin</b> + <b>Plugin ClickToFlash</b> + + + Remove + Remover + + + Server without http:// (ex. youtube.com) + Servidor sem http:// (ex. youtube.com) + + + Settings + Configurações + + + WebKit Plugins + Plugins WebKit + + + + RSSWidget + + Add + Adicionar + + + Untitled feed + Feed sem título + + + Add RSS Feeds from this site + Adicionar feed RSS desta página + + + + SSLManager + + Add + Adicionar + + + This is a list of CA Authorities Certificates stored in the standard system path and in user specified paths. + Esta é a lista de autoridades de certificação existentes no sistema e nos caminhos do usuário. + + + SSL Manager + Gerenciador SSL + + + If CA Authorities Certificates were not automatically loaded from the system, you can specify paths manually where the certificates are stored. + Se as autoridades de certificação não forem carregadas automaticamente, pode especificar os caminhos em que os certificados estão salvos. + + + All certificates must have .crt suffix. +After adding or removing certificate paths, it is neccessary to restart QupZilla in order to take effect the changes. + Todos os certificados devem possuir a extensão .crt. +Após adicionar ou remover os caminhos dos certificados, você terá que reiniciar o QupZilla para que as alterações possam ter efeito. + + + Ignore all SSL Warnings + Ignorar todos os avisos SSL + + + Remove + Remover + + + CA Authorities Certificates + Autoridades de certificação + + + Show info + Mostrar informações + + + <b>NOTE:</b> Setting this option is a high security risk! + <b>OBSERVAÇÃO:</b> esta opção apresenta um grande risco de segurança! + + + Choose path... + Escolha o caminho... + + + Settings + Configurações + + + Local Certificates + Certificados locais + + + Certificate Informations + Informações do certificado + + + This is a list of Local Certificates stored in your user profile. It also contains all certificates, that have received an exception. + Esta é a lista de certificados locais guardados no seu perfil. Também contém todos os certificados que foram excecionados. + + + + ClearPrivateData + + All + Todos + + + Week + Semana + + + Month + Mês + + + Clear cookies from Adobe Flash Player + Limpar cookies do Adobe Flash Player + + + Clear cache + Limpar cache + + + Clear icons + Limpar icons + + + Clear cookies + Limpar cookies + + + Clear history + Limpar histórico + + + <b>Clear Recent History</b> + <b>Limpar histórico recente</b> + + + Clear Recent History + Limpar histórico recente + + + Choose what you want to delete: + Escolha o que você deseja apagar: + + + Earlier Today + Hoje + + + + SourceViewer + + Cut + Recortar + + + Copy + Copiar + + + Edit + Editar + + + File + Arquivo + + + Find + Localizar + + + Redo + Refazer + + + Undo + Desfazer + + + View + Ver + + + Close + Fechar + + + Paste + Colar + + + Enter line number + Indique o número da linha + + + Editable changed + Editável alterado + + + Delete + Apagar + + + Error! + Erro! + + + Error writing to file + Erro ao escrever no arquivo + + + Cannot reload source. Page has been closed. + Não foi possível carregar o código fonte. A página foi fechada. + + + Reload + Atualizar + + + Save as... + Salvar como... + + + Word Wrap + Translineação + + + Source of + Código fonte de + + + Source reloaded + Código fonte recarregado + + + Save file... + Salvar arquivo... + + + Editable + Editável + + + Select All + Selecionar tudo + + + Source successfully saved + Código fonte salvo com sucesso + + + Word Wrap changed + Translineação alterada + + + Go to Line... + Ir para a linha... + + + Cannot write to file! + Não foi possível escrever no arquivo! + + + + QupZillaSchemeReply + + Fit + Ajustar + + + Url + Url + + + Auto + Automático + + + Data + Dados + + + Edit + Editar + + + Send + Enviar + + + Issue description + Descrição do problema + + + Saved session + Sessão salva + + + Apply + Aplicar + + + Paths + Caminhos + + + Title + Título + + + No Error + Sem erros + + + Please fill out all required fields! + Por favor, preencha todos os campos abrigatórios! + + + Build time + Compilado + + + Platform + Plataforma + + + Information about version + Informações da versão + + + If you are experiencing problems with QupZilla, please try to disable all plugins first. <br/>If this does not fix it, then please fill out this form: + Caso esteja com problemas no QupZilla, tente desativar os plugins. <br/>Se os erros persistirem, preencha este formulário: + + + Report Issue + Reportar problema + + + Select image + Selecione imagem + + + Your E-mail + O seu Email + + + Main developer + Programador principal + + + Fit Height + Ajustar à altura + + + About QupZilla + Sobre QupZilla + + + Reload + Atualizar + + + Remove + Remover + + + Load title from page + Carregar título da página + + + Themes + Temas + + + Not Found + Não encontrado + + + Fit Width + Ajustar à largura + + + Translations + Traduções + + + Plugins + Plugins + + + Profile + Perfil + + + WebKit version + Versão WebKit + + + Copyright + Direitos autorais + + + Add New Page + Adicionar nova página + + + Start Page + Página inicial + + + E-mail is optional<br/><b>Note: </b>Please use English language only. + O email é opcional.<br/><b>Observação: </b>Por favor, escreva em Inglês. + + + Translators + Tradutores + + + Pinned tabs + Separadores fixos + + + Contributors + Contribuidores + + + Speed Dial + Acesso rápido + + + Issue type + Tipo do problema + + + Browser Identification + Identificação do navegador + + + Google Search + Procurar no Google + + + Speed Dial settings + Configurações do Acesso Rápido + + + Placement: + Posicionamento: + + + New Page + Nova página + + + Settings + Configurações + + + Version + Versão + + + Search results provided by Google + Resultados disponibilizados pelo Google + + + Change size of pages: + Alterar tamanho das páginas: + + + Use background image + Utilizar imagem de fundo + + + Maximum pages in a row: + Máximo de páginas por linha: + + + + HistoryModel + + May + Maio + + + July + Julho + + + June + Junho + + + April + Abril + + + March + Março + + + January + Janeiro + + + August + Agosto + + + October + Outubro + + + November + Novembro + + + September + Setembro + + + February + Fevereiro + + + December + Dezembro + + + No Named Page + Página sem nome + + + Failed loading page + Falha ao carregar a página + + + + BrowsingLibrary + + RSS + RSS + + + Library + Biblioteca + + + Bookmarks + Favoritos + + + Database Optimized + Banco de Dados Otimizado + + + Search... + Procurar... + + + Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database Size After: </b>%2 + o banco de dados foi otimizado com sucesso.<br/><br/><b>Tamanho antes da otimização: </b>%1<br/><b>Tamanho após a otimização: </b>%2 + + + History + Histórico + + + + SiteInfo + + Tag + Tag + + + <b>Security information</b> + <b>Informações de segurança</b> + + + Image + Imagem + + + Media + Média + + + Size: + Tamanho: + + + Value + Valor + + + Site address: + Endereço: + + + Save Image to Disk + Salvar imagem no disco + + + This preview is not available! + Essa preview não está disponível! + + + Error! + Erro! + + + <b>Connection Not Encrypted.</b> + <b>Conexão Não Criptografada.</b> + + + Meta tags of site: + Meta tags da página: + + + <not set in certificate> + <não definido no certificado> + + + Image address + Endereço da imagem + + + <b>Connection is Encrypted.</b> + <b>Conexão criptografada.</b> + + + <b>Preview</b> + <b>Preview</b> + + + Encoding: + Codificação: + + + Site Info + Informações do site + + + Copy Image Name + Copiar Nome da Imagem + + + Details + Detalhes + + + Save image... + Salvaragem... + + + Security + Segurança + + + Copy Image Location + Copiar URL da Imagem + + + General + Geral + + + <b>Your connection to this page is not secured!</b> + <b>A conexão para essa página não é segura.</b> + + + Preview not available + Preview não disponível + + + <b>Your connection to this page is secured with this certificate: </b> + <b>A conexão para essa página é seguda com um certificado.</b> + + + Cannot write to file! + Não foi possível escrever no arquivo! + + + + BookmarksImportDialog + + Url + URL + + + Next + Próximo + + + Title + Título + + + No Error + Sem erros + + + Choose browser from which you want to import bookmarks: + Escolha o navegador do que você deseja importar os favoritos: + + + Please choose this file to begin importing bookmarks. + Escolha o arquivo, para começar a importação dos favoritos. + + + Choose file... + Escolha arquivo... + + + Import Bookmarks + Importar favoritos + + + Cancel + Cancelar + + + Error! + Erro! + + + Finish + Terminar + + + Fetching icons, please wait... + Carregando icons, por favor, aguarde... + + + From File + De Arquivo + + + Choose directory... + Escolha o diretório... + + + <b>Import Bookmarks</b> + <b>Importar Favoritos</b> + + + Choose... + Escolha... + + + Unable to open database. Is Firefox running? + Não foi possível abrir o banco de dados. O Firefox está aberto? + + + <b>Importing from %1</b> + <b>A importar de %1</b> + + + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in + O Google Chrome salva os favoritos no arquivo <b>Bookmarks</b>, que geralmente fica em + + + File does not exist. + O arquivo não existe. + + + You can import bookmarks from any browser that supports HTML exporting. This file has usually these suffixes + Pode importar os favoritos de qualquer navegador com suporte a exportação em HTML. Esses arquivos geralmente terminam com + + + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in + O Opera salva os favoritos no arquivo <b>bookmarks.adr</b>, que geralmente fica em + + + Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in + O Internet Explorer salva os favoritos na pasta <b>Favoritos</b>, que geralmente fica em + + + Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in + O Mozilla Firefox salva os favoritos em um banco de dados SQLite em <b>places.sqlite</b>, que geralmente fica em + + + Cannot evaluate JSON code. + Incapaz de validar o código JSON. + + + Unable to open file. + Não foi possível abrir o arquivo. + + + Please choose this folder to begin importing bookmarks. + Por favor, escolha essa pasta para começar à importar os marcadores. + + + Please press Finish to complete importing process. + Aperte o botão Terminar para concluir o processo. + + + + BookmarksManager + + Url + Url + + + Title + Título + + + Choose name and location of this bookmark. + Escolha o nome e a localização desse favorito. + + + Bookmark All Tabs + AdicionarTodas As Guias Aos Favoritos + + + Add New Bookmark + Adicionar Novo Favorito + + + <b>Warning: </b>You already have bookmarked this page! + <b>Aviso: </b>Você já tem essa página em seus favoritos! + + + Choose name for new subfolder in bookmarks toolbar: + Escolha o nome para a nova subpasta: + + + Remove bookmark + Remover favorito + + + Rename bookmark + Renomear favorito + + + Choose name for new bookmark folder: + Escolha o nome para a nova pasta: + + + Choose folder for bookmarks: + Escolha a pasta dos favoritos: + + + Import Bookmarks + Importar Favoritos + + + Add Folder + Adicionar pasta + + + Open link in &new tab + Abrir ligação em uma &novo guia + + + Bookmarks + Favoritos + + + Choose name for folder: + Escolha o nome da pasta: + + + Open link in current &tab + Abrir link na guia a&tual + + + Move bookmark to &folder + &Mover favorito para a pasta + + + Rename Folder + Renomear pasta + + + Add new subfolder + Adicionar subpasta + + + Add new folder + Adicionar nova pasta + + + Optimize Database + Otimizar banco de dados + + + Remove folder + Remover pasta + + + Rename folder + Renomear pasta + + + Add Subfolder + Adicionar subpasta + + + + HistoryManager + + Url + Url + + + This Week + Esta semana + + + Title + Título + + + Today + Hoje + + + Copy address + Copiar endereço + + + Are you sure to delete all history? + Tem certeza que deseja limpar todo o histórico? + + + Delete + Apagar + + + This Month + Este mês + + + Open link in new tab + Abrir link em uma nova guia + + + Clear All History + Limpar Histórico + + + Optimize Database + Otimizar banco de dados + + + Open link in current tab + Abrir link na guia atual + + + Confirmation + Confirmação + + + History + Histórico + + + + QupZilla + + &Cut + &Reortar + + + Quit + Sair + + + &Back + &Voltar + + + &Edit + &Editar + + + &File + &Arquivo + + + &Find + Pro&curar + + + &Help + Aj&uda + + + &Home + Pági&na inicial + + + &Redo + &Refazer + + + &Stop + &Parar + + + &Undo + Desfaze&r + + + &View + E&xibir + + + Open &File + Abrir Ar&quivo + + + C&opy + C&opiar + + + Empty + Vazio + + + Other + Outras + + + Reset + Restaurar + + + Information about application + Informações do aplicativo + + + Are you sure you want to turn on private browsing? + Tem a certeza que deseja ativar a navegação privada? + + + Web In&spector + In&spetor web + + + Recently Visited + Vistados Recentemente + + + Close Window + Fechar Janela + + + Bookmark &This Page + Adicionar essa página aos favori&tos + + + &Paste + Co&lar + + + &Tools + Ferramen&tas + + + Save Page Screen + Salvar Page Screen + + + &Fullscreen + T&ela Cheia + + + Restore All Closed Tabs + Restaurar todos as guias fechadas + + + Open Location + Abrir localização + + + %1 - QupZilla + %1 - QupZilla + + + New Tab + Nova guia + + + Organize &Bookmarks + Orga&nizar favoritos + + + &About QupZilla + Sobre QupZill&a + + + &Cookies Manager + Gerenciador de &cookies + + + &Web Search + Procurar na &web + + + &Private Browsing + Navegação &Privada + + + Zoom &Out + Red&uzir + + + &New Window + &Nova Janela + + + &Bookmarks + &Favoritos + + + Bookmarks + Favoritos + + + Webpages are not added to the history. + As páginas web não são adicionadas ao histórico. + + + Restore &Closed Tab + Restaurar guia &fechada + + + Zoom &In + Ampl&iar + + + Toolbars + Barras de Ferramentas + + + &Download Manager + Gerenciador de &Downloads + + + Close Tab + Fechar guia + + + About &Qt + Sobre &Qt + + + Page &Info + &Informações da página + + + &Page Source + Código fonte da &Página + + + Send Link... + Enviar link... + + + &AdBlock + &AdBlock + + + Character &Encoding + Codificação dos caract&eres + + + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. + Até você fechar a janela, você ainda poderá usar os botões "Voltar" e "Avançar" para navegar por sites que você entrou anteriormente. + + + Clear list + Limpar lista + + + &Print... + Im&primir... + + + You have successfully added RSS feed "%1". + A fonte RSS "%1" foi adicionada com sucesso. + + + Open file... + Abrir arquivo... + + + Pr&eferences + Pr&eferências + + + Your session is not stored. + A sua sessão não pode ser gravada. + + + Select &All + Selecion&ar tudo + + + Most Visited + Mais visitados + + + Report &Issue + Reportar pro&blema + + + Default + Padrão + + + &Navigation Toolbar + Barra de &navegação + + + Closed Tabs + Guias Fechadas + + + &Save Page As... + Sal&var página como... + + + &Reload + Atualiza&r + + + Sta&tus Bar + Barra de sta&tus + + + Private Browsing Enabled + Navegação privada ativada + + + Hi&story + &Histórico + + + RSS &Reader + Leitor &RSS + + + &Menu Bar + Barra de &menu + + + QupZilla + QupZilla + + + &Bookmarks Toolbar + &Barra de favoritos + + + (Private Browsing) + (Navegação privada) + + + Current cookies cannot be accessed. + Os cookies atuais não estão acessíveis. + + + IP Address of current page + Endereço IP da página atual + + + Clear Recent &History + Apagar &histórico recente + + + &Forward + &Avançar + + + Show &All History + Mostr&ar todo o histórico + + + When private browsing is turned on, some actions concerning your privacy will be disabled: + Se a navegação privada estiver ativa, alguns elementos de privacidade estarão inativos: + + + Import bookmarks... + Importar favoritos... + + + Start Private Browsing + Iniciar navegação privada + + + There are still %1 open tabs and your session won't be stored. Are you sure to quit QupZilla? + Ainda existem %1 guias abertas e a sessão não será gravada. Tem a certeza que deseja sair? + + + Bookmark &All Tabs + M&arcar todos os favoritos + + + History + Histórico + + + Sidebars + Barra lateral + + + + NavigationBar + + Back + Voltar + + + Home + Página inicial + + + Main Menu + Menu principal + + + Exit Fullscreen + Sair da Fullscreen + + + New Tab + Nova guia + + + Clear history + Limpar histórico + + + Forward + Avançar + + + No Named Page + Página sem nome + + + + AutoFillManager + + Edit + Editar + + + Cannot read file! + Não foi possível ler o arquivo! + + + Error while importing! + Ocorreu um erro ao importar! + + + Edit password + Editar senha + + + Import/Export + Importar/Exportar + + + Choose file... + Escolha o arquivo... + + + Are you sure to delete all passwords on your computer? + Você tem certeza que deseja apagar todas as senhas salvas em seu computador? + + + Hide Passwords + Ocultar senhas + + + Remove + Remover + + + Server + Servidor + + + Show Passwords + Mostrar senhas + + + Remove All + Remover todas + + + Successfully imported + Importado com sucesso + + + Export Passwords to File... + Exportar senhas para arquivo... + + + Password + Senha + + + Username + Usuário + + + Import Passwords from File... + Importar senhas de arquivo... + + + Passwords + Senhas + + + Exceptions + Exceções + + + Successfully exported + Exportado com sucesso + + + Are you sure that you want to show all passwords? + Tem a certeza que deseja exibir todas as senhas? + + + Confirmation + Confirmação + + + Change password: + Alterar senha: + + + Cannot write to file! + Não foi possível escrever no arquivo! + + + + RSSManager + + News + Notícias + + + Empty + Vazio + + + Edit feed + Editar feed + + + Edit RSS Feed + Editar feed RSS + + + Reload + Atualizar + + + RSS Reader + Leitor RSS + + + Feed URL: + Feed URL: + + + Open link in new tab + Abrir ligação em nova guia + + + Add new feed + Adicionar novo feed + + + You already have this feed. + Você já possui esse feed. + + + Delete feed + Apagar feed + + + Add feed + Adicionar feed + + + Loading... + Carregando... + + + New feed + Novo feed + + + Optimize Database + Otimizar banco de dados + + + Please enter URL of new feed: + Indique o URL do novo feed: + + + Open link in current tab + Abrir link na guia atual + + + RSS feed duplicated + Feed RSS duplicado + + + Error in fetching feed + Ocorreu um erro ao tentar baixar o feed + + + Fill title and URL of a feed: + Indique o título e o URL do feed: + + + You don't have any RSS Feeds.<br/> +Please add some with RSS icon in navigation bar on site which offers feeds. + Ainda não possui nenhum feed RSS.<br/> +Adicione os feeds clicando no símbolo RSS existente na barra de navegação, em sites que disponibilizam esse serviço. + + + Feed title: + Título: + + + + BookmarksWidget + + Save + Salvar + + + Add to Speed Dial + Adicionar ao acesso rápido + + + Close + Fechar + + + Name: + Nome: + + + Remove Bookmark + Remover Favorito + + + Add into Speed Dial + Adicionar ao acesso rápido + + + Add into Bookmarks + Adicionar aos favoritos + + + Remove from Speed Dial + Remover do acesso rápido + + + <b>Edit Bookmark</b> + <b>Editar favoritos</b> + + + Edit This Bookmark + Editar este favorito + + + Folder: + Pasta: + + + <b>Add Bookmark</b> + <b>Adicionar favorito</b> + + + Edit Bookmark + Editar Favorito + + + + AdBlockDialog + + Rule + Filtro + + + EasyList has been successfully updated. + A EasyList foi atualizada com sucesso. + + + Update EasyList + Atualizar EasyList + + + Please write your rule here: + Escreva aqui o seu filtro: + + + Add Custom Rule + Adicionar filtro personalizado + + + Enable AdBlock + Ativar AdBlock + + + AdBlock + AdBlock + + + Search... + Procurar... + + + Delete Rule + Apagar Filtro + + + Add Rule + Adicionar Filtro + + + Custom Rules + Filtros Personalizados + + + Update completed + Atualização concluída + + + AdBlock Configuration + Configuração AdBlock + + + + ToolButton + + Stop + Parar + + + Reload + Atualizar + + + + EditSearchEngine + + Url: + Url: + + + Icon: + Icon: + + + Name: + Nome: + + + Choose icon... + Escolha icon... + + + Add from file ... + Adicionar do arquivo... + + + Shortcut: + Atalho: + + + <b>Note: </b>%s in url represent searched string + <b>Observação: </b>%s no url representa o texto procurado + + + + TabBar + + &Bookmark This Tab + Adicionar essa guia aos &favoritos + + + Re&load All Tabs + Atualizar todas as guia&s + + + &Duplicate Tab + &Duplicar guias + + + Cl&ose + F&echar + + + &New tab + &Nova guia + + + &Reload Tab + Atualiza&r guia + + + Restore &Closed Tab + Recuperar guia fe&chada + + + &Pin Tab + &Fixar guia + + + Un&pin Tab + Des&fixar guia + + + Reloa&d All Tabs + Atualizar to&das as guias + + + Close Ot&her Tabs + Fechar as o&utras guias + + + &Stop Tab + Parar guia&s + + + Bookmark &All Tabs + &Salvar todas as guias nos Favoritos + + + Bookmark &All Ta&bs + S&alvar todas as guias nos Favoritos + + + + WebView + + &Back + Volta&r + + + &Mute + &Mudo + + + &Play + Re&produzir + + + &Save image as... + Sa&lvar imagem como... + + + Show &only this frame + M&ostrar apenas esta moldura + + + S&top + Pa&rar + + + Reset + Recuperar + + + &Save link as... + &Salvar link como... + + + Go to &web address + Ir para endereço &web + + + &Copy link address + &Copiar URL + + + Show so&urce of frame + Mostrar código fonte da mold&ura + + + &Pause + &Pausa + + + Save Media To &Disk + Gravar arquivo no &disco + + + &Print page + Im&primir + + + This frame + Esta moldura + + + B&ookmark link + Salvar link nos fav&oritos + + + Send page link... + Enviar link da página... + + + Print frame + Imprimir moldura + + + Zoom &in + Ampl&iar + + + &Zoom out + Redu&zir + + + Copy im&age + Copi&ar imagem + + + Show i&mage + Abrir i&magem + + + Validate page + Validar página + + + Send link... + Enviar link... + + + Search "%1 .." with %2 + Procurar "%1 ..." no %2 + + + Show this frame in new &tab + Mostrar es&ta moldura em uma nova guia + + + Open link in new &window + Abrir link em nova &janela + + + Select &all + Selecion&ar tudo + + + Google Translate + Tradutor Google + + + Send image... + Enviar imagem... + + + Dictionary + Dicionário + + + &Copy page link + &Copiar link da página + + + &Save page as... + Salva&r página como... + + + &Reload + Atualiza&r + + + Show info ab&out site + Mostrar inf&ormações da página + + + Un&mute + Co&m som + + + &Forward + &Avançar + + + Open link in new &tab + Abrir link em uma nova &guia + + + No Named Page + Página sem nome + + + Book&mark page + Adicionar essa página aos &favoritos + + + Show so&urce code + Exibir código fon&te + + + &Copy Media Address + &Copiar endereço multimidia + + + Send text... + Enviar texto... + + + &Send Media Address + &Enviar endereço multimidia + + + Copy image ad&dress + Copiar URL &da imagem + + + + DownloadItem + + Clear + Limpar + + + Error + Erro + + + hours + hora(s) + + + Go to Download Page + Ir para a página do download + + + Cancelled - %1 + Cancelado - %1 + + + minutes + minuto(s) + + + Done - %1 + Concluído - %1 + + + Cancelled + Cancelado + + + Open Folder + Abrir pasta + + + Sorry, the file + %1 + was not found! + Desculpa, o arquivo +%1 +não foi encontrado! + + + Not found + Não encontrado + + + Do you want to also delete dowloaded file? + Também deseja apagar o arquivo em seu disco? + + + Remaining time unavailable + Tempo restante não disponível + + + Copy Download Link + Copiar link do Download + + + Cancel downloading + Cancelar download + + + seconds + segundo(s) + + + Unknown size + Tamanho desconhecido + + + %2 - unknown size (%3) + %2 - tamanho desconhecido (%3) + + + few seconds + poucos segundos + + + Delete file + Apagar arquivo + + + Remaining %1 - %2 of %3 (%4) + Falta(m) %1 - %2 de %3 (%4) + + + Open File + Abrir arquivo + + + Unknown speed + Velocidade desconhecida + + + Error: + Erro: + + + Error: Cannot write to file! + Erro: incapaz de escrever no arquivo! + + + + DownloadManager + + Clear + Limpar + + + Cannot start external download manager! %1 + Não foi possível iniciar o gerenciador de downloads! %1 + + + Are you sure to quit? All uncompleted downloads will be cancelled! + Tem a certeza que deseja sair? Os downloads que não foram finalizados, serão cancelados! + + + Arguments: + Argumentos: + + + % - Download Manager + %s - Gerenciador de Downloads + + + Download Manager + Gerenciados de Downloads + + + %1% of %2 files (%3) %4 remaining + %1% de %2 arquivos - restam (%3) %4 + + + Download Finished + Download concluído + + + Warning + Aviso + + + Cannot start external download manager + Não foi possível iniciar o gerenciador de downloads + + + Executable: + Executável: + + + All files have been successfully downloaded. + Todos os arquivos foram recebidos com sucesso. + + + + BookmarksToolbar + + Empty + Vazio + + + Url: + Url: + + + &Hide Toolbar + O&cultar barra de ferramentas + + + Remove bookmark + Remover favorito + + + Edit bookmark: + Editar favorito: + + + Hide Most &Visited + Ocultar mais &visitados + + + Move right + Mover para a direita + + + &Bookmark Current Page + A&dicionar página atual aos favoritos + + + Sites you visited the most + As páginas mais visitadas + + + Most visited + Mais visitados + + + &Organize Bookmarks + &Organizar favoritos + + + Title: + Título: + + + Move left + Mover para a esquerda + + + Show Most &Visited + Mostrar mais &visitados + + + Bookmark &All Tabs + Adi&cionar todas as guias aos favoritos + + + Edit Bookmark + Editar Favorito + + + Edit bookmark + Editar favorito + + + + TabWidget + + Empty + Vazio + + + List of tabs + Lista de guias + + + Restore All Closed Tabs + Restaurar todas as guias fechadas + + + Currently you have %1 opened tabs + Atualmente, existe %1 guias abertas + + + New Tab + Nova Guia + + + New tab + Nova Guia + + + Clear list + Limpar a lista + + + Loading... + A carregar... + + + No Named Page + Página sem nome + + + + SearchEnginesManager + + Error + Erro + + + Error while adding Search Engine <br><b>Error Message: </b> %1 + Ocorreu um erro ao adicionar o site de pequisa. <br><b>Mensagem de erro: </b> %1 + + + Search Engine "%1" has been successfully added. + O site de pesquisa "%1" foi adicionado com sucesso. + + + Search Engine Added + Site de pesquisa adicionado + + + Search Engine is not valid! + O site de pesquisa digitado não é valido! + + + + CookieManager + + Name: + Nome: + + + Path: + Caminho: + + + <cookie not selected> + <cookie não selecionado> + + + Find: + Localizar: + + + Search + Procurar + + + Server + Servidor + + + All connections + Todas as ligações + + + Value: + Valor: + + + Remove cookies + Remover cookies + + + Secure only + Só os seguros + + + Expiration: + Termina em: + + + Secure: + Seguro: + + + Server: + Servidor: + + + Session cookie + Cookie da sessão + + + Cookies + Cookies + + + Are you sure to delete all cookies on your computer? + Tem a certeza que pretende remover todos os cookies? + + + These cookies are stored on your computer: + Estes cookies estão guardados no computador: + + + Remove all cookies + Remover todos os cookies + + + Confirmation + Confirmação + + + Remove cookie + Remover cookie + + + Cookie name + Nome do cookie + + + + HistorySideBar + + This Week + Esta semana + + + Title + Título + + + Today + Hoje + + + Copy address + Copiar endereço + + + This Month + Este mês + + + Open link in new tab + Abrir link em uma nova guia + + + Search... + Procurar... + + + Open link in current tab + Abrir link na guia atual + + + + AdBlockIcon + + Show AdBlock &Settings + Configuraçõe&s do AdBlock + + + Blocked popup window + Bloquear janelas popup + + + AdBlock lets you block unwanted content on web pages + O AdBlock bloqueia conteúdos indesejados + + + AdBlock + AdBlock + + + Blocked URL (AdBlock Rule) - click to edit rule + URL bloqueado - clique para editar + + + %1 with (%2) + %1 com (%2) + + + Blocked Popup Windows + Popups Bloqueados + + + No content blocked + Nenhum conteúdo bloqueado + + + AdBlock blocked unwanted popup window. + O AdBlock bloqueou algumas janelas popups. + + + Learn About Writing &Rules + Saber mais sobre as &regras + + + + SiteInfoWidget + + first + primeira + + + third + terceira + + + Your connection to this site is <b>secured</b>. + A conexão para essa página é <b>segura</b>. + + + More... + Mais... + + + second + segunda + + + This is your <b>%1</b> visit of this site. + Esta é a sua <b>%1</b> visita nesse site. + + + Your connection to this site is <b>unsecured</b>. + A conexão para essa página <b>não é segura</b>. + + + You have <b>never</b> visited this site before. + Você <b>nunca</b> visitou esse site antes. + + + + DownloadOptionsDialog + + from: + de: + + + Opening %1 + Abrir %1 + + + Open... + Abrir... + + + Opening + Abrir + + + which is a: + que é: + + + What should QupZilla do with this file? + O que o QupZilla deve fazer com esse arquivo? + + + Save File + Salvar Arquivo + + + You have chosen to open + Você escolheu abrir + + + + ThemeManager + + <b>Author:</b> + <b>Autor:</b> + + + License + Licença + + + <b>Name:</b> + <b>Nome:</b> + + + License Viewer + Visualizador de licença + + + <b>Description:</b> + <b>Descrição:</b> + + + + WebPage + + Server closed the connection + O servidor fechou a conexão + + + Proxy connection timed out + A conexão proxy expirou + + + If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. + Se o computador estiver protegido por um firewall ou proxy, certifique-se que o QupZilla pode acessar à Internet. + + + Proxy connection refused + Conexão de proxy recusada + + + JavaScript alert - %1 + Alerta JavaScript - %1 + + + Confirm form resubmission + Confirmar envio de formulário + + + Choose file... + Escolher arquivo... + + + If you are unable to load any pages, check your computer's network connection. + Se você não consegue carregar nenhuma página, verifique se o seu computador está conectado à Internet. + + + Proxy server not found + Servidor proxy não encontrado + + + Temporary network failure + Falha temporária de rede + + + Blocked by rule <i>%1</i> + Bloqueado pela regra <i>%1</i> + + + Content Access Denied + Conteúdo Bloqueado + + + Error code %1 + Código de erro: %1 + + + Proxy authentication required + Requer autorização de proxy + + + Connection timed out + A conexão expirou + + + Server refused the connection + O servidor recusou a conexão + + + Untrusted connection + Conexão não confiável + + + Content not found + Conteúdo não encontrado + + + QupZilla can't load page from %1. + O Qupzilla não conseguiu carregar a página %1. + + + Server not found + Servidor não encontrado + + + Prevent this page from creating additional dialogs + Impedir que esta página crie mais caixas de diálogo + + + Try Again + Tente novamente + + + Select files to upload... + Selecione os arquivos que deseja enviar... + + + AdBlocked Content + Conteúdo bloqueado + + + Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com + Verifique se existem erros bobos no endereço digitado, como <b>ww.</b>exemplo.com invés de <b>www.</b>exemplo.com + + + Failed loading page + Falha ao carregar a página + + + To show this page, QupZilla must resend request which do it again +(like searching on making an shoping, which has been already done.) + Para mostrar esta página, o QupZilla precisa reenviar o pedido solicitado. +(é como fazer alguma coisa, que você já havia feito anteriormente) + + + + ClickToFlash + + Add %1 to whitelist + Adicionar %1 à whitelist + + + Flash Object + Objeto Flash + + + No more information available. + Não existem mais informações. + + + <b>Value</b> + <b>Valor</b> + + + Object blocked by ClickToFlash + Objeto bloqueado pelo ClickToFlash + + + Show more information about object + Mostrar mais informações sobre o objeto + + + <b>Attribute Name</b> + <b>Nome do atributo</b> + + + Delete object + Apagar objeto + + + + NetworkManager + + Save username and password on this site + Salvar usuário e senha desse página + + + <b>Domain Name: </b> + <b>Domínio: </b> + + + <b>Error: </b> + <b>Erro: </b> + + + Proxy authorization required + Requer autorização de proxy + + + <b>Organization: </b> + <b>Organização: </b> + + + A username and password are being requested by %1. The site says: "%2" + %1 está solicitando usuário e senha. A página diz: "%2" + + + Authorization required + Requer autorização + + + Username: + Usuário: + + + A username and password are being requested by proxy %1. + O proxy %1 esta pedindo um usuário e uma senha. + + + Password: + Senha: + + + SSL Certificate Error! + Erro de certificado SSL! + + + Would you like to make an exception for this certificate? + Deseja criar uma exceção para este certificado? + + + The page you are trying to access has the following errors in the SSL certificate: + A página que está a tentar acessar apresenta os seguintes erros no certificado SSL: + + + <b>Expiration Date: </b> + <b>Data de expiração: </b> + + + + CertificateInfoWidget + + Common Name (CN): + Nome comum (NC): + + + Organization (O): + Organização (O): + + + <b>Validity</b> + <b>Validade</b> + + + <b>Issued By</b> + <b>Emitido por</b> + + + <b>Issued To</b> + <b>Emitido para</b> + + + Organizational Unit (OU): + Unidade organizacional (UO): + + + Expires On: + Expira em: + + + Serial Number: + Número de série: + + + Issued On: + Emitido em: + + + + QtWin + + Open new tab + Abrir uma nova guia + + + Opens a new window if browser is running + Abre uma nova janela se o navegador estiver aberto + + + Opens a download manager if browser is running + Abrir o gerenciador de downloads, se o navegador estiver aberto + + + Open download manager + Abrir o gerenciador de downloads + + + Open new window + Abrir uma nova janela + + + Opens a new tab if browser is running + Abre uma nova guia se o navegador estiver aberto + + + + SpeedDial + + Select image... + Selecione a imagem... + + + Unable to load + Não foi possível carregar + + + + TabbedWebView + + Inspect Element + Inspecionar elemento + + + %1 - QupZilla + %1 - QupZilla + + + Loading... + Carregando... + + + Failed loading page + Falha ao carregar a página + + + + WebSearchBar + + Add %1 ... + Adicionar %1... + + + Manage Search Engines + Gerenciador dos Sites de Pesquisa + + + Clear All + Apagar tudo + + + Paste And &Search + Colar e Pr&ocurar + + + + DownloadFileHelper + + NoNameDownload + Download sem Nome + + + Save file as... + Salvar arquivo como... + + + + LocationBar + + Paste And &Go + Colar e &ir + + + Add RSS from this page... + Adicionar RSS desta página... + + + .co.uk + .com.br + + + Enter URL address or search on %1 + Digite aqui o URL, ou então o que você deseja pesquisar no %1 + + + Show information about this page + Mostrar informações desta página + + + Clear All + Apagar tudo + + + + BookmarksSideBar + + Copy address + Copiar endereço + + + Open link in &new tab + Abrir link em uma &nova guia + + + Search... + Procurar... + + + Open link in current &tab + Abrir link na aba a&tual + + + &Delete + E&liminar + + + + RSSNotification + + Open RSS Manager + Abrir gerenciador de RSS + + + + AddAcceptLanguage + + Add Language + Adicionar idioma + + + Personal definition: + Personalizado: + + + Choose preferred language for web sites + Escolha o idioma preferencial para as páginas web + + + + PopupWindow + + %1 - QupZilla + %1 - QupZilla + + + + AboutDialog + + <b>WebKit version %1</b></p> + <b>Versão WebKit: %1</b></p> + + + About QupZilla + Sobre QupZilla + + + < About QupZilla + < Sobre QupZilla + + + <p><b>Translators:</b><br/>%1</p> + <p><b>Tradutores:</b><br/>%1</p> + + + Authors and Contributors + Autores e Contribuidores + + + Authors + Autores + + + <p>&copy; %1 %2<br/>All rights reserved.<br/> + <p>&copy; %1 %2<br/>Todos os direitos reservados.<br/> + + + <small>Build time: %1 </small></p> + <small>Compilado em: %1 </small></p> + + + <p><b>Application version %1</b><br/> + <p><b>Versão do aplicativo: %1</b><br/> + + + <p><b>Contributors:</b><br/>%1</p> + <p><b>Contribuidores:</b><br/>%1</p> + + + <p><b>Main developer:</b><br/>%1 &lt;%2&gt;</p> + <p><b>Programador principal:</b><br/>%1 &lt;%2&gt;</p> + + + + AutoFillWidget + + Not Now + Agora Não + + + Never For This Site + Nunca Para Esse Site + + + Remember + Lembrar + + + + Updater + + Update + Atualizar + + + New version of QupZilla is ready to download. + Existe uma nova versão disponível. + + + Update available + Atualização disponível + + + + PageScreen + + Page Screen + Page Screen + + + Save Page Screen... + Salvar Page Screen... + + + screen.png + screen.png + + + + SideBar + + Bookmarks + Favoritos + + + History + Histórico + + + + CloseDialog + + There are still open tabs + Ainda existem abas abertas + + + Don't ask again + Não perguntar novamente + + + + QObject + + Native System Notification + Notificações do sistema + + + <not set in certificate> + <não definido no certificado> + + + The file is not an OpenSearch 1.1 file. + Este não é um arquivo OpenSearch 1.1. + + + + WebInspectorDockWidget + + Web Inspector + Inspetor web + + + + SearchToolbar + + Search... + Procurar... + + + Search: + Procurar: + + + Case sensitive + Diferenciar maiúsculas de minúsculas + + + Highlight + Realçar + + + + SourceViewerSearch + + Search... + Procurar... + + + Search: + Procurar: + + + + MainApplication + + Last session crashed + O navegador foi fechado de forma incorreta + + + <b>QupZilla crashed :-(</b><br/>Oops, the last session of QupZilla was interrupted unexpectedly. We apologize for this. Would you like to try restoring the last saved state? + <b>QupZilla travou :/</b><br/>Oops, parece que a última sessão do QupZilla não foi fechada como o planejado. Pedimos mil desculpas por isso. Você deseja que nós tentassemos abrir a última sessão que você estava? + + + + SearchToolBar + + No results found. + Nenhum resultado. + + + + AutoFillNotification + + Do you want QupZilla to remember the password for <b>%1</b> on %2? + Pretende que o QupZilla memorize a senha de <b>%1</b> em %2? + + + + jsAlert + + Prevent this page from creating additional dialogs + Impedir que esta página crie mais caixas de diálogo + + + + BookmarksModel + + Unsorted Bookmarks + Favoritos Desorganizados + + + Bookmarks In Menu + Favoritos no Menu + + + Bookmarks In ToolBar + Favoritos na Barra de Ferramentas + + + + BookmarkIcon + + Edit this bookmark + Editar este favorito + + + Bookmark this Page + Adicionar essa página aos favoritos + + +