diff --git a/lang/qet_en.qm b/lang/qet_en.qm index 95d848e28..7c59d9de2 100644 Binary files a/lang/qet_en.qm and b/lang/qet_en.qm differ diff --git a/lang/qet_en.ts b/lang/qet_en.ts index 3f32e1f76..92fe02b5c 100644 --- a/lang/qet_en.ts +++ b/lang/qet_en.ts @@ -2256,21 +2256,11 @@ Available options: E&xporter &Export - - - Fenêtre précédente - Previous Window - Fe&nêtres Wi&ndows - - - Fenêtre suivante - Next Window - &Fermer @@ -2832,18 +2822,6 @@ Available options: status bar tip Arranges windows in a cascade pattern - - - Active la fenêtre suivante - status bar tip - Activates the next window - - - - Active la fenêtre précédente - status bar tip - Activates the previous window - Affiche des informations sur QElectroTech @@ -2856,11 +2834,6 @@ Available options: status bar tip Displays informations about Qt library - - - Active la fenêtre %1 - Activates the window %1 - &Enregistrer tous les schémas @@ -2872,6 +2845,33 @@ Available options: status bar tip Saves all the diagrams of the current project + + + Projet suivant + Next project + + + + Projet précédent + Previous project + + + + Active le projet suivant + status bar tip + Activates the next project + + + + Active le projet précédent + status bar tip + Activates the previous project + + + + Active le projet « %1 » + Activates the project "%1" + QETElementEditor diff --git a/lang/qet_es.qm b/lang/qet_es.qm index a1f3aae1a..3ccf15cc3 100644 Binary files a/lang/qet_es.qm and b/lang/qet_es.qm differ diff --git a/lang/qet_es.ts b/lang/qet_es.ts index 5f8928dc7..c10344c17 100644 --- a/lang/qet_es.ts +++ b/lang/qet_es.ts @@ -1,5 +1,6 @@ + AboutQET @@ -54,7 +55,7 @@ Traduction en espagnol - + Traducción al español @@ -1137,7 +1138,7 @@ Los cambios no podrían ser revertidos. Exporter les schémas du projet window title - + Exportar los esquemas del proyecto @@ -1157,7 +1158,7 @@ Los cambios no podrían ser revertidos. Nom de fichier - + Nombre de archivo @@ -1253,7 +1254,7 @@ Los cambios no podrían ser revertidos. <u>Élément manquant :</u> %1 - + <u>Elemento faltando:</u> %1 @@ -2341,16 +2342,6 @@ Opciones disponibles: &Cascade &Cascada - - - Fenêtre suivante - Ventana siguiente - - - - Fenêtre précédente - Ventana anterior - À &propos de QElectroTech @@ -2832,18 +2823,6 @@ Opciones disponibles: status bar tip Poner las ventanas en cascada - - - Active la fenêtre suivante - status bar tip - Activar la ventana siguiente - - - - Active la fenêtre précédente - status bar tip - Activar la ventana previa - Affiche des informations sur QElectroTech @@ -2856,21 +2835,43 @@ Opciones disponibles: status bar tip Mostrar las informaciones sobre la biblioteca Qt - - - Active la fenêtre %1 - Activa la ventana %1 - &Enregistrer tous les schémas - + &Guardar todos los esquemas Enregistre tous les schémas du projet courant status bar tip - + Guarda todos los esquemas del proyecto corriente + + + + Projet suivant + Proyecto siguiente + + + + Projet précédent + Proyecto previo + + + + Active le projet suivant + status bar tip + Activar el proyecto siguiente + + + + Active le projet précédent + status bar tip + Activar el proyecto previo + + + + Active le projet « %1 » + Activar el proyecto « %1 » @@ -3958,7 +3959,7 @@ Opciones disponibles: Réinitialiser les dimensions - + Reinicializar los tamaños diff --git a/sources/qetdiagrameditor.cpp b/sources/qetdiagrameditor.cpp index 4d0061735..77c6121f3 100644 --- a/sources/qetdiagrameditor.cpp +++ b/sources/qetdiagrameditor.cpp @@ -245,8 +245,8 @@ void QETDiagramEditor::actions() { tile_window = new QAction( tr("&Mosa\357que"), this); cascade_window = new QAction( tr("&Cascade"), this); - next_window = new QAction( tr("Fen\352tre suivante"), this); - prev_window = new QAction( tr("Fen\352tre pr\351c\351dente"), this); + next_window = new QAction( tr("Projet suivant"), this); + prev_window = new QAction( tr("Projet pr\351c\351dent"), this); about_qet = new QAction(QIcon(":/ico/qet.png"), tr("\300 &propos de QElectroTech"), this); about_qt = new QAction(QIcon(":/ico/qt.png"), tr("\300 propos de &Qt"), this); @@ -334,8 +334,8 @@ void QETDiagramEditor::actions() { tile_window -> setStatusTip(tr("Dispose les fen\352tres en mosa\357que", "status bar tip")); cascade_window -> setStatusTip(tr("Dispose les fen\352tres en cascade", "status bar tip")); - next_window -> setStatusTip(tr("Active la fen\352tre suivante", "status bar tip")); - prev_window -> setStatusTip(tr("Active la fen\352tre pr\351c\351dente", "status bar tip")); + next_window -> setStatusTip(tr("Active le projet suivant", "status bar tip")); + prev_window -> setStatusTip(tr("Active le projet pr\351c\351dent", "status bar tip")); about_qet -> setStatusTip(tr("Affiche des informations sur QElectroTech", "status bar tip")); about_qt -> setStatusTip(tr("Affiche des informations sur la biblioth\350que Qt", "status bar tip")); @@ -1322,7 +1322,7 @@ void QETDiagramEditor::slot_updateWindowsMenu() { QString pv_title = project_view -> windowTitle(); QAction *action = windows_menu -> addAction(pv_title); windows_actions -> addAction(action); - action -> setStatusTip(QString(tr("Active la fen\352tre %1")).arg(pv_title)); + action -> setStatusTip(QString(tr("Active le projet \253\240%1\240\273")).arg(pv_title)); action -> setCheckable(true); action -> setChecked(project_view == currentProject()); connect(action, SIGNAL(triggered()), &windowMapper, SLOT(map()));