mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02:00
Correction of some french notions and correction of typos
git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@5628 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
parent
4ba3f477f8
commit
cdfdd6f22a
@ -11,7 +11,7 @@
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Propriété de la séléction</string>
|
||||
<string>Propriétés de la sélection</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="dockWidgetContents">
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
|
@ -80,7 +80,7 @@ void ReplaceElementDialog::buildWidget()
|
||||
{
|
||||
ElementInfoPartWidget *eipw = new ElementInfoPartWidget(str, QETApp::elementTranslatedInfoKey(str), this);
|
||||
eipw->setEraseTextVisible(true);
|
||||
eipw->setPlaceHolderText(tr("Non modifier"));
|
||||
eipw->setPlaceHolderText(tr("Ne pas modifier"));
|
||||
ui->m_scroll_layout->addWidget(eipw);
|
||||
m_eipw_list << eipw;
|
||||
}
|
||||
|
@ -6,8 +6,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>449</width>
|
||||
<height>389</height>
|
||||
<width>710</width>
|
||||
<height>705</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
@ -74,7 +74,7 @@
|
||||
<string>Disponible en tant que %title pour les modèles de cartouches</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Non modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -84,7 +84,7 @@
|
||||
<string>Disponible en tant que %author pour les modèles de cartouches</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Non modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -118,7 +118,7 @@
|
||||
<string>Disponible en tant que %indexrev pour les modèles de cartouches</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Non modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -128,7 +128,7 @@
|
||||
<string>Disponible en tant que %filename pour les modèles de cartouches</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Non modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -188,7 +188,7 @@
|
||||
<item row="0" column="0">
|
||||
<widget class="QRadioButton" name="m_unchanged_date">
|
||||
<property name="text">
|
||||
<string>Non &modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -204,7 +204,7 @@ Les variables suivantes sont utilisables :
|
||||
- %autonum : Folio Auto Numeration</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Non modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -214,7 +214,7 @@ Les variables suivantes sont utilisables :
|
||||
<string>Disponible en tant que %locmach pour les modèles de cartouches</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Non modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -224,7 +224,7 @@ Les variables suivantes sont utilisables :
|
||||
<string>Disponible en tant que %machine pour les modèles de cartouches</string>
|
||||
</property>
|
||||
<property name="placeholderText">
|
||||
<string>Non modifier</string>
|
||||
<string>Ne pas modifier</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -151,36 +151,36 @@ void SearchAndReplaceWidget::setUpTreeItems()
|
||||
|
||||
m_elements_qtwi = new QTreeWidgetItem(m_root_qtwi);
|
||||
m_elements_qtwi->setIcon(0, QET::Icons::Element);
|
||||
m_elements_qtwi->setText(0, tr("Elements"));
|
||||
m_elements_qtwi->setText(0, tr("Eléments"));
|
||||
m_elements_qtwi->setCheckState(0, Qt::Checked);
|
||||
m_category_qtwi.append(m_elements_qtwi);
|
||||
|
||||
m_simple_elmt_qtwi = new QTreeWidgetItem(m_elements_qtwi);
|
||||
m_simple_elmt_qtwi->setText(0, tr("Elements simple"));
|
||||
m_simple_elmt_qtwi->setText(0, tr("Eléments simple"));
|
||||
m_simple_elmt_qtwi->setIcon(0, QET::Icons::Element);
|
||||
m_simple_elmt_qtwi->setCheckState(0, Qt::Checked);
|
||||
m_qtwi_elmts.append(m_simple_elmt_qtwi);
|
||||
|
||||
m_master_elmt_qtwi= new QTreeWidgetItem(m_elements_qtwi);
|
||||
m_master_elmt_qtwi->setText(0, tr("Elements maître"));
|
||||
m_master_elmt_qtwi->setText(0, tr("Eléments maître"));
|
||||
m_master_elmt_qtwi->setIcon(0, QET::Icons::ElementMaster);
|
||||
m_master_elmt_qtwi->setCheckState(0, Qt::Checked);
|
||||
m_qtwi_elmts.append(m_master_elmt_qtwi);
|
||||
|
||||
m_slave_elmt_qtwi = new QTreeWidgetItem(m_elements_qtwi);
|
||||
m_slave_elmt_qtwi->setText(0, tr("Elements esclave"));
|
||||
m_slave_elmt_qtwi->setText(0, tr("Eléments esclave"));
|
||||
m_slave_elmt_qtwi->setIcon(0, QET::Icons::ElementSlave);
|
||||
m_slave_elmt_qtwi->setCheckState(0, Qt::Checked);
|
||||
m_qtwi_elmts.append(m_slave_elmt_qtwi);
|
||||
|
||||
m_report_elmt_qtwi = new QTreeWidgetItem(m_elements_qtwi);
|
||||
m_report_elmt_qtwi->setText(0, tr("Elements report de folio"));
|
||||
m_report_elmt_qtwi->setText(0, tr("Eléments report de folio"));
|
||||
m_report_elmt_qtwi->setIcon(0, QET::Icons::FolioXrefComing);
|
||||
m_report_elmt_qtwi->setCheckState(0, Qt::Checked);
|
||||
m_qtwi_elmts.append(m_report_elmt_qtwi);
|
||||
|
||||
m_terminal_elmt_qtwi = new QTreeWidgetItem(m_elements_qtwi);
|
||||
m_terminal_elmt_qtwi->setText(0, tr("Elements bornier"));
|
||||
m_terminal_elmt_qtwi->setText(0, tr("Eléments bornier"));
|
||||
m_terminal_elmt_qtwi->setIcon(0, QET::Icons::ElementTerminal);
|
||||
m_terminal_elmt_qtwi->setCheckState(0, Qt::Checked);
|
||||
m_qtwi_elmts.append(m_terminal_elmt_qtwi);
|
||||
@ -856,8 +856,8 @@ void SearchAndReplaceWidget::on_m_folio_pb_clicked()
|
||||
if (result == QDialogButtonBox::AcceptRole)
|
||||
{
|
||||
QString text = ui->m_folio_pb->text();
|
||||
if (!text.endsWith(tr(" [Édité]"))) {
|
||||
text.append(tr(" [Édité]"));
|
||||
if (!text.endsWith(tr(" [édité]"))) {
|
||||
text.append(tr(" [édité]"));
|
||||
}
|
||||
ui->m_folio_pb->setText(text);
|
||||
m_worker.m_titleblock_properties = dialog->titleBlockProperties();
|
||||
@ -865,8 +865,8 @@ void SearchAndReplaceWidget::on_m_folio_pb_clicked()
|
||||
else if (result == QDialogButtonBox::ResetRole)
|
||||
{
|
||||
QString text = ui->m_folio_pb->text();
|
||||
if (text.endsWith(tr(" [Édité]"))) {
|
||||
text.remove(tr(" [Édité]"));
|
||||
if (text.endsWith(tr(" [édité]"))) {
|
||||
text.remove(tr(" [édité]"));
|
||||
}
|
||||
ui->m_folio_pb->setText(text);
|
||||
m_worker.m_titleblock_properties = TitleBlockProperties();
|
||||
@ -885,7 +885,7 @@ void SearchAndReplaceWidget::on_m_replace_pb_clicked()
|
||||
}
|
||||
if (!m_category_qtwi.contains(qtwi) && qtwi->checkState(0) == Qt::Checked)
|
||||
{
|
||||
if (ui->m_folio_pb->text().endsWith(tr(" [Édité]")) &&
|
||||
if (ui->m_folio_pb->text().endsWith(tr(" [édité]")) &&
|
||||
m_diagram_hash.keys().contains(qtwi))
|
||||
{
|
||||
QPointer<Diagram> d = m_diagram_hash.value(qtwi);
|
||||
@ -893,7 +893,7 @@ void SearchAndReplaceWidget::on_m_replace_pb_clicked()
|
||||
m_worker.replaceDiagram(d.data());
|
||||
}
|
||||
}
|
||||
else if (ui->m_element_pb->text().endsWith(tr(" [Édité]")) &&
|
||||
else if (ui->m_element_pb->text().endsWith(tr(" [édité]")) &&
|
||||
m_element_hash.keys().contains(qtwi))
|
||||
{
|
||||
QPointer<Element> e = m_element_hash.value(qtwi);
|
||||
@ -923,7 +923,7 @@ void SearchAndReplaceWidget::on_m_replace_pb_clicked()
|
||||
void SearchAndReplaceWidget::on_m_replace_all_pb_clicked()
|
||||
{
|
||||
//Replace folio
|
||||
if (ui->m_folio_pb->text().endsWith(tr(" [Édité]")))
|
||||
if (ui->m_folio_pb->text().endsWith(tr(" [édité]")))
|
||||
{
|
||||
QList <Diagram *> diagram_list;
|
||||
for (QTreeWidgetItem *qtwi : m_diagram_hash.keys())
|
||||
@ -939,7 +939,7 @@ void SearchAndReplaceWidget::on_m_replace_all_pb_clicked()
|
||||
m_worker.replaceDiagram(diagram_list);
|
||||
}
|
||||
//Replace text
|
||||
if (ui->m_element_pb->text().endsWith(tr(" [Édité]")))
|
||||
if (ui->m_element_pb->text().endsWith(tr(" [édité]")))
|
||||
{
|
||||
QList <Element *> element_list;
|
||||
for (QTreeWidgetItem *qtwi : m_element_hash.keys())
|
||||
@ -989,8 +989,8 @@ void SearchAndReplaceWidget::on_m_element_pb_clicked()
|
||||
if (result == QDialogButtonBox::AcceptRole)
|
||||
{
|
||||
QString text = ui->m_element_pb->text();
|
||||
if (!text.endsWith(tr(" [Édité]"))) {
|
||||
text.append(tr(" [Édité]"));
|
||||
if (!text.endsWith(tr(" [édité]"))) {
|
||||
text.append(tr(" [édité]"));
|
||||
}
|
||||
ui->m_element_pb->setText(text);
|
||||
m_worker.m_element_context = dialog->context();
|
||||
@ -998,8 +998,8 @@ void SearchAndReplaceWidget::on_m_element_pb_clicked()
|
||||
else if (result == QDialogButtonBox::ResetRole)
|
||||
{
|
||||
QString text = ui->m_element_pb->text();
|
||||
if (text.endsWith(tr(" [Édité]"))) {
|
||||
text.remove(tr(" [Édité]"));
|
||||
if (text.endsWith(tr(" [édité]"))) {
|
||||
text.remove(tr(" [édité]"));
|
||||
}
|
||||
ui->m_element_pb->setText(text);
|
||||
m_worker.m_element_context = DiagramContext();
|
||||
|
@ -6,7 +6,7 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>897</width>
|
||||
<width>1556</width>
|
||||
<height>596</height>
|
||||
</rect>
|
||||
</property>
|
||||
@ -60,7 +60,7 @@
|
||||
<item row="0" column="7">
|
||||
<widget class="QPushButton" name="m_advanced_pb">
|
||||
<property name="toolTip">
|
||||
<string>Avancé</string>
|
||||
<string><html><head/><body><p>Afficher les options avancées</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
@ -260,7 +260,7 @@
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Remplacer la correspondance séléctionner</string>
|
||||
<string><html><head/><body><p>Remplacer la correspondance sélectionnée</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Remplacer</string>
|
||||
@ -273,7 +273,7 @@
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Remplacer les correspondances coché</string>
|
||||
<string><html><head/><body><p>Remplacer les correspondances cochées</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Tout remplacer</string>
|
||||
|
@ -6,12 +6,12 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>334</width>
|
||||
<width>388</width>
|
||||
<height>335</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Autonumerotation Séléction</string>
|
||||
<string>Sélection numérotation auto</string>
|
||||
</property>
|
||||
<widget class="QWidget" name="dockWidgetContents">
|
||||
<layout class="QGridLayout" name="gridLayout">
|
||||
|
@ -171,18 +171,18 @@ void FolioAutonumberingW::on_buttonBox_clicked(QAbstractButton *button) {
|
||||
//help dialog - not implemented yet -
|
||||
case QDialogButtonBox::HelpRole:
|
||||
QMessageBox::information (this, tr("Folio Autonumbering", "title window"),
|
||||
tr("C'est ici que vous pouvez définir la manière dont sera numéroté les nouveaux folios.\n"
|
||||
tr("C'est ici que vous pouvez définir la manière dont seront numérotés les nouveaux folios.\n"
|
||||
"-Une numérotation est composée d'une variable minimum.\n"
|
||||
"-Vous pouvez ajouter ou supprimer une variable de numérotation par le biais des boutons - et +.\n"
|
||||
"-Une variable de numérotation comprant: un type, une valeur et une incrémentation.\n"
|
||||
"-Une variable de numérotation comprend : un type, une valeur et une incrémentation.\n"
|
||||
|
||||
"\n-les types \"Chiffre 1\", \"Chiffre 01\" et \"Chiffre 001\", représente un type numérique définie dans le champs \"Valeur\", "
|
||||
"\n-les types \"Chiffre 1\", \"Chiffre 01\" et \"Chiffre 001\", représentent un type numérique défini dans le champ \"Valeur\", "
|
||||
"qui s'incrémente à chaque nouveau folio de la valeur du champ \"Incrémentation\".\n"
|
||||
"-\"Chiffre 01\" et \"Chiffre 001\", sont respectivement représenté sur le schéma par deux et trois digits minimum.\n"
|
||||
"Si le chiffre définie dans le champs Valeur posséde moins de digits que le type choisit,"
|
||||
"-\"Chiffre 01\" et \"Chiffre 001\", sont respectivement représentés sur le schéma par deux et trois digits minimum.\n"
|
||||
"Si le chiffre défini dans le champ Valeur possède moins de digits que le type choisi,"
|
||||
"celui-ci sera précédé par un ou deux 0 afin de respecter son type.\n"
|
||||
|
||||
"\n-Le type \"Texte\", représente un texte fixe.\nLe champs \"Incrémentation\" n'est pas utilisé.\n",
|
||||
"\n-Le type \"Texte\", représente un texte fixe.\nLe champ \"Incrémentation\" n'est pas utilisé.\n",
|
||||
"help dialog about the folio autonumerotation"
|
||||
));
|
||||
break;
|
||||
|
@ -6,8 +6,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>460</width>
|
||||
<height>358</height>
|
||||
<width>1082</width>
|
||||
<height>515</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
@ -75,7 +75,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>C&réer de nouveaux Folios</string>
|
||||
<string>C&réer de nouveaux folios</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -88,7 +88,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>NumAuto des folios séléctionnés</string>
|
||||
<string>Numérotation automatique des folios sélectionnés</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -129,7 +129,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Nouveaux Folios</string>
|
||||
<string>Nouveaux folios</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -6,8 +6,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>370</width>
|
||||
<height>305</height>
|
||||
<width>716</width>
|
||||
<height>531</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="sizePolicy">
|
||||
@ -38,7 +38,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="title">
|
||||
<string>Auto Naming Pattern:</string>
|
||||
<string>Dénomination automatique :</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
@ -50,7 +50,7 @@
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Formula:</string>
|
||||
<string>Formule</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -185,18 +185,18 @@ void SelectAutonumW::on_buttonBox_clicked(QAbstractButton *button) {
|
||||
if (m_edited_type == 2)
|
||||
{
|
||||
QMessageBox::information (this, tr("Folio Autonumérotation", "title window"),
|
||||
tr("C'est ici que vous pouvez définir la manière dont sera numéroté les nouveaux folios.\n"
|
||||
tr("C'est ici que vous pouvez définir la manière dont seront numérotés les nouveaux folios.\n"
|
||||
"-Une numérotation est composée d'une variable minimum.\n"
|
||||
"-Vous pouvez ajouter ou supprimer une variable de numérotation par le biais des boutons - et +.\n"
|
||||
"-Une variable de numérotation comprant: un type, une valeur et une incrémentation.\n"
|
||||
"-Une variable de numérotation comprend : un type, une valeur et une incrémentation.\n"
|
||||
|
||||
"\n-les types \"Chiffre 1\", \"Chiffre 01\" et \"Chiffre 001\", représente un type numérique définie dans le champs \"Valeur\", "
|
||||
"\n-les types \"Chiffre 1\", \"Chiffre 01\" et \"Chiffre 001\", représentent un type numérique défini dans le champ \"Valeur\", "
|
||||
"qui s'incrémente à chaque nouveau folio de la valeur du champ \"Incrémentation\".\n"
|
||||
"-\"Chiffre 01\" et \"Chiffre 001\", sont respectivement représenté sur le schéma par deux et trois digits minimum.\n"
|
||||
"Si le chiffre définie dans le champs Valeur posséde moins de digits que le type choisit,"
|
||||
"-\"Chiffre 01\" et \"Chiffre 001\", sont respectivement représentés sur le schéma par deux et trois digits minimum.\n"
|
||||
"Si le chiffre défini dans le champ Valeur possède moins de digits que le type choisi,"
|
||||
"celui-ci sera précédé par un ou deux 0 afin de respecter son type.\n"
|
||||
|
||||
"\n-Le type \"Texte\", représente un texte fixe.\nLe champs \"Incrémentation\" n'est pas utilisé.\n",
|
||||
"\n-Le type \"Texte\", représente un texte fixe.\nLe champ \"Incrémentation\" n'est pas utilisé.\n",
|
||||
"help dialog about the folio autonumerotation"
|
||||
));
|
||||
break;
|
||||
@ -204,18 +204,18 @@ void SelectAutonumW::on_buttonBox_clicked(QAbstractButton *button) {
|
||||
else
|
||||
{
|
||||
QMessageBox::information (this, tr("Conducteur Autonumérotation", "title window"),
|
||||
tr("C'est ici que vous pouvez définir la manière dont sera numéroté les nouveaux conducteurs.\n"
|
||||
tr("C'est ici que vous pouvez définir la manière dont seront numérotés les nouveaux conducteurs.\n"
|
||||
"-Une numérotation est composée d'une variable minimum.\n"
|
||||
"-Vous pouvez ajouter ou supprimer une variable de numérotation par le biais des boutons - et +.\n"
|
||||
"-Une variable de numérotation comprant: un type, une valeur et une incrémentation.\n"
|
||||
"-Une variable de numérotation comprend : un type, une valeur et une incrémentation.\n"
|
||||
|
||||
"\n-les types \"Chiffre 1\", \"Chiffre 01\" et \"Chiffre 001\", représente un type numérique définie dans le champs \"Valeur\", "
|
||||
"\n-les types \"Chiffre 1\", \"Chiffre 01\" et \"Chiffre 001\", représentent un type numérique défini dans le champ \"Valeur\", "
|
||||
"qui s'incrémente à chaque nouveau conducteur de la valeur du champ \"Incrémentation\".\n"
|
||||
"-\"Chiffre 01\" et \"Chiffre 001\", sont respectivement représenté sur le schéma par deux et trois digits minimum.\n"
|
||||
"Si le chiffre définie dans le champs Valeur posséde moins de digits que le type choisit,"
|
||||
"-\"Chiffre 01\" et \"Chiffre 001\", sont respectivement représentés sur le schéma par deux et trois digits minimum.\n"
|
||||
"Si le chiffre défini dans le champ Valeur possède moins de digits que le type choisi,"
|
||||
"celui-ci sera précédé par un ou deux 0 afin de respecter son type.\n"
|
||||
|
||||
"\n-Le type \"Texte\", représente un texte fixe.\nLe champs \"Incrémentation\" n'est pas utilisé.\n"
|
||||
"\n-Le type \"Texte\", représente un texte fixe.\nLe champ \"Incrémentation\" n'est pas utilisé.\n"
|
||||
|
||||
"\n-Le type \"N° folio\" représente le n° du folio en cours.\nLes autres champs ne sont pas utilisés.\n"
|
||||
|
||||
|
@ -167,8 +167,8 @@ ImportElementTextPattern::ImportElementTextPattern(Element *elmt):
|
||||
QString ImportElementTextPattern::getName(const QStringList& list, bool *ok, bool *erase) const
|
||||
{
|
||||
return ImportElementTextPatternDialog::getItem(parentWidget(),
|
||||
QObject::tr("Séléctionner une configuration de textes"),
|
||||
QObject::tr("Séléctionner la configuration de textes à ajouter à l'élément"),
|
||||
QObject::tr("Sélectionner une configuration de textes"),
|
||||
QObject::tr("Sélectionner la configuration de textes à ajouter à l'élément"),
|
||||
list,
|
||||
ok,
|
||||
erase);
|
||||
|
@ -93,15 +93,15 @@ QString nomenclature::getNomenclature()
|
||||
""+ QObject::tr("F002") +";" //:Don't translate this text! //ID for label formula of element
|
||||
""+ QObject::tr("G001") +";" //:Don't translate this text! //ID for order number
|
||||
""+ QObject::tr("H001") +";" //:Don't translate this text! //ID for article description
|
||||
""+ QObject::tr("H002") +";" //:Don't translate this text! //ID for group function description
|
||||
""+ QObject::tr("H002") +";" //:Don't translate this text! //ID for plant
|
||||
""+ QObject::tr("I001") +";" //:Don't translate this text! //ID for comment
|
||||
""+ QObject::tr("J001") +";" //:Don't translate this text! //ID for manufacturer
|
||||
""+ QObject::tr("K001") +";" //:Don't translate this text! //ID for article number
|
||||
""+ QObject::tr("L001") +";" //:Don't translate this text! //ID for quantity
|
||||
""+ QObject::tr("L002") +";" //:Don't translate this text! //ID for Unity
|
||||
""+ QObject::tr("L002") +";" //:Don't translate this text! //ID for unity
|
||||
""+ QObject::tr("L003") +";" //:Don't translate this text! //ID for supplier
|
||||
""+ QObject::tr("M001") +";" //:Don't translate this text! //ID for auxiliary field 1
|
||||
""+ QObject::tr("M002") +";" //:Don't translate this text! //ID for auciliary field 2
|
||||
""+ QObject::tr("M002") +";" //:Don't translate this text! //ID for auxiliary field 2
|
||||
""+ QObject::tr("N001")+";" //:Don't translate this text! //ID for internal number
|
||||
""+ QObject::tr("O001")+";" //:Don't translate this text! //ID for location
|
||||
""+ QObject::tr("P001") +"\n"; //:Don't translate this text! //ID for function
|
||||
@ -114,7 +114,7 @@ QString nomenclature::getNomenclature()
|
||||
""+ QObject::tr("Formule du label") +";"
|
||||
""+ QObject::tr("Désignation") +";"
|
||||
""+ QObject::tr("Description") +";"
|
||||
""+ QObject::tr("Groupe fonctionnel") +";"
|
||||
""+ QObject::tr("Installation") +";"
|
||||
""+ QObject::tr("Commentaire") +";"
|
||||
""+ QObject::tr("Fabricant") +";"
|
||||
""+ QObject::tr("Numéro de commande") +";"
|
||||
|
@ -232,7 +232,7 @@ ProjectAutoNumConfigPage::ProjectAutoNumConfigPage (QETProject *project, QWidget
|
||||
* @return
|
||||
*/
|
||||
QString ProjectAutoNumConfigPage::title() const {
|
||||
return tr("Auto numerotation");
|
||||
return tr("Numérotation auto");
|
||||
}
|
||||
|
||||
/**
|
||||
@ -263,19 +263,19 @@ void ProjectAutoNumConfigPage::initWidgets()
|
||||
|
||||
//Conductor tab
|
||||
m_saw_conductor = new SelectAutonumW(1);
|
||||
tab_widget->addTab(m_saw_conductor, tr("Conducteur"));
|
||||
tab_widget->addTab(m_saw_conductor, tr("Conducteurs"));
|
||||
|
||||
//Element tab
|
||||
m_saw_element = new SelectAutonumW(0);
|
||||
tab_widget->addTab(m_saw_element, tr("Element"));
|
||||
tab_widget->addTab(m_saw_element, tr("Eléments"));
|
||||
|
||||
//Folio Tab
|
||||
m_saw_folio = new SelectAutonumW(2);
|
||||
tab_widget->addTab(m_saw_folio, tr("Folio"));
|
||||
tab_widget->addTab(m_saw_folio, tr("Folios"));
|
||||
|
||||
//AutoNumbering Tab
|
||||
m_faw = new FolioAutonumberingW(project());
|
||||
tab_widget->addTab(m_faw, tr("Folio autonumérotation"));
|
||||
tab_widget->addTab(m_faw, tr("Numérotation auto des folios"));
|
||||
|
||||
QHBoxLayout *main_layout = new QHBoxLayout();
|
||||
main_layout->addWidget(tab_widget);
|
||||
|
@ -323,9 +323,9 @@ QStringList QETApp::elementInfoKeys()
|
||||
*/
|
||||
QString QETApp::elementTranslatedInfoKey(const QString &info)
|
||||
{
|
||||
if (info == "formula") return tr("formule du label");
|
||||
if (info == "formula") return tr("Formule du label");
|
||||
else if (info == "label") return tr("Label");
|
||||
else if (info == "group-function") return tr("Groupe fonctionnel");
|
||||
else if (info == "group-function") return tr("Installation");
|
||||
else if (info == "location") return tr("Localisation");
|
||||
|
||||
else if (info == "comment") return tr("Commentaire");
|
||||
|
@ -518,7 +518,7 @@ void QETDiagramEditor::setUpActions()
|
||||
m_rotate_texts = m_selection_actions_group.addAction( QET::Icons::ObjectRotateRight, tr("Orienter les textes") );
|
||||
m_find_element = m_selection_actions_group.addAction( QET::Icons::ZoomDraw, tr("Retrouver dans le panel") );
|
||||
m_edit_selection = m_selection_actions_group.addAction( QET::Icons::ElementEdit, tr("Éditer l'item sélectionné") );
|
||||
m_group_selected_texts = m_selection_actions_group.addAction(QET::Icons::textGroup, tr("Grouper les textes séléctionné"));
|
||||
m_group_selected_texts = m_selection_actions_group.addAction(QET::Icons::textGroup, tr("Grouper les textes sélectionnés"));
|
||||
|
||||
m_delete_selection->setShortcut(QKeySequence::Delete);
|
||||
m_rotate_selection->setShortcut(QKeySequence( tr("Space")));
|
||||
|
@ -7,7 +7,7 @@
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>716</width>
|
||||
<height>825</height>
|
||||
<height>1073</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
@ -17,7 +17,7 @@
|
||||
<item>
|
||||
<widget class="QTabWidget" name="tabWidget">
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
<number>1</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="type">
|
||||
<attribute name="title">
|
||||
@ -433,7 +433,7 @@
|
||||
<item row="2" column="0">
|
||||
<widget class="QLabel" name="label_10">
|
||||
<property name="text">
|
||||
<string>size:</string>
|
||||
<string>Taille :</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
@ -68,6 +68,11 @@
|
||||
<attribute name="headerStretchLastSection">
|
||||
<bool>true</bool>
|
||||
</attribute>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string notr="true">1</string>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="2" colspan="3">
|
||||
@ -105,6 +110,11 @@
|
||||
<attribute name="headerStretchLastSection">
|
||||
<bool>true</bool>
|
||||
</attribute>
|
||||
<column>
|
||||
<property name="text">
|
||||
<string notr="true">1</string>
|
||||
</property>
|
||||
</column>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="2">
|
||||
@ -120,7 +130,7 @@
|
||||
<item row="2" column="3">
|
||||
<widget class="QPushButton" name="unlink_button">
|
||||
<property name="toolTip">
|
||||
<string>Délier l'élément séléctionné</string>
|
||||
<string><html><head/><body><p>Délier l'élément sélectionné</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
@ -134,7 +144,7 @@
|
||||
<item row="2" column="4">
|
||||
<widget class="QPushButton" name="link_button">
|
||||
<property name="toolTip">
|
||||
<string>Lier l'élément séléctionné</string>
|
||||
<string><html><head/><body><p>Lier l'élément sélectionné</p></body></html></string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string/>
|
||||
|
Loading…
x
Reference in New Issue
Block a user