mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-20 10:46:35 +01:00
Fix grammar "Are you sure to..." -> "Are you sure you want to..."
This commit is contained in:
parent
966537728b
commit
54f3e78396
@ -1,6 +1,6 @@
|
|||||||
/* ============================================================
|
/* ============================================================
|
||||||
* QupZilla - WebKit based browser
|
* QupZilla - WebKit based browser
|
||||||
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -1317,7 +1317,7 @@ void BrowserWindow::closeEvent(QCloseEvent* event)
|
|||||||
|
|
||||||
if (askOnClose && m_tabWidget->normalTabsCount() > 1) {
|
if (askOnClose && m_tabWidget->normalTabsCount() > 1) {
|
||||||
CheckBoxDialog dialog(QDialogButtonBox::Yes | QDialogButtonBox::No, this);
|
CheckBoxDialog dialog(QDialogButtonBox::Yes | QDialogButtonBox::No, this);
|
||||||
dialog.setText(tr("There are still %n open tabs and your session won't be stored. \nAre you sure to close this window?", "", m_tabWidget->count()));
|
dialog.setText(tr("There are still %n open tabs and your session won't be stored. \nAre you sure you want to close this window?", "", m_tabWidget->count()));
|
||||||
dialog.setCheckBoxText(tr("Don't ask again"));
|
dialog.setCheckBoxText(tr("Don't ask again"));
|
||||||
dialog.setWindowTitle(tr("There are still open tabs"));
|
dialog.setWindowTitle(tr("There are still open tabs"));
|
||||||
dialog.setIcon(IconProvider::standardIcon(QStyle::SP_MessageBoxWarning));
|
dialog.setIcon(IconProvider::standardIcon(QStyle::SP_MessageBoxWarning));
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* ============================================================
|
/* ============================================================
|
||||||
* QupZilla - WebKit based browser
|
* QupZilla - WebKit based browser
|
||||||
* Copyright (C) 2013-2014 S. Razi Alavizadeh <s.r.alavizadeh@gmail.com>
|
* Copyright (C) 2013-2014 S. Razi Alavizadeh <s.r.alavizadeh@gmail.com>
|
||||||
* Copyright (C) 2013-2014 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2013-2016 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -587,7 +587,7 @@ void MasterPasswordDialog::showSetMasterPasswordPage()
|
|||||||
|
|
||||||
void MasterPasswordDialog::clearMasterPasswordAndConvert(bool forcedAskPass)
|
void MasterPasswordDialog::clearMasterPasswordAndConvert(bool forcedAskPass)
|
||||||
{
|
{
|
||||||
if (QMessageBox::information(this, tr("Warning!"), tr("Are you sure to clear master password and decrypt data?"), QMessageBox::Yes | QMessageBox::No)
|
if (QMessageBox::information(this, tr("Warning!"), tr("Are you sure you want to clear master password and decrypt data?"), QMessageBox::Yes | QMessageBox::No)
|
||||||
== QMessageBox::No) {
|
== QMessageBox::No) {
|
||||||
reject();
|
reject();
|
||||||
return;
|
return;
|
||||||
|
@ -97,7 +97,7 @@ CookieManager::CookieManager()
|
|||||||
void CookieManager::removeAll()
|
void CookieManager::removeAll()
|
||||||
{
|
{
|
||||||
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
||||||
tr("Are you sure to delete all cookies on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
tr("Are you sure you want to delete all cookies on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
||||||
if (button != QMessageBox::Yes) {
|
if (button != QMessageBox::Yes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ============================================================
|
/* ============================================================
|
||||||
* QupZilla - WebKit based browser
|
* QupZilla - WebKit based browser
|
||||||
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -340,7 +340,7 @@ void DownloadManager::closeEvent(QCloseEvent* e)
|
|||||||
if (mApp->windowCount() == 0) { // No main windows -> we are going to quit
|
if (mApp->windowCount() == 0) { // No main windows -> we are going to quit
|
||||||
if (!canClose()) {
|
if (!canClose()) {
|
||||||
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Warning"),
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Warning"),
|
||||||
tr("Are you sure to quit? All uncompleted downloads will be cancelled!"), QMessageBox::Yes | QMessageBox::No);
|
tr("Are you sure you want to quit? All uncompleted downloads will be cancelled!"), QMessageBox::Yes | QMessageBox::No);
|
||||||
if (button != QMessageBox::Yes) {
|
if (button != QMessageBox::Yes) {
|
||||||
e->ignore();
|
e->ignore();
|
||||||
return;
|
return;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ============================================================
|
/* ============================================================
|
||||||
* QupZilla - WebKit based browser
|
* QupZilla - WebKit based browser
|
||||||
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -75,7 +75,7 @@ QByteArray HistoryManager::saveState()
|
|||||||
void HistoryManager::clearHistory()
|
void HistoryManager::clearHistory()
|
||||||
{
|
{
|
||||||
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
||||||
tr("Are you sure to delete all history?"), QMessageBox::Yes | QMessageBox::No);
|
tr("Are you sure you want to delete all history?"), QMessageBox::Yes | QMessageBox::No);
|
||||||
if (button != QMessageBox::Yes) {
|
if (button != QMessageBox::Yes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ============================================================
|
/* ============================================================
|
||||||
* QupZilla - WebKit based browser
|
* QupZilla - WebKit based browser
|
||||||
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -287,8 +287,8 @@ QString QupZillaSchemeReply::speeddialPage()
|
|||||||
dPage.replace(QLatin1String("%TITLE-EDIT%"), tr("Edit"));
|
dPage.replace(QLatin1String("%TITLE-EDIT%"), tr("Edit"));
|
||||||
dPage.replace(QLatin1String("%TITLE-REMOVE%"), tr("Remove"));
|
dPage.replace(QLatin1String("%TITLE-REMOVE%"), tr("Remove"));
|
||||||
dPage.replace(QLatin1String("%TITLE-RELOAD%"), tr("Reload"));
|
dPage.replace(QLatin1String("%TITLE-RELOAD%"), tr("Reload"));
|
||||||
dPage.replace(QLatin1String("%TITLE-WARN%"), tr("Are you sure to remove this speed dial?"));
|
dPage.replace(QLatin1String("%TITLE-WARN%"), tr("Are you sure you want to remove this speed dial?"));
|
||||||
dPage.replace(QLatin1String("%TITLE-WARN-REL%"), tr("Are you sure to reload all speed dials?"));
|
dPage.replace(QLatin1String("%TITLE-WARN-REL%"), tr("Are you sure you want to reload all speed dials?"));
|
||||||
dPage.replace(QLatin1String("%TITLE-FETCHTITLE%"), tr("Load title from page"));
|
dPage.replace(QLatin1String("%TITLE-FETCHTITLE%"), tr("Load title from page"));
|
||||||
dPage.replace(QLatin1String("%URL%"), tr("Url"));
|
dPage.replace(QLatin1String("%URL%"), tr("Url"));
|
||||||
dPage.replace(QLatin1String("%TITLE%"), tr("Title"));
|
dPage.replace(QLatin1String("%TITLE%"), tr("Title"));
|
||||||
|
@ -230,7 +230,7 @@ void AutoFillManager::removePass()
|
|||||||
void AutoFillManager::removeAllPass()
|
void AutoFillManager::removeAllPass()
|
||||||
{
|
{
|
||||||
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
||||||
tr("Are you sure to delete all passwords on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
tr("Are you sure you want to delete all passwords on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
||||||
if (button != QMessageBox::Yes) {
|
if (button != QMessageBox::Yes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -764,7 +764,7 @@ void Preferences::deleteProfile()
|
|||||||
{
|
{
|
||||||
QString name = ui->startProfile->currentText();
|
QString name = ui->startProfile->currentText();
|
||||||
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
||||||
tr("Are you sure to permanently delete \"%1\" profile? This action cannot be undone!").arg(name), QMessageBox::Yes | QMessageBox::No);
|
tr("Are you sure you want to permanently delete \"%1\" profile? This action cannot be undone!").arg(name), QMessageBox::Yes | QMessageBox::No);
|
||||||
if (button != QMessageBox::Yes) {
|
if (button != QMessageBox::Yes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/* ============================================================
|
/* ============================================================
|
||||||
* FlashCookieManager plugin for QupZilla
|
* FlashCookieManager plugin for QupZilla
|
||||||
* Copyright (C) 2014 S. Razi Alavizadeh <s.r.alavizadeh@gmail.com>
|
* Copyright (C) 2014 S. Razi Alavizadeh <s.r.alavizadeh@gmail.com>
|
||||||
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2010-2016 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* some codes and ideas are taken from cookiemanager.cpp and cookiemanager.ui
|
* some codes and ideas are taken from cookiemanager.cpp and cookiemanager.ui
|
||||||
*
|
*
|
||||||
@ -93,7 +93,7 @@ FCM_Dialog::FCM_Dialog(FCM_Plugin* manager, QWidget* parent)
|
|||||||
void FCM_Dialog::removeAll()
|
void FCM_Dialog::removeAll()
|
||||||
{
|
{
|
||||||
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Confirmation"),
|
||||||
tr("Are you sure to delete all flash cookies on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
tr("Are you sure you want to delete all flash cookies on your computer?"), QMessageBox::Yes | QMessageBox::No);
|
||||||
if (button != QMessageBox::Yes) {
|
if (button != QMessageBox::Yes) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* ============================================================
|
/* ============================================================
|
||||||
* StatusBarIcons - Extra icons in statusbar for QupZilla
|
* StatusBarIcons - Extra icons in statusbar for QupZilla
|
||||||
* Copyright (C) 2013-2014 David Rosca <nowrep@gmail.com>
|
* Copyright (C) 2013-2016 David Rosca <nowrep@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -67,7 +67,7 @@ void SBI_NetworkIconDialog::addProxy()
|
|||||||
|
|
||||||
void SBI_NetworkIconDialog::removeProxy()
|
void SBI_NetworkIconDialog::removeProxy()
|
||||||
{
|
{
|
||||||
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Remove current proxy"), tr("Are you sure to remove current proxy?"),
|
QMessageBox::StandardButton button = QMessageBox::warning(this, tr("Remove current proxy"), tr("Are you sure you want to remove current proxy?"),
|
||||||
QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
|
QMessageBox::Yes | QMessageBox::No, QMessageBox::No);
|
||||||
|
|
||||||
if (button != QMessageBox::Yes) {
|
if (button != QMessageBox::Yes) {
|
||||||
|
Loading…
Reference in New Issue
Block a user