diff options
-rw-r--r-- | i18n/server/pvsmgr_ar_JO.ts | 5 | ||||
-rw-r--r-- | i18n/server/pvsmgr_de_DE.ts | 5 | ||||
-rw-r--r-- | i18n/server/pvsmgr_es_MX.ts | 5 | ||||
-rw-r--r-- | i18n/server/pvsmgr_fr_FR.ts | 5 | ||||
-rw-r--r-- | i18n/server/pvsmgr_pl_PL.ts | 5 | ||||
-rw-r--r-- | src/server/mainwindow/mainwindow.cpp | 2 |
6 files changed, 26 insertions, 1 deletions
diff --git a/i18n/server/pvsmgr_ar_JO.ts b/i18n/server/pvsmgr_ar_JO.ts index 17264f5..766c173 100644 --- a/i18n/server/pvsmgr_ar_JO.ts +++ b/i18n/server/pvsmgr_ar_JO.ts @@ -115,6 +115,11 @@ <translation type="unfinished"></translation> </message> <message> + <location filename="../../src/server/mainwindow/mainwindow.cpp" line="581"/> + <source>Sure, You want to delete selected client?</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../../src/server/mainwindow/mainwindow.cpp" line="641"/> <source>Sure, You want to change SessionName again? All Clients will be deleted afterwards.</source> diff --git a/i18n/server/pvsmgr_de_DE.ts b/i18n/server/pvsmgr_de_DE.ts index 8aa2161..478278f 100644 --- a/i18n/server/pvsmgr_de_DE.ts +++ b/i18n/server/pvsmgr_de_DE.ts @@ -115,6 +115,11 @@ <translation>Auswahl</translation> </message> <message> + <location filename="../../src/server/mainwindow/mainwindow.cpp" line="581"/> + <source>Sure, You want to delete selected client?</source> + <translation>Sicher, dass Sie den ausgewählten Clienten löschen wollen?</translation> + </message> + <message> <location filename="../../src/server/mainwindow/mainwindow.cpp" line="641"/> <source>Sure, You want to change SessionName again? All Clients will be deleted afterwards.</source> diff --git a/i18n/server/pvsmgr_es_MX.ts b/i18n/server/pvsmgr_es_MX.ts index 2f76097..f108565 100644 --- a/i18n/server/pvsmgr_es_MX.ts +++ b/i18n/server/pvsmgr_es_MX.ts @@ -115,6 +115,11 @@ <translation type="unfinished"></translation> </message> <message> + <location filename="../../src/server/mainwindow/mainwindow.cpp" line="581"/> + <source>Sure, You want to delete selected client?</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../../src/server/mainwindow/mainwindow.cpp" line="641"/> <source>Sure, You want to change SessionName again? All Clients will be deleted afterwards.</source> diff --git a/i18n/server/pvsmgr_fr_FR.ts b/i18n/server/pvsmgr_fr_FR.ts index 17264f5..766c173 100644 --- a/i18n/server/pvsmgr_fr_FR.ts +++ b/i18n/server/pvsmgr_fr_FR.ts @@ -115,6 +115,11 @@ <translation type="unfinished"></translation> </message> <message> + <location filename="../../src/server/mainwindow/mainwindow.cpp" line="581"/> + <source>Sure, You want to delete selected client?</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../../src/server/mainwindow/mainwindow.cpp" line="641"/> <source>Sure, You want to change SessionName again? All Clients will be deleted afterwards.</source> diff --git a/i18n/server/pvsmgr_pl_PL.ts b/i18n/server/pvsmgr_pl_PL.ts index 17264f5..766c173 100644 --- a/i18n/server/pvsmgr_pl_PL.ts +++ b/i18n/server/pvsmgr_pl_PL.ts @@ -115,6 +115,11 @@ <translation type="unfinished"></translation> </message> <message> + <location filename="../../src/server/mainwindow/mainwindow.cpp" line="581"/> + <source>Sure, You want to delete selected client?</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../../src/server/mainwindow/mainwindow.cpp" line="641"/> <source>Sure, You want to change SessionName again? All Clients will be deleted afterwards.</source> diff --git a/src/server/mainwindow/mainwindow.cpp b/src/server/mainwindow/mainwindow.cpp index d48e32c..854d921 100644 --- a/src/server/mainwindow/mainwindow.cpp +++ b/src/server/mainwindow/mainwindow.cpp @@ -578,7 +578,7 @@ void MainWindow::onPlaceFrame(bool activateTrash, ConnectionFrame* frame) } else { - int ret = QMessageBox::question(this, "Warning", "Sure, You want to delete selected client?", 0, 1, 2); + int ret = QMessageBox::question(this, "Warning", tr("Sure, You want to delete selected client?"), 0, 1, 2); if (ret == 1) { frame->hide(); |