From 2ee11c3f1ba82d7d92cc693f25b7f3eaa62ad519 Mon Sep 17 00:00:00 2001 From: Laurent Trinques Date: Sun, 5 Jul 2020 15:23:42 +0200 Subject: [PATCH] Minor : Rename variable for translation --- sources/qetapp.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sources/qetapp.cpp b/sources/qetapp.cpp index a86996ba4..1333dc236 100644 --- a/sources/qetapp.cpp +++ b/sources/qetapp.cpp @@ -331,8 +331,8 @@ QString QETApp::elementTranslatedInfoKey(const QString &info) else if (info == "comment") return tr("Commentaire"); else if (info == "function") return tr("Fonction"); else if (info == "tension_protocol") return tr("Tension / Protocole"); - else if (info == "conductor_color") return tr("conductor_color"); - else if (info == "conductor_section") return tr("conductor_section"); + else if (info == "conductor_color") return tr("Couleur du fil"); + else if (info == "conductor_section") return tr("Section du fil"); else if (info == "auxiliary1") return tr("Bloc auxiliaire 1"); else if (info == "auxiliary2") return tr("Bloc auxiliaire 2"); @@ -408,8 +408,8 @@ QString QETApp::conductorTranslatedInfoKey(const QString &key) else if (key == "text") return tr("Texte"); else if (key == "function") return tr("Fonction"); else if (key == "tension/protocol") return tr("Tension / Protocole"); - else if (key == "conductor_color") return tr("conductor_color"); - else if (key == "conductor_section")return tr("conductor_section"); + else if (key == "conductor_color") return tr("Couleur du fil"); + else if (key == "conductor_section")return tr("Section du fil"); return QString(); }