Update the settings dialog window title.
authorCamila <hello@camila.codes>
Tue, 15 Dec 2020 21:11:31 +0000 (22:11 +0100)
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>
Thu, 17 Dec 2020 07:04:07 +0000 (07:04 +0000)
Signed-off-by: Camila <hello@camila.codes>
src/gui/settingsdialog.cpp

index 1a06a5ec19c869e8484e61f781d3c9078105b894..cb503ef14eb480f869bc64de283bb02d5cf5e30f 100644 (file)
@@ -100,7 +100,9 @@ SettingsDialog::SettingsDialog(ownCloudGui *gui, QWidget *parent)
     addAction(closeWindowAction);
 
     setObjectName("Settings"); // required as group for saveGeometry call
-    setWindowTitle(Theme::instance()->appNameGUI());
+
+    //: This name refers to the application name e.g Nextcloud
+    setWindowTitle(tr("%1 Settings").arg(Theme::instance()->appNameGUI()));
 
     connect(AccountManager::instance(), &AccountManager::accountAdded,
         this, &SettingsDialog::accountAdded);