[Japi-cvs] SF.net SVN: japi: [599] tools/string2bytes/trunk/src/net/sf/japi/ string2bytes
Status: Beta
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2007-08-27 20:27:45
|
Revision: 599
http://japi.svn.sourceforge.net/japi/?rev=599&view=rev
Author: christianhujer
Date: 2007-08-27 13:27:43 -0700 (Mon, 27 Aug 2007)
Log Message:
-----------
Added German localization.
Modified Paths:
--------------
tools/string2bytes/trunk/src/net/sf/japi/string2bytes/String2Bytes.java
tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action.properties
Added Paths:
-----------
tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action_de.properties
Modified: tools/string2bytes/trunk/src/net/sf/japi/string2bytes/String2Bytes.java
===================================================================
--- tools/string2bytes/trunk/src/net/sf/japi/string2bytes/String2Bytes.java 2007-08-27 13:42:01 UTC (rev 598)
+++ tools/string2bytes/trunk/src/net/sf/japi/string2bytes/String2Bytes.java 2007-08-27 20:27:43 UTC (rev 599)
@@ -189,7 +189,7 @@
*/
@NotNull private JPanel createSettingsPanel() {
final JPanel settingsPanel = new JPanel();
- settingsPanel.setBorder(BorderFactory.createTitledBorder("Settings"));
+ settingsPanel.setBorder(BorderFactory.createTitledBorder(ACTION_BUILDER.getString("border.settings.title")));
settingsPanel.add(createEncodingPanel());
return settingsPanel;
}
@@ -259,7 +259,7 @@
*/
@NotNull private JPanel createCommandPanel() {
final JPanel commandPanel = new JPanel();
- commandPanel.setBorder(BorderFactory.createTitledBorder("Commands"));
+ commandPanel.setBorder(BorderFactory.createTitledBorder(ACTION_BUILDER.getString("border.commands.title")));
commandPanel.add(new JButton(ACTION_BUILDER.getAction("convert")));
return commandPanel;
}
Modified: tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action.properties
===================================================================
--- tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action.properties 2007-08-27 13:42:01 UTC (rev 598)
+++ tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action.properties 2007-08-27 20:27:43 UTC (rev 599)
@@ -50,6 +50,8 @@
border.encoding.title=Encoding
border.input.title=Input
border.output.title=Output
+border.commands.title=Commands
+border.settings.title=Settings
about=<html><h1 align="center">String2Bytes</h1><p>Converter for Strings</p><table><tr><td valign="top" align="right" width="50%">Copyright \xA9 2007</td><td width="50%">Christian Hujer</td></tr><tr><td align="right">Java version:</td><td>{0}</td></tr><tr><td align="right">Build number:</td><td>{1}</td></tr><tr><td align="right">by:</td><td>{2}</td></tr><tr><td align="right">at:</td><td>{3}</td></tr></table></html>
Added: tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action_de.properties
===================================================================
--- tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action_de.properties (rev 0)
+++ tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action_de.properties 2007-08-27 20:27:43 UTC (rev 599)
@@ -0,0 +1,53 @@
+#
+# String2Bytes is a program for converting Strings into byte arrays.
+# Copyright (C) 2007 Christian Hujer
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+
+usingClipboardForInput.text=Zwischenablage
+usingClipboardForInput.shortdescription=Benutze die Zwischenablage als Quelle (Eingabe) f\xFCr die Umwandlung
+
+clearInput.text=L\xF6schen
+clearInput.shortdescription=L\xF6scht das Eingabefenster.
+
+usingClipboardForOutput.text=Zwischenablage
+usingClipboardForOutput.shortdescription=Benutze die Zwischenablage als Ziel (Ausgabe) f\xFCr die Umwandlung
+
+clearOutput.text=L\xF6schen
+clearOutput.shortdescription=L\xF6scht das Ausgabefenster.
+
+convert.text=Umwandeln
+convert.shortdescription=Wandelt die Eingabe in die Ausgabe um.
+convert.exception.java.io.UnsupportedEncodingException.title=Umwandlungsfehler
+convert.exception.java.io.UnsupportedEncodingException.message=Nicht unterst\xFCtzte Kodierung: {0}
+
+encodingDefault.text=Voreinstellung
+encodingDefault.shortdescription=Setzt die Kodierung auf die Voreinstellung zur\xFCck.
+
+encodingSystem.text=System
+encodingSystem.shortdescription=Setzt die Kodierung auf den Systemwert zur\xFCck.
+
+border.encoding.title=Kodierung
+border.input.title=Eingabe (Quelle)
+border.output.title=Ausgabe (Ziel)
+border.commands.title=Befehle
+border.settings.title=Einstellungen
+
+about=<html><h1 align="center">String2Bytes</h1><p>Umwandler f\xFCr Strings</p><table><tr><td valign="top" align="right" width="50%">Copyright \xA9 2007</td><td width="50%">Christian Hujer</td></tr><tr><td align="right">Java version:</td><td>{0}</td></tr><tr><td align="right">Build number:</td><td>{1}</td></tr><tr><td align="right">by:</td><td>{2}</td></tr><tr><td align="right">at:</td><td>{3}</td></tr></table></html>
+
+file.text=Datei
+about.text=\xDCber...
+quit.text=Beenden
Property changes on: tools/string2bytes/trunk/src/net/sf/japi/string2bytes/action_de.properties
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Name: svn:eol-style
+ LF
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|