Minor: fix french typo

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3633 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810 2015-01-27 21:33:12 +00:00
parent 8179f96529
commit 85fba587bc
5 changed files with 9 additions and 9 deletions

View File

@ -71,8 +71,8 @@ NewDiagramPage::NewDiagramPage(QETProject *project, QWidget *parent) :
tab_widget -> addTab (diagram_widget, tr("Sch\351ma")); tab_widget -> addTab (diagram_widget, tr("Sch\351ma"));
tab_widget -> addTab (cpw, tr("Conducteur")); tab_widget -> addTab (cpw, tr("Conducteur"));
tab_widget -> addTab (rpw, tr("Report de folio")); tab_widget -> addTab (rpw, tr("Reports de folios"));
tab_widget -> addTab (xrefpw, tr("R\351f\351rence crois\351es")); tab_widget -> addTab (xrefpw, tr("R\351f\351rences crois\351es"));
QVBoxLayout *vlayout1 = new QVBoxLayout(); QVBoxLayout *vlayout1 = new QVBoxLayout();
vlayout1->addWidget(tab_widget); vlayout1->addWidget(tab_widget);

View File

@ -152,9 +152,9 @@ void QETElementEditor::setupActions() {
paste_from_elmt = new QAction(QET::Icons::Element, tr("un \351l\351ment"), this); paste_from_elmt = new QAction(QET::Icons::Element, tr("un \351l\351ment"), this);
inv_select = new QAction( tr("Inverser la s\351lection"), this); inv_select = new QAction( tr("Inverser la s\351lection"), this);
edit_delete = new QAction(QET::Icons::EditDelete, tr("&Supprimer"), 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); 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")); undo = ce_scene -> undoStack().createUndoAction(this, tr("Annuler"));
redo = ce_scene -> undoStack().createRedoAction(this, tr("Refaire")); redo = ce_scene -> undoStack().createRedoAction(this, tr("Refaire"));

View File

@ -81,7 +81,7 @@ bool nomenclature::saveToCSVFile() {
QString nomenclature::getNomenclature() { QString nomenclature::getNomenclature() {
//Process... //Process...
QString data = tr("NOMENCLATURE : ") + m_project -> title() + "\n\n"; 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; if(m_list_diagram.isEmpty()) return data;

View File

@ -364,9 +364,9 @@ QString QETApp::elementTranslatedInfoKey(QString &info) {
if (info == "label") return tr("Label"); if (info == "label") return tr("Label");
else if (info == "comment") return tr("Commentaire"); else if (info == "comment") return tr("Commentaire");
else if (info == "designation") return tr("D\351signation"); else if (info == "designation") return tr("D\351signation");
else if (info == "manufacturer") return tr("Fabriquant"); else if (info == "manufacturer") return tr("Fabricant");
else if (info == "manufacturer-reference") return tr("R\351f\351rence fabriquant"); else if (info == "manufacturer-reference") return tr("R\351f\351rence fabricant");
else if (info == "machine-manufacturer-reference") return tr("R\351f\351rence fabriquant machine"); else if (info == "machine-manufacturer-reference") return tr("R\351f\351rence fabricant machine");
return (info); return (info);
} }

View File

@ -129,7 +129,7 @@ void elementpropertieswidget::buildInterface() {
mpw_ = new MasterPropertiesWidget(element_, this); mpw_ = new MasterPropertiesWidget(element_, this);
tab_ -> addTab(mpw_, tr("R\351f\351rence crois\351e (maitre)")); tab_ -> addTab(mpw_, tr("R\351f\351rence crois\351e (maitre)"));
eiw_ = new ElementInfoWidget(element_, this); eiw_ = new ElementInfoWidget(element_, this);
tab_ -> addTab(eiw_, tr("Information")); tab_ -> addTab(eiw_, tr("Informations"));
break; break;
case Element::Slave: case Element::Slave:
lsew_ = new LinkSingleElementWidget(element_, this); lsew_ = new LinkSingleElementWidget(element_, this);