From 302f53198246df2cc89c2e93d9c5ed54796a9c73 Mon Sep 17 00:00:00 2001 From: xavier Date: Sat, 9 May 2009 13:16:18 +0000 Subject: [PATCH] Ajout de la traduction russe de "Elements importes". git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@627 bfdf4180-ca20-0410-9c96-a3a8aa849046 --- sources/qetproject.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sources/qetproject.cpp b/sources/qetproject.cpp index 852d26b0f..5f3567405 100644 --- a/sources/qetproject.cpp +++ b/sources/qetproject.cpp @@ -871,9 +871,12 @@ void QETProject::addDiagram(Diagram *diagram) { NamesList QETProject::namesListForIntegrationCategory() { NamesList names; + const QChar russian_data[24] = { 0x0418, 0x043C, 0x043F, 0x043E, 0x0440, 0x0442, 0x0438, 0x0440, 0x043E, 0x0432, 0x0430, 0x043D, 0x043D, 0x044B, 0x0435, 0x0020, 0x044D, 0x043B, 0x0435, 0x043C, 0x0435, 0x043D, 0x0442, 0x044B }; + names.addName("fr", "\311l\351ments import\351s"); names.addName("en", "Imported elements"); names.addName("es", "Elementos importados"); + names.addName("ru", QString(russian_data, 24)); return(names); }