Repository: syncope
Updated Branches:
  refs/heads/2_0_X a1acfbad3 -> 931405bee
  refs/heads/master d7c848cee -> d268c1ec5


[SYNCOPE-1042] fixes localization method


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/931405be
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/931405be
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/931405be

Branch: refs/heads/2_0_X
Commit: 931405bee0febf1322d61cd39405b35ac7d1790d
Parents: a1acfba
Author: fmartelli <fabio.marte...@gmail.com>
Authored: Tue Mar 7 16:30:57 2017 +0100
Committer: fmartelli <fabio.marte...@gmail.com>
Committed: Tue Mar 7 16:30:57 2017 +0100

----------------------------------------------------------------------
 .../client/console/tasks/ExecutionsDirectoryPanel.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/931405be/client/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
index 4daa2a7..485ee28 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/tasks/ExecutionsDirectoryPanel.java
@@ -88,7 +88,7 @@ public abstract class ExecutionsDirectoryPanel
         this.key = key;
         initResultTable();
     }
-        
+
     @Override
     protected void resultTableCustomChanges(final 
AjaxDataTablePanel.Builder<ExecTO, String> resultTableBuilder) {
         resultTableBuilder.setMultiLevelPanel(baseModal, multiLevelPanelRef);
@@ -100,13 +100,13 @@ public abstract class ExecutionsDirectoryPanel
     protected List<IColumn<ExecTO, String>> getColumns() {
         final List<IColumn<ExecTO, String>> columns = new ArrayList<>();
 
-        columns.add(new KeyPropertyColumn<ExecTO>(new ResourceModel("key"), 
"key", "key"));
+        columns.add(new KeyPropertyColumn<ExecTO>(new 
StringResourceModel("key", this), "key", "key"));
 
-        columns.add(new DatePropertyColumn<ExecTO>(new ResourceModel("start"), 
"start", "start"));
+        columns.add(new DatePropertyColumn<ExecTO>(new 
StringResourceModel("start", this), "start", "start"));
 
-        columns.add(new DatePropertyColumn<ExecTO>(new ResourceModel("end"), 
"end", "end"));
+        columns.add(new DatePropertyColumn<ExecTO>(new 
StringResourceModel("end", this), "end", "end"));
 
-        columns.add(new PropertyColumn<ExecTO, String>(new 
ResourceModel("status"), "status", "status"));
+        columns.add(new PropertyColumn<ExecTO, String>(new 
StringResourceModel("status", this), "status", "status"));
 
         columns.add(new ActionColumn<ExecTO, String>(new 
ResourceModel("actions")) {
 

Reply via email to