[qet] [3633] Minor: fix french typo |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/qet Archives
]
Revision: 3633
Author: scorpio810
Date: 2015-01-27 22:33:12 +0100 (Tue, 27 Jan 2015)
Log Message:
-----------
Minor: fix french typo
Modified Paths:
--------------
trunk/sources/configpages.cpp
trunk/sources/editor/qetelementeditor.cpp
trunk/sources/nomenclature.cpp
trunk/sources/qetapp.cpp
trunk/sources/ui/elementpropertieswidget.cpp
Modified: trunk/sources/configpages.cpp
===================================================================
--- trunk/sources/configpages.cpp 2015-01-27 11:11:02 UTC (rev 3632)
+++ trunk/sources/configpages.cpp 2015-01-27 21:33:12 UTC (rev 3633)
@@ -71,8 +71,8 @@
tab_widget -> addTab (diagram_widget, tr("Sch\351ma"));
tab_widget -> addTab (cpw, tr("Conducteur"));
- tab_widget -> addTab (rpw, tr("Report de folio"));
- tab_widget -> addTab (xrefpw, tr("R\351f\351rence crois\351es"));
+ tab_widget -> addTab (rpw, tr("Reports de folios"));
+ tab_widget -> addTab (xrefpw, tr("R\351f\351rences crois\351es"));
QVBoxLayout *vlayout1 = new QVBoxLayout();
vlayout1->addWidget(tab_widget);
Modified: trunk/sources/editor/qetelementeditor.cpp
===================================================================
--- trunk/sources/editor/qetelementeditor.cpp 2015-01-27 11:11:02 UTC (rev 3632)
+++ trunk/sources/editor/qetelementeditor.cpp 2015-01-27 21:33:12 UTC (rev 3633)
@@ -152,9 +152,9 @@
paste_from_elmt = new QAction(QET::Icons::Element, tr("un \351l\351ment"), this);
inv_select = new QAction( tr("Inverser la s\351lection"), this);
edit_delete = new QAction(QET::Icons::EditDelete, tr("&Supprimer"), this);
- edit_names = new QAction(QET::Icons::Names, tr("\311diter les noms"), this);
+ edit_names = new QAction(QET::Icons::Names, tr("\311diter le nom et les traductions de l'\351l\351ment"), this);
edit_author = new QAction(QET::Icons::UserInformations, tr("\311diter les informations sur l'auteur"), this);
- m_edit_properties = new QAction(QET::Icons::ElementEdit, tr("\311diter les propri\351t\351es de l'\351l\351ment"), this);
+ m_edit_properties = new QAction(QET::Icons::ElementEdit, tr("\311diter les propri\351t\351s de l'\351l\351ment"), this);
undo = ce_scene -> undoStack().createUndoAction(this, tr("Annuler"));
redo = ce_scene -> undoStack().createRedoAction(this, tr("Refaire"));
Modified: trunk/sources/nomenclature.cpp
===================================================================
--- trunk/sources/nomenclature.cpp 2015-01-27 11:11:02 UTC (rev 3632)
+++ trunk/sources/nomenclature.cpp 2015-01-27 21:33:12 UTC (rev 3633)
@@ -81,7 +81,7 @@
QString nomenclature::getNomenclature() {
//Process...
QString data = tr("NOMENCLATURE : ") + m_project -> title() + "\n\n";
- data += tr("Folio") +";"+ tr("Sch\351ma") +";"+ tr("D\351signation qet")+";"+ tr("Label") +";"+ tr("D\351signation")+";"+ tr("Commentaire") +";"+ tr("Fabriquant") +";"+ tr("Reference") +";"+ tr("Machine-reference")+"\n";
+ data += tr("Folio") +";"+ tr("Sch\351ma") +";"+ tr("D\351signation qet")+";"+ tr("Label") +";"+ tr("D\351signation")+";"+ tr("Commentaire") +";"+ tr("Fabricant") +";"+ tr("Reference") +";"+ tr("Machine-reference")+"\n";
if(m_list_diagram.isEmpty()) return data;
Modified: trunk/sources/qetapp.cpp
===================================================================
--- trunk/sources/qetapp.cpp 2015-01-27 11:11:02 UTC (rev 3632)
+++ trunk/sources/qetapp.cpp 2015-01-27 21:33:12 UTC (rev 3633)
@@ -364,9 +364,9 @@
if (info == "label") return tr("Label");
else if (info == "comment") return tr("Commentaire");
else if (info == "designation") return tr("D\351signation");
- else if (info == "manufacturer") return tr("Fabriquant");
- else if (info == "manufacturer-reference") return tr("R\351f\351rence fabriquant");
- else if (info == "machine-manufacturer-reference") return tr("R\351f\351rence fabriquant machine");
+ else if (info == "manufacturer") return tr("Fabricant");
+ else if (info == "manufacturer-reference") return tr("R\351f\351rence fabricant");
+ else if (info == "machine-manufacturer-reference") return tr("R\351f\351rence fabricant machine");
return (info);
}
Modified: trunk/sources/ui/elementpropertieswidget.cpp
===================================================================
--- trunk/sources/ui/elementpropertieswidget.cpp 2015-01-27 11:11:02 UTC (rev 3632)
+++ trunk/sources/ui/elementpropertieswidget.cpp 2015-01-27 21:33:12 UTC (rev 3633)
@@ -129,7 +129,7 @@
mpw_ = new MasterPropertiesWidget(element_, this);
tab_ -> addTab(mpw_, tr("R\351f\351rence crois\351e (maitre)"));
eiw_ = new ElementInfoWidget(element_, this);
- tab_ -> addTab(eiw_, tr("Information"));
+ tab_ -> addTab(eiw_, tr("Informations"));
break;
case Element::Slave:
lsew_ = new LinkSingleElementWidget(element_, this);