mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01:00
Updated translations
This commit is contained in:
parent
8eaece6c1f
commit
930720517a
|
@ -312,7 +312,7 @@ void QupZilla::setupMenu()
|
|||
QKeySequence quitSequence = QKeySequence(QKeySequence::Quit);
|
||||
#ifdef Q_WS_X11
|
||||
// QKeySequence::Quit returns a non-empty sequence on X11 only when running Gnome or Kde
|
||||
if(quitSequence.isEmpty()) {
|
||||
if (quitSequence.isEmpty()) {
|
||||
quitSequence = QKeySequence(Qt::CTRL + Qt::Key_Q);
|
||||
}
|
||||
#endif
|
||||
|
|
|
@ -111,7 +111,7 @@ void LocationCompleterDelegate::paint(QPainter* painter, const QStyleOptionViewI
|
|||
QString link(opt.fontMetrics.elidedText(index.data(Qt::DisplayRole).toString(), Qt::ElideRight, linkRect.width()));
|
||||
painter->setFont(opt.font);
|
||||
TabPosition pos = index.data(LocationCompleterModel::TabPositionRole).value<TabPosition>();
|
||||
if(m_drawSwitchToTab && pos.windowIndex != -1) {
|
||||
if (m_drawSwitchToTab && pos.windowIndex != -1) {
|
||||
const QIcon tabIcon = QIcon(":icons/menu/tab.png");
|
||||
QRect iconRect(linkRect);
|
||||
iconRect.setWidth(m_padding + 16 + m_padding);
|
||||
|
|
|
@ -73,7 +73,7 @@ void LocationCompleterModel::refreshCompletions(const QString &string)
|
|||
item->setData(query.value(3), CountRole);
|
||||
item->setData(QVariant(true), BookmarkRole);
|
||||
item->setData(string, SearchStringRole);
|
||||
if(qzSettings->showSwitchTab) {
|
||||
if (qzSettings->showSwitchTab) {
|
||||
item->setData(QVariant::fromValue<TabPosition>(tabPositionForUrl(url)), TabPositionRole);
|
||||
}
|
||||
|
||||
|
@ -99,7 +99,7 @@ void LocationCompleterModel::refreshCompletions(const QString &string)
|
|||
item->setData(query.value(3), CountRole);
|
||||
item->setData(QVariant(false), BookmarkRole);
|
||||
item->setData(string, SearchStringRole);
|
||||
if(qzSettings->showSwitchTab) {
|
||||
if (qzSettings->showSwitchTab) {
|
||||
item->setData(QVariant::fromValue<TabPosition>(tabPositionForUrl(url)), TabPositionRole);
|
||||
}
|
||||
|
||||
|
@ -129,7 +129,7 @@ void LocationCompleterModel::showMostVisited()
|
|||
item->setData(query.value(0), IdRole);
|
||||
item->setData(query.value(2), TitleRole);
|
||||
item->setData(QVariant(false), BookmarkRole);
|
||||
if(qzSettings->showSwitchTab) {
|
||||
if (qzSettings->showSwitchTab) {
|
||||
item->setData(QVariant::fromValue<TabPosition>(tabPositionForUrl(url)), TabPositionRole);
|
||||
}
|
||||
|
||||
|
@ -199,23 +199,23 @@ QSqlQuery LocationCompleterModel::createQuery(const QString &searchString, const
|
|||
return sqlQuery;
|
||||
}
|
||||
|
||||
TabPosition LocationCompleterModel::tabPositionForUrl(const QUrl& url) const
|
||||
TabPosition LocationCompleterModel::tabPositionForUrl(const QUrl &url) const
|
||||
{
|
||||
return tabPositionForEncodedUrl(url.toEncoded());
|
||||
}
|
||||
|
||||
TabPosition LocationCompleterModel::tabPositionForEncodedUrl(const QString& encodedUrl) const
|
||||
TabPosition LocationCompleterModel::tabPositionForEncodedUrl(const QString &encodedUrl) const
|
||||
{
|
||||
QList<QupZilla*> windows = mApp->mainWindows();
|
||||
int currentWindowIdx = windows.indexOf(mApp->getWindow());
|
||||
windows.prepend(mApp->getWindow());
|
||||
for(int win=0; win < windows.count(); ++win) {
|
||||
for (int win = 0; win < windows.count(); ++win) {
|
||||
QupZilla* mainWin = windows.at(win);
|
||||
QList<WebTab*> tabs = mainWin->tabWidget()->allTabs();
|
||||
for(int tab=0; tab < tabs.count(); ++tab) {
|
||||
if(tabs[tab]->url().toEncoded() == encodedUrl) {
|
||||
for (int tab = 0; tab < tabs.count(); ++tab) {
|
||||
if (tabs[tab]->url().toEncoded() == encodedUrl) {
|
||||
TabPosition pos;
|
||||
pos.windowIndex = win == 0 ? currentWindowIdx : win-1;
|
||||
pos.windowIndex = win == 0 ? currentWindowIdx : win - 1;
|
||||
pos.tabIndex = tab;
|
||||
return pos;
|
||||
}
|
||||
|
|
|
@ -29,8 +29,8 @@ struct TabPosition {
|
|||
int windowIndex;
|
||||
int tabIndex;
|
||||
TabPosition()
|
||||
: windowIndex(-1)
|
||||
, tabIndex(-1)
|
||||
: windowIndex(-1)
|
||||
, tabIndex(-1)
|
||||
{}
|
||||
};
|
||||
Q_DECLARE_METATYPE(TabPosition)
|
||||
|
@ -61,8 +61,8 @@ private:
|
|||
|
||||
QSqlQuery createQuery(const QString &searchString, const QString &orderBy, const QList<QUrl> &alreadyFound,
|
||||
int limit, bool bookmarks = false, bool exactMatch = false);
|
||||
TabPosition tabPositionForUrl(const QUrl& url) const;
|
||||
TabPosition tabPositionForEncodedUrl(const QString& encodedUrl) const;
|
||||
TabPosition tabPositionForUrl(const QUrl &url) const;
|
||||
TabPosition tabPositionForEncodedUrl(const QString &encodedUrl) const;
|
||||
void refreshTabPositions();
|
||||
|
||||
QString m_lastCompletion;
|
||||
|
|
|
@ -70,11 +70,11 @@ bool LocationCompleterView::eventFilter(QObject* object, QEvent* event)
|
|||
switch (keyEvent->key()) {
|
||||
case Qt::Key_Return:
|
||||
case Qt::Key_Enter:
|
||||
if(qzSettings->showSwitchTab && !(keyEvent->modifiers() & Qt::ShiftModifier)) {
|
||||
if (qzSettings->showSwitchTab && !(keyEvent->modifiers() & Qt::ShiftModifier)) {
|
||||
QModelIndex idx = selectionModel()->currentIndex();
|
||||
if(idx.isValid()) {
|
||||
if (idx.isValid()) {
|
||||
TabPosition pos = idx.data(LocationCompleterModel::TabPositionRole).value<TabPosition>();
|
||||
if(pos.windowIndex!= -1) {
|
||||
if (pos.windowIndex != -1) {
|
||||
activateTab(pos);
|
||||
return true;
|
||||
}
|
||||
|
@ -156,7 +156,7 @@ bool LocationCompleterView::eventFilter(QObject* object, QEvent* event)
|
|||
|
||||
case Qt::Key_Shift:
|
||||
// don't switch if there is no hovered or selected index to not disturb typing
|
||||
if(qzSettings->showSwitchTab && (selectionModel()->currentIndex().isValid() || m_hoveredIndex.isValid())) {
|
||||
if (qzSettings->showSwitchTab && (selectionModel()->currentIndex().isValid() || m_hoveredIndex.isValid())) {
|
||||
static_cast<LocationCompleterDelegate*>(itemDelegate())->drawSwitchToTab(false);
|
||||
viewport()->update();
|
||||
return true;
|
||||
|
@ -171,13 +171,13 @@ bool LocationCompleterView::eventFilter(QObject* object, QEvent* event)
|
|||
case QEvent::KeyRelease: {
|
||||
QKeyEvent* keyEvent = static_cast<QKeyEvent*>(event);
|
||||
|
||||
switch(keyEvent->key()) {
|
||||
case Qt::Key_Shift:
|
||||
if(qzSettings->showSwitchTab) {
|
||||
static_cast<LocationCompleterDelegate*>(itemDelegate())->drawSwitchToTab(true);
|
||||
viewport()->update();
|
||||
return true;
|
||||
}
|
||||
switch (keyEvent->key()) {
|
||||
case Qt::Key_Shift:
|
||||
if (qzSettings->showSwitchTab) {
|
||||
static_cast<LocationCompleterDelegate*>(itemDelegate())->drawSwitchToTab(true);
|
||||
viewport()->update();
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -212,7 +212,7 @@ void LocationCompleterView::close()
|
|||
|
||||
QListView::hide();
|
||||
verticalScrollBar()->setValue(0);
|
||||
if(qzSettings->showSwitchTab) {
|
||||
if (qzSettings->showSwitchTab) {
|
||||
static_cast<LocationCompleterDelegate*>(itemDelegate())->drawSwitchToTab(true);
|
||||
}
|
||||
}
|
||||
|
@ -251,9 +251,9 @@ void LocationCompleterView::mouseMoveEvent(QMouseEvent* event)
|
|||
|
||||
void LocationCompleterView::mouseReleaseEvent(QMouseEvent* event)
|
||||
{
|
||||
if(qzSettings->showSwitchTab && !(event->modifiers() & Qt::ShiftModifier) && m_hoveredIndex.isValid()) {
|
||||
if (qzSettings->showSwitchTab && !(event->modifiers() & Qt::ShiftModifier) && m_hoveredIndex.isValid()) {
|
||||
TabPosition pos = m_hoveredIndex.data(LocationCompleterModel::TabPositionRole).value<TabPosition>();
|
||||
if(pos.windowIndex != -1) {
|
||||
if (pos.windowIndex != -1) {
|
||||
event->accept();
|
||||
activateTab(pos);
|
||||
}
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1521,6 +1521,32 @@
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2429,6 +2455,46 @@
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3324,6 +3390,18 @@ Please add some with RSS icon in navigation bar on site which offers feeds.</sou
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1543,6 +1543,32 @@
|
|||
<translation>نمایش اطلاعات درباره صفحه</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2468,6 +2494,46 @@
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3373,6 +3439,18 @@ Please add some with RSS icon in navigation bar on site which offers feeds.</sou
|
|||
<translation>پنجره %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1539,6 +1539,32 @@
|
|||
<translation>Információk megjelenítése erről az oldalról</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2460,6 +2486,46 @@
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3365,6 +3431,18 @@ RSS ikonnal jelölt oldalcímekről hozzá lehet adni híroldalakat.</translatio
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1571,6 +1571,32 @@
|
|||
<translation>このページの情報を表示</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2525,6 +2551,46 @@
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation>更新/中止ボタンの表示</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3445,6 +3511,18 @@ Please add some with RSS icon in navigation bar on site which offers feeds.</sou
|
|||
<translation>%1 ウィンドウ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
|
@ -1539,6 +1539,32 @@
|
|||
<translation>ინფორმაციის ჩვენება ამ გვერდის შესახებ</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2460,6 +2486,46 @@
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3364,6 +3430,18 @@ Please add some with RSS icon in navigation bar on site which offers feeds.</sou
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1539,6 +1539,32 @@ nu a putut fi găsit!</translation>
|
|||
<translation>Afișează informații desprea această pagină</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2462,6 +2488,46 @@ nu a putut fi găsit!</translation>
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3366,6 +3432,18 @@ Please add some with RSS icon in navigation bar on site which offers feeds.</sou
|
|||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1543,6 +1543,32 @@
|
|||
<translation>Zobraziť informácie o tejto stránke</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2468,6 +2494,46 @@
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3373,6 +3439,18 @@ Prosím pridajte nejaké kliknutím na RSS ikonku v navigačnom paneli na strán
|
|||
<translation>Okno %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1545,6 +1545,32 @@
|
|||
<translation>Показати інформацію про цю сторінку</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>LocationCompleterDelegate</name>
|
||||
<message>
|
||||
<source>Switch to tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>MainApplication</name>
|
||||
<message>
|
||||
<source>Default Browser</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is not currently your default browser. Would you like to make it your default browser?</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Always perform this check when starting QupZilla.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is a new, fast and secure open-source WWW browser. QupZilla is licensed under GPL version 3 or (at your option) any later version. It is based on WebKit core and Qt Framework.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>NavigationBar</name>
|
||||
<message>
|
||||
|
@ -2470,6 +2496,46 @@
|
|||
<source>Show Reload / Stop buttons</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Keyboard Shortcuts</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check to see if QupZilla is the default browser on startup</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Check Now</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Press "Shift" to not switch the tab but load the url in the current tab.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Propose to switch tab if completed url is already loaded.</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source><b>Shortcuts</b></source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Switch to tabs with Alt + number of tab</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Load speed dials with Ctrl + number of speed dial</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>QupZilla is default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Make QupZilla default</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>QObject</name>
|
||||
|
@ -3379,6 +3445,18 @@ Please add some with RSS icon in navigation bar on site which offers feeds.</sou
|
|||
<translation>Вікно %1</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>RegisterQAppAssociation</name>
|
||||
<message>
|
||||
<source>Warning!</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>There are some problems. Please, reinstall QupZilla.
|
||||
Maybe relaunch with administrator right do a magic for you! ;)</source>
|
||||
<translation type="unfinished"></translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>SSLManager</name>
|
||||
<message>
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user