From baca3db621d120b88202ec4c1259ef53bacf97b8 Mon Sep 17 00:00:00 2001 From: xavier Date: Fri, 13 Jul 2012 14:01:12 +0000 Subject: [PATCH] Fixed strings related to "save" and "save current diagram" buttons. git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@1908 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/qetdiagrameditor.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sources/qetdiagrameditor.cpp b/sources/qetdiagrameditor.cpp index 84f7c9771..fa0746e7e 100644 --- a/sources/qetdiagrameditor.cpp +++ b/sources/qetdiagrameditor.cpp @@ -181,7 +181,7 @@ void QETDiagramEditor::actions() { close_file = new QAction(QET::Icons::DocumentClose, tr("&Fermer"), this); save_file = new QAction(QET::Icons::DocumentSave, tr("&Enregistrer"), this); save_file_as = new QAction(QET::Icons::DocumentSaveAs, tr("Enregistrer sous"), this); - save_cur_diagram = new QAction(QET::Icons::DocumentSaveAll, tr("&Enregistrer tous les sch\351mas"), this); + save_cur_diagram = new QAction(QET::Icons::DocumentSaveAll, tr("&Enregistrer le sch\351ma courant"), this); import_diagram = new QAction(QET::Icons::DocumentImport, tr("&Importer"), this); export_diagram = new QAction(QET::Icons::DocumentExport, tr("E&xporter"), this); print = new QAction(QET::Icons::DocumentPrint, tr("Imprimer"), this); @@ -276,7 +276,7 @@ void QETDiagramEditor::actions() { close_file -> setStatusTip(tr("Ferme le sch\351ma courant", "status bar tip")); save_file -> setStatusTip(tr("Enregistre le projet courant et tous ses sch\351mas", "status bar tip")); save_file_as -> setStatusTip(tr("Enregistre le project courant avec un autre nom de fichier", "status bar tip")); - save_cur_diagram -> setStatusTip(tr("Enregistre tous les sch\351mas du projet courant", "status bar tip")); + save_cur_diagram -> setStatusTip(tr("Enregistre le sch\351ma courant du projet courant", "status bar tip")); import_diagram -> setStatusTip(tr("Importe un sch\351ma dans le sch\351ma courant", "status bar tip")); export_diagram -> setStatusTip(tr("Exporte le sch\351ma courant dans un autre format", "status bar tip")); print -> setStatusTip(tr("Imprime le sch\351ma courant", "status bar tip"));