[jaxx] branch develop updated (e8990c6 -> cc58234)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git from e8990c6 fixes #3515 Create a table filter new cc58234 add translation The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit cc5823408e9722f37bcdb2f31beab4ca306e3948 Author: Kevin Morin <morin@codelutin.com> Date: Thu Sep 18 12:01:20 2014 +0200 add translation Summary of changes: .../src/main/java/jaxx/runtime/swing/list/CheckListAction.java | 4 +++- jaxx-widgets/src/main/resources/i18n/jaxx-widgets_en_GB.properties | 1 + jaxx-widgets/src/main/resources/i18n/jaxx-widgets_es_ES.properties | 1 + jaxx-widgets/src/main/resources/i18n/jaxx-widgets_fr_FR.properties | 1 + 4 files changed, 6 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository jaxx. See http://git.nuiton.org/jaxx.git commit cc5823408e9722f37bcdb2f31beab4ca306e3948 Author: Kevin Morin <morin@codelutin.com> Date: Thu Sep 18 12:01:20 2014 +0200 add translation --- .../src/main/java/jaxx/runtime/swing/list/CheckListAction.java | 4 +++- jaxx-widgets/src/main/resources/i18n/jaxx-widgets_en_GB.properties | 1 + jaxx-widgets/src/main/resources/i18n/jaxx-widgets_es_ES.properties | 1 + jaxx-widgets/src/main/resources/i18n/jaxx-widgets_fr_FR.properties | 1 + 4 files changed, 6 insertions(+), 1 deletion(-) diff --git a/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/CheckListAction.java b/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/CheckListAction.java index efd4402..c5f8db3 100644 --- a/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/CheckListAction.java +++ b/jaxx-widgets/src/main/java/jaxx/runtime/swing/list/CheckListAction.java @@ -3,6 +3,8 @@ package jaxx.runtime.swing.list; import java.util.ArrayList; import java.util.Collection; +import static org.nuiton.i18n.I18n.t; + public interface CheckListAction<T> { @@ -12,7 +14,7 @@ public interface CheckListAction<T> { @Override public String toString() { - return "(All)"; + return "(" + t("jaxx.list.check.all") + ")"; } @SuppressWarnings("unchecked") diff --git a/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_en_GB.properties b/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_en_GB.properties index 4651a1c..f7e3f3f 100644 --- a/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_en_GB.properties +++ b/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_en_GB.properties @@ -80,6 +80,7 @@ i18neditor.selected=Selected language \: %1$s i18neditor.unselected=Select this langage \: %1$s jaxx.error.no.convertor.coordinateDmd=Impossible de convert form (or to) a DMD coordinate (incoming value\: %s) jaxx.error.no.convertor.coordinateDms=Impossible de convert form (or to) a DMS coordinate (incoming value\: %s) +jaxx.list.check.all=All jaxx.table.filter.popup.button.apply=Apply jaxx.table.filter.popup.button.cancel=Cancel jaxx.table.filter.popup.button.clearAll=Clear all the filters diff --git a/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_es_ES.properties b/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_es_ES.properties index 7aea668..f6eaac1 100644 --- a/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_es_ES.properties +++ b/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_es_ES.properties @@ -80,6 +80,7 @@ i18neditor.selected=Idioma usado actualmente \: %1$s i18neditor.unselected=Para usar este idioma \: %1$s jaxx.error.no.convertor.coordinateDmd= jaxx.error.no.convertor.coordinateDms= +jaxx.list.check.all=Todos jaxx.table.filter.popup.button.apply= jaxx.table.filter.popup.button.cancel= jaxx.table.filter.popup.button.clearAll= diff --git a/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_fr_FR.properties b/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_fr_FR.properties index 62069dd..c055e5c 100644 --- a/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_fr_FR.properties +++ b/jaxx-widgets/src/main/resources/i18n/jaxx-widgets_fr_FR.properties @@ -80,6 +80,7 @@ i18neditor.selected=Langue actuellement utilisée \: %1$s i18neditor.unselected=Pour utiliser cette langue \: %1$s jaxx.error.no.convertor.coordinateDmd=Impossible de convertir en (ou depuis) une coordonée DMD depuis la valeur %s jaxx.error.no.convertor.coordinateDms=Impossible de convertir en (ou depuis) une coordonée DMS depuis la valeur %s +jaxx.list.check.all=Tous jaxx.table.filter.popup.button.apply=Appliquer jaxx.table.filter.popup.button.cancel=Annuler jaxx.table.filter.popup.button.clearAll=Supprimer tous les filtres -- To stop receiving notification emails like this one, please contact nuiton.org SCM administrator <admin+scm@nuiton.org>.
participants (1)
-
nuiton.org scm