You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2012/03/14 22:19:14 UTC

[3/3] git commit: WICKET-4448 Russian (and German) localization for PagingNavigator

WICKET-4448 Russian (and German) localization for PagingNavigator


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/23f4f393
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/23f4f393
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/23f4f393

Branch: refs/heads/master
Commit: 23f4f393df8910aeb90ffb37a70fb8f6da5cacb8
Parents: a0df2c5
Author: Sven Meier <sv...@apache.org>
Authored: Wed Mar 14 22:01:26 2012 +0100
Committer: Sven Meier <sv...@apache.org>
Committed: Wed Mar 14 22:01:26 2012 +0100

----------------------------------------------------------------------
 .../org/apache/wicket/Application_de.properties    |    6 ++++++
 .../apache/wicket/Application_ru.properties.xml    |    6 ++++++
 .../org/apache/wicket/examples/StartExamples.java  |    2 +-
 3 files changed, 13 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/23f4f393/wicket-core/src/main/java/org/apache/wicket/Application_de.properties
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/Application_de.properties b/wicket-core/src/main/java/org/apache/wicket/Application_de.properties
index 6400e5a..088303b 100644
--- a/wicket-core/src/main/java/org/apache/wicket/Application_de.properties
+++ b/wicket-core/src/main/java/org/apache/wicket/Application_de.properties
@@ -39,6 +39,12 @@ EqualPasswordInputValidator=${label0} und ${label1} m\u00fcssen gleich sein.
 null=Bitte w\u00e4hlen
 nullValid=
 
+PagingNavigator.first=Gehe zur ersten Seite
+PagingNavigator.previous=Gehe zur vorherigen Seite
+PagingNavigator.next=Gehe zur n�chsten Seite
+PagingNavigator.last=Gehe zur letzten Seite
+PagingNavigation.page=Gehe zu Seite ${page}
+
 org.apache.wicket.mfu.caption.unlimited=Dateien:
 org.apache.wicket.mfu.caption.limited=Dateien (max. ${max}): 
 org.apache.wicket.mfu.delete=L\u00f6schen

http://git-wip-us.apache.org/repos/asf/wicket/blob/23f4f393/wicket-core/src/main/java/org/apache/wicket/Application_ru.properties.xml
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/Application_ru.properties.xml b/wicket-core/src/main/java/org/apache/wicket/Application_ru.properties.xml
index e09379e..f8835e4 100644
--- a/wicket-core/src/main/java/org/apache/wicket/Application_ru.properties.xml
+++ b/wicket-core/src/main/java/org/apache/wicket/Application_ru.properties.xml
@@ -49,6 +49,12 @@
 	<entry key="null">Выберите значение</entry>
 	<entry key="nullValid"></entry>
 	
+	<entry key="PagingNavigator.first">Перейти на первую страницу</entry>
+	<entry key="PagingNavigator.previous">Перейти на предыдущую страницу</entry>
+	<entry key="PagingNavigator.next">Перейти на следующую страницу</entry>
+	<entry key="PagingNavigator.last">Перейти на последнюю страницу</entry>
+	<entry key="PagingNavigation.page">Перейти на страницу ${page}</entry>
+	
 	<entry key="org.apache.wicket.mfu.caption.unlimited">Файлы:</entry>
 	<entry key="org.apache.wicket.mfu.caption.limited">Файлы (всего не больше ${max}): </entry>
 </properties>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/wicket/blob/23f4f393/wicket-examples/src/test/java/org/apache/wicket/examples/StartExamples.java
----------------------------------------------------------------------
diff --git a/wicket-examples/src/test/java/org/apache/wicket/examples/StartExamples.java b/wicket-examples/src/test/java/org/apache/wicket/examples/StartExamples.java
index 0c269e8..12ae3b1 100644
--- a/wicket-examples/src/test/java/org/apache/wicket/examples/StartExamples.java
+++ b/wicket-examples/src/test/java/org/apache/wicket/examples/StartExamples.java
@@ -43,7 +43,7 @@ public class StartExamples
 	 */
 	public static void main(String[] args)
 	{
-//		System.setProperty("wicket.configuration", "development");
+// System.setProperty("wicket.configuration", "development");
 
 		Server server = new Server();
 		SocketConnector connector = new SocketConnector();