From 6dcdacb2973363639a5c1358ac18356d0aa66994 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sat, 12 Jan 2013 11:43:00 +0000 Subject: added german interface language git-svn-id: http://svn.miranda-ng.org/main/trunk@3066 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- tools/Langpack Suite/Form1.Designer.cs | 3 +- tools/Langpack Suite/Form1.cs | 6 + tools/Langpack Suite/LangpackSuite.csproj | 1 + .../Properties/Resources.Designer.cs | 24 +- .../Langpack Suite/Properties/Settings.Designer.cs | 8 +- tools/Langpack Suite/myRes.de-DE.resx | 311 +++++++++++++++++++++ tools/Langpack Suite/myRes.resx | 2 +- tools/Langpack Suite/myRes.ru-RU.resx | 2 +- tools/Langpack Suite/myRes.uk-UA.resx | 2 +- 9 files changed, 339 insertions(+), 20 deletions(-) create mode 100644 tools/Langpack Suite/myRes.de-DE.resx (limited to 'tools/Langpack Suite') diff --git a/tools/Langpack Suite/Form1.Designer.cs b/tools/Langpack Suite/Form1.Designer.cs index e31daadeb2..af65d0a091 100644 --- a/tools/Langpack Suite/Form1.Designer.cs +++ b/tools/Langpack Suite/Form1.Designer.cs @@ -470,7 +470,8 @@ "English", "Русский", "Українська", - "Беларускі"}); + "Беларускі", + "Deutsch"}); this.LanguageComboBox.Location = new System.Drawing.Point(204, 348); this.LanguageComboBox.Name = "LanguageComboBox"; this.LanguageComboBox.Size = new System.Drawing.Size(121, 21); diff --git a/tools/Langpack Suite/Form1.cs b/tools/Langpack Suite/Form1.cs index f37ffac809..653762a47f 100644 --- a/tools/Langpack Suite/Form1.cs +++ b/tools/Langpack Suite/Form1.cs @@ -106,6 +106,10 @@ namespace Langpack_Suite { LanguageComboBox.SelectedIndex = 3; } + else if (culture.ToString() == "de-DE") + { + LanguageComboBox.SelectedIndex = 4; + } else { culture = CultureInfo.CreateSpecificCulture("en-US"); @@ -815,6 +819,8 @@ namespace Langpack_Suite culture = CultureInfo.CreateSpecificCulture("uk-UA"); if (LanguageComboBox.SelectedIndex == 3) culture = CultureInfo.CreateSpecificCulture("be-BY"); + if (LanguageComboBox.SelectedIndex == 4) + culture = CultureInfo.CreateSpecificCulture("de-DE"); adjustCulture(); } diff --git a/tools/Langpack Suite/LangpackSuite.csproj b/tools/Langpack Suite/LangpackSuite.csproj index 8b0474ea1a..ffa4baba61 100644 --- a/tools/Langpack Suite/LangpackSuite.csproj +++ b/tools/Langpack Suite/LangpackSuite.csproj @@ -85,6 +85,7 @@ Form1.cs + ResXFileCodeGenerator myRes.uk-UA.Designer.cs diff --git a/tools/Langpack Suite/Properties/Resources.Designer.cs b/tools/Langpack Suite/Properties/Resources.Designer.cs index 6230c3a0a5..30e857767a 100644 --- a/tools/Langpack Suite/Properties/Resources.Designer.cs +++ b/tools/Langpack Suite/Properties/Resources.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.17929 +// Этот код создан программой. +// Исполняемая версия:4.0.30319.18034 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. // //------------------------------------------------------------------------------ @@ -13,12 +13,12 @@ namespace LangpackSuite.Properties { /// - /// A strongly-typed resource class, for looking up localized strings, etc. + /// Класс ресурса со строгой типизацией для поиска локализованных строк и т.д. /// - // This class was auto-generated by the StronglyTypedResourceBuilder - // class via a tool like ResGen or Visual Studio. - // To add or remove a member, edit your .ResX file then rerun ResGen - // with the /str option, or rebuild your VS project. + // Этот класс создан автоматически классом StronglyTypedResourceBuilder + // с помощью такого средства, как ResGen или Visual Studio. + // Чтобы добавить или удалить член, измените файл .ResX и снова запустите ResGen + // с параметром /str или перестройте свой проект VS. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] @@ -33,7 +33,7 @@ namespace LangpackSuite.Properties { } /// - /// Returns the cached ResourceManager instance used by this class. + /// Возвращает кэшированный экземпляр ResourceManager, использованный этим классом. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { @@ -47,8 +47,8 @@ namespace LangpackSuite.Properties { } /// - /// Overrides the current thread's CurrentUICulture property for all - /// resource lookups using this strongly typed resource class. + /// Перезаписывает свойство CurrentUICulture текущего потока для всех + /// обращений к ресурсу с помощью этого класса ресурса со строгой типизацией. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { diff --git a/tools/Langpack Suite/Properties/Settings.Designer.cs b/tools/Langpack Suite/Properties/Settings.Designer.cs index d198aa5d96..552ea72ddc 100644 --- a/tools/Langpack Suite/Properties/Settings.Designer.cs +++ b/tools/Langpack Suite/Properties/Settings.Designer.cs @@ -1,10 +1,10 @@ //------------------------------------------------------------------------------ // -// This code was generated by a tool. -// Runtime Version:4.0.30319.17929 +// Этот код создан программой. +// Исполняемая версия:4.0.30319.18034 // -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. +// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае +// повторной генерации кода. // //------------------------------------------------------------------------------ diff --git a/tools/Langpack Suite/myRes.de-DE.resx b/tools/Langpack Suite/myRes.de-DE.resx new file mode 100644 index 0000000000..1238aa72f2 --- /dev/null +++ b/tools/Langpack Suite/myRes.de-DE.resx @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + Sprachdatei zugeordnet... + + + Zuordnung + + + Automatisch + + + Kommentare gefunden... + + + Kommentare finden + + + Kommentare nicht gefunden! + + + Datei =CORE=.txt nicht gefunden... + + + Sprachdatei erstellen + + + Beendet! + + + Duplikate finden + + + Datei =DUPES=.txt nicht gefunden... + + + Duplikate gefunden... + + + Duplikate nicht gefunden! + + + Arbeit beendet. + + + Fehler + + + .txt nicht gefunden... + + + nicht gefunden... + + + Datei + + + Finde Sprachdatei... + + + Generierung gestoppt. + + + Sprachdatei erstellen... + + + Sprachdatei zuordnen + + + Ausgabedatei + + + Arbeitsmodus + + + Datei =HEAD=.txt nicht gefunden... + + + Informationen + + + Sprachdatei Dateiname: + + + Name: + + + LinkList.txt Datei beinhaltet Links zu den Übersetzungsdateien +verschiedener Plugins und kann in jedem Download-Manager +verwendet werden. Aus den heruntergeladenen Dateien kann einer +Übersetzung aller, oder nur der von Ihnen verwendeten Plugins +erstellt werden (Informationen werden aus Ihrer Versionsinfo-Datei +ausgelesen, falls verfügbar). + + + URL des SVNs: + + + Sprachdatei nicht gefunden... + + + nicht belegt + + + Sprache: + + + LinkList erstellen... + + + Datei erstellen + + + Manuell + + + Kann Datei nicht öffnen. + + + Not Translated lines founded... + + + Find Not Translated + + + Not translated lines not found! + + + Kann Datei nicht schreiben. + + + Eigene Datei zur Sprachdatei hinzufügen + + + Writing files from Plugins folder... + + + Unterverzeichnis Plugins nicht gefunden... + + + Schreiben von Dateien aus Root Ordner ... + + + Auswählen + + + Generator + + + Liste der Dateien + + + Duplikate suchen + + + Datei =VERSION=.txt nicht gefunden... + + + Datei VersionInfo.txt gefunden, making shot langpack... + + + Schreibe Dateien aus Weather Verzeichnis... + + + Unterverzeichnis Weather nicht gefunden... + + + VersionInfo.txt nicht gefunden, so dass volle langpack ... + + + Falsches Verzeichnis ausgewählt... + + + VersionInfo aus Internet oder vollen lokalen Pfad + + + bspw. http://www.miranda-vi.org/report/mataes + + + Kommandozeilen-Argumente + + + Argumente + + + \q - stille Erzeugung +\n - Dateiname der Sprachdatei +\o - Pfad zu Hinzufügen eigener Datei +\u - Link zu VI von miranda-vi.org oder voller lokaler Pfad +\l - Sprachdatei Ausgabepfad + +Beispiel LangpackSuite.exe \q \nLang_Test \o"My Strings.txt" \uD:\Miranda\VersionInfo.txt + + \ No newline at end of file diff --git a/tools/Langpack Suite/myRes.resx b/tools/Langpack Suite/myRes.resx index 7e7d2ffffe..34c3cdf2b5 100644 --- a/tools/Langpack Suite/myRes.resx +++ b/tools/Langpack Suite/myRes.resx @@ -1,4 +1,4 @@ - +