mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
Fixed loading utf urls from command line.
- updated Brazilian Portuguese translation
This commit is contained in:
parent
ef07116915
commit
99a6b5de86
@ -18,9 +18,10 @@
|
||||
#include "commandlineoptions.h"
|
||||
#include "qupzilla.h"
|
||||
|
||||
CommandLineOptions::CommandLineOptions(int &argc, char** argv)
|
||||
#include <QCoreApplication>
|
||||
|
||||
CommandLineOptions::CommandLineOptions(int &argc)
|
||||
: m_argc(argc)
|
||||
, m_argv(argv)
|
||||
{
|
||||
parseActions();
|
||||
}
|
||||
@ -63,9 +64,15 @@ void CommandLineOptions::parseActions()
|
||||
{
|
||||
using namespace std;
|
||||
|
||||
const QStringList &arguments = QCoreApplication::arguments();
|
||||
if (arguments.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Skip first argument (it should be program itself)
|
||||
for (int i = 1; i < m_argc; i++) {
|
||||
QString arg(m_argv[i]);
|
||||
for (int i = 1; i < arguments.count(); ++i) {
|
||||
QString arg = arguments.at(i);
|
||||
|
||||
if (arg == "-h" || arg == "--help") {
|
||||
showHelp();
|
||||
ActionPair pair;
|
||||
@ -85,9 +92,9 @@ void CommandLineOptions::parseActions()
|
||||
|
||||
if (arg == "-v" || arg == "--version") {
|
||||
cout << "QupZilla v" << QupZilla::VERSION.toUtf8().data()
|
||||
#ifdef GIT_REVISION
|
||||
#ifdef GIT_REVISION
|
||||
<< " rev " << GIT_REVISION << " "
|
||||
#endif
|
||||
#endif
|
||||
<< "(build " << QupZilla::BUILDTIME.toUtf8().data() << ")"
|
||||
<< endl;
|
||||
ActionPair pair;
|
||||
@ -142,9 +149,10 @@ void CommandLineOptions::parseActions()
|
||||
}
|
||||
}
|
||||
|
||||
QString url(m_argv[m_argc - 1]);
|
||||
if (m_argc > 1 && !url.isEmpty() && !url.startsWith("-") && url.contains(".")) {
|
||||
cout << "QupZilla: Starting with url " << url.toUtf8().data() << endl;
|
||||
const QString &url = arguments.last();
|
||||
|
||||
if (m_argc > 1 && !url.isEmpty() && !url.startsWith("-") &&
|
||||
(url.contains(".") || url.contains("/") || url.contains("\\"))) {
|
||||
ActionPair pair;
|
||||
pair.action = Qz::CL_OpenUrl;
|
||||
pair.text = url;
|
||||
|
@ -33,7 +33,7 @@ public:
|
||||
|
||||
typedef QList<ActionPair> ActionPairList;
|
||||
|
||||
explicit CommandLineOptions(int &argc, char** argv);
|
||||
explicit CommandLineOptions(int &argc);
|
||||
ActionPairList getActions();
|
||||
|
||||
private:
|
||||
@ -41,7 +41,6 @@ private:
|
||||
void parseActions();
|
||||
|
||||
int m_argc;
|
||||
char** m_argv;
|
||||
ActionPairList m_actions;
|
||||
};
|
||||
|
||||
|
@ -47,6 +47,8 @@
|
||||
#include "locationbarsettings.h"
|
||||
#include "webviewsettings.h"
|
||||
#include "clearprivatedata.h"
|
||||
#include "proxystyle.h"
|
||||
#include "commandlineoptions.h"
|
||||
|
||||
#ifdef Q_WS_MAC
|
||||
#include <QFileOpenEvent>
|
||||
@ -81,7 +83,7 @@
|
||||
#define NO_SYSTEM_DATAPATH
|
||||
#endif
|
||||
|
||||
MainApplication::MainApplication(const QList<CommandLineOptions::ActionPair> &cmdActions, int &argc, char** argv)
|
||||
MainApplication::MainApplication(int &argc, char** argv)
|
||||
: QtSingleApplication("QupZillaWebBrowser", argc, argv)
|
||||
, m_cookiemanager(0)
|
||||
, m_browsingLibrary(0)
|
||||
@ -132,7 +134,9 @@ MainApplication::MainApplication(const QList<CommandLineOptions::ActionPair> &cm
|
||||
QString startProfile;
|
||||
|
||||
if (argc > 1) {
|
||||
foreach(const CommandLineOptions::ActionPair & pair, cmdActions) {
|
||||
CommandLineOptions cmd(argc);
|
||||
|
||||
foreach(const CommandLineOptions::ActionPair & pair, cmd.getActions()) {
|
||||
switch (pair.action) {
|
||||
case Qz::CL_StartWithoutAddons:
|
||||
noAddons = true;
|
||||
@ -156,9 +160,12 @@ MainApplication::MainApplication(const QList<CommandLineOptions::ActionPair> &cm
|
||||
m_postLaunchActions.append(PrivateBrowsing);
|
||||
break;
|
||||
case Qz::CL_OpenUrl:
|
||||
startUrl = QUrl(pair.text.toUtf8());
|
||||
startUrl = QUrl::fromUserInput(pair.text);
|
||||
messages.append("URL:" + pair.text);
|
||||
break;
|
||||
case Qz::CL_ExitAction:
|
||||
m_isClosing = true;
|
||||
return;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
@ -183,6 +190,7 @@ MainApplication::MainApplication(const QList<CommandLineOptions::ActionPair> &cm
|
||||
setQuitOnLastWindowClosed(true);
|
||||
#endif
|
||||
|
||||
setStyle(new ProxyStyle);
|
||||
setApplicationName("QupZilla");
|
||||
setApplicationVersion(QupZilla::VERSION);
|
||||
setOrganizationDomain("qupzilla");
|
||||
@ -441,7 +449,7 @@ void MainApplication::receiveAppMessage(QString message)
|
||||
{
|
||||
QWidget* actWin = getWindow();
|
||||
if (message.startsWith("URL:")) {
|
||||
QUrl url = QUrl::fromEncoded(message.mid(4).toUtf8());
|
||||
QUrl url = QUrl::fromUserInput(message.mid(4));
|
||||
addNewTab(url);
|
||||
actWin = getWindow();
|
||||
}
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include <QWeakPointer>
|
||||
|
||||
#include "qtsingleapplication.h"
|
||||
#include "commandlineoptions.h"
|
||||
#include "qz_namespace.h"
|
||||
|
||||
class QWebSettings;
|
||||
@ -58,7 +57,7 @@ public:
|
||||
QString TRANSLATIONSDIR;
|
||||
QString THEMESDIR;
|
||||
|
||||
explicit MainApplication(const CommandLineOptions::ActionPairList &cmdActions, int &argc, char** argv);
|
||||
explicit MainApplication(int &argc, char** argv);
|
||||
|
||||
void connectDatabase();
|
||||
void loadSettings();
|
||||
|
@ -18,9 +18,7 @@
|
||||
|
||||
#include <iostream>
|
||||
|
||||
#include "commandlineoptions.h"
|
||||
#include "mainapplication.h"
|
||||
#include "proxystyle.h"
|
||||
|
||||
#ifdef Q_WS_X11
|
||||
#include <signal.h>
|
||||
@ -44,23 +42,7 @@ int main(int argc, char* argv[])
|
||||
signal(SIGPIPE, sigpipe_handler);
|
||||
#endif
|
||||
|
||||
QList<CommandLineOptions::ActionPair> cmdActions;
|
||||
|
||||
if (argc > 1) {
|
||||
CommandLineOptions cmd(argc, argv);
|
||||
cmdActions = cmd.getActions();
|
||||
foreach(const CommandLineOptions::ActionPair & pair, cmdActions) {
|
||||
switch (pair.action) {
|
||||
case Qz::CL_ExitAction:
|
||||
return 0;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
MainApplication app(cmdActions, argc, argv);
|
||||
MainApplication app(argc, argv);
|
||||
|
||||
if (app.isClosing()) {
|
||||
// Not showing any output, otherwise XFCE shows "Failed to execute default browser. I/O error" error
|
||||
@ -70,8 +52,5 @@ int main(int argc, char* argv[])
|
||||
return 0;
|
||||
}
|
||||
|
||||
app.setStyle(new ProxyStyle());
|
||||
|
||||
int result = app.exec();
|
||||
return result;
|
||||
return app.exec();
|
||||
}
|
||||
|
@ -436,7 +436,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Note:</b> Currently, only import from Html File can import also bookmark folders.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Observação:</b> Atualmente, estamos importanto favoritos e pastas somente de arquivos HTML.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -573,7 +573,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Open link in current &tab</source>
|
||||
<translation>Abrir link na aba a&tual</translation>
|
||||
<translation>Abrir link na guia a&tual</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>&Delete</source>
|
||||
@ -652,7 +652,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Show Only Icons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Mostras Somente Icons</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -711,11 +711,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Remover</translation>
|
||||
<translation>Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add to Bookmarks</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Adicionar aos Favoritos</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -840,11 +840,11 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Clear web databases</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Limpar Banco de Dados da Web</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Clear local storage</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Limpar arquivos temporários</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -886,7 +886,7 @@
|
||||
<name>CloseDialog</name>
|
||||
<message>
|
||||
<source>There are still open tabs</source>
|
||||
<translation type="obsolete">Ainda existem abas abertas</translation>
|
||||
<translation type="obsolete">Você ainda possui guias abertas</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't ask again</source>
|
||||
@ -981,43 +981,43 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Stored Cookies</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cookies Salvos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cookie Filtering</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Filtrar Cookie</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Cookie whitelist</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Cookie Whitelist</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cookies from these servers will ALWAYS be accepted (even if you have disabled saving cookies)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cookies desses servidores SEMPRE serão aceitos (mesmo que você desabilite a função cookies)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add</source>
|
||||
<translation type="unfinished">Adicionar</translation>
|
||||
<translation>Adicionar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Remove</source>
|
||||
<translation type="unfinished">Remover</translation>
|
||||
<translation>Remover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Cookie blacklist</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Cookies Blacklist</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cookies from these servers will NEVER be accepted</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cookies desses servidores NUNCA serão aceitos (mesmo que você habilite a função cookies)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add to whitelist</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Adicionar à whitelist</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Add to blacklist</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Adicionar à Blacklist</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1256,7 +1256,7 @@ não foi encontrado!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Image files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Imagens</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1416,7 +1416,7 @@ não foi encontrado!</translation>
|
||||
<name>LicenseViewer</name>
|
||||
<message>
|
||||
<source>License Viewer</source>
|
||||
<translation type="unfinished">Visualizador de licença</translation>
|
||||
<translation>Visualizador de licença</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1448,7 +1448,7 @@ não foi encontrado!</translation>
|
||||
<message>
|
||||
<source>.co.uk</source>
|
||||
<comment>Append domain name on ALT + Enter = Should be different for every country</comment>
|
||||
<translation type="unfinished">.com.br</translation>
|
||||
<translation>.com.br</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -1627,11 +1627,11 @@ não foi encontrado!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Error!</source>
|
||||
<translation type="unfinished">Erro!</translation>
|
||||
<translation>Erro!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot load extension!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Não foi possível carregar essa extensão!</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2278,27 +2278,27 @@ não foi encontrado!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Allow Netscape Plugins (Flash plugin)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Permitir Plugins NetScape (Flash plugin)</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't load tabs until selected</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Não carregar guias até ser selecionada</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Extensions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Extensões</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Exceptions</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Excessões</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Server:</source>
|
||||
<translation type="unfinished">Servidor:</translation>
|
||||
<translation>Servidor:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Use different proxy for https connection</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Usar proxy diferente para conexões https</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2695,44 +2695,45 @@ não foi encontrado!</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Configuration Information</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Informações de Configurações</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>HTML files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Arquivos HTML</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Image files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Imagens</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Text files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Arquivos de texto</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>All files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Todos os Arquivos</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Last session crashed</source>
|
||||
<translation type="unfinished">O navegador foi fechado de forma incorreta</translation>
|
||||
<translation>O navegador foi fechado de forma incorreta</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><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?</source>
|
||||
<translation type="unfinished"><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?</translation>
|
||||
<translation><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?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are still %1 open tabs and your session won't be stored.
|
||||
Are you sure to quit QupZilla?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Ainda há %1 guias abertas. A sua sessão não será salva.
|
||||
Você tem certeza que deseja sair do QupZilla?</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Don't ask again</source>
|
||||
<translation type="unfinished">Não perguntar novamente</translation>
|
||||
<translation>Não perguntar novamente</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are still open tabs</source>
|
||||
<translation type="unfinished">Ainda existem abas abertas</translation>
|
||||
<translation>Ainda existem guias abertas</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -2951,99 +2952,99 @@ Are you sure to quit QupZilla?</source>
|
||||
</message>
|
||||
<message>
|
||||
<source>E-mail is optional<br/><b>Note: </b>Please read how to make a bug report <a href=%1>here</a> first.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>O Email é opicional<br/><b>Observação:</b>Por favor, leia como reportar um bug <a href=%1>aqui</a> antes.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cover</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Cover</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Configuration Information</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Informações de Configurações</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Preferences</source>
|
||||
<translation type="unfinished">Preferências</translation>
|
||||
<translation>Preferências</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Option</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Opções</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Value</source>
|
||||
<translation type="unfinished">Valor</translation>
|
||||
<translation>Valor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Name</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Nome</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Author</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Autor</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Description</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Descrição</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Application version</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Versão do Aplicativo</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Qt version</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Versão do Qt</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Build Configuration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Configuração da compilação</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Disabled</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Desabilitado</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Enabled</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Habilitado</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Debug build</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Compilar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>WebGL support</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Suporte WebGL</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Windows 7 API</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Windows 7 API</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>KDE integration</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Integração com o KDE</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Portable build</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Compilação Portátil</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Extensions</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Extensões</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No available extensions.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Não há extensões disponíveis.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>If you are experiencing problems with QupZilla, please try to disable all extensions first. <br/>If this does not fix it, then please fill out this form: </source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Se você estiver enfrentando problemas com o QupZilla, tente desabilitar as extensões.<br/>Se não funcionar, por favor, preencha o formulário abaixo: </translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Close</source>
|
||||
<translation type="unfinished">Fechar</translation>
|
||||
<translation>Fechar</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>This page contains information about QupZilla's current configuration - relevant for troubleshooting. Please include this information when submitting bug reports.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Essa página contém informações sobre as configurações atuais do QupZilla - que são importantes para sabermos a causa do problema. Por favor, inclua essas informações quanto for reportar um bug (por favor, escreva em Inglês).</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -3417,7 +3418,7 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>Save image...</source>
|
||||
<translation>Salvaragem...</translation>
|
||||
<translation>Salvar imagem...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Security</source>
|
||||
@ -3441,7 +3442,7 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Your connection to this page is secured with this certificate: </b></source>
|
||||
<translation><b>A conexão para essa página é seguda com um certificado.</b></translation>
|
||||
<translation><b>A conexão para essa página é sgura por causa desse certificado.</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Cannot write to file!</source>
|
||||
@ -3449,27 +3450,27 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>Databases</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Banco de Dados</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Database details</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><b>Detalhe do banco de dados</b></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Name:</source>
|
||||
<translation type="unfinished">Nome:</translation>
|
||||
<translation>Nome:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Path:</source>
|
||||
<translation type="unfinished">Caminho:</translation>
|
||||
<translation>Atalho:</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><database not selected></source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation><nenhum banco de dados selecionado></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No databases are used by this page.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Essa página não usa nenhum banco de dados.</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -3645,14 +3646,14 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>Image files</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Imagens</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SqueezeLabelV2</name>
|
||||
<message>
|
||||
<source>Copy</source>
|
||||
<translation type="unfinished">Copiar</translation>
|
||||
<translation>Copiar</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -3746,7 +3747,7 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>Loading...</source>
|
||||
<translation>A carregar...</translation>
|
||||
<translation>Carregando...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>No Named Page</source>
|
||||
@ -3904,7 +3905,7 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla can't load page from %1.</source>
|
||||
<translation>O Qupzilla não conseguiu carregar a página %1.</translation>
|
||||
<translation>O QupZilla não conseguiu carregar a página %1.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Server not found</source>
|
||||
@ -3942,11 +3943,11 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>JavaScript alert</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Alerta JavaScript</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Unknown network error</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Erro de rede desconhecido</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
@ -4136,7 +4137,7 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>&Copy Media Address</source>
|
||||
<translation>&Copiar endereço multimidia</translation>
|
||||
<translation>&Copiar endereço multimídia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Send text...</source>
|
||||
@ -4144,7 +4145,7 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>&Send Media Address</source>
|
||||
<translation>&Enviar endereço multimidia</translation>
|
||||
<translation>&Enviar endereço multimídia</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Copy image ad&dress</source>
|
||||
@ -4152,11 +4153,11 @@ Após adicionar ou remover os caminhos dos certificados, você terá que reinici
|
||||
</message>
|
||||
<message>
|
||||
<source>Search with...</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Procurar com...</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Create Search Engine</source>
|
||||
<translation type="unfinished"></translation>
|
||||
<translation>Criar Motor de Busca</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
|
Loading…
Reference in New Issue
Block a user