]> source.dussan.org Git - archiva.git/commitdiff
use existing i18n from redback
authorOlivier Lamy <olamy@apache.org>
Fri, 30 Dec 2011 17:08:19 +0000 (17:08 +0000)
committerOlivier Lamy <olamy@apache.org>
Fri, 30 Dec 2011 17:08:19 +0000 (17:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1225864 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-web/archiva-webapp-js/TODO.TXT
archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/redback/templates/roles-tmpl.html

index 18cc32fc668df0a128599142c1546b578c5ab713..5720a38f8604132e7577d96dea1f22394b5710b6 100644 (file)
@@ -5,4 +5,4 @@ ui pages to do in js:
   ** roles list
   ** single roles read (parent, childs, permissions, users with a parent role, users with this role)
 
-* too much for archiva :-)
\ No newline at end of file
+* too much todo for archiva :-)
\ No newline at end of file
index 7017e674419ae563a11177b5115b90adf8048adf..bea2ef35dd093ac6a6625130cf8636b5e95829cc 100644 (file)
@@ -2,8 +2,8 @@
   <table class="bordered-table zebra-striped" id="rolesTable">
     <thead>
       <tr>
-        <th>${$.i18n.prop('roles.name')}</th>
-        <th>${$.i18n.prop('roles.description')}</th>
+        <th>${$.i18n.prop('name')}</th>
+        <th>${$.i18n.prop('description')}</th>
         <th>${$.i18n.prop('edit')}</th>
       </tr>
     </thead>
@@ -31,7 +31,7 @@
       <a href="#roles-view">${$.i18n.prop('roles.grid.tab.title')}</a>
     </li>
     <li id="roles-view-tabs-li-roles-edit">
-      <a href="#role-edit">${$.i18n.prop('role.edit')}</a>
+      <a href="#role-edit">${$.i18n.prop('edit')}</a>
     </li>
   </ul>
   <div id="roles-view-tabs-content" class="tab-content">
 
 <script id="editRoleTab" type="text/x-jquery-tmpl">
   <div class="page-header">
-    <h3>${$.i18n.prop('role.edit')}</h3>
+    <h3>${$.i18n.prop('role')}</h3>
   </div>
   <table class="bordered-table" id="editRoleTable">
     <tbody>
       <tr>
-        <td>${$.i18n.prop('role.edit.name')}:</td>
+        <td>${$.i18n.prop('name')}:</td>
         <td>${name}</td>
       </tr>
       <tr>
-        <td>${$.i18n.prop('role.edit.description')}:</td>
+        <td>${$.i18n.prop('description')}:</td>
         <td>${description}</td>
       </tr>
     </tbody>
   </table>
 
   <div class="page-header">
-    <h3>${$.i18n.prop('role.parents')}</h3>
+    <h3>${$.i18n.prop('role.model.parent.roles')}</h3>
   </div>
   {{if parentRoleNames}}
     <ul>
@@ -75,7 +75,7 @@
   {{/if}}
 
   <div class="page-header">
-    <h3>${$.i18n.prop('role.childs')}</h3>
+    <h3>${$.i18n.prop('role.model.child.roles')}</h3>
   </div>
   {{if childRoleNames}}
     <ul>
     </ul>
   {{/if}}
 
+  <div class="page-header">
+    <h3>${$.i18n.prop('permissions')}</h3>
+  </div>
   {{if permissions}}
-    <div class="page-header">
-      <h3>${$.i18n.prop('role.permissions')}</h3>
-    </div>
     <table class="bordered-table zebra-striped" id="rolePermissionsTable">
       <thead>
         <tr>
-          <th>${$.i18n.prop('role.permission.name')}</th>
-          <th>${$.i18n.prop('role.permission.operation.name')}</th>
-          <th>${$.i18n.prop('role.permission.resource.')}</th>
+          <th>${$.i18n.prop('name')}</th>
+          <th>${$.i18n.prop('role.operation')}</th>
+          <th>${$.i18n.prop('role.resource')}</th>
         </tr>
       </thead>
       <tbody>
     </table>
   {{/if}}
 
+  <div class="page-header">
+    <h3>${$.i18n.prop('role.edit.users.defined.in.current.role')}</h3>
+  </div>
+
+
 </script>