aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop/SystemWindow.cpp
diff options
context:
space:
mode:
authorZackaryWelch <welch.zackary@gmail.com>2017-08-15 16:28:16 -0400
committerZackaryWelch <welch.zackary@gmail.com>2017-08-15 16:29:21 -0400
commit9fe4993bdc8a166c60c1191292aa353d1937f109 (patch)
tree382c640cd1aca8dca592365de8fd14495f664c51 /src-qt5/core/lumina-desktop/SystemWindow.cpp
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-9fe4993bdc8a166c60c1191292aa353d1937f109.tar.gz
lumina-9fe4993bdc8a166c60c1191292aa353d1937f109.tar.bz2
lumina-9fe4993bdc8a166c60c1191292aa353d1937f109.zip
Added translations to menu buttons and the panel settings dialogue
Diffstat (limited to 'src-qt5/core/lumina-desktop/SystemWindow.cpp')
-rw-r--r--src-qt5/core/lumina-desktop/SystemWindow.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src-qt5/core/lumina-desktop/SystemWindow.cpp b/src-qt5/core/lumina-desktop/SystemWindow.cpp
index 1c0b59a5..cd09c9bd 100644
--- a/src-qt5/core/lumina-desktop/SystemWindow.cpp
+++ b/src-qt5/core/lumina-desktop/SystemWindow.cpp
@@ -55,6 +55,9 @@ bool SystemWindow::promptAboutUpdates(bool &skip){
if(pending.isEmpty()){ skip = false; } //continue without skip
else{
QMessageBox dlg(QMessageBox::Question, tr("Apply Updates?"), tr("You have system updates waiting to be applied! Do you wish to install them now?"), QMessageBox::Yes | QMessageBox::No | QMessageBox::Cancel, this);
+ dlg.setButtonText(QMessageBox::Yes, tr("Yes"));
+ dlg.setButtonText(QMessageBox::No, tr("No"));
+ dlg.setButtonText(QMessageBox::Cancel, tr("Cancel"));
dlg.setDetailedText(pending);
dlg.setDefaultButton(QMessageBox::Yes);
dlg.show();
bgstack15