aboutsummaryrefslogtreecommitdiffstats
path: root/tests/netx/unit/net/sourceforge
diff options
context:
space:
mode:
authorJiri Vanek <[email protected]>2013-04-26 17:01:59 +0200
committerJiri Vanek <[email protected]>2013-04-26 17:01:59 +0200
commitbfd62081c1ab28b5382c1791862ca99ff9667f6e (patch)
tree4d936c2eb337afec76c5e8b5334f8f0d1464a0a8 /tests/netx/unit/net/sourceforge
parent14c0b3b81e20f4a70558eb0f300d31dc91d22a1f (diff)
Added polish transaltion and tests to it
Also minor changes to En and De files
Diffstat (limited to 'tests/netx/unit/net/sourceforge')
-rw-r--r--tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java b/tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java
index fc80713..b12dcfb 100644
--- a/tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java
+++ b/tests/netx/unit/net/sourceforge/jnlp/resources/MessagesPropertiesTest.java
@@ -56,6 +56,7 @@ public class MessagesPropertiesTest {
public static final LocalesIdentifier DEFAULT = new LocalesIdentifier("","");
public static final LocalesIdentifier CZ_CS = new LocalesIdentifier("CZ","cs");
public static final LocalesIdentifier DE = new LocalesIdentifier("de");
+ public static final LocalesIdentifier PL = new LocalesIdentifier("pl");
//public static final LocalesIdentifier DE_DE = new LocalesIdentifier("DE","de");
public static final String mainFileName = "Messages";
@@ -145,7 +146,7 @@ public class MessagesPropertiesTest {
//get default by non existing language and country
main = LocalesIdentifier.DEFAULT;
assertNotNull(main);
- secondary= new LocalesIdentifier[] {LocalesIdentifier.CZ_CS,LocalesIdentifier.DE};
+ secondary= new LocalesIdentifier[] {LocalesIdentifier.CZ_CS,LocalesIdentifier.DE,LocalesIdentifier.PL};
assertNotNull(secondary);
for (int i = 0; i < secondary.length; i++) {
assertNotNull(secondary[i]);
@@ -308,7 +309,7 @@ public class MessagesPropertiesTest {
}
private void errLog(String string) {
//used quite often :)
- //System.out.println(string);
+ System.out.println(string);
ServerAccess.logErrorReprint(string);
}