aboutsummaryrefslogtreecommitdiff
path: root/src/settingswidget.cpp
diff options
context:
space:
mode:
authorLibravatar Gianluca Boiano <491117+M0Rf30@users.noreply.github.com>2022-06-25 21:52:45 +0200
committerLibravatar GitHub <noreply@github.com>2022-06-26 01:22:45 +0530
commitced5547de36d88f071f086258e32d21cdcda1e0d (patch)
tree5b5ddc8f3207c48350c361529a43c1e67f74d07b /src/settingswidget.cpp
parent66d20d3ef5f589829ed1668ef064ccf7b9baa482 (diff)
downloadwhatsie-ced5547de36d88f071f086258e32d21cdcda1e0d.tar.gz
whatsie-ced5547de36d88f071f086258e32d21cdcda1e0d.zip
feat(i18n): add Italian localization (#55)
* chore: add some entries to .gitignore * chore: general enhancements to original strings * feat(i18n): add Italian localization
Diffstat (limited to 'src/settingswidget.cpp')
-rw-r--r--src/settingswidget.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/settingswidget.cpp b/src/settingswidget.cpp
index 80d9047..a58a967 100644
--- a/src/settingswidget.cpp
+++ b/src/settingswidget.cpp
@@ -280,13 +280,13 @@ QString SettingsWidget::persistentStoragePath() {
void SettingsWidget::on_deleteCache_clicked() {
QMessageBox msgBox;
- msgBox.setText("This will delete app cache! Application cache makes "
+ msgBox.setText("This will delete the cache! Cache makes "
"application load faster.");
msgBox.setIconPixmap(
QPixmap(":/icons/information-line.png")
.scaled(42, 42, Qt::KeepAspectRatio, Qt::SmoothTransformation));
- msgBox.setInformativeText("Delete Application cache?");
+ msgBox.setInformativeText("Delete cache?");
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::No);
int ret = msgBox.exec();
@@ -304,12 +304,12 @@ void SettingsWidget::on_deleteCache_clicked() {
void SettingsWidget::on_deletePersistentData_clicked() {
QMessageBox msgBox;
msgBox.setText(
- "This will delete app Persistent Data ! Persistent data includes "
+ "This will delete Persistent Data ! Persistent data includes "
"persistent cookies, HTML5 local storage, and visited links.");
msgBox.setIconPixmap(
QPixmap(":/icons/information-line.png")
.scaled(42, 42, Qt::KeepAspectRatio, Qt::SmoothTransformation));
- msgBox.setInformativeText("Delete Application Cookies?");
+ msgBox.setInformativeText("Delete Cookies?");
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msgBox.setDefaultButton(QMessageBox::No);
int ret = msgBox.exec();