Repository: syncope
Updated Branches:
  refs/heads/master 538761562 -> cd329070d


[SYNCOPE-156] some changes to wizard l&f


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

Branch: refs/heads/master
Commit: cd329070dfa1c88e42b5f2a003fa5a16c6fa942c
Parents: 5387615
Author: fmartelli <fabio.marte...@gmail.com>
Authored: Mon Nov 23 15:48:30 2015 +0100
Committer: fmartelli <fabio.marte...@gmail.com>
Committed: Mon Nov 23 15:48:37 2015 +0100

----------------------------------------------------------------------
 .../client/console/SyncopeConsoleSession.java   |  6 ++--
 .../console/wizards/AjaxWizardButton.java       |  2 +-
 .../META-INF/resources/css/syncopeConsole.css   | 12 +++++++
 .../wicket/markup/html/form/NonI18nPalette.html |  4 +--
 .../console/wizards/AjaxWizard.properties       |  5 +++
 .../console/wizards/AjaxWizardButtonBar.html    | 36 ++++++++++++++++++++
 .../console/wizards/AjaxWizard_it.properties    |  5 +++
 .../console/wizards/AjaxWizard_pt_BR.properties |  5 +++
 .../client/console/wizards/any/AuxClasses.html  | 27 +++++++++++++--
 .../console/wizards/any/AuxClasses.properties   | 18 ++++++++++
 .../wizards/any/AuxClasses_it.properties        | 18 ++++++++++
 .../wizards/any/AuxClasses_pt_BR.properties     | 18 ++++++++++
 .../client/console/wizards/any/Resources.html   | 13 ++++++-
 .../console/wizards/any/Resources.properties    | 17 +++++++++
 .../console/wizards/any/Resources_it.properties | 17 +++++++++
 .../wizards/any/Resources_pt_BR.properties      | 17 +++++++++
 .../client/console/wizards/any/Roles.html       | 13 ++++++-
 .../client/console/wizards/any/Roles.properties | 17 +++++++++
 .../console/wizards/any/Roles_it.properties     | 17 +++++++++
 .../console/wizards/any/Roles_pt_BR.properties  | 17 +++++++++
 20 files changed, 275 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java
index fa40d42..28665a9 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/SyncopeConsoleSession.java
@@ -166,6 +166,9 @@ public class SyncopeConsoleSession extends 
AuthenticatedWebSession {
             services.put(serviceClass, service);
         }
 
+        WebClient.client(service).
+                
type(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON);
+
         return service;
     }
 
