http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_it.properties new file mode 100644 index 0000000..5a2beea --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_it.properties @@ -0,0 +1,19 @@ +# 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. +info=Informazioni +syncopeSite=Sito di Apache Syncope +version=Versione
http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_pt_BR.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_pt_BR.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_pt_BR.properties new file mode 100644 index 0000000..abd4055 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/InfoModalPage_pt_BR.properties @@ -0,0 +1,19 @@ +# 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. +info=Informa\u00E7\u00E3o +syncopeSite=Site do Apache Syncope +version=Vers\u00E3o http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html new file mode 100644 index 0000000..78436de --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.html @@ -0,0 +1,89 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> +<!-- +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"> + <head> + <meta http-equiv="X-UA-Compatible" content="IE=edge"/> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> + <meta http-equiv="Content-Style-Type" content="text/css"/> + + <title>Apache Syncope - Login</title> + + <link rel="shortcut icon" href="img/favicon.png" type="image/png"/> + <link rel="stylesheet" href="css/style.css" type="text/css" media="all"/> + + <script type="text/javascript"> + + var notificationShownTimes = 0; + + function showNotification(componentId, messagecount) { + notificationShownTimes++; + timeout = 1700 + (messagecount * 500) + notificationShownTimes * 200; + $('div#' + componentId).fadeTo('normal', 1.0); + setTimeout("$('div#" + componentId + "').fadeOut('normal')", timeout); + } + </script> + + </head> + <body style="text-align:center"> + <div id="splash"> + <img src="img/logo.png" alt="syncope" title="syncope" id="logo" /> + <p style="border: none"> </p> + <div id="loginFeedbackDiv"> + <div wicket:id="feedback">feedbackmessages will be put here</div> + </div> + <form wicket:id="login"> + <label for="userId"> + <wicket:message key="userId"/> + </label> + <input type="text" wicket:id="userId" id="userId" size="25" style="width: 180px" /> + <br /> + <label for="password" class="password"> + <wicket:message key="password"/> + </label> + <input type="password" wicket:id="password" id="password" size="25" style="width: 180px" /> + <br /> + <select wicket:id="language" id="language"/> + <br /> + <br /> + <input type="submit" wicket:id="submit"/> + </form> + + <div style="display: inline-table; margin: 10px; width:380px;"> + <div style="display: inline-table-cell; text-align: left; float: left;" wicket:id="selfRegistration"/> + <div style="display: inline-table-cell; text-align: left; float: right;" wicket:id="passwordReset"/> + </div> + + <wicket:fragment wicket:id="selfRegNotAllowed"/> + <wicket:fragment wicket:id="selfRegAllowed"> + <span wicket:id="selfRegistration"/> + </wicket:fragment> + + <div wicket:id="selfRegModal"></div> + + <wicket:fragment wicket:id="pwdResetNotAllowed"/> + <wicket:fragment wicket:id="pwdResetAllowed"> + <span wicket:id="passwordReset"/> + </wicket:fragment> + + <div wicket:id="pwdResetReqModal"></div> + <div wicket:id="pwdResetConfModal"></div> + </div> + </body> +</html> http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.properties new file mode 100644 index 0000000..9b31e6e --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login.properties @@ -0,0 +1,22 @@ +# 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. +userId=Username +password=Password +submit=Login +login-error=Wrong username and/or password +selfRegistration=Self registration +passwordReset=Password reset http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_it.properties new file mode 100644 index 0000000..40f8c34 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_it.properties @@ -0,0 +1,22 @@ +# 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. +userId=Username +password=Password +submit=Login +login-error=Username e/o password errati +selfRegistration=Registrati +passwordReset=Password smarrita http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_pt_BR.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_pt_BR.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_pt_BR.properties new file mode 100644 index 0000000..fd312c4 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/Login_pt_BR.properties @@ -0,0 +1,22 @@ +# 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. +userId=Usu\u00e1rio +password=Senha +submit=Login +login-error=Usu\u00e1rio ou senha incorretos +selfRegistration=Registrar-se +passwordReset=Redefini\u00e7\u00e3o de senha http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.html ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.html new file mode 100644 index 0000000..9bc8cb7 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.html @@ -0,0 +1,55 @@ +<!-- +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"> + <wicket:extend> + <p class="ui-widget ui-corner-all ui-widget-header"><wicket:message key="title"/></p> + <form wicket:id="MembershipForm"> + <div id="tabs"> + <ul> + <li><a href="#tabs-1"><span><wicket:message key="tab1"/></span></a></li> + <li><a href="#tabs-2"><span><wicket:message key="tab2"/></span></a></li> + <li><a href="#tabs-3"><span><wicket:message key="tab3"/></span></a></li> + </ul> + <div id="tabs-1"> + <div id="formtable"> + <span wicket:id="plainAttrs">[membership plain attributes]</span> + <span wicket:id="systeminformation">[System Information]</span> + </div> + + <script type="text/javascript"> + $(function() { + $('#formtable div.tablerow:even').addClass("alt"); + }); + </script> + </div> + <div id="tabs-2"> + <span wicket:id="derAttrs">[membership derived attributes]</span> + </div> + + <div id="tabs-3"> + <span wicket:id="virAttrs">[membership virtual attributes]</span> + </div> + </div> + <div style="margin: 20px 10px 0"> + <input type="submit" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" wicket:id="submit"/> + <input type="button" class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" wicket:id="cancel"/> + </div> + </form> + </wicket:extend> +</html> http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.properties new file mode 100644 index 0000000..28db548 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage.properties @@ -0,0 +1,35 @@ +# 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. +tab1=Plain attributes +tab2=Derived attributes +tab3=Virtual attributes +title=Roles +add=+ +drop=- +edit=Edit +delete=Delete +derAttrs=Derived Attributes +derAttrToRemove=Delete +derAttrName=Name +derAttrValue=Derived value + +virAttrs=Virtual Attributes +virAttrToRemove=Delete +virAttrName=Name +virAttrValue=Virtual value + +addAttributeBtn=Add http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_it.properties new file mode 100644 index 0000000..0776461 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_it.properties @@ -0,0 +1,35 @@ +# 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. +tab1=Attributi normali +tab2=Attributi derivati +tab3=Attributi virtuali +title=Ruoli +add=+ +drop=- +edit=Edit +delete=Rimuovi +derAttrs=Attributi derivati +derAttrToRemove=Elimina +derAttrName=Nome +derAttrValue=Valore derivato + +virAttrs=Attributi virtuali +virAttrToRemove=Elimina +virAttrName=Nome +virAttrValue=Valore virtuale + +addAttributeBtn=Aggiungi http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_pt_BR.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_pt_BR.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_pt_BR.properties new file mode 100644 index 0000000..481bc0c --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/MembershipModalPage_pt_BR.properties @@ -0,0 +1,35 @@ +# 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. +tab1=Atributos Normal +tab2=Atributos Derivados +tab3=Atributos Virtuais +title=Fun\u00e7\u00f5es +add=+ +drop=- +edit=Alterar +delete=Excluir +derAttrs=Atributos Derivados +derAttrToRemove=Excluir +derAttrName=Nome +derAttrValue=Valor Derivado + +virAttrs=Atributos Virtuais +virAttrToRemove=Excluir +virAttrName=Nome +virAttrValue=Valor Virtual + +addAttributeBtn=Adicionar http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.html ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.html new file mode 100644 index 0000000..2ee6802 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.html @@ -0,0 +1,234 @@ +<!-- +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"> + <wicket:head> + <style> + div#tabs div#events{ + min-width: 970px; + overflow: hidden; + } + + div#userFilter { + border: 1px solid #DDDDDD; + } + + div#userFilter div#title { + margin: 10px 0px 0px 8px; + } + + div#userFilter div#warning { + margin: 1px 0px 5px 8px; + } + + div#userFilter div#title label { + font-weight: bold; + } + + div#userFilter div#warning label { + color: #E00000; + font-size: 8px; + } + </style> + </wicket:head> + <wicket:extend> + <div style="margin: 5px;"> + <p class="ui-widget ui-corner-all ui-widget-header"><wicket:message key="title"/></p> + <form wicket:id="form"> + <div id="tabs"> + <ul> + <li class="tabs-selected"><a href="#notification"><span><wicket:message key="notification"/></span></a></li> + <li><a href="#events"><span><wicket:message key="events"/></span></a></li> + <li><a href="#about"><span><wicket:message key="about"/></span></a></li> + <li><a href="#recipients"><span><wicket:message key="recipients"/></span></a></li> + </ul> + + <div id="notification"> + <div id="formtable"> + <div class="tablerow alt"> + <div class="tablecolumn_label medium_fixedsize"> + <label for="sender"><wicket:message key="sender"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="sender">[sender]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label medium_fixedsize"> + <label for="subject"><wicket:message key="subject"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="subject">[subject]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label medium_fixedsize"> + <label for="recipientAttrType"><wicket:message key="recipientAttrType"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="recipientAttrType">[recipientAttrType]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label medium_fixedsize"> + <label for="recipientAttrName"><wicket:message key="recipientAttrName"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="recipientAttrName">[recipientAttrName]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label medium_fixedsize"> + <label for="template"><wicket:message key="template"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="template">[template]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label medium_fixedsize"> + <label for="traceLevel"><wicket:message key="traceLevel"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="traceLevel">[traceLevel]</span> + </div> + </div> + <div class="tablerow alt"> + <div class="tablecolumn_label medium_fixedsize"> + <label for="isActive"><wicket:message key="isActive"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="isActive">[isActive]</span> + </div> + </div> + </div> + </div> + + <div id="events"> + <span wicket:id="eventSelection"/> + </div> + + <div id="about"> + <span wicket:id="aboutContainer"> + <div class="tablerow" style="width: auto;"> + <div class="tablecolumn_field" style="width: auto; padding-right: 5px;"> + <span wicket:id="checkAbout">[checkAbout]</span> + </div> + <div class="tablecolumn_label" style="width: 100%"> + <label for="checkAbout"><wicket:message key="checkAbout"/></label> + </div> + </div> + <div class="tablerow" style="width: auto;"> + <div class="tablecolumn_field" style="width: auto; padding-right: 5px;"> + <span wicket:id="checkUserAbout">[checkUserAbout]</span> + </div> + <div class="tablecolumn_label" style="width: auto;"> + <label for="checkUserAbout"><wicket:message key="checkUserAbout"/></label> + </div> + </div> + <div id="userFilter"> + <div id="title"> + <label for="userFilter"><wicket:message key="userFilter"/></label> + </div> + <div id="warning"> + <label for="userFilter"><wicket:message key="userFilterWarning"/></label> + </div> + <div id="condition"> + <span wicket:id="userAbout"/> + </div> + </div> + <div class="tablerow" style="width: auto;"> + <div class="tablecolumn_field" style="width: auto; padding-right: 5px;"> + <span wicket:id="checkRoleAbout">[checkRoleAbout]</span> + </div> + <div class="tablecolumn_label" style="width: auto;"> + <label for="checkRoleAbout"><wicket:message key="checkRoleAbout"/></label> + </div> + </div> + <div id="userFilter"> + <div id="title"> + <label for="roleFilter"><wicket:message key="roleFilter"/></label> + </div> + <div id="warning"> + <label for="roleFilter"><wicket:message key="roleFilterWarning"/></label> + </div> + <div id="condition"> + <span wicket:id="roleAbout"/> + </div> + </div> + </span> + </div> + + <div id="recipients"> + <div class="tablerow alt"> + <div class="tablecolumn_label medium_dynamicsize"> + <span wicket:id="checkStaticRecipients">[checkStaticRecipients]</span> + <label for="recipients"><wicket:message key="recipients"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="staticRecipients">[staticRecipients]</span> + </div> + </div> + + <span wicket:id="recipientsContainer"> + <div class="tablerow" style="width: auto;"> + <div class="tablecolumn_field" style="width: auto; padding-right: 5px;"> + <span wicket:id="checkRecipients">[checkRecipients]</span> + </div> + <div class="tablecolumn_label" style="width: auto;"> + <label for="checkRecipients"><wicket:message key="checkRecipients"/></label> + </div> + </div> + <span wicket:id="recipients"/> + </span> + <div id="userFilter"> + <div id="title"> + <label for="userNotifications"><wicket:message key="userNotifications"/></label> + </div> + <div id="warning"> + <label for="userNotificationsWarning"><wicket:message key="userNotificationsWarning"/></label> + </div> + <div class="tablerow" style="width: auto;"> + <div class="tablecolumn_field" style="width: auto; padding-right: 5px;"> + <span wicket:id="selfAsRecipient">[selfAsRecipient]</span> + </div> + <div class="tablecolumn_label" style="width: auto;"> + <label for="selfAsRecipient"><wicket:message key="selfAsRecipient"/></label> + </div> + </div> + </div> + </div> + </div> + + <div style="margin: 20px 10px 0"> + <input type="submit" + class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" + wicket:id="apply"/> + <input type="button" + class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" + wicket:id="cancel"/> + </div> + </form> + </div> + </wicket:extend> +</html> http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.properties new file mode 100644 index 0000000..f36d754 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage.properties @@ -0,0 +1,40 @@ +# 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. +title=Edit notification +submit=Save +subject=Subject +sender=Sender +template=Template +traceLevel=Trace level +notification=Notification +about=About +events=Events +recipients=Recipients +selfAsRecipient=Include users matching About +recipientAttrType=Recipients e-mail attribute type +recipientAttrName=Recipients e-mail attribute schema +checkRecipients=Search recipients +checkAbout=All +userFilter=User filter +userFilterWarning=Do not use this filter unless events are not targeted at users +userNotifications=User notifications +userNotificationsWarning=Do not select this checkbox unless events are not targeted at users +roleFilter=Role filter +roleFilterWarning=Do not use this filter unless events are not targeted at roles +isActive=Enabled +checkUserAbout=Users +checkRoleAbout=Roles http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_it.properties new file mode 100644 index 0000000..6d3b2b6 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_it.properties @@ -0,0 +1,40 @@ +# 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. +title=Gestisci notifiche +submit=Salva +subject=Oggetto +sender=Mittente +template=Modello +traceLevel=Livello di tracciamento +notification=Notifica +about=Soggetti +events=Eventi +recipients=Destinatari +selfAsRecipient=Includi i soggetti +recipientAttrType=Tipo attributo e-mail destinatari +recipientAttrName=Schema attributo e-mail destinatari +checkRecipients=Cerca i destinatari +checkAbout=Tutto +userFilter=Filtro utenti +userFilterWarning=Non usare questo filtro se gli eventi catturati non riguardano espressamente utenti +userNotifications=Notifiche utente +userNotificationsWarning=Non selezionare questa checkbox se gli eventi catturati non riguardano espressamente utenti +roleFilter=Filtro ruoli +roleFilterWarning=Non usare questo filtro se gli eventi catturati non riguardano espressamente i ruoli +isActive=Abilitata +checkUserAbout=Utenti +checkRoleAbout=Ruoli http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_pt_BR.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_pt_BR.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_pt_BR.properties new file mode 100644 index 0000000..08879cb --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationModalPage_pt_BR.properties @@ -0,0 +1,40 @@ +# 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. +title=Alterar Notifica\u00e7\u00e3o +submit=Salvar +subject=Assunto +sender=Remetente +template=Template +traceLevel=N\u00edvel de Trace +notification=Notifica\u00e7\u00e3o +about=Sobre +events=Eventos +recipients=Destinat\u00e1rios +selfAsRecipient=Incluir usu\u00e1rios relacionados Sobre +recipientAttrType=Tipo de atributo de destinat\u00e1rio de email. +recipientAttrName=Destinat\u00e1rios de e-mail para atributos de esquema +checkRecipients=Buscar Destinat\u00e1rios +checkAbout=Todos +userFilter=User filter +userFilterWarning=N\u00e3o use este filtro n\u00e3o ser que os eventos n\u00e3o s\u00e3o direcionados a usu\u00e1rios +userNotifications=Notifica\u00e7\u00f5es do usu\u00e1rio +userNotificationsWarning=N\u00e3o selecione esta op\u00e7\u00e3o a menos que os eventos n\u00e3o s\u00e3o direcionados a usu\u00e1rios +roleNotifications=Notifica\u00e7\u00f5es do fun\u00e7\u00f5es +roleNotificationsWarning=N\u00e3o selecione esta op\u00e7\u00e3o a menos que os eventos n\u00e3o s\u00e3o direcionados a fun\u00e7\u00f5es +isActive=Ativada +checkUserAbout=Usu\u00e1rio +checkRoleAbout=Fun\u00e7\u00e3o http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.html ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.html new file mode 100644 index 0000000..c406ce9 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.html @@ -0,0 +1,111 @@ +<!-- +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"> + <wicket:extend> + <div id="dialog-form"> + <p class="ui-widget ui-corner-all ui-widget-header"><wicket:message key="title"/></p> + <form wicket:id="form"> + <div id="tabs"> + <ul> + <li class="tabs-selected"><a href="#profile"><span><wicket:message key="profile"/></span></a></li> + <li><a href="#executions"><span><wicket:message key="executions"/></span></a></li> + </ul> + <div id="profile"> + <div id="users-contain" class="ui-widget"> + <span wicket:id="profile"> + <div id="formtable"> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <span wicket:id="idLabel">[Id]</span> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="key">[key]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="sender"><wicket:message key="sender"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="sender">[sender]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="recipients"><wicket:message key="recipients"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="recipients">[recipients]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="subject"><wicket:message key="subject"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="subject">[subject]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="textBody"><wicket:message key="textBody"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <textarea wicket:id="textBody" cols="40" rows="10">[textBody]</textarea> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="htmlBody"><wicket:message key="htmlBody"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <textarea wicket:id="htmlBody" cols="40" rows="10">[textBody]</textarea> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="traceLevel"><wicket:message key="traceLevel"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="traceLevel">[traceLevel]</span> + </div> + </div> + </div> + </span> + </div> + </div> + <div id="executions" class="ui-widget"> + <span wicket:id="executionContainer" id="executionContainer"> + <table class="ui-widget ui-widget-content" + wicket:id="executionsTable" style="width: 100%"/> + </span> + </div> + </div> + </form> + </div> + <div wicket:id="taskExecMessageWin"/> + </wicket:extend> +</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.properties new file mode 100644 index 0000000..e9a3120 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage.properties @@ -0,0 +1,32 @@ +# 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. +profile=Profile +executions=Executions +title=Title +startDate=Start date +endDate=End date +status=Status +message=Message +taskExecutions=Task executions +delete=Delete +showMessage=Show message +sender=Sender +subject=Subject +recipients=Recipients +traceLevel=Trace level +htmlBody=E-mail body (HTML) +textBody=E-mail body (TEXT) \ No newline at end of file http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_it.properties new file mode 100644 index 0000000..c0fa5bd --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_it.properties @@ -0,0 +1,32 @@ +# 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. +profile=Profilo +executions=Esecuzioni +title=Task +startDate=Data di avvio +endDate=Data di conclusione +status=Stato +message=Messaggio +taskExecutions=Esecuzione del task +delete=Rimozione +showMessage=Mostra +sender=Mittente +subject=Oggetto +recipients=Destinatari +traceLevel=Livello di tracciamento +htmlBody=Corpo e-mail (HTML) +textBody=Corpo e-mail (testo) http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_pt_BR.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_pt_BR.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_pt_BR.properties new file mode 100644 index 0000000..91aa59d --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/NotificationTaskModalPage_pt_BR.properties @@ -0,0 +1,32 @@ +# 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. +profile=Perfil +executions=Execu\u00E7\u00F5es +title=T\u00EDtulo +startDate=Data Inicial +endDate=Data Final +status=Estatus +message=Mensagem +taskExecutions=Execu\u00E7\u00E3o de Tarefas +delete=Excluir +showMessage=Exibir Mensagem +sender=Rementente +subject=Assunto +recipients=Destinat\u00E1rios +traceLevel=N\u00EDvel de Trace +htmlBody=Corpo do e-mail (HTML) +textBody=Corpo do E-mail (TEXT) \ No newline at end of file http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.html ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.html new file mode 100644 index 0000000..154419f --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.html @@ -0,0 +1,172 @@ +<!-- +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"> + <wicket:extend> + <p class="ui-widget ui-corner-all ui-widget-header"><wicket:message key="title"/></p> + <div style="margin: 5px;"> + <form wicket:id="form"> + <div id="formtable"> + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="key"><wicket:message key="key"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="key">[name]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="type"><wicket:message key="type"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="type">[type]</span> + </div> + </div> + + <div wicket:id="conversionParams"> + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="conversionPattern"><wicket:message key="conversionPattern"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="conversionPattern">[conversionPattern]</span> + </div> + </div> + </div> + + <div wicket:id="typeParams"> + <div wicket:id="enumParams"> + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="enumerationValues"><wicket:message key="enumerationValues"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="enumerationValues">[enumerationValues]</span> + </div> + </div> + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="enumerationKeys"><wicket:message key="enumerationKeys"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="enumerationKeys">[enumerationKeys]</span> + </div> + </div> + </div> + <div wicket:id="encryptedParams"> + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="secretKey"><wicket:message key="secretKey"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="secretKey">[secretKey]</span> + </div> + </div> + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="cipherAlgorithm"><wicket:message key="cipherAlgorithm"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="cipherAlgorithm">[cipherAlgorithm]</span> + </div> + </div> + </div> + <div wicket:id="binaryParams"> + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="mimeType"><wicket:message key="mimeType"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="mimeType">[mimeType]</span> + </div> + </div> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="validatorClass"><wicket:message key="validatorClass"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="validatorClass">[validatorClass]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="mandatoryCondition"><wicket:message key="mandatoryCondition"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <input type="text" class="ui-widget-content ui-corner-all" + id="mandatoryCondition" wicket:id="mandatoryCondition"/> + <a class="tooltips" wicket:id="questionMarkJexlHelp" href="#" alt="Click to help" title="Click to help"> + <img src="img/help.png"/> + <span wicket:id="jexlHelp" class="tooltips"> + <wicket:message key="jexl_info"/> + <ul> + <li><wicket:message key="jexl_ex1"/></li> + <li><wicket:message key="jexl_ex2"/></li> + </ul> + <a href="#" wicket:id="jexlLink" target="_blank"><wicket:message key="jexl_syntax_url"/></a> + </span> + </a> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="uniqueConstraint" class="onerowlabel"><wicket:message key="uniqueConstraint"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="uniqueConstraint">[uniqueConstraint]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="multivalue" class="onerowlabel"><wicket:message key="multivalue"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="multivalue">[multivalue]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="readonly" class="onerowlabel"><wicket:message key="readonly"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="readonly">[readonly]</span> + </div> + </div> + </div> + + <div style="margin: 10px 0px 0;"> + <input type="submit" + class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" + wicket:id="apply"/> + <input type="button" + class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" + wicket:id="cancel"/> + </div> + </form> + </div> + </wicket:extend> +</html> http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.properties new file mode 100644 index 0000000..58c5708 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage.properties @@ -0,0 +1,38 @@ +# 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. +tab1=Attributes +tab2=Derived attributes +tab3=User attributes +tab4=User derived attributes +required_alert=All form fields are required. +mandatoryCondition=Mandatory +enumerationValues= Enumeration values +enumerationKeys= Enumeration labels +uniqueConstraint=Unique +multivalue=Multivalue +multivalueAndUniqueConstr.validation='Multivalue' and 'Unique constraint' options can't be both checked +type=Type +validatorClass=Validator class +conversionPattern=Conversion pattern +existing_schemas=Existing Schemas: +action=Action +edit_attribute=Edit attribute +title=Schema +readonly=Read-only +secretKey=Secret key +cipherAlgorithm=Cipher algorithm +mimeType=MIME Type http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_it.properties new file mode 100644 index 0000000..74eed7d --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_it.properties @@ -0,0 +1,38 @@ +# 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. +tab1=Attributi +tab2=Attributi derivati +tab3=Attributi utenti +tab4=Attributi utenti derivati +required_alert=Tutti i campi sono richiesti +mandatoryCondition=Obbligatorio +enumerationValues= Valori enumeration +enumerationKeys= Label enumeration +multivalue=Multivalore +type=Tipo +validatorClass=Validatore +conversionPattern=Conversion pattern +existing_schemas=Schema esistenti: +action=Azione +edit_attribute=Modifica attributo +title=Schema +readonly=Read-only +uniqueConstraint=Univoco +multivalueAndUniqueConstr.validation=Le opzioni 'Multivalore' e 'Vincolo unique' non possono essere entrambe impostate +secretKey=Chiave segreta +cipherAlgorithm=Algoritmo di cifratura +mimeType=MIME Type http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_pt_BR.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_pt_BR.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_pt_BR.properties new file mode 100644 index 0000000..a026c17 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PlainSchemaModalPage_pt_BR.properties @@ -0,0 +1,38 @@ +# 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. +tab1=Atributos +tab2=Atributos derivados +tab3=Atributos de usu\u00e1rios +tab4=Atributos derivados de usu\u00e1rios +required_alert=Todos os campos s\u00e3o obrigat\u00f3rios +mandatoryCondition=obrigat\u00f3rio +enumerationValues= Valores enumerados +enumerationKeys= R\u00f3tulos de enumera\u00e7\u00e3o +uniqueConstraint=\u00danico +multivalue=Multivalorado +multivalueAndUniqueConstr.validation=As op\u00e7\u00f5es 'Multivalorado' e 'Restri\u00e7\u00e3o \u00fanica' n\u00e3o podem serem ambas selecionadas +type=Tipo +validatorClass=Classe de Valida\u00e7\u00e3o +conversionPattern=Padr\u00e3o de Convers\u00e3o +existing_schemas=Esquemas Existentes\: +action=A\u00e7\u00e3o +edit_attribute=Editar Atributo +title=Esquema +readonly=Apenas leitura +secretKey=Chave secreta +cipherAlgorithm=Algoritmo de criptografia +mimeType=MIME Type http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.html ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.html new file mode 100644 index 0000000..504d72c --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.html @@ -0,0 +1,109 @@ +<!-- +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"> + <wicket:extend> + <div style="margin: 5px;"> + <p class="ui-widget ui-corner-all ui-widget-header"><wicket:message key="title"/></p> + + <form wicket:id="form"> + <div id="tabs"> + <ul> + <li class="tabs-selected"><a href="#info"><span><wicket:message key="policyInfo"/></span></a></li> + <li><a href="#specification"><span><wicket:message key="policySpecification"/></span></a></li> + <li><a href="#resources"><span><wicket:message key="resources"/></span></a></li> + <li><a href="#roles"><span><wicket:message key="roles"/></span></a></li> + </ul> + + <div id="info"> + <div id="formtable"> + <div class="tablerow alt"> + <div class="tablecolumn_label short_fixedsize"> + <label for="key"><wicket:message key="key"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="key">[key]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_fixedsize"> + <label for="type"><wicket:message key="type"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="type">[type]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_fixedsize"> + <label for="description"><wicket:message key="description"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="description">[description]</span> + </div> + </div> + + <span wicket:id="forAccountOnly"/> + </div> + </div> + + <wicket:fragment wicket:id="authResourcesFragment"> + <div class="tablerow"> + <div class="tablecolumn_label short_fixedsize"> + <label for="authResources"><wicket:message key="authResources"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="authResources">[resources]</span> + </div> + </div> + </wicket:fragment> + <wicket:fragment wicket:id="emptyFragment"> + </wicket:fragment> + + <div id="specification"> + <span wicket:id="panel">[password policy panel]</span> + </div> + + <div id="resources"> + <div id="users-contain" class="ui-widget" style="width:inherit;"> + <table class="ui-widget ui-widget-content table-hover" wicket:id="resources"/> + </div> + </div> + + <div id="roles"> + <div id="users-contain" class="ui-widget" style="width:inherit;"> + <table class="ui-widget ui-widget-content table-hover" wicket:id="roles"/> + </div> + </div> + </div> + + <div style="margin: 20px 10px 0"> + <input type="submit" + class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" + wicket:id="apply"/> + <input type="button" + class="ui-button ui-widget ui-state-default ui-corner-all ui-button-text-only" + wicket:id="cancel"/> + </div> + </form> + </div> + + <div wicket:id="metaEditModalWin">[Show modal window for meta editing (resources, roles)]</div> + </wicket:extend> +</html> http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.properties new file mode 100644 index 0000000..4e7722f --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage.properties @@ -0,0 +1,88 @@ +# 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. +title=Policy management + +description=Description +type=Type +apply=Save + +policyInfo=Info +policySpecification = Specification + +#----------------------------- +# Password policy specification properties +#----------------------------- +minLength=Minimum size +maxLength=Maximum size +historyLength=History length +prefixesNotPermitted=Prefixes not permitted +suffixesNotPermitted=Suffixes not permitted +wordsNotPermitted=Substrings not permitted +schemasNotPermitted=Mustn't contain value of the following attributes +digitRequired=Must contain one or more digits +nonAlphanumericRequired=Non alphanumeric character required +alphanumericRequired=Alphanumeric character required +lowercaseRequired=Lowercase required +uppercaseRequired=Uppercase required +mustStartWithDigit=Must start with digit +mustntStartWithDigit=Mustn't start with digit +mustEndWithDigit=Must end with digit +mustntEndWithDigit=Mustn't end with digit +mustStartWithNonAlpha=Must start with non alphanumeric character +mustStartWithAlpha=Must start with alphanumeric character +mustntStartWithNonAlpha=Mustn't start with non alphanumeric character +mustntStartWithAlpha=Mustn't start with alphanumeric character +mustEndWithNonAlpha=Must end with non alphanumeric character +mustEndWithAlpha=Must end with alphanumeric character +mustntEndWithNonAlpha=Mustn't end with non alphanumeric character +mustntEndWithAlpha=Mustn't end with alphanumeric character +allowNullPassword=Password may be not stored internally +#----------------------------- + +#----------------------------- +# Account policy specification properties +#----------------------------- +allUpperCase=All upper case +allLowerCase=All lower case +pattern=Pattern (regex) +propagateSuspension=Propagate suspension +permittedLoginRetries=Maximum number of subsequent failed logins +#----------------------------- + +#----------------------------- +# Sync policy specification properties +#----------------------------- +uAltSearchSchemas=Alternative attributes for local search (users) +rAltSearchSchemas=Alternative attributes for local search (roles) +userJavaRule=Custom user correlation rule +roleJavaRule=Custom role correlation rule +conflictResolutionAction= Conflict resolution action +#----------------------------- + +#----------------------------- +# Policy Type +#----------------------------- +ACCOUNT=Account Policy +GLOBAL_ACCOUNT=Global Account Policy +PASSWORD=Password Policy +GLOBAL_PASSWORD=Global Password Policy +SYNC=Synchronization Policy +GLOBAL_SYNC=Global Synchronization Policy +#----------------------------- +resources=Resources +roles=Roles +authResources=Authentication resources http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_it.properties new file mode 100644 index 0000000..4f8bf93 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_it.properties @@ -0,0 +1,88 @@ +# 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. +title=Gestione Policy + +description=Descrizione +type=Tipo +apply=Salva + +policyInfo=Info +policySpecification = Specifica + +#----------------------------- +# Password policy specification properties +#----------------------------- +minLength=Lunghezza minima +maxLength=Lunghezza massima +historyLength=Lunghezza storico +prefixesNotPermitted=Prefissi non permessi +suffixesNotPermitted=Suffissi non permessi +wordsNotPermitted=Sottostringhe non permesse +schemasNotPermitted=Non deve contenere i valore dei seguenti attributi +digitRequired=Numero richiesto +lowercaseRequired=Lettera minuscola richiesta +uppercaseRequired=Lettera maiuscola richiesta +mustStartWithDigit=Deve iniziare con un numero +mustntStartWithDigit=Non deve iniziare con un numero +mustEndWithDigit=Deve terminare con un numero +mustntEndWithDigit=Non deve terminare con un numero +mustStartWithNonAlpha=Deve iniziare con un carattere non alfanumerico +mustStartWithAlpha=Deve iniziare con un carattere alfanumerico +mustntStartWithNonAlpha=Non deve iniziare con un carattere non alfanumerico +mustntStartWithAlpha=Non deve iniziare con un carattere alfanumerico +mustEndWithNonAlpha=Deve terminare con un carattere non alfanumerico +mustEndWithAlpha=Deve terminare con un carattere alfanumerico +mustntEndWithNonAlpha=Non deve terminare con un carattere non alfanumerico +mustntEndWithAlpha=Non deve terminare con un carattere alfanumerico +allowNullPassword=La password pu\u00f2 non essere memorizzata internamente +#----------------------------- + +#----------------------------- +# Account policy specification properties +#----------------------------- +allUpperCase=Tutte maiuscole +allLowerCase=Tutte minuscole +pattern=Pattern (regex) +propagateSuspension=Propagare sospensione +permittedLoginRetries=Numero massimo di login consecutivi falliti +#----------------------------- + +#----------------------------- +# Sync policy specification properties +#----------------------------- +uAltSearchSchemas=Attributi alternativi per ricerca locale (utenti) +conflictResolutionAction= Azione di risoluzione dei conflitti +#----------------------------- + +#----------------------------- +# Policy Type +#----------------------------- +ACCOUNT=Policy utente +GLOBAL_ACCOUNT=Policy utente globale +PASSWORD=Password policy +GLOBAL_PASSWORD=Password policy globale +SYNC=Policy di sincronizzazione +GLOBAL_SYNC=Policy globale di sincronizzazione +#----------------------------- +nonAlphanumericRequired=Carattere non alfanumerico richiesto +alphanumericRequired=Carattere alfanumerico richiesto +rAltSearchSchemas=Attributi alternativi per ricerca locale (ruoli) +userJavaRule=Regola di correlazione (utenti) +roleJavaRule=Regola di correlazione (ruoli) +resources=Risorse +roles=Ruoli +authResources=Risorse di autenticazione http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_pt_BR.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_pt_BR.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_pt_BR.properties new file mode 100644 index 0000000..075756a --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PolicyModalPage_pt_BR.properties @@ -0,0 +1,87 @@ +# 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. +title=Gerenciamento de Pol\u00edtica + +description=Descri\u00e7\u00e3o +type=Tipo +apply=Salvar + +policyInfo=Info +policySpecification = Especifica\u00e7\u00e3o + +#----------------------------- +# Password policy specification properties +#----------------------------- +minLength=Tamanho m\u00ednimo +maxLength=Tamanho M\u00e1ximo +historyLength=Tamanho do Hist\u00f3rico +prefixesNotPermitted=Prefixos n\u00e3o permitidos +suffixesNotPermitted=sufixos n\u00e3o permitidos +wordsNotPermitted=Substrings n\u00e3o permitidas +schemasNotPermitted=N\u00e3o deve conter valores dos seguintes atributos +digitRequired=Precisa possuir um ou mais d\u00edgitos +nonAlphanumericRequired=Caractere n\u00e3o alfanum\u00e9rico requerido +alphanumericRequired=Caractere alfanum\u00e9rico requerido +lowercaseRequired=Requerido em letra min\u00fascula +uppercaseRequired=Requerido em letra mai\u00fascula +mustStartWithDigit=Precisa come\u00e7ar com um d\u00edgito +mustntStartWithDigit=N\u00e3o deve come\u00e7\u00e3r com um d\u00edgito +mustEndWithDigit=Precisa terminar com um d\u00edgito +mustntEndWithDigit=N\u00e3o deve terminar com um d\u00edgito +mustStartWithNonAlpha=Precisa come\u00e7ar com um caractere n\u00e3o alfanum\u00e9rico +mustStartWithAlpha=Precisa come\u00e7ar com um caracter alfanum\u00e9rico +mustntStartWithNonAlpha=N\u00e3o deve come\u00e7ar com um caractere n\u00e3o alfanum\u00e9rico +mustntStartWithAlpha=N\u00e3o deve come\u00e7ar com um caractere alfanum\u00e9rico +mustEndWithNonAlpha=Precisa terminar com um caractere n\u00e3o alfanum\u00e9rico +mustEndWithAlpha=Precisa terminar com um caractere alfanum\u00e9rico +mustntEndWithNonAlpha=N\u00e3o deve terminar com um caractere n\u00e3o alfanum\u00e9rico +mustntEndWithAlpha=N\u00e3o precisa terminar com um caracter alfanum\u00e9rico +allowNullPassword=A senha n\u00e3o pode ser armazenado internamente +#----------------------------- + +#----------------------------- +# Account policy specification properties +#----------------------------- +allUpperCase=Todos em letras mai\u00fasculas +allLowerCase=todos em letras min\u00fasculas +pattern=Pattern (regex) +propagateSuspension=Suspender propaga\u00e7\u00e3o +permittedLoginRetries=N\u00famero m\u00e1ximo de subsequentes falhas de login +#----------------------------- + +#----------------------------- +# Sync policy specification properties +#----------------------------- +uAltSearchSchemas=Atributos alternativos para busca local (usu\u00e1rios) +rAltSearchSchemas=Atributos alternativos para busca local (fun\u00e7\u00f5es) +userJavaRule=Regra customizada de correla\u00e7\u00e3o de usu\u00e1rio +roleJavaRule=Regra de correla\u00e7\u00e3o de fun\u00e7\u00e3o customizada +conflictResolutionAction= A\u00e7\u00e3o de resolu\u00e7\u00e3o de conflito +#----------------------------- + +#----------------------------- +# Policy Type +#----------------------------- +ACCOUNT=Pol\u00edtica de Conta +GLOBAL_ACCOUNT=Pol\u00edtica Global de Conta +PASSWORD=Plo\u00edtica de Senha +GLOBAL_PASSWORD=Pol\u00edtica Global de Senha +SYNC=Pol\u00edtica de Sincroniza\u00e7\u00e3o +GLOBAL_SYNC=Pol\u00edtica Global de sincroniza\u00e7\u00e3o +resources=Recursos +roles=Fun\u00e7\u00f5es +authResources=Recursos de autentica\u00e7\u00e3o http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.html ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.html b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.html new file mode 100644 index 0000000..67ac588 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.html @@ -0,0 +1,75 @@ +<!-- +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"> + <wicket:extend> + <div id="dialog-form"> + <p class="ui-widget ui-corner-all ui-widget-header"><wicket:message key="title"/></p> + <form wicket:id="form"> + <div id="tabs"> + <ul> + <li class="tabs-selected"><a href="#profile"><span><wicket:message key="profile"/></span></a></li> + <li><a href="#executions"><span><wicket:message key="executions"/></span></a></li> + </ul> + <div id="profile"> + <div id="users-contain" class="ui-widget"> + <span wicket:id="profile"> + <div id="formtable"> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <span wicket:id="idLabel">[Id]</span> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="key">[key]</span> + </div> + </div> + + <div class="tablerow"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="accountId"><wicket:message key="accountId"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="accountId">[accountId]</span> + </div> + </div> + + <div class="tablerow alt"> + <div class="tablecolumn_label short_dynamicsize"> + <label for="resource"><wicket:message key="resource"/></label> + </div> + <div class="tablecolumn_field medium_dynamicsize"> + <span wicket:id="resource">[resource]</span> + </div> + </div> + </div> + </span> + </div> + </div> + <div id="executions" class="ui-widget"> + <span wicket:id="executionContainer" id="executionContainer"> + <table class="ui-widget ui-widget-content" + wicket:id="executionsTable" style="width: 100%"/> + </span> + </div> + </div> + </form> + </div> + <div wicket:id="taskExecMessageWin"/> + </wicket:extend> +</html> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.properties new file mode 100644 index 0000000..1b035f7 --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage.properties @@ -0,0 +1,28 @@ +# 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. +profile=Profile +executions=Executions +title=Task +accountId=Account id +resource=Resource +startDate=Start date +endDate=End date +status=Status +message=Message +taskExecutions=Task executions +delete=Delete +showMessage=Show http://git-wip-us.apache.org/repos/asf/syncope/blob/2d194636/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage_it.properties ---------------------------------------------------------------------- diff --git a/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage_it.properties b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage_it.properties new file mode 100644 index 0000000..770680b --- /dev/null +++ b/client/console/src/main/resources/org/apache/syncope/client/console/pages/PropagationTaskModalPage_it.properties @@ -0,0 +1,28 @@ +# 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. +profile=Profilo +executions=Esecuzioni +title=Task +accountId=Id account +resource=Risorsa +startDate=Data di avvio +endDate=Data di conclusione +status=Stato +message=Messaggio +taskExecutions=Esecuzione del task +delete=Rimozione +showMessage=Mostra
