summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Osipov <simba@lerlan.ru>2012-06-17 15:02:56 +0200
committerMartin Lambers <marlam@marlam.de>2012-06-17 15:02:56 +0200
commit91a33e981931f58d154d5a3a6f3da7b9dfc97909 (patch)
tree8c3e0beb38baa1d22d6df9afcfcc6729a78ea87c
parent08e744f77765ab6489f96bbc7b4bc61292f18a9c (diff)
downloadbino-91a33e981931f58d154d5a3a6f3da7b9dfc97909.tar.gz
Remove dots from File->Quit since no dialog is shown.
-rw-r--r--po/de.po4
-rw-r--r--po/fr.po4
-rw-r--r--po/ru.po4
-rw-r--r--src/gui.cpp2
4 files changed, 7 insertions, 7 deletions
diff --git a/po/de.po b/po/de.po
index 950db5a..7d1bca5 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1019,8 +1019,8 @@ msgid "&Clear recent files"
msgstr "Lösche Liste zuletzt geöffneter Dateien"
#: src/gui.cpp:3010
-msgid "&Quit..."
-msgstr "&Beenden..."
+msgid "&Quit"
+msgstr "&Beenden"
#: src/gui.cpp:3016
msgid "&Preferences"
diff --git a/po/fr.po b/po/fr.po
index 1c38883..53e4308 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1024,8 +1024,8 @@ msgid "&Clear recent files"
msgstr "Effacer les éléments récents"
#: src/gui.cpp:3010
-msgid "&Quit..."
-msgstr "&Quitter..."
+msgid "&Quit"
+msgstr "&Quitter"
#: src/gui.cpp:3016
msgid "&Preferences"
diff --git a/po/ru.po b/po/ru.po
index 1af6fc4..e2b6ae2 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1028,8 +1028,8 @@ msgid "&Clear recent files"
msgstr "Очистить список &недавних файлов"
#: src/gui.cpp:3010
-msgid "&Quit..."
-msgstr "&Выход..."
+msgid "&Quit"
+msgstr "&Выход"
#: src/gui.cpp:3016
msgid "&Preferences"
diff --git a/src/gui.cpp b/src/gui.cpp
index 403358a..6de0f62 100644
--- a/src/gui.cpp
+++ b/src/gui.cpp
@@ -3007,7 +3007,7 @@ main_window::main_window(QSettings *settings) :
update_recent_file_actions();
file_menu->addSeparator();
- QAction *file_quit_act = new QAction(_("&Quit..."), this);
+ QAction *file_quit_act = new QAction(_("&Quit"), this);
file_quit_act->setShortcut(QKeySequence::Quit);
file_quit_act->setMenuRole(QAction::QuitRole);
file_quit_act->setIcon(get_icon("application-exit"));