@@ -175,8 +178,7 @@ public class SyncopeConsoleSession extends 
AuthenticatedWebSession {
 
     public <T> T getService(final String etag, final Class<T> serviceClass) {
         T serviceInstance = getCachedService(serviceClass);
-        WebClient.client(serviceInstance).match(new EntityTag(etag), false).
-                
type(MediaType.APPLICATION_JSON).accept(MediaType.APPLICATION_JSON);
+        WebClient.client(serviceInstance).match(new EntityTag(etag), false);
 
         return serviceInstance;
     }

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/java/org/apache/syncope/client/console/wizards/AjaxWizardButton.java
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/java/org/apache/syncope/client/console/wizards/AjaxWizardButton.java
 
b/client/console/src/main/java/org/apache/syncope/client/console/wizards/AjaxWizardButton.java
index a581954..0732f3a 100644
--- 
a/client/console/src/main/java/org/apache/syncope/client/console/wizards/AjaxWizardButton.java
+++ 
b/client/console/src/main/java/org/apache/syncope/client/console/wizards/AjaxWizardButton.java
@@ -35,7 +35,7 @@ public abstract class AjaxWizardButton extends AjaxButton {
             final String labelResourceKey,
             final boolean formprocessing) {
         super(id, form);
-        this.setLabel(new ResourceModel(labelResourceKey));
+        this.setLabel(new ResourceModel(labelResourceKey, labelResourceKey));
         this.wizard = wizard;
         setDefaultFormProcessing(formprocessing);
     }

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css 
b/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
index 4e4ef45..e491bb5 100644
--- 
a/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
+++ 
b/client/console/src/main/resources/META-INF/resources/css/syncopeConsole.css
@@ -216,8 +216,20 @@ div.basepage-content{
   padding: 0px 15px 0px 5px;
 }
 
+.wizard-form {
+  height:580px;  
+}
+
 .wizard-buttons {
   padding: 10px 0px 5px 0px;
+  position: fixed;
+  top: 590px;
+  right: 30px;
+}
+
+.wizard-buttons input.pull-left {
+  position: fixed;
+  left: 30px;
 }
 
 div.realms div.summarize {

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
index 72a093a..79728da 100644
--- 
a/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wicket/markup/html/form/NonI18nPalette.html
@@ -17,7 +17,7 @@
 <html xmlns="http://www.w3.org/1999/xhtml"; 
xmlns:wicket="http://wicket.apache.org";>
   <wicket:panel>
     <input type="hidden" wicket:id="recorder"/>
-    <div class="col-md-4">
+    <div class="col-md-5">
       <div class="form-group">
         <label>
           <span wicket:id="availableHeader">[available header]</span>
@@ -45,7 +45,7 @@
         <a wicket:id="moveDownButton"><i class="glyphicon 
glyphicon-triangle-bottom"></i></a>
       </div>          
     </div>
-    <div class="col-md-4">
+    <div class="col-md-5">
       <div class="form-group">
         <label>
           <span wicket:id="selectedHeader">[selected header]</span>

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard.properties
index c0b84a1..cafa9d6 100644
--- 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard.properties
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard.properties
@@ -16,3 +16,8 @@
 # under the License.
 wizard.cancel.error = Wizard error on cancel
 wizard.apply.error = Wizard error on apply changes
+next=Next >
+previous=< Prev
+finish=Finish
+last=Last
+cancel=Cancel

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizardButtonBar.html
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizardButtonBar.html
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizardButtonBar.html
new file mode 100644
index 0000000..562f5b0
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizardButtonBar.html
@@ -0,0 +1,36 @@
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+<html xmlns="http://www.w3.org/1999/xhtml"; 
xmlns:wicket="http://wicket.apache.org";>
+  <head>
+    <title></title>
+  </head>
+  <body>
+    <wicket:panel xmlns:wicket="http://wicket.apache.org";>
+
+      <div>
+        <input wicket:id="cancel" type="submit" wicket:message="value:cancel" 
class="btn btn-default pull-left"/>
+        <input wicket:id="previous" type="submit" 
wicket:message="value:previous" class="btn btn-default"/>
+        <input wicket:id="next" type="submit" wicket:message="value:next"  
class="btn btn-default"/>
+        <input wicket:id="last" type="submit" wicket:message="value:last"  
class="btn btn-default"/>
+        <input wicket:id="finish" type="submit" wicket:message="value:finish" 
class="btn btn-primary"/>
+      </div>
+
+    </wicket:panel>
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_it.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_it.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_it.properties
index af40f31..3230f79 100644
--- 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_it.properties
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_it.properties
@@ -16,3 +16,8 @@
 # under the License.
 wizard.cancel.error = Errore wizard in annullamento operazione
 wizard.apply.error = Errore wizard in fase di commit
+next=Succ >
+previous=< Prec
+finish=Termina
+last=Ultimo
+cancel=Annulla

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_pt_BR.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_pt_BR.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_pt_BR.properties
index a73e270..6cca386 100644
--- 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_pt_BR.properties
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/AjaxWizard_pt_BR.properties
@@ -16,3 +16,8 @@
 # under the License.
 wizard.cancel.error = Erro em assistente de cancelar
 wizard.apply.error = Assistente de erro em aplicar as altera\u00e7\u00f5es
+next=Segu >
+previous=< Prec
+finish=Terminar
+last=\u00daltimo
+cancel=Cancelar

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.html
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.html
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.html
index a2468a3..fe77779 100644
--- 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.html
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.html
@@ -20,8 +20,31 @@ under the License.
   <head><title></title></head>
   <body>
     <wicket:panel>
-      <span wicket:id="groups"/>
-      <span wicket:id="auxClasses">[AUX]</span>
+      <div class="col-xs-12">
+        <div class="box">
+          <div class="box-header">
+            <h3 class="box-title">
+              <wicket:message key="groups.palette">[GROUPS]</wicket:message>
+            </h3>
+          </div>
+          <div class="box-body">
+            <span wicket:id="groups">[GROUPS]</span>
+          </div>
+        </div>
+      </div>
+
+      <div class="col-xs-12">
+        <div class="box">
+          <div class="box-header">
+            <h3 class="box-title">
+              <wicket:message key="auxclasses.palette">AUX 
CLASSES</wicket:message>
+            </h3>
+          </div>
+          <div class="box-body">
+            <span wicket:id="auxClasses">[AUX]</span>
+          </div>
+        </div>
+      </div>
 
       <wicket:fragment wicket:id="emptyFragment"/>
       <wicket:fragment wicket:id="groupsFragment">

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.properties
new file mode 100644
index 0000000..af43d8e
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses.properties
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+groups.palette=Groups
+auxclasses.palette=Profile extension by auxiliary classes

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_it.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_it.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_it.properties
new file mode 100644
index 0000000..4aecff2
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_it.properties
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+groups.palette=Gruppi
+auxclasses.palette=Estensione profilo attraverso classi ausiliarie

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_pt_BR.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_pt_BR.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_pt_BR.properties
new file mode 100644
index 0000000..b9c6a57
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/AuxClasses_pt_BR.properties
@@ -0,0 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+groups.palette=Grupos
+auxclasses.palette=Perfil de extens\u00e3o atrav\u00e9s de classes auxiliares

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.html
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.html
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.html
index 7ae16d6..ae54159 100644
--- 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.html
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.html
@@ -20,7 +20,18 @@ under the License.
   <head><title></title></head>
   <body>
     <wicket:panel>
-      <span wicket:id="resources">[RESOURCES]</span>
+      <div class="col-xs-12">
+        <div class="box">
+          <div class="box-header">
+            <h3 class="box-title">
+              <wicket:message key="resources.palette">[ROLES]</wicket:message>
+            </h3>
+          </div>
+          <div class="box-body">
+            <span wicket:id="resources">[RESOURCES]</span>
+          </div>
+        </div>
+      </div>
     </wicket:panel>
   </body>
 </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.properties
new file mode 100644
index 0000000..526d72a
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources.properties
@@ -0,0 +1,17 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+resources.palette=External resources

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_it.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_it.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_it.properties
new file mode 100644
index 0000000..5b5b480
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_it.properties
@@ -0,0 +1,17 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+resources.palette=Risorse esterne

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_pt_BR.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_pt_BR.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_pt_BR.properties
new file mode 100644
index 0000000..230d612
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Resources_pt_BR.properties
@@ -0,0 +1,17 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+resources.palette=Recursos externos

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.html
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.html
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.html
index 1f3ff53..5578042 100644
--- 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.html
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.html
@@ -20,7 +20,18 @@ under the License.
   <head><title></title></head>
   <body>
     <wicket:panel>
-      <span wicket:id="roles">[ROLES]</span>
+      <div class="col-xs-12">
+        <div class="box">
+          <div class="box-header">
+            <h3 class="box-title">
+              <wicket:message key="roles.palette">[ROLES]</wicket:message>
+            </h3>
+          </div>
+          <div class="box-body">
+            <span wicket:id="roles">[ROLES]</span>
+          </div>
+        </div>
+      </div>
     </wicket:panel>
   </body>
 </html>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.properties
new file mode 100644
index 0000000..6c58f15
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles.properties
@@ -0,0 +1,17 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+roles.palette=Roles

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_it.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_it.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_it.properties
new file mode 100644
index 0000000..b350ed3
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_it.properties
@@ -0,0 +1,17 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+roles.palette=Ruoli

http://git-wip-us.apache.org/repos/asf/syncope/blob/cd329070/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_pt_BR.properties
----------------------------------------------------------------------
diff --git 
a/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_pt_BR.properties
 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_pt_BR.properties
new file mode 100644
index 0000000..e36fce3
--- /dev/null
+++ 
b/client/console/src/main/resources/org/apache/syncope/client/console/wizards/any/Roles_pt_BR.properties
@@ -0,0 +1,17 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+roles.palette=Fun\u00e7\u00e3o

Reply via email to