diff --git a/ajax/ajax_configSave.php b/ajax/ajax_configSave.php index d586a057..ec8b76d0 100644 --- a/ajax/ajax_configSave.php +++ b/ajax/ajax_configSave.php @@ -71,6 +71,8 @@ if ($frmAction == "config") { $frmLdapServer = SP_Common::parseParams('p', 'ldap_server'); $frmLdapBase = SP_Common::parseParams('p', 'ldap_base'); $frmLdapGroup = SP_Common::parseParams('p', 'ldap_group'); + $frmLdapDefaultGroup = SP_Common::parseParams('p', 'ldap_defaultgroup'); + $frmLdapDefaultProfile = SP_Common::parseParams('p', 'ldap_defaultprofile'); $frmLdapBindUser = SP_Common::parseParams('p', 'ldap_binduser'); $frmLdapBindPass = SP_Common::parseParams('p', 'ldap_bindpass', '', false, false, false); @@ -109,6 +111,8 @@ if ($frmAction == "config") { SP_Config::setValue("ldap_server", $frmLdapServer); SP_Config::setValue("ldap_base", $frmLdapBase); SP_Config::setValue("ldap_group", $frmLdapGroup); + SP_Config::setValue("ldap_defaultgroup", $frmLdapDefaultGroup); + SP_Config::setValue("ldap_defaultprofile", $frmLdapDefaultProfile); SP_Config::setValue("ldap_binduser", $frmLdapBindUser); SP_Config::setValue("ldap_bindpass", $frmLdapBindPass); } else { diff --git a/ajax/ajax_getContent.php b/ajax/ajax_getContent.php index f8a53d6b..bdb3ac07 100644 --- a/ajax/ajax_getContent.php +++ b/ajax/ajax_getContent.php @@ -379,7 +379,6 @@ if (isset($_SESSION["uisadminapp"]) && SP_Config::getValue('debug')) { $time_stop = SP_Init::microtime_float(); $time = ($time_stop - $time_start); $memEnd = memory_get_usage(); - //$crypt = new SP_Crypt; $debugTxt[] = "
"; $debugTxt[] = "

DEBUG INFO

"; @@ -392,7 +391,6 @@ if (isset($_SESSION["uisadminapp"]) && SP_Config::getValue('debug')) { $debugTxt[] = "
  • CONFIG:
    ";
         $debugTxt[] = "
    " . print_r(SP_Config::getKeys(true), true) . "
    "; $debugTxt[] = "
  • "; - //$debugTxt[] = '
  • '.$crypt->getSessionMasterPass().'
  • '; $debugTxt[] = "
    "; foreach ($debugTxt as $out) { @@ -405,4 +403,4 @@ if (isset($_SESSION["uisadminapp"]) && SP_Config::getValue('debug')) { // consulta ajax detiene al resto si se ejecuta antes if ($_SESSION['uisadminapp'] && SP_Config::getValue('checkupdates') === 1 && !SP_Common::parseParams('s', 'UPDATED', false, true)) { echo ''; -} +} \ No newline at end of file diff --git a/ajax/ajax_usrpass.php b/ajax/ajax_usrpass.php index 195c506d..2ab5e283 100644 --- a/ajax/ajax_usrpass.php +++ b/ajax/ajax_usrpass.php @@ -62,6 +62,7 @@ SP_ACL::checkUserAccess("acceditpass",$userId) || die ($strError); + @@ -72,8 +73,6 @@ SP_ACL::checkUserAccess("acceditpass",$userId) || die ($strError);
    - -

    diff --git a/css/styles.css b/css/styles.css index 6f00fe06..b395886c 100644 --- a/css/styles.css +++ b/css/styles.css @@ -1,13 +1,15 @@ -*{font-family: Verdana, Tahoma, sans-serif;} +* { + font-family: Verdana, Tahoma, sans-serif; +} -html, body{ +html, body { margin: 0; padding: 0; text-align: left; background-color: #f5f5f5; color: #000000; font-size: 12px; - font-weight: normal; + font-weight: normal; } table { @@ -17,72 +19,126 @@ table { #tblTools, #tblAccion { border: none; - border:1px solid #d9d9d9; + border: 1px solid #d9d9d9; background-color: #f9f9f9; vertical-align: middle; } -table th { border-bottom: 2px solid transparent; vertical-align: middle;} -table th .icon{ width: 24px; height: 24px;} -table tr.odd {background-color:#f9f9f9;} -table tr.even>td, table tr.odd>td { border-bottom:1px solid #d9d9d9 !important; } -table tr.even:hover{ background-color:#E8FF99; } -table tr.odd:hover{ background-color:#E8FF99; } -table tr { height:20px; } -table td { padding:3px; } -table td.txtCliente { font-weight:bold;text-align:center; } +table th { + border-bottom: 2px solid transparent; + vertical-align: middle; +} -form { font-size: 11px; border: 0px solid #5dd; margin: 0; } +table th .icon { + width: 24px; + height: 24px; +} -input, select, textarea { - background-color: #fffef0; - color:black; +table tr.odd { + background-color: #f9f9f9; +} + +table tr.even > td, table tr.odd > td { + border-bottom: 1px solid #d9d9d9 !important; +} + +table tr.even:hover { + background-color: #E8FF99; +} + +table tr.odd:hover { + background-color: #E8FF99; +} + +table tr { + height: 20px; +} + +table td { + padding: 3px; +} + +table td.txtCliente { + font-weight: bold; + text-align: center; +} + +form { + font-size: 11px; + border: 0px solid #5dd; + margin: 0; +} + +input, select, textarea { + background-color: #fffef0; + color: black; font-size: 11px; border: 1px solid #dfdfdf; border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.075) inset; - padding:5px; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.075) inset; + padding: 5px; } -input:hover, select:hover, textarea:hover{ +input:hover, select:hover, textarea:hover { background-color: #fffccd; } -input:active, select:hover, textarea:active{ + +input:active, select:hover, textarea:active { background-color: #fffde1; color: #045FB4; border: 1px solid #5897fb; - box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset, 0 0 5px rgba(88, 151, 251, 0.5); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset, 0 0 5px rgba(88, 151, 251, 0.5); } -input:focus, select:hover, textarea:focus{ + +input:focus, select:hover, textarea:focus { background-color: #fffccd; color: #045FB4; border: 1px solid #5897fb; - box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset, 0 0 5px rgba(88, 151, 251, 0.5); + box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) inset, 0 0 5px rgba(88, 151, 251, 0.5); } -input {width: 200px;} +input { + width: 200px; +} input.inputImg, img.inputImg { background-color: transparent !important; width: 24px !important; height: 24px !important; border: none; - vertical-align:middle; + vertical-align: middle; margin: 0 0.5em; } -input.txtFile{width:200px;} -input.txtLong{width:300px;} +input.txtFile { + width: 200px; +} -textarea {width: 350px; resize: none;} +input.txtLong { + width: 300px; +} +textarea { + width: 350px; + resize: none; +} -select.files {width: 250px;} -input#rpp {width: 40px;} +select.files { + width: 250px; +} -img { margin:0; padding: 0; border: 0; cursor: pointer; } +input#rpp { + width: 40px; +} + +img { + margin: 0; + padding: 0; + border: 0; + cursor: pointer; +} img.inputImgMini { background-color: transparent !important; @@ -90,41 +146,88 @@ img.inputImgMini { height: 16px !important; margin: 0 5px 0 5px; border: none; - vertical-align:middle; + vertical-align: middle; } -.altTable {border: 0px;font-size: 10px;} -.altTable .section{font-size: 14px; font-weight: bold;} +.altTable { + border: 0px; + font-size: 10px; +} -.altTxtError { color: #CC0000; font-weight: bold;} -.altTxtOk { color: green; font-weight: bold;} -.altTxtWarn { color: orange; font-weight: bold;} +.altTable .section { + font-size: 14px; + font-weight: bold; +} -.altTxtGreen { color: green; } -.altTxtRed { color: darkred; } -.altTxtBlue { color: #333399; font-weight: bold; } +.altTxtError { + color: #CC0000; + font-weight: bold; +} -a{text-decoration: none; color: #339;} -a:visited {text-decoration: none; color: #339;} -a:hover {text-decoration: none; color: orangered; cursor: pointer;} -a:active {text-decoration: none; color: #BB0000;} -a:focus {text-decoration: none; color: #FF0000;} +.altTxtOk { + color: green; + font-weight: bold; +} -#nojs { - width: 80%; - margin: auto; - text-align: center; +.altTxtWarn { + color: orange; + font-weight: bold; +} + +.altTxtGreen { + color: green; +} + +.altTxtRed { + color: darkred; +} + +.altTxtBlue { + color: #333399; + font-weight: bold; +} + +a { + text-decoration: none; + color: #339; +} + +a:visited { + text-decoration: none; + color: #339; +} + +a:hover { + text-decoration: none; + color: orangered; + cursor: pointer; +} + +a:active { + text-decoration: none; + color: #BB0000; +} + +a:focus { + text-decoration: none; + color: #FF0000; +} + +#nojs { + width: 80%; + margin: auto; + text-align: center; vertical-align: middle; margin-bottom: 10px; margin-top: 10px; padding: 3px; - background-color: red; + background-color: red; color: white; font-weight: bold; font-size: 14px; } -#wrap{ +#wrap { height: auto !important; /* ie6 ignores !important, so this will be overridden below */ min-height: 100%; /* ie6 ignores min-height completely */ min-width: 1024px; @@ -133,15 +236,21 @@ a:focus {text-decoration: none; color: #FF0000;} background-color: #f5f5f5; } -#container {margin:auto; width: 80%;} +#container { + margin: auto; + width: 80%; +} -#container.main{ +#container.main { width: 100%; height: auto; min-height: 650px; background: url("../imgs/logo_full.png") no-repeat left top transparent; } -#container.error, #container.install {width: 100%;} + +#container.error, #container.install, #container.passreset { + width: 100%; +} #container #header { width: 100%; @@ -154,11 +263,11 @@ a:focus {text-decoration: none; color: #FF0000;} height: 25px; background: url("../imgs/bg_session.png") repeat-x scroll left top #e9e9e9; color: #999; - font-size:10px; + font-size: 10px; text-align: right; } -#container #session img{ +#container #session img { width: 24px; height: 24px; margin-left: 10px; @@ -166,30 +275,30 @@ a:focus {text-decoration: none; color: #FF0000;} vertical-align: middle; } -#container #session .imgLang{ +#container #session .imgLang { width: 28px; height: auto; - filter:alpha(opacity=40); + filter: alpha(opacity=40); -moz-opacity: 0.4; - opacity: 0.4; + opacity: 0.4; } -#container #actionsBar{ +#container #actionsBar { float: left; - position:relative; + position: relative; top: 100px; left: 30px; margin-right: 80px; text-align: center; } -#container #actionsBar ul{ +#container #actionsBar ul { list-style: none; margin: 0; padding: 0; } -#container #actionsBar li{ +#container #actionsBar li { padding: 5px 10px; width: 100%; height: 50px; @@ -204,12 +313,12 @@ a:focus {text-decoration: none; color: #FF0000;} -moz-box-shadow: 5px 8px 6px -6px #a9a9a9; } -#container #actionsBar li:hover{ +#container #actionsBar li:hover { border: 1px solid #5897fb; box-shadow: 0 0 5px rgba(88, 151, 251, 0.5); } -#container #actionsBar li img{ +#container #actionsBar li img { width: 32px; height: 32px; position: relative; @@ -224,21 +333,36 @@ a:focus {text-decoration: none; color: #FF0000;} margin-bottom: 80px; } -#content td.descField, #fancyContainer td.descField{ - text-align:right; - padding-right:20px; +#content td.descField, #fancyContainer td.descField { + text-align: right; + padding-right: 20px; width: 25%; font-weight: bold; - border-right:1px solid #d9d9d9; + border-right: 1px solid #d9d9d9; color: #555; } -#content td.valField, #fancyContainer td.valField { padding-left:20px; width: 100%;} +#content td.valField, #fancyContainer td.valField { + padding-left: 20px; + width: 100%; +} -#content #tblTools{min-width: 875px; height: 5em; padding: 5px; padding-left: 15px;} +#content #tblTools { + min-width: 875px; + height: 5em; + padding: 5px; + padding-left: 15px; +} -#content #resBuscar{ min-width: 875px; min-height: 450px; margin-bottom: 50px;} -#content #resBuscar img {vertical-align:middle;} +#content #resBuscar { + min-width: 875px; + min-height: 450px; + margin-bottom: 50px; +} + +#content #resBuscar img { + vertical-align: middle; +} #content #pageNav { float: left; @@ -254,15 +378,38 @@ a:focus {text-decoration: none; color: #FF0000;} background-color: #f5f5f5; } -#content #pageNav img { margin-left: 5px; vertical-align: middle;} -#content #pageNav a { margin-left: 5px; font-size: 12px; color: #999; } -#content #pageNav .current {margin-left: 5px; color: darkorange; } +#content #pageNav img { + margin-left: 5px; + vertical-align: middle; +} -#content #pageNav>div {float: left; width: 50%; height: 1.5em; line-height: 1.5em} -#content #pageNav #pageNavLeft {text-align: left;} -#content #pageNav #pageNavRight {text-align: right;} +#content #pageNav a { + margin-left: 5px; + font-size: 12px; + color: #999; +} -#content #title{ +#content #pageNav .current { + margin-left: 5px; + color: darkorange; +} + +#content #pageNav > div { + float: left; + width: 50%; + height: 1.5em; + line-height: 1.5em +} + +#content #pageNav #pageNavLeft { + text-align: left; +} + +#content #pageNav #pageNavRight { + text-align: right; +} + +#content #title { width: 50%; padding: 7px; margin: auto; @@ -273,23 +420,32 @@ a:focus {text-decoration: none; color: #FF0000;} text-align: center; } -#content #title.titleGreen{background: url("../imgs/bg_tab_new.png") repeat-x scroll left top #a9c1d7;} -#content #title.titleOrange{background: url("../imgs/bg_tab_edit.png") repeat-x scroll left top #a9c1d7;} -#content #title.titleRed{background: url("../imgs/bg_tab_edit.png") repeat-x scroll left top #a9c1d7;} -#content #title.titleNormal{ +#content #title.titleGreen { + background: url("../imgs/bg_tab_new.png") repeat-x scroll left top #a9c1d7; +} + +#content #title.titleOrange { + background: url("../imgs/bg_tab_edit.png") repeat-x scroll left top #a9c1d7; +} + +#content #title.titleRed { + background: url("../imgs/bg_tab_edit.png") repeat-x scroll left top #a9c1d7; +} + +#content #title.titleNormal { color: #999; /* IE9 SVG, needs conditional override of 'filter' to 'none' */ background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q5ZDlkOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkOWQ5ZDkiIHN0b3Atb3BhY2l0eT0iMCIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+); - background: -moz-linear-gradient(top, rgba(217,217,217,1) 0%, rgba(217,217,217,0) 100%); /* FF3.6+ */ - background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(217,217,217,1)), color-stop(100%,rgba(217,217,217,0))); /* Chrome,Safari4+ */ - background: -webkit-linear-gradient(top, rgba(217,217,217,1) 0%,rgba(217,217,217,0) 100%); /* Chrome10+,Safari5.1+ */ - background: -o-linear-gradient(top, rgba(217,217,217,1) 0%,rgba(217,217,217,0) 100%); /* Opera 11.10+ */ - background: -ms-linear-gradient(top, rgba(217,217,217,1) 0%,rgba(217,217,217,0) 100%); /* IE10+ */ - background: linear-gradient(to bottom, rgba(217,217,217,1) 0%,rgba(217,217,217,0) 100%); /* W3C */ - filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d9d9d9', endColorstr='#00d9d9d9',GradientType=0 ); /* IE6-8 */ + background: -moz-linear-gradient(top, rgba(217, 217, 217, 1) 0%, rgba(217, 217, 217, 0) 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(217, 217, 217, 1)), color-stop(100%, rgba(217, 217, 217, 0))); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, rgba(217, 217, 217, 1) 0%, rgba(217, 217, 217, 0) 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, rgba(217, 217, 217, 1) 0%, rgba(217, 217, 217, 0) 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, rgba(217, 217, 217, 1) 0%, rgba(217, 217, 217, 0) 100%); /* IE10+ */ + background: linear-gradient(to bottom, rgba(217, 217, 217, 1) 0%, rgba(217, 217, 217, 0) 100%); /* W3C */ + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d9d9d9', endColorstr='#00d9d9d9', GradientType=0); /* IE6-8 */ } -#content .data{ +#content .data { width: 90%; padding: 10px; border: 1px solid #c9c9c9; @@ -297,17 +453,55 @@ a:focus {text-decoration: none; color: #FF0000;} background-color: #f9f9f9; } -#content .data td{text-align: left;} -#content .data td.descField {text-align:right; font-size:12px; font-weight:bold; color: #999} -#content .data select {min-width: 210px;} +#content .data td { + text-align: left; +} -#content .data #files-wrap {max-height: 100px; width: 400px; overflow-y: auto; border: 1px solid #DFDFDF; padding: 0.5em;} -#content .data #files-list { list-style-type: none; margin: 0; padding: 0;} -#content .data #files-list li { background: #f2f2f2; padding: 1em; font-size: 1em; margin-bottom: 5px;} -#content .data #files-list li:hover {background: #fffccd; color: #000;} -#content .data #files-list li img{float: right; position: relative; top: -5px; vertical-align: middle;} +#content .data td.descField { + text-align: right; + font-size: 12px; + font-weight: bold; + color: #999 +} -#content .data #dropzone{ +#content .data select { + min-width: 210px; +} + +#content .data #files-wrap { + max-height: 100px; + width: 400px; + overflow-y: auto; + border: 1px solid #DFDFDF; + padding: 0.5em; +} + +#content .data #files-list { + list-style-type: none; + margin: 0; + padding: 0; +} + +#content .data #files-list li { + background: #f2f2f2; + padding: 1em; + font-size: 1em; + margin-bottom: 5px; +} + +#content .data #files-list li:hover { + background: #fffccd; + color: #000; +} + +#content .data #files-list li img { + float: right; + position: relative; + top: -5px; + vertical-align: middle; +} + +#content .data #dropzone { width: 350px; padding: 5px; height: 50px; @@ -316,18 +510,31 @@ a:focus {text-decoration: none; color: #FF0000;} text-align: center; } -#content .data #dropzone img{vertical-align: middle;} +#content .data #dropzone img { + vertical-align: middle; +} -#content .data #fileUpload {display: none;} +#content .data #fileUpload { + display: none; +} -#content .data .account-permissions{float:left; margin-right: 10px;} -#content .data .account-permissions fieldset{border: 1px solid #c9c9c9; padding: 1em;} -#content .data .account-permissions legend{ +#content .data .account-permissions { + float: left; + margin-right: 10px; +} + +#content .data .account-permissions fieldset { + border: 1px solid #c9c9c9; + padding: 1em; +} + +#content .data .account-permissions legend { font-weight: bold; color: #999; padding: 0.2em 0; } -#content .data .account-permissions fieldset>span{ + +#content .data .account-permissions fieldset > span { font-weight: bold; color: #999; padding: 0.2em 0; @@ -336,31 +543,61 @@ a:focus {text-decoration: none; color: #FF0000;} text-align: right; } -#content .extra-info{margin-top: 20px;} +#content .extra-info { + margin-top: 20px; +} -#content .tblIcon {background: url("../imgs/clock.png") no-repeat 98% 5% #f9f9f9;} +#content .tblIcon { + background: url("../imgs/clock.png") no-repeat 98% 5% #f9f9f9; +} -#content #tabs fieldset{ border: 1px solid #c9c9c9;} -#content #tabs #frmConfig label{ float: left;} +#content #tabs fieldset { + border: 1px solid #c9c9c9; +} -#content .tblConfig {margin-bottom: 2em;} -#content .tblConfig td.descField{width:35%; font-size:11px; font-weight:bold;} -#content .tblConfig td.rowHeader{ +#content #tabs #frmConfig label { + float: left; +} + +#content .tblConfig { + margin-bottom: 2em; +} + +#content .tblConfig td.descField { + width: 35%; + font-size: 11px; + font-weight: bold; +} + +#content .tblConfig td.rowHeader { padding: 5px 0 5px 0; - background-color:#f5f5f5; + background-color: #f5f5f5; text-align: center; font-weight: bold; - border-top:15px solid #f9f9f9; - border-bottom:3px solid #a9c1d7; + border-top: 15px solid #f9f9f9; + border-bottom: 3px solid #a9c1d7; letter-spacing: 0.5em; color: #696969; } -#content .tblConfig input.checkbox{width: 15px;text-align: left;padding:0;} -#content .tblConfig .option-disabled{text-align: center;background-color: #FFF2D9; color: orange;font-weight: bold;} -#content #tblAccion {width: 100%;} +#content .tblConfig input.checkbox { + width: 15px; + text-align: left; + padding: 0; +} -#content h2{ +#content .tblConfig .option-disabled { + text-align: center; + background-color: #FFF2D9; + color: orange; + font-weight: bold; +} + +#content #tblAccion { + width: 100%; +} + +#content h2 { width: 100%; height: 1.5em; font-size: 18px; @@ -370,26 +607,32 @@ a:focus {text-decoration: none; color: #FF0000;} padding-top: 0.1em; } -#content .section{ +#content .section { margin-top: 2.5em; - border-bottom:1px solid #d9d9d9; + border-bottom: 1px solid #d9d9d9; text-align: left; font-size: 14px; font-weight: bold; color: #045FB4; } -#content .row_even>td{background-color: #f5f5f5;} -#content .row_odd>td{background-color: white;} +#content .row_even > td { + background-color: #f5f5f5; +} -#content .data-header ul{ +#content .row_odd > td { + background-color: white; +} + +#content .data-header ul { display: table; - list-style: none; - width: 100%; - margin: 0 0 10px 0; + list-style: none; + width: 100%; + margin: 0 0 10px 0; padding: 0; } -#content .data-header li{ + +#content .data-header li { float: left; display: block; padding: 0.5em; @@ -397,22 +640,45 @@ a:focus {text-decoration: none; color: #FF0000;} letter-spacing: 0.2em; color: #696969; } -#content .data-header li a{color: #777;} -#content .data-header li img{float: right; width: 24px; height: 24px; vertical-align: middle;} -#content .data-header-minimal {border-bottom: 1px solid #dfdfdf;} -#content .data-header-minimal ul{margin: 0;} -#content .data-header-minimal li{font-weight: normal;letter-spacing: normal;} -#content .data-header-minimal li a{color:#b9b9b9;padding: 0.3em 0.8em ;} +#content .data-header li a { + color: #777; +} -#content .data-rows ul{ - display: table; - list-style: none; - width: 100%; +#content .data-header li img { + float: right; + width: 24px; + height: 24px; + vertical-align: middle; +} + +#content .data-header-minimal { + border-bottom: 1px solid #dfdfdf; +} + +#content .data-header-minimal ul { + margin: 0; +} + +#content .data-header-minimal li { + font-weight: normal; + letter-spacing: normal; +} + +#content .data-header-minimal li a { + color: #b9b9b9; + padding: 0.3em 0.8em; +} + +#content .data-rows ul { + display: table; + list-style: none; + width: 100%; margin: 0 0 10px 0; padding: 0; } -#content .data-rows li{ + +#content .data-rows li { float: left; display: block; padding: 1.5em 0.5em; @@ -421,24 +687,39 @@ a:focus {text-decoration: none; color: #FF0000;} background-color: #fcfcfc; height: 1em; } -#content .data-rows li.cell-nodata{padding: 1em 0;height: 2em; text-align: left;} -#content .data-rows li.cell-actions{ +#content .data-rows li.cell-nodata { + padding: 1em 0; + height: 2em; + text-align: left; +} + +#content .data-rows li.cell-actions { float: right; height: 2em; padding: 1em 0; text-align: center; background-color: #fcfcfc; } -#content .data-rows li.cell-actions:hover{background-color: #FFFEF0 !important;} + +#content .data-rows li.cell-actions:hover { + background-color: #FFFEF0 !important; +} #content .data-rows li.cell-nodata img, #content .data-rows li.cell-actions img, #content #data-search .account-info img, -#content #data-search .account-actions img {width: 24px; height: 24px;margin: 0 0.5em;} +#content #data-search .account-actions img { + width: 24px; + height: 24px; + margin: 0 0.5em; +} -#content #data-search {text-align: center;} -#content #data-search .account-label{ +#content #data-search { + text-align: center; +} + +#content #data-search .account-label { width: 310px; height: 195px; text-align: left; @@ -448,20 +729,53 @@ a:focus {text-decoration: none; color: #FF0000;} background-color: #fcfcfc; display: inline-block; } -#content #data-search .account-label .label-field{width: 100%;height: 2em;} -#content #data-search .account-label .field-name{float: left; width: 80px; padding: 0.4em 0.2em; color: #b9b9b9;} -#content #data-search .account-label .field-text{float: left; width: 215px; padding: 0.4em 0.2em;} -#content #data-search .account-label .header .field-name{color: white; font-weight: bold} -#content #data-search .account-label .field-customer .field-name{display: none} -#content #data-search .account-label .field-customer .field-text{width: 304px;} -#content #data-search .account-label .field-url {height: 2.5em;} +#content #data-search .account-label .label-field { + width: 100%; + height: 2em; +} + +#content #data-search .account-label .field-name { + float: left; + width: 80px; + padding: 0.4em 0.2em; + color: #b9b9b9; +} + +#content #data-search .account-label .field-text { + float: left; + width: 215px; + padding: 0.4em 0.2em; +} + +#content #data-search .account-label .header .field-name { + color: white; + font-weight: bold +} + +#content #data-search .account-label .field-customer .field-name { + display: none +} + +#content #data-search .account-label .field-customer .field-text { + width: 304px; +} + +#content #data-search .account-label .field-url { + height: 2.5em; +} + +#content #data-search .account-label .field-text a { + color: #4895FA +} -#content #data-search .account-label .field-text a{color: #4895FA} #content #data-search .account-label .no-link, -#content #data-search .account-label .no-link a{color: white; font-weight: bold;} +#content #data-search .account-label .no-link a { + color: white; + font-weight: bold; +} -#content #data-search .account-info{ +#content #data-search .account-info { width: 100%; height: 2em; padding: .5em 0; @@ -469,99 +783,246 @@ a:focus {text-decoration: none; color: #FF0000;} /*border-top: 1px solid #d9d9d9;*/ } -#content #data-search .account-actions{ +#content #data-search .account-actions { width: 100%; height: 2.5em; padding-top: 5px; text-align: right; background-color: #f5f5f5; - box-shadow: 0 0 8px rgba(0, 0, 0, 0.075) inset; + box-shadow: 0 0 8px rgba(0, 0, 0, 0.075) inset; } -#content .actions-optional{display: none;} -#content #data-search .account-spacer{width: 100%; height: 7.5em;} - -#content .rowSpace>.cellBorder{height: 10px;border-top:1px solid #d9d9d9;} -#content .rowSpace>.cellBlank{height: 10px;} -#content #resEventLog .data {width: 100%;} -#content #resEventLog thead {text-align: center} -#content #resEventLog tbody {width: 100%; height: 500px; overflow: auto; } -#content #resEventLog td{border-bottom: 1px solid #d9d9d9;} -#content #resEventLog .cell{text-align: center;} -#content #resEventLog .cell-description{width: 60%;} +#content .actions-optional { + display: none; +} + +#content #data-search .account-spacer { + width: 100%; + height: 7.5em; +} + +#content .rowSpace > .cellBorder { + height: 10px; + border-top: 1px solid #d9d9d9; +} + +#content .rowSpace > .cellBlank { + height: 10px; +} + +#content #resEventLog .data { + width: 100%; +} + +#content #resEventLog thead { + text-align: center +} + +#content #resEventLog tbody { + width: 100%; + height: 500px; + overflow: auto; +} + +#content #resEventLog td { + border-bottom: 1px solid #d9d9d9; +} + +#content #resEventLog .cell { + text-align: center; +} + +#content #resEventLog .cell-description { + width: 60%; +} + +#content #tblTools div.chosen-container { + margin: 0 5px; +} -#content #tblTools div.chosen-container{margin: 0 5px;} #content #tblTools #txtSearch, -#content #tblTools select {min-width: 180px;} -#content #tblTools label{margin-left:15px; color: #999;} -#content #tblTools #toolsLeft{text-align: left; width: 80%;} -#content #tblTools #toolsRight{text-align: right; width: 5%;} -#content #tblTools #toolsRight input{margin-left: 15px; text-align: center;} -#content #tblTools .custom-combobox{margin-left: 25px;} -#content #tblTools #btnClear{opacity: 0.35;filter:alpha(opacity=35);} -#content #tblTools #btnClear:hover{opacity: 1;filter:alpha(opacity=100);} -#content #tblTools #order {margin-top: 0.5em; padding: 0.3em;color:#696969;} +#content #tblTools select { + min-width: 180px; +} -#content #tabs>div{min-height: 475px;} -#content #tabs.ui-widget-content {border: none; background-color: transparent;} -#content #tabs .ui-widget-header {background: none; border: none; border-bottom: 1px solid #c9c9c9;} -#content #tabs.ui-widget-content{background: none !important;} -#content #tabs .tabs-spacer { float: left; height: 200px; } -#content .tabs-bottom .ui-tabs-nav { clear: left; padding: 0 .2em .2em .2em; } -#content .tabs-bottom .ui-tabs-nav li { top: auto; bottom: 0; margin: 0 .2em 1px 0; border-bottom: auto; border-top: 0; } -#content .tabs-bottom .ui-tabs-nav li.ui-tabs-active { margin-top: -1px; padding-top: 1px; } +#content #tblTools label { + margin-left: 15px; + color: #999; +} -#datos{ - float:left; - width:400px; +#content #tblTools #toolsLeft { + text-align: left; + width: 80%; +} + +#content #tblTools #toolsRight { + text-align: right; + width: 5%; +} + +#content #tblTools #toolsRight input { + margin-left: 15px; + text-align: center; +} + +#content #tblTools .custom-combobox { + margin-left: 25px; +} + +#content #tblTools #btnClear { + opacity: 0.35; + filter: alpha(opacity=35); +} + +#content #tblTools #btnClear:hover { + opacity: 1; + filter: alpha(opacity=100); +} + +#content #tblTools #order { + margin-top: 0.5em; + padding: 0.3em; + color: #696969; +} + +#content #tabs > div { + min-height: 475px; +} + +#content #tabs.ui-widget-content { + border: none; + background-color: transparent; +} + +#content #tabs .ui-widget-header { + background: none; + border: none; + border-bottom: 1px solid #c9c9c9; +} + +#content #tabs.ui-widget-content { + background: none !important; +} + +#content #tabs .tabs-spacer { + float: left; + height: 200px; +} + +#content .tabs-bottom .ui-tabs-nav { + clear: left; + padding: 0 .2em .2em .2em; +} + +#content .tabs-bottom .ui-tabs-nav li { + top: auto; + bottom: 0; + margin: 0 .2em 1px 0; + border-bottom: auto; + border-top: 0; +} + +#content .tabs-bottom .ui-tabs-nav li.ui-tabs-active { + margin-top: -1px; + padding-top: 1px; +} + +#datos { + float: left; + width: 400px; text-align: left; margin-top: 10px; color: #b9b9b9; } -#datos a{ +#datos a { color: orange; - font-weight:bold; + font-weight: bold; border: none; padding: 3px; - margin:5px 0 5px 0; + margin: 5px 0 5px 0; display: block; width: 40px; - text-align:center; + text-align: center; background-color: transparent; } -#datos img{border: none;} +#datos img { + border: none; +} -#resAccion, #resFancyAccion{ - height:20px; +#resAccion, #resFancyAccion { + height: 20px; padding: 5px; margin: 5px; - font-weight:bold; + font-weight: bold; font-size: 14px; } -#resAccion span{padding:5px;border: #A9A9A9 1px solid;} +#resAccion span { + padding: 5px; + border: #A9A9A9 1px solid; +} - -#fancyView{ +#fancyView { min-width: 250px; text-align: center; padding: 15px; line-height: 20px; border: #d9d9d9 1px solid; - font-size: 14px; + font-size: 14px; } -#fancyView.msgError { margin: 5px; background-color: #fee8e6; color: #CC0000; font-weight: bold; border: #fed2ce 1px solid;} -#fancyView.msgOk { margin: 5px; background-color: #ecfde4; color: green; font-weight: bold; border: #dbfdcb 1px solid;} -#fancyView.msgWarn { margin: 5px; background-color: #FFF2D9; color: orange; font-weight: bold; border: #ffe5b3 1px solid;} -#fancyView.msgInfo { margin: 5px; background-color: #e9e9e9; color: orange; font-weight: bold; border: #ffe5b3 1px solid;} +#fancyView.msgError { + margin: 5px; + background-color: #fee8e6; + color: #CC0000; + font-weight: bold; + border: #fed2ce 1px solid; +} -#fancyView.backGrey{background-color: #f2f2f2 !important;} -#fancyView PRE{text-align: left;} -#fancyView table{border: none; width: 100%;font-size: 14px;text-align: left;} -#fancyView td{border-bottom: #d9d9d9 1px solid;} +#fancyView.msgOk { + margin: 5px; + background-color: #ecfde4; + color: green; + font-weight: bold; + border: #dbfdcb 1px solid; +} + +#fancyView.msgWarn { + margin: 5px; + background-color: #FFF2D9; + color: orange; + font-weight: bold; + border: #ffe5b3 1px solid; +} + +#fancyView.msgInfo { + margin: 5px; + background-color: #e9e9e9; + color: orange; + font-weight: bold; + border: #ffe5b3 1px solid; +} + +#fancyView.backGrey { + background-color: #f2f2f2 !important; +} + +#fancyView PRE { + text-align: left; +} + +#fancyView table { + border: none; + width: 100%; + font-size: 14px; + text-align: left; +} + +#fancyView td { + border-bottom: #d9d9d9 1px solid; +} #fancyMsg { min-width: 250px; @@ -569,7 +1030,7 @@ a:focus {text-decoration: none; color: #FF0000;} background-color: #f5f5f5; font-family: Verdana, Arial; font-size: 16px; - text-align:center; + text-align: center; display: table-cell; vertical-align: middle; font-weight: bold; @@ -581,17 +1042,44 @@ a:focus {text-decoration: none; color: #FF0000;} -webkit-border-radius: 25px; } -#fancyMsg table{ border: none; width: 100%;font-size: 14px;text-align: left;} -#fancyMsg td{border-bottom: #d9d9d9 1px solid;} +#fancyMsg table { + border: none; + width: 100%; + font-size: 14px; + text-align: left; +} -#fancyMsg.msgError { background: url('../imgs/bg_msg_error.png') white repeat-x; color: #CC0000;} -#fancyMsg.msgOk { background: url('../imgs/bg_msg_ok.png') white repeat-x; color: green;} -#fancyMsg.msgWarn { background: url('../imgs/bg_msg_warn.png') white repeat-x; color: orange;} -#fancyMsg.msgInfo { background: url('../imgs/bg_msg_info.png') white repeat-x; color: #555;} +#fancyMsg td { + border-bottom: #d9d9d9 1px solid; +} -#fancyView a,#fancyMsg a{color: #555;} +#fancyMsg.msgError { + background: url('../imgs/bg_msg_error.png') white repeat-x; + color: #CC0000; +} -#fancyContainer {padding: 0 15px 15px 15px;} +#fancyMsg.msgOk { + background: url('../imgs/bg_msg_ok.png') white repeat-x; + color: green; +} + +#fancyMsg.msgWarn { + background: url('../imgs/bg_msg_warn.png') white repeat-x; + color: orange; +} + +#fancyMsg.msgInfo { + background: url('../imgs/bg_msg_info.png') white repeat-x; + color: #555; +} + +#fancyView a, #fancyMsg a { + color: #555; +} + +#fancyContainer { + padding: 0 15px 15px 15px; +} #fancyContainer h2 { width: 80%; @@ -603,155 +1091,296 @@ a:focus {text-decoration: none; color: #FF0000;} margin-bottom: 20px; padding-top: 0.3em; } -#fancyContainer select{width: 220px;} -#fancyContainer.help {min-height: 100px; background-color: #f5f5f5;} -#fancyContainer.help P {font-size: 14px; text-align: justify; line-height: 2em;} -#fancyContainer #resFancyAccion{display: none} -#fancyContainer #resCheck{float: left; width: 80%; height: 4em; padding: 1em 0; } +#fancyContainer select { + width: 220px; +} -#debug {float:left;text-align: left;} -#debuginfo {width: 100%; min-height: 10em; padding: 1em; background-color: lightgoldenrodyellow; text-align: left; line-height: 1.5em;} -#debuginfo H3 {text-align: center;} +#fancyContainer.help { + min-height: 100px; + background-color: #f5f5f5; +} -.fancyNone{ background-color: transparent !important; } -.fancydata {min-width: 400px; border: none; text-align: left;} -.fancydata .descField{min-width: 100px; font-weight: bold;} +#fancyContainer.help P { + font-size: 14px; + text-align: justify; + line-height: 2em; +} -footer{ +#fancyContainer #resFancyAccion { + display: none +} + +#fancyContainer #resCheck { + float: left; + width: 80%; + height: 4em; + padding: 1em 0; +} + +#debug { + float: left; + text-align: left; +} + +#debuginfo { + width: 100%; + min-height: 10em; + padding: 1em; + background-color: lightgoldenrodyellow; + text-align: left; + line-height: 1.5em; +} + +#debuginfo H3 { + text-align: center; +} + +.fancyNone { + background-color: transparent !important; +} + +.fancydata { + min-width: 400px; + border: none; + text-align: left; +} + +.fancydata .descField { + min-width: 100px; + font-weight: bold; +} + +footer { position: fixed; bottom: 0; z-index: 100; - float:left; - width:100%; + float: left; + width: 100%; height: 1.5em; margin: 0 auto; padding: .5em 0; background-color: #F5F5F5; - color:#b9b9b9; - font-size:13px; + color: #b9b9b9; + font-size: 13px; box-shadow: 0px -8px 6px -6px #c9c9c9; -webkit-box-shadow: 0px -8px 6px -6px #c9c9c9; -moz-box-shadow: 0px -8px 6px -6px #c9c9c9; } -footer #project{float: right;width: 40%;text-align:right; padding-right: 20px;} -footer #updates{float: left;width: 20%;text-align:left; padding-left: 20px;} -footer #status{float: left;width: 20%;text-align:left;color: #ffbbb4;} +footer #project { + float: right; + width: 40%; + text-align: right; + padding-right: 20px; +} -footer a, footer a:visited{color:#b9b9b9;} -footer #project a:hover{color:#a9c1d7;border-bottom: 1px solid #a9c1d7;} -footer #updates a:hover{color:#a9c1d7;} -footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} +footer #updates { + float: left; + width: 20%; + text-align: left; + padding-left: 20px; +} +footer #status { + float: left; + width: 20%; + text-align: left; + color: #ffbbb4; +} + +footer a, footer a:visited { + color: #b9b9b9; +} + +footer #project a:hover { + color: #a9c1d7; + border-bottom: 1px solid #a9c1d7; +} + +footer #updates a:hover { + color: #a9c1d7; +} + +footer img { + border: none; + width: 16px; + height: 16px; + vertical-align: middle; +} /* GENERIC CLASSES */ -.round{ +.round { border-radius: 10px !important; -moz-border-radius: 10px !important; -webkit-border-radius: 10px !important; } -.round5{ - border-radius: 5px!important; +.round5 { + border-radius: 5px !important; -moz-border-radius: 5px !important; -webkit-border-radius: 5px !important; } -.midround{ +.midround { border-radius: 0 0 15px 15px !important; - -moz-border-radius:0 0 15px 15px !important; - -webkit-border-radius:0 0 15px 15px !important; + -moz-border-radius: 0 0 15px 15px !important; + -webkit-border-radius: 0 0 15px 15px !important; } -.midroundup{ +.midroundup { border-radius: 15px 15px 0 0 !important; -moz-border-radius: 15px 15px 0 0 !important; -webkit-border-radius: 15px 15px 0 0 !important; } -.iconMini{width:16px !important;height:16px !important;vertical-align:middle;} +.fullround { + border-radius: 50% !important; + -moz-border-radius: 50% !important; + -webkit-border-radius: 50% !important; +} -#content .error{ - width:350px; - margin:15px; - padding:15px; +.iconMini { + width: 16px !important; + height: 16px !important; + vertical-align: middle; +} + +#content .error { + width: 350px; + margin: 15px; + padding: 15px; background-color: #f9f9f9; - color: orange; + color: orange; border: orange 1px solid; margin: 0 auto; - text-align:center; + text-align: center; font-size: 16px; line-height: 1.5em; } -.hide{display: none !important;} +.hide { + display: none !important; +} -.btn-checks {border: 1px solid #d9d9d9; padding: 5px; margin: 5px 0;} -.btn-checks .ui-button{width: 150px; margin: 5px !important;} +.btn-checks { + border: 1px solid #d9d9d9; + padding: 5px; + margin: 5px 0; +} -.shadow{ +.btn-checks .ui-button { + width: 150px; + margin: 5px !important; +} + +.shadow { box-shadow: 3px 3px 6px -3px #d9d9d9; -webkit-box-shadow: 3px 3px 6px -3px #a9a9a9; -moz-box-shadow: 3px 3px 6px -3px #a9a9a9; } .noRes { - width:60%; - margin:15px; - padding:15px; + width: 60%; + margin: 15px; + padding: 15px; background-color: #f9f9f9; - color: #a9a9a9; + color: #a9a9a9; border: #c9c9c9 1px solid; margin: 20px auto; - text-align:center; + text-align: center; font-size: 16px; } -.header-blue { background-color: #E6F2FF;} -.header-grey { background: url("../imgs/bg_table_header.png") repeat-x scroll left top #f2f2f2; height: 30px; text-align: center;} -.no-background {background: none !important;} +.header-blue { + background-color: #E6F2FF; +} -.action{ +.header-grey { + background: url("../imgs/bg_table_header.png") repeat-x scroll left top #f2f2f2; + height: 30px; + text-align: center; +} + +.no-background { + background: none !important; +} + +.action { max-width: 90%; height: 4em; margin: 0.7em auto; text-align: right; } -.action-in-box{float: right; height: 4em; margin: 0.7em 0; text-align: right;} -.action ul{list-style: none; margin: 0; padding: 0; padding-right: 2em;} -.action-in-box ul{list-style: none; margin: 0; padding: 0;} +.action-in-box { + float: right; + height: 4em; + margin: 0.7em 0; + text-align: right; +} -.action li{ +.action ul { + list-style: none; + margin: 0; + padding: 0; + padding-right: 2em; +} + +.action-in-box ul { + list-style: none; + margin: 0; + padding: 0; +} + +.action li { float: right; width: 2em; height: 2em; margin-left: 3em; } -.action li img, .action-in-box li img{ +.action li img, .action-in-box li img { padding: 1em; border: 1px solid #d9d9d9; border-radius: 3em; background-color: #f9f9f9 !important; } -.fullWidth{max-width: 100% !important;} +.fullWidth { + max-width: 100% !important; +} -.filterOn{padding: 0.3em 1em ; background-color: #ecfde4;; color: green ! important; border: #dbfdcb 1px solid ! important; } -.globalOn{padding: 0.3em 1em ; background-color: #FFF2D9; color: orange ! important; border: #ffe5b3 1px solid ! important;} +.filterOn { + padding: 0.3em 1em; + background-color: #ecfde4;; + color: green ! important; + border: #dbfdcb 1px solid ! important; +} -.opacity50{ - filter:alpha(opacity=50); - -moz-opacity:0.5; +.globalOn { + padding: 0.3em 1em; + background-color: #FFF2D9; + color: orange ! important; + border: #ffe5b3 1px solid ! important; +} + +.opacity50 { + filter: alpha(opacity=50); + -moz-opacity: 0.5; -khtml-opacity: 0.5; opacity: 0.5; } /* COMBO */ -.custom-combobox { position: relative; display: inline-block;} -.custom-combobox input { width: 80%;} +.custom-combobox { + position: relative; + display: inline-block; +} + +.custom-combobox input { + width: 80%; +} .custom-combobox-toggle { position: absolute; @@ -763,7 +1392,12 @@ footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} *height: 1.7em; *top: 0.1em; } -.custom-combobox-input { margin: 0; padding: 0.3em;} + +.custom-combobox-input { + margin: 0; + padding: 0.3em; +} + .ui-tooltip { background: #FFFFA3; color: #555; @@ -772,27 +1406,70 @@ footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} box-shadow: 0 0 7px #a9a9a9; } -.ui-autocomplete, .ui-menu-item{z-index: 8050;} /* Fix for fancybox z-index*/ +.ui-autocomplete, .ui-menu-item { + z-index: 8050; +} -.ui-buttonset .ui-state-active{ +/* Fix for fancybox z-index*/ + +.ui-buttonset .ui-state-active { background: url("smoothness/images/ui-bg_glass_75_ON_1x400.png") repeat-x scroll 50% 50% #ecfde4; border: 1px solid #AAAAAA; color: #212121; font-weight: normal; } -.valField .ui-state-active, #tblTools .ui-state-active, #frmInstall .ui-state-active{ +.valField .ui-state-active, #tblTools .ui-state-active, #frmInstall .ui-state-active { background: url("smoothness/images/ui-bg_glass_75_ON_1x400.png") repeat-x scroll 50% 50% #ecfde4; } -#passLevel { margin-left: 10px; padding: 3px 15px;} -#passLevel.strongest, #passLevel.strongest:hover { background-color: #ecfde4 !important; color: green; font-weight: bold; border: #dbfdcb 1px solid;} -#passLevel.strong, #passLevel.strong:hover { background-color: #E6F2FF !important; color: #64b4f4; font-weight: bold; border: #64b4f4 1px solid;} -#passLevel.good, #passLevel.good:hover { background-color: #FFF2D9 !important; color: orange; font-weight: bold; border: #ffe5b3 1px solid;} -#passLevel.weak, #passLevel.weak:hover { background-color: #fee8e6 !important; color: #CC0000; font-weight: bold; border: #fed2ce 1px solid;} +/*#passLevel { margin-left: 10px; padding: 3px 15px;}*/ +.passLevel { + width: 20px; + height: 20px; + display: inline-block; + position: relative; + top: 2px; +} -#alert #alert-text{margin: 15px auto; font-size: 14px; font-weight: bold;} -#alert #alert-pass{ +.passLevel.strongest, .passLevel.strongest:hover { + background-color: #ecfde4 !important; + color: green; + font-weight: bold; + border: lightgreen 1px solid; +} + +.passLevel.strong, .passLevel.strong:hover { + background-color: #E6F2FF !important; + color: #64b4f4; + font-weight: bold; + border: #64b4f4 1px solid; +} + +.passLevel.good, .passLevel.good:hover { + background-color: #FFF2D9 !important; + color: orange; + font-weight: bold; + border: #ffe5b3 1px solid; +} + +.passLevel.weak, .passLevel.weak:hover { + background-color: #fee8e6 !important; + color: #CC0000; + font-weight: bold; + border: #fed2ce 1px solid; +} + +.passLevel-float { +} + +#alert #alert-text { + margin: 15px auto; + font-size: 14px; + font-weight: bold; +} + +#alert #alert-pass { width: 50%; padding: 10px; margin: 15px auto; @@ -802,28 +1479,33 @@ footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} } /*Login Page*/ -#boxLogin{ - width:450px; +#boxLogin { + width: 450px; height: 150px; margin: 75px auto; padding: 25px; background-color: #fff; } -#boxLogin .error{ - float:left; - width:315px; - margin-top:15px; - color:orange; +#boxLogin .error { + float: left; + width: 315px; + margin-top: 15px; + color: orange; border: 1px orange solid; - margin-left:auto; - margin-right:auto; + margin-left: auto; + margin-right: auto; } -#boxLogin #boxLogo{ float: left; width: 150px; height: 100%; text-align: center;} +#boxLogin #boxLogo { + float: left; + width: 150px; + height: 100%; + text-align: center; +} -#boxLogin #boxLogo #imgLogo{ - float:left; +#boxLogin #boxLogo #imgLogo { + float: left; width: 100px; height: 100px; position: relative; @@ -833,10 +1515,10 @@ footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} vertical-align: middle; } -#boxLogin #boxData{ - float:left; - width:280px; - min-height:100px; +#boxLogin #boxData { + float: left; + width: 280px; + min-height: 100px; padding: 20px 0; text-align: left; margin-left: auto; @@ -844,44 +1526,54 @@ footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} background-color: transparent; } -#boxLogin #boxData label{ - float:left; - width:120px; +#boxLogin #boxData label { + float: left; + width: 120px; padding: 5px; margin: 10px 20px 0 10px; color: #045FB4; - font-weight:bold; + font-weight: bold; font-size: 14px; } -#boxLogin #boxData input{ - float:left; +#boxLogin #boxData input { + float: left; margin-top: 10px; margin-left: 40px; - border: 1px solid #ddd; - color:#039; - width:150px; + border: 1px solid #ddd; + color: #039; + width: 150px; background-color: #f5f5f5; font-size: 14px; } -#boxLogin #boxData #btnLogin{ - float:right; - width:24px; - height:24px; - margin-top:15px; +#boxLogin #boxData #btnLogin { + float: right; + width: 24px; + height: 24px; + margin-top: 15px; border: none; padding: 0; background-color: transparent !important; } -#boxLogin #boxData input:active, -#boxLogin #boxData input:focus{border: 1px solid #5897fb;} +#boxLogin #boxData input:active, +#boxLogin #boxData input:focus { + border: 1px solid #5897fb; +} -#boxLogin #boxActions {float: left; width: 100%; padding: .5em; text-align: right;} -#boxLogin #boxActions a{color: #c9c9c9;} +#boxLogin #boxActions { + float: left; + width: 100%; + padding: .5em; + text-align: right; +} -#boxLogout{ +#boxLogin #boxActions a { + color: #c9c9c9; +} + +#boxLogout { width: 250px; margin: 0 auto; font-size: 14px; @@ -892,7 +1584,7 @@ footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} padding: 0.5em; } -#boxUpdated{ +#boxUpdated { width: 350px; margin: 0 auto; font-size: 14px; @@ -905,27 +1597,36 @@ footer img{border: none;width: 16px;height: 16px;vertical-align: middle;} /* Warnings */ fieldset.warning { - padding:8px; - color:#b94a48; background-color:#f2dede; border:1px solid #eed3d7; - border-radius:5px; + padding: 8px; + color: #b94a48; + background-color: #f2dede; + border: 1px solid #eed3d7; + border-radius: 5px; +} + +fieldset.warning legend { + color: #b94a48 !important; +} + +fieldset.warning a { + color: #b94a48 !important; + font-weight: bold; } -fieldset.warning legend { color:#b94a48 !important; } -fieldset.warning a { color:#b94a48 !important; font-weight:bold; } /*Actions and Errors Page*/ -#actions{ +#actions { width: 100%; margin: auto; margin-bottom: 50px; line-height: 2em; } -#actions #logo{ +#actions #logo { width: 100%; margin-bottom: 30px; font-size: 18px; font-weight: bold; - text-align:center; + text-align: center; color: #a9a9a9; letter-spacing: 3px; box-shadow: 0px 8px 6px -6px #a9a9a9; @@ -933,14 +1634,14 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } -moz-box-shadow: 0px 8px 6px -6px #a9a9a9; } -#actions #logo #pageDesc{ +#actions #logo #pageDesc { position: relative; top: 30px; left: -100px; text-shadow: 3px 3px #fff; } -#actions ul.errors{ +#actions ul.errors { max-width: 40%; margin: 0 auto; list-style: none; @@ -948,64 +1649,69 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } text-align: left; } -#actions ul.errors>li{ +#actions ul.errors > li { margin: 1.5em auto; - border-radius:5px; + border-radius: 5px; padding: 0.5em; } -#actions ul.errors>li.err_critical{ - color:#b94a48; - background:#fed7d7; - border:1px solid #f00; +#actions ul.errors > li.err_critical { + color: #b94a48; + background: #fed7d7; + border: 1px solid #f00; } -#actions ul.errors>li.err_warning{ +#actions ul.errors > li.err_warning { color: orange; background: #FFF2D9; border: #ffe5b3 1px solid; } -#actions ul.errors>li.err_ok{ +#actions ul.errors > li.err_ok { color: green; background: #ecfde4; border: #dbfdcb 1px solid; font-weight: bold; } -#actions ul.errors>li>p.hint{ - background-image:url('../imgs/info.png'); - background-repeat:no-repeat; - color:#777777; - padding-left:25px; - background-position:0 0.3em; +#actions ul.errors > li > p.hint { + background-image: url('../imgs/info.png'); + background-repeat: no-repeat; + color: #777777; + padding-left: 25px; + background-position: 0 0.3em; font-size: 12px; } -#actions form fieldset legend{ - width:100%; +#actions form fieldset legend { + width: 100%; margin-top: 1em; - text-align:center; - font-weight:bold; - color:#999; - text-shadow:0 1px 0 white; + text-align: center; + font-weight: bold; + color: #999; + text-shadow: 0 1px 0 white; font-size: 14px; } #actions input[type="text"], #actions input[type="password"], -#actions input[type="email"]{ +#actions input[type="email"] { margin-top: 0.5em; border: 1px solid #a9a9a9; font-size: 14px; - -moz-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset; - -webkit-box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset; - box-shadow: 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.25) inset; + -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .25) inset; + -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .25) inset; + box-shadow: 0 1px 0 rgba(255, 255, 255, .15), 0 1px 1px rgba(0, 0, 0, .25) inset; } -#actions form input[type="checkbox"]+label { position:relative; margin:0; font-size:1em; text-shadow:#fff 0 1px 0; } +#actions form input[type="checkbox"] + label { + position: relative; + margin: 0; + font-size: 1em; + text-shadow: #fff 0 1px 0; +} -#actions .button{ +#actions .button { display: inline-block; width: 150px; margin: 15px; @@ -1020,4 +1726,26 @@ fieldset.warning a { color:#b94a48 !important; font-weight:bold; } box-shadow: 3px 3px 3px -3px #a9a9a9; -webkit-box-shadow: 8px 8px 6px -6px #a9a9a9; -moz-box-shadow: 8px 8px 6px -6px #a9a9a9; +} + +#actions.installer form { + width: 400px; + margin: 0 auto; + text-align: left; +} + +#actions.installer form legend { + text-align: left; + border-bottom: 1px solid #DFDFDF; + margin-bottom: 1em; +} + +#actions.installer form p { + width: 300px; + margin: 0 auto; +} + +#actions.installer div.buttons { + margin-top: 1em; + text-align: center; } \ No newline at end of file diff --git a/inc/auth.class.php b/inc/auth.class.php index b09f3c2c..785365b7 100644 --- a/inc/auth.class.php +++ b/inc/auth.class.php @@ -107,8 +107,8 @@ class SP_Auth return 702; } - self::$userName = ($attribs['name']) ? $attribs['name'] : $userLogin; - self::$userEmail = $attribs['mail']; + self::$userName = (isset($attribs['name'])) ? $attribs['name'] : $userLogin; + self::$userEmail = (isset($attribs['mail'])) ? $attribs['email'] : ''; return true; } diff --git a/inc/common.class.php b/inc/common.class.php index 7212522c..02573f5e 100644 --- a/inc/common.class.php +++ b/inc/common.class.php @@ -229,6 +229,8 @@ class SP_Common $msgHelp[24] = _('Permite que las cuentas sin acceso sean visibles sólo para las búsquedas.'); $msgHelp[25] = _('Muestra los resultados de búsqueda de cuentas en formato tarjeta.'); $msgHelp[26] = _('Habilita el modo de conexión con LDAP de Active Directory.'); + $msgHelp[27] = _('Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP.'); + $msgHelp[28] = _('Define el perfil de usuario por defecto para los nuevos usuarios de LDAP.'); if (array_key_exists($id, $msgHelp)) { echo ''; @@ -313,7 +315,7 @@ class SP_Common return $force; } - if (is_numeric($out) || is_numeric($default)) { + if ((is_numeric($out) && !is_string($default))|| is_numeric($default)) { return (int)$out; } diff --git a/inc/dbstructure.sql b/inc/dbstructure.sql index 6b255a5f..5158d8cf 100644 --- a/inc/dbstructure.sql +++ b/inc/dbstructure.sql @@ -111,7 +111,7 @@ CREATE TABLE `accounts` ( `account_customerId` int(10) unsigned NOT NULL, `account_name` varchar(50) NOT NULL, `account_categoryId` tinyint(3) unsigned NOT NULL, - `account_login` varchar(50) NOT NULL, + `account_login` varchar(50) DEFAULT NULL, `account_url` varchar(255) DEFAULT NULL, `account_pass` varbinary(32) NOT NULL, `account_IV` varbinary(32) NOT NULL, @@ -209,14 +209,14 @@ CREATE TABLE `usrData` ( `user_secGroupId` tinyint(3) unsigned DEFAULT NULL, `user_login` varchar(50) NOT NULL, `user_pass` varbinary(40) NOT NULL, - `user_mPass` varbinary(32) NOT NULL, + `user_mPass` varbinary(32) DEFAULT NULL, `user_mIV` varbinary(32) NOT NULL, `user_email` varchar(80) DEFAULT NULL, `user_notes` text, `user_count` int(10) unsigned NOT NULL DEFAULT '0', `user_profileId` tinyint(4) NOT NULL, - `user_lastLogin` datetime NOT NULL, - `user_lastUpdate` datetime NOT NULL, + `user_lastLogin` datetime DEFAULT NULL, + `user_lastUpdate` datetime DEFAULT NULL, `user_lastUpdateMPass` int(11) unsigned NOT NULL DEFAULT '0', `user_isAdminApp` bit(1) NOT NULL DEFAULT b'0', `user_isAdminAcc` bit(1) NOT NULL DEFAULT b'0', diff --git a/inc/init.php b/inc/init.php index 042abcc8..1368751d 100644 --- a/inc/init.php +++ b/inc/init.php @@ -306,10 +306,12 @@ class SP_Init private static function checkConfig() { if (!is_dir(self::$SERVERROOT . DIRECTORY_SEPARATOR . 'config')) { + clearstatcache(); self::initError(_('El directorio "/config" no existe')); } if (!is_writable(self::$SERVERROOT . DIRECTORY_SEPARATOR . 'config')) { + clearstatcache(); self::initError(_('No es posible escribir en el directorio "config"')); } @@ -317,6 +319,7 @@ class SP_Init $configPerms = decoct(fileperms(self::$SERVERROOT . DIRECTORY_SEPARATOR . 'config') & 0777); if (!SP_Util::runningOnWindows() && $configPerms != "750") { + clearstatcache(); self::initError(_('Los permisos del directorio "/config" son incorrectos'), _('Actual:') . ' ' . $configPerms . ' - ' . _('Necesario: 750')); } } diff --git a/inc/installer.class.php b/inc/installer.class.php index 1ad10bba..4f12ded4 100644 --- a/inc/installer.class.php +++ b/inc/installer.class.php @@ -26,6 +26,8 @@ defined('APP_ROOT') || die(_('No es posible acceder directamente a este archivo')); +define('IS_INSTALLER',1); + /** * Extender la clase Exception para mostrar ayuda en los mensajes */ diff --git a/inc/ldap.class.php b/inc/ldap.class.php index 311e42c9..9a61bf78 100644 --- a/inc/ldap.class.php +++ b/inc/ldap.class.php @@ -256,8 +256,6 @@ class SP_LDAP { $message['action'] = __FUNCTION__; - error_log('ADS:' . self::$isADS); - if (self::$isADS === true) { $filter = '(&(|(samaccountname=' . $userLogin . ')(cn=' . $userLogin . ')(uid=' . $userLogin . '))(|(objectClass=inetOrgPerson)(objectClass=person)(objectClass=simpleSecurityObject))(objectCategory=person))'; } else { diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.mo b/inc/locales/de_DE/LC_MESSAGES/messages.mo index 3c06e88b..6c05e857 100644 Binary files a/inc/locales/de_DE/LC_MESSAGES/messages.mo and b/inc/locales/de_DE/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/de_DE/LC_MESSAGES/messages.po b/inc/locales/de_DE/LC_MESSAGES/messages.po index 148e7701..128a3108 100644 --- a/inc/locales/de_DE/LC_MESSAGES/messages.po +++ b/inc/locales/de_DE/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-07-30 22:23+0100\n" -"PO-Revision-Date: 2014-07-30 22:24+0100\n" +"POT-Creation-Date: 2014-08-03 22:45+0100\n" +"PO-Revision-Date: 2014-08-03 22:45+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: de_DE\n" @@ -118,7 +118,7 @@ msgstr "Fehler beim Ändern des Benutzers" # Ey, this is a DEMO!! #: ../../../../ajax/ajax_appMgmtSave.php:138 #: ../../../../ajax/ajax_appMgmtSave.php:160 -#: ../../../../ajax/ajax_import.php:1 ../../../../ajax/ajax_configSave.php:210 +#: ../../../../ajax/ajax_import.php:1 ../../../../ajax/ajax_configSave.php:214 #: ../../../../ajax/ajax_migrate.php:1 msgid "Ey, esto es una DEMO!!" msgstr "Hey, dies ist eine DEMO!!" @@ -159,7 +159,7 @@ msgstr "Fehler beim Löschen eines Benutzers" #: ../../../../ajax/ajax_appMgmtSave.php:415 #: ../../../../ajax/ajax_accountSave.php:116 #: ../../../../ajax/ajax_accountSave.php:268 -#: ../../../../ajax/ajax_configSave.php:225 +#: ../../../../ajax/ajax_configSave.php:229 msgid "Acción Inválida" msgstr "Ungültige Aktion" @@ -196,7 +196,7 @@ msgstr "Fehler beim Ändern der Gruppe" # Users #: ../../../../ajax/ajax_appMgmtSave.php:218 #: ../../../../ajax/ajax_appMgmtSave.php:295 -#: ../../../../inc/tpl/profiles.php:88 ../../../../inc/tpl/accounts.php:279 +#: ../../../../inc/tpl/profiles.php:88 ../../../../inc/tpl/accounts.php:281 msgid "Usuarios" msgstr "Benutzer" @@ -274,7 +274,7 @@ msgstr "Profil löschen" # Profile #: ../../../../ajax/ajax_appMgmtSave.php:303 #: ../../../../ajax/ajax_getContent.php:114 -#: ../../../../ajax/ajax_doLogin.php:146 +#: ../../../../ajax/ajax_doLogin.php:153 #: ../../../../inc/profiles.class.php:203 #: ../../../../inc/profiles.class.php:254 ../../../../inc/tpl/users.php:98 msgid "Perfil" @@ -562,88 +562,88 @@ msgid "Error al vaciar el registro de eventos" msgstr "Fehler beim Löschen des Protokols" # Missing Wiki parameters -#: ../../../../ajax/ajax_configSave.php:94 +#: ../../../../ajax/ajax_configSave.php:96 msgid "Faltan parámetros de Wiki" msgstr "Fehlender Wiki-Parameter" # Missing LDAP parameters -#: ../../../../ajax/ajax_configSave.php:105 +#: ../../../../ajax/ajax_configSave.php:107 msgid "Faltan parámetros de LDAP" msgstr "Fehlender LDAP-Parameter" # Missing Mail parameters -#: ../../../../ajax/ajax_configSave.php:119 +#: ../../../../ajax/ajax_configSave.php:123 msgid "Faltan parámetros de Correo" msgstr "Fehlender Mail-Parameter" # Maximum file upload size in 16MB -#: ../../../../ajax/ajax_configSave.php:140 +#: ../../../../ajax/ajax_configSave.php:144 msgid "El tamaño máximo de archivo es de 16MB" msgstr "Maximale Dateigröße beim Upload ist 16MB" # Edit Configuration -#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:161 msgid "Modificar Configuración" msgstr "Konfiguration ändern" # Configuration updated -#: ../../../../ajax/ajax_configSave.php:165 +#: ../../../../ajax/ajax_configSave.php:169 msgid "Configuración actualizada" msgstr "Konfiguration aktualisiert" # Master Password updated -#: ../../../../ajax/ajax_configSave.php:174 -#: ../../../../ajax/ajax_configSave.php:220 +#: ../../../../ajax/ajax_configSave.php:178 +#: ../../../../ajax/ajax_configSave.php:224 #: ../../../../ajax/ajax_viewpass.php:68 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/html.class.php:461 msgid "Clave maestra actualizada" msgstr "Master-Passwort aktualisiert" # Restart session to update -#: ../../../../ajax/ajax_configSave.php:174 +#: ../../../../ajax/ajax_configSave.php:178 #: ../../../../ajax/ajax_viewpass.php:68 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/html.class.php:461 msgid "Reinicie la sesión para cambiarla" msgstr "Neue Sitzung beginnen" # Master Password needed -#: ../../../../ajax/ajax_configSave.php:178 +#: ../../../../ajax/ajax_configSave.php:182 msgid "Clave maestra no indicada" msgstr "Master-Passwort notwendig" # Password update must be confirmed -#: ../../../../ajax/ajax_configSave.php:182 +#: ../../../../ajax/ajax_configSave.php:186 msgid "Se ha de confirmar el cambio de clave" msgstr "Passwort muss bestätigt werden" # Password are the same -#: ../../../../ajax/ajax_configSave.php:186 +#: ../../../../ajax/ajax_configSave.php:190 msgid "Las claves son idénticas" msgstr "Passwörter sind identisch" # Master passwords mismatch -#: ../../../../ajax/ajax_configSave.php:190 +#: ../../../../ajax/ajax_configSave.php:194 msgid "Las claves maestras no coinciden" msgstr "Master-Passwort stimmt nicht" # Current master password mismatch -#: ../../../../ajax/ajax_configSave.php:194 +#: ../../../../ajax/ajax_configSave.php:198 msgid "La clave maestra actual no coincide" msgstr "Aktuelles Master-Passwort stimmt nicht" # Error on updating accounts' passwords -#: ../../../../ajax/ajax_configSave.php:203 +#: ../../../../ajax/ajax_configSave.php:207 msgid "Errores al actualizar las claves de las cuentas" msgstr "Fehler beim Ändern der Passwörter eines Kontos" # Update Master Password -#: ../../../../ajax/ajax_configSave.php:217 +#: ../../../../ajax/ajax_configSave.php:221 #: ../../../../inc/account.class.php:736 msgid "Actualizar Clave Maestra" msgstr "Master-Passwort ändern" # Error on saving master password's hash -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:227 msgid "Error al guardar el hash de la clave maestra" msgstr "Fehler beim Speichern des Hash für das Master-Passwort" @@ -676,7 +676,7 @@ msgstr "Profilverwaltung" #: ../../../../ajax/ajax_search.php:125 ../../../../ajax/ajax_search.php:236 #: ../../../../inc/tpl/request.php:38 ../../../../inc/tpl/groups.php:39 #: ../../../../inc/tpl/customers.php:39 ../../../../inc/tpl/profiles.php:39 -#: ../../../../inc/tpl/editpass.php:40 ../../../../inc/tpl/accounts.php:170 +#: ../../../../inc/tpl/editpass.php:40 ../../../../inc/tpl/accounts.php:172 #: ../../../../inc/tpl/categories.php:39 ../../../../inc/tpl/users.php:66 msgid "Nombre" msgstr "Name" @@ -690,9 +690,9 @@ msgstr "Anmeldung" # Group #: ../../../../ajax/ajax_getContent.php:115 -#: ../../../../ajax/ajax_doLogin.php:147 ../../../../inc/groups.class.php:151 +#: ../../../../ajax/ajax_doLogin.php:154 ../../../../inc/groups.class.php:151 #: ../../../../inc/groups.class.php:179 ../../../../inc/groups.class.php:205 -#: ../../../../inc/tpl/config.php:308 ../../../../inc/tpl/users.php:105 +#: ../../../../inc/tpl/config.php:328 ../../../../inc/tpl/users.php:105 msgid "Grupo" msgstr "Gruppe" @@ -785,8 +785,8 @@ msgstr "Konfiguration" # Master Password #: ../../../../ajax/ajax_getContent.php:320 ../../../../inc/tpl/login.php:40 #: ../../../../inc/tpl/login.php:47 ../../../../inc/tpl/profiles.php:76 -#: ../../../../inc/tpl/install.php:106 ../../../../inc/tpl/install.php:111 -#: ../../../../inc/tpl/install.php:112 +#: ../../../../inc/tpl/install.php:109 ../../../../inc/tpl/install.php:114 +#: ../../../../inc/tpl/install.php:115 msgid "Clave Maestra" msgstr "Master-Passwort" @@ -1006,7 +1006,7 @@ msgstr "Master-Passwort stimmt nicht" # View password #: ../../../../ajax/ajax_viewpass.php:81 ../../../../ajax/ajax_search.php:291 -#: ../../../../inc/tpl/profiles.php:50 ../../../../inc/tpl/accounts.php:510 +#: ../../../../inc/tpl/profiles.php:50 ../../../../inc/tpl/accounts.php:522 msgid "Ver Clave" msgstr "Passwort anzeigen" @@ -1021,25 +1021,26 @@ msgstr "Konto" # User #: ../../../../ajax/ajax_viewpass.php:95 ../../../../ajax/ajax_search.php:131 #: ../../../../ajax/ajax_search.php:248 ../../../../ajax/ajax_doLogin.php:77 -#: ../../../../ajax/ajax_doLogin.php:84 ../../../../ajax/ajax_doLogin.php:94 -#: ../../../../ajax/ajax_doLogin.php:104 ../../../../ajax/ajax_doLogin.php:145 -#: ../../../../res/test.php:64 ../../../../inc/init.php:513 -#: ../../../../inc/users.class.php:788 ../../../../inc/users.class.php:829 -#: ../../../../inc/tpl/passreset.php:48 ../../../../inc/tpl/request.php:49 -#: ../../../../inc/tpl/login.php:35 ../../../../inc/tpl/login.php:44 -#: ../../../../inc/tpl/install.php:89 ../../../../inc/tpl/install.php:90 -#: ../../../../inc/tpl/editpass.php:50 ../../../../inc/tpl/accounts.php:231 -#: ../../../../inc/tpl/config.php:384 ../../../../inc/tpl/eventlog.php:62 +#: ../../../../ajax/ajax_doLogin.php:84 ../../../../ajax/ajax_doLogin.php:91 +#: ../../../../ajax/ajax_doLogin.php:101 ../../../../ajax/ajax_doLogin.php:111 +#: ../../../../ajax/ajax_doLogin.php:152 ../../../../res/test.php:64 +#: ../../../../inc/init.php:516 ../../../../inc/users.class.php:788 +#: ../../../../inc/users.class.php:829 ../../../../inc/tpl/passreset.php:50 +#: ../../../../inc/tpl/request.php:49 ../../../../inc/tpl/login.php:35 +#: ../../../../inc/tpl/login.php:44 ../../../../inc/tpl/install.php:89 +#: ../../../../inc/tpl/install.php:90 ../../../../inc/tpl/editpass.php:53 +#: ../../../../inc/tpl/accounts.php:233 ../../../../inc/tpl/config.php:422 +#: ../../../../inc/tpl/eventlog.php:62 msgid "Usuario" msgstr "Benutzer" # Password #: ../../../../ajax/ajax_viewpass.php:99 ../../../../ajax/ajax_usrpass.php:53 -#: ../../../../ajax/ajax_usrpass.php:56 ../../../../inc/tpl/passreset.php:57 +#: ../../../../ajax/ajax_usrpass.php:56 ../../../../inc/tpl/passreset.php:61 #: ../../../../inc/tpl/login.php:37 ../../../../inc/tpl/login.php:45 #: ../../../../inc/tpl/install.php:99 ../../../../inc/tpl/install.php:100 -#: ../../../../inc/tpl/editpass.php:54 ../../../../inc/tpl/accounts.php:248 -#: ../../../../inc/tpl/config.php:392 ../../../../inc/tpl/users.php:129 +#: ../../../../inc/tpl/editpass.php:57 ../../../../inc/tpl/accounts.php:250 +#: ../../../../inc/tpl/config.php:430 ../../../../inc/tpl/users.php:129 msgid "Clave" msgstr "Passwort" @@ -1061,7 +1062,7 @@ msgstr "Nach Kunde sortieren" #: ../../../../inc/customer.class.php:57 #: ../../../../inc/customer.class.php:103 #: ../../../../inc/customer.class.php:128 ../../../../inc/tpl/request.php:41 -#: ../../../../inc/tpl/editpass.php:43 ../../../../inc/tpl/accounts.php:186 +#: ../../../../inc/tpl/editpass.php:44 ../../../../inc/tpl/accounts.php:188 msgid "Cliente" msgstr "Kunde" @@ -1079,7 +1080,7 @@ msgstr "Nach Kategorie sortieren" #: ../../../../ajax/ajax_search.php:128 ../../../../ajax/ajax_search.php:241 #: ../../../../inc/category.class.php:78 #: ../../../../inc/category.class.php:132 -#: ../../../../inc/category.class.php:178 ../../../../inc/tpl/accounts.php:203 +#: ../../../../inc/category.class.php:178 ../../../../inc/tpl/accounts.php:205 msgid "Categoría" msgstr "Kategorie" @@ -1095,8 +1096,8 @@ msgstr "Nach URL/IP sortieren" # URL / IP #: ../../../../ajax/ajax_search.php:134 ../../../../ajax/ajax_search.php:253 -#: ../../../../inc/tpl/request.php:45 ../../../../inc/tpl/editpass.php:46 -#: ../../../../inc/tpl/accounts.php:215 +#: ../../../../inc/tpl/request.php:45 ../../../../inc/tpl/editpass.php:48 +#: ../../../../inc/tpl/accounts.php:217 msgid "URL / IP" msgstr "URL/IP" @@ -1117,7 +1118,7 @@ msgid "Abrir enlace a" msgstr "Öffne Verweis nach" # Notes -#: ../../../../ajax/ajax_search.php:260 ../../../../inc/tpl/accounts.php:267 +#: ../../../../ajax/ajax_search.php:260 ../../../../inc/tpl/accounts.php:269 #: ../../../../inc/tpl/users.php:147 msgid "Notas" msgstr "Bemerkungen" @@ -1134,7 +1135,7 @@ msgstr "Verweis zum Wiki" # Copy Password to Clipboard #: ../../../../ajax/ajax_search.php:292 ../../../../ajax/ajax_search.php:344 -#: ../../../../inc/tpl/accounts.php:515 ../../../../inc/tpl/accounts.php:604 +#: ../../../../inc/tpl/accounts.php:527 ../../../../inc/tpl/accounts.php:616 #, fuzzy msgid "Copiar Clave en Portapapeles" msgstr "Copy to Clipboard Passwort" @@ -1145,7 +1146,7 @@ msgid "Más Acciones" msgstr "Weitere Aktionen" # Edit Account -#: ../../../../ajax/ajax_search.php:300 ../../../../inc/tpl/accounts.php:538 +#: ../../../../ajax/ajax_search.php:300 ../../../../inc/tpl/accounts.php:550 msgid "Modificar Cuenta" msgstr "Konto ändern" @@ -1156,17 +1157,17 @@ msgstr "Konto kopieren" # Delete Account #: ../../../../ajax/ajax_search.php:308 ../../../../inc/account.class.php:594 -#: ../../../../inc/tpl/accounts.php:73 ../../../../inc/tpl/accounts.php:550 +#: ../../../../inc/tpl/accounts.php:73 ../../../../inc/tpl/accounts.php:562 msgid "Eliminar Cuenta" msgstr "Konto löschen" # Request Modification -#: ../../../../ajax/ajax_search.php:315 ../../../../inc/tpl/accounts.php:543 +#: ../../../../ajax/ajax_search.php:315 ../../../../inc/tpl/accounts.php:555 msgid "Solicitar Modificación" msgstr "Änderung initiiert" # Password Copied to Clipboard -#: ../../../../ajax/ajax_search.php:348 ../../../../inc/tpl/accounts.php:608 +#: ../../../../ajax/ajax_search.php:348 ../../../../inc/tpl/accounts.php:620 #, fuzzy msgid "Clave Copiada al Portapapeles" msgstr "Passwort Copied to Clipboard" @@ -1197,36 +1198,39 @@ msgid "No tiene permisos para realizar esta operación" msgstr "Sie haben keine Erlaubnis für diese Aktion" # Password Change -#: ../../../../ajax/ajax_usrpass.php:48 ../../../../inc/auth.class.php:186 +#: ../../../../ajax/ajax_usrpass.php:48 ../../../../inc/auth.class.php:185 #: ../../../../inc/tpl/users.php:166 msgid "Cambio de Clave" msgstr "Passwortänderung" # Generate random password -#: ../../../../ajax/ajax_usrpass.php:57 ../../../../inc/tpl/editpass.php:59 -#: ../../../../inc/tpl/accounts.php:255 ../../../../inc/tpl/users.php:133 +#: ../../../../ajax/ajax_usrpass.php:57 ../../../../inc/tpl/editpass.php:63 +#: ../../../../inc/tpl/accounts.php:257 ../../../../inc/tpl/users.php:133 msgid "Generar clave aleatoria" msgstr "Zufälliges Passwort erzeugen" # Password (repeat) #: ../../../../ajax/ajax_usrpass.php:62 ../../../../ajax/ajax_usrpass.php:64 -#: ../../../../inc/tpl/editpass.php:63 ../../../../inc/tpl/accounts.php:259 +#: ../../../../inc/tpl/editpass.php:68 ../../../../inc/tpl/accounts.php:261 #: ../../../../inc/tpl/users.php:138 msgid "Clave (repetir)" msgstr "Passwort (Wiederholung)" # Password strength level -#: ../../../../ajax/ajax_usrpass.php:75 ../../../../inc/tpl/editpass.php:65 -#: ../../../../inc/tpl/accounts.php:262 ../../../../inc/tpl/users.php:141 +#: ../../../../ajax/ajax_usrpass.php:65 ../../../../inc/tpl/passreset.php:64 +#: ../../../../inc/tpl/passreset.php:72 ../../../../inc/tpl/masterpass.php:63 +#: ../../../../inc/tpl/install.php:104 ../../../../inc/tpl/install.php:119 +#: ../../../../inc/tpl/editpass.php:70 ../../../../inc/tpl/accounts.php:264 +#: ../../../../inc/tpl/users.php:141 msgid "Nivel de fortaleza de la clave" msgstr "Passwortstärke" # Save -#: ../../../../ajax/ajax_usrpass.php:82 ../../../../inc/tpl/masterpass.php:112 +#: ../../../../ajax/ajax_usrpass.php:81 ../../../../inc/tpl/masterpass.php:113 #: ../../../../inc/tpl/groups.php:64 ../../../../inc/tpl/customers.php:64 -#: ../../../../inc/tpl/profiles.php:134 ../../../../inc/tpl/editpass.php:81 -#: ../../../../inc/tpl/accounts.php:524 ../../../../inc/tpl/categories.php:64 -#: ../../../../inc/tpl/config.php:449 ../../../../inc/tpl/users.php:210 +#: ../../../../inc/tpl/profiles.php:134 ../../../../inc/tpl/editpass.php:87 +#: ../../../../inc/tpl/accounts.php:536 ../../../../inc/tpl/categories.php:64 +#: ../../../../inc/tpl/config.php:487 ../../../../inc/tpl/users.php:210 msgid "Guardar" msgstr "Speichern" @@ -1267,7 +1271,7 @@ msgstr "Keine Benutzername/Passwort eingegeben" # Session start (LDAP) #: ../../../../ajax/ajax_doLogin.php:54 ../../../../ajax/ajax_doLogin.php:75 -#: ../../../../ajax/ajax_doLogin.php:82 +#: ../../../../ajax/ajax_doLogin.php:82 ../../../../ajax/ajax_doLogin.php:89 msgid "Inicio sesión (LDAP)" msgstr "Sitzungsbeginn (LDAP)" @@ -1278,7 +1282,7 @@ msgstr "Fehler beim Speichern der LDAP-Benutzerdaten" # Internal error #: ../../../../ajax/ajax_doLogin.php:63 ../../../../ajax/ajax_doLogin.php:71 -#: ../../../../ajax/ajax_doLogin.php:115 ../../../../inc/import.class.php:237 +#: ../../../../ajax/ajax_doLogin.php:122 ../../../../inc/import.class.php:237 #: ../../../../inc/import.class.php:244 ../../../../inc/import.class.php:262 msgid "Error interno" msgstr "Interner Fehler" @@ -1289,12 +1293,13 @@ msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Fehler beim Ändern des Benutzer-Passworts in der BD" # Incorrect login -#: ../../../../ajax/ajax_doLogin.php:76 ../../../../ajax/ajax_doLogin.php:93 +#: ../../../../ajax/ajax_doLogin.php:76 ../../../../ajax/ajax_doLogin.php:100 msgid "Login incorrecto" msgstr "Fehlerhafte Anmeldung" # Wrong user/pass -#: ../../../../ajax/ajax_doLogin.php:80 ../../../../ajax/ajax_doLogin.php:97 +#: ../../../../ajax/ajax_doLogin.php:80 ../../../../ajax/ajax_doLogin.php:94 +#: ../../../../ajax/ajax_doLogin.php:104 msgid "Usuario/Clave incorrectos" msgstr "Falscher/s Benutzername/Passwort" @@ -1304,28 +1309,33 @@ msgstr "Falscher/s Benutzername/Passwort" msgid "Cuenta expirada" msgstr "Konto hinzugefügt" +# The user have no associated groups +#: ../../../../ajax/ajax_doLogin.php:90 +msgid "El usuario no tiene grupos asociados" +msgstr "Der Benutzer hat keine zugewiesene Gruppe" + # Session start (MySQL) -#: ../../../../ajax/ajax_doLogin.php:89 +#: ../../../../ajax/ajax_doLogin.php:96 msgid "Inicio sesión (MySQL)" msgstr "Sitzungsbeginn (MySQL)" # User disabled -#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:107 +#: ../../../../ajax/ajax_doLogin.php:110 ../../../../ajax/ajax_doLogin.php:114 msgid "Usuario deshabilitado" msgstr "Benutzer gespert" # Error on retrieving user data from DB -#: ../../../../ajax/ajax_doLogin.php:112 +#: ../../../../ajax/ajax_doLogin.php:119 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "Fehler beim Laden der Benutzerdaten aus der Datenbank" # The master password not saved or is incorrect -#: ../../../../ajax/ajax_doLogin.php:120 +#: ../../../../ajax/ajax_doLogin.php:127 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "Master-Passwort ist nicht sicher oder stimmt nicht" # Invalid Master Password -#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:126 +#: ../../../../ajax/ajax_doLogin.php:130 ../../../../ajax/ajax_doLogin.php:133 msgid "Clave maestra incorrecta" msgstr "Ungültiges Master-Passwort" @@ -1482,7 +1492,7 @@ msgstr "" "zu können." # Module unavilable -#: ../../../../inc/util.class.php:136 ../../../../inc/tpl/config.php:336 +#: ../../../../inc/util.class.php:136 ../../../../inc/tpl/config.php:374 msgid "Módulo no disponible" msgstr "Modul verfügbar" @@ -1555,8 +1565,8 @@ msgstr "Option nicht verfügbar" # Please, contact to administrator #: ../../../../inc/html.class.php:458 ../../../../inc/html.class.php:459 -#: ../../../../inc/html.class.php:460 ../../../../inc/init.php:411 -#: ../../../../inc/init.php:458 +#: ../../../../inc/html.class.php:460 ../../../../inc/init.php:414 +#: ../../../../inc/init.php:461 msgid "Consulte con el administrador" msgstr "Bitte kontaktieren Sie den Administrator" @@ -1609,23 +1619,23 @@ msgid "RDN de grupo encontrado" msgstr "Gruppen-RDN gefunden" # Error on searching user DN -#: ../../../../inc/ldap.class.php:272 ../../../../inc/ldap.class.php:278 -#: ../../../../inc/ldap.class.php:293 ../../../../inc/ldap.class.php:298 +#: ../../../../inc/ldap.class.php:270 ../../../../inc/ldap.class.php:276 +#: ../../../../inc/ldap.class.php:291 ../../../../inc/ldap.class.php:296 msgid "Error al buscar el DN del usuario" msgstr "Fehler beim Suchen nach Benutzer DN" # Error on searching user on LDAP -#: ../../../../inc/ldap.class.php:285 ../../../../inc/ldap.class.php:290 +#: ../../../../inc/ldap.class.php:283 ../../../../inc/ldap.class.php:288 msgid "Error al localizar el usuario en LDAP" msgstr "Fehler beim Suchen des Benutzers in LDAP" # Error on searching users group -#: ../../../../inc/ldap.class.php:366 ../../../../inc/ldap.class.php:372 +#: ../../../../inc/ldap.class.php:369 ../../../../inc/ldap.class.php:375 msgid "Error al buscar el grupo de usuarios" msgstr "Fehler beim Suchen nach Benutzergruppe" # No group found with that name -#: ../../../../inc/ldap.class.php:376 ../../../../inc/ldap.class.php:382 +#: ../../../../inc/ldap.class.php:379 ../../../../inc/ldap.class.php:385 msgid "No se encontró el grupo con ese nombre" msgstr "Keine Gruppe mit dem Namen gefunden" @@ -1922,6 +1932,20 @@ msgstr "Enables to show account's search results like a card format." msgid "Habilita el modo de conexión con LDAP de Active Directory." msgstr "Enables Active Directory LDAP connection mode." +# Define the default users group for new LDAP users +#: ../../../../inc/common.class.php:232 +#, fuzzy +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." +msgstr "Define the default users group for new LDAP users" + +# Define the default users profile for new LDAP users +#: ../../../../inc/common.class.php:233 +#, fuzzy +msgid "" +"Define el perfil de usuario por defecto para los nuevos usuarios de LDAP." +msgstr "Define the default users profile for new LDAP users" + # Error on updating history #: ../../../../inc/account.class.php:320 ../../../../inc/account.class.php:842 msgid "Error al actualizar el historial" @@ -2034,84 +2058,84 @@ msgid "Error en la verificación de la base de datos" msgstr "Fehler beim der Datenbanküberprüfung" # \"/config\" directory doesn't exist. -#: ../../../../inc/init.php:309 +#: ../../../../inc/init.php:310 msgid "El directorio \"/config\" no existe" msgstr "\"/config\" Verzeichnis existiert nicht." # Unable to write into \"/config\" directory -#: ../../../../inc/init.php:313 +#: ../../../../inc/init.php:315 msgid "No es posible escribir en el directorio \"config\"" msgstr "In das Verzeichnis \"/config\" kann nicht geschrieben werden" # \"/config\" directory permissions are incorrect -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 msgid "Los permisos del directorio \"/config\" son incorrectos" msgstr "\"/config\"-Verzeichnis hat falsche Zugriffsrechte" # Current: -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 #, fuzzy msgid "Actual:" msgstr "Current:" # Needed: 750 -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 #, fuzzy msgid "Necesario: 750" msgstr "Needed: 750" # Application in maintenance -#: ../../../../inc/init.php:386 +#: ../../../../inc/init.php:389 msgid "Aplicación en mantenimiento" msgstr "Anwendung im Wartungsmodus" # It will be running in short -#: ../../../../inc/init.php:386 +#: ../../../../inc/init.php:389 msgid "En breve estará operativa" msgstr "Es wird in Kürze gestartet" # The application needs to be updated -#: ../../../../inc/init.php:411 +#: ../../../../inc/init.php:414 msgid "La aplicación necesita actualizarse" msgstr "Die Anwendung muss aktualisiert werden" # Update -#: ../../../../inc/init.php:429 +#: ../../../../inc/init.php:432 msgid "Actualización" msgstr "Aktualisierung" # Version updating done. -#: ../../../../inc/init.php:430 +#: ../../../../inc/init.php:433 msgid "Actualización de versión realizada." msgstr "Version aktualisiert" # Version -#: ../../../../inc/init.php:431 +#: ../../../../inc/init.php:434 msgid "Versión" msgstr "Version" # Session -#: ../../../../inc/init.php:452 +#: ../../../../inc/init.php:455 msgid "Sesion" msgstr "Sitzung" # Session cannot be initialized. -#: ../../../../inc/init.php:452 ../../../../inc/init.php:457 +#: ../../../../inc/init.php:455 ../../../../inc/init.php:460 msgid "La sesión no puede ser inicializada" msgstr "Sitzung konnte nicht initialisiert werden" # Logout session -#: ../../../../inc/init.php:512 +#: ../../../../inc/init.php:515 msgid "Finalizar sesión" msgstr "Aus Sitzung ausloggen" # Inactive time -#: ../../../../inc/init.php:514 +#: ../../../../inc/init.php:517 msgid "Tiempo inactivo" msgstr "Zeit ohne Aktivität" # Total time -#: ../../../../inc/init.php:515 +#: ../../../../inc/init.php:518 msgid "Tiempo total" msgstr "Gesamtzeit" @@ -2141,27 +2165,27 @@ msgid "Actualizar BBDD" msgstr "DB aktualisieren" # Database update not needed. -#: ../../../../inc/upgrade.class.php:87 +#: ../../../../inc/upgrade.class.php:91 msgid "No es necesario actualizar la Base de Datos." msgstr "Keine Datenbankaktualisierung notwendig" # Error on updating database. -#: ../../../../inc/upgrade.class.php:93 +#: ../../../../inc/upgrade.class.php:97 msgid "Error al aplicar la actualización de la Base de Datos." msgstr "Fehler beim Ändern der Datenbank" # Database updating was done successfully. -#: ../../../../inc/upgrade.class.php:100 +#: ../../../../inc/upgrade.class.php:104 msgid "Actualización de la Base de Datos realizada correctamente." msgstr "Aktualisierung der Datenbank war erfolgreich." # Update Configuration -#: ../../../../inc/upgrade.class.php:168 +#: ../../../../inc/upgrade.class.php:172 msgid "Actualizar Configuración" msgstr "Konfiguration aktualisieren" # Configuration updating successfully done. -#: ../../../../inc/upgrade.class.php:169 +#: ../../../../inc/upgrade.class.php:173 msgid "Actualización de la Configuración realizada correctamente." msgstr "Configuration Aktualisierung erfolgreich durchgeführt." @@ -2177,13 +2201,13 @@ msgstr "Import beendet" # Wrong MySQL user/pass #: ../../../../inc/migrate.class.php:138 -#: ../../../../inc/installer.class.php:200 +#: ../../../../inc/installer.class.php:202 msgid "El usuario/clave de MySQL no es correcto" msgstr "Falsche MySQL Zugangsdaten" # Please, check database connection user #: ../../../../inc/migrate.class.php:139 -#: ../../../../inc/installer.class.php:201 +#: ../../../../inc/installer.class.php:203 msgid "Verifique el usuario de conexión con la Base de Datos" msgstr "Bitte überprüfen Sie den Datenbankbenutzer" @@ -2352,185 +2376,185 @@ msgid "Importar Configuración" msgstr "Importiere Konfiguration" # Enter admin username -#: ../../../../inc/installer.class.php:87 +#: ../../../../inc/installer.class.php:89 msgid "Indicar nombre de usuario admin" msgstr "Benutzername des Administrators eingeben" # Admin user to login to application -#: ../../../../inc/installer.class.php:88 +#: ../../../../inc/installer.class.php:90 msgid "Usuario admin para acceso a la aplicación" msgstr "Administrator der Anwendung" # Enter admin password -#: ../../../../inc/installer.class.php:93 +#: ../../../../inc/installer.class.php:95 msgid "Indicar la clave de admin" msgstr "Administrator-Passwort eingeben" # Application administrator's password -#: ../../../../inc/installer.class.php:94 +#: ../../../../inc/installer.class.php:96 msgid "Clave del usuario admin de la aplicación" msgstr "Administrationspasswort der Anwendung" # Enter master password -#: ../../../../inc/installer.class.php:100 +#: ../../../../inc/installer.class.php:102 msgid "Indicar la clave maestra" msgstr "Master-Passwort eingeben" # Master password to encrypt the passwords -#: ../../../../inc/installer.class.php:101 +#: ../../../../inc/installer.class.php:103 msgid "Clave maestra para encriptar las claves" msgstr "Master-Passwords zum Verschlüsseln der Passwörter" # Master password too short -#: ../../../../inc/installer.class.php:106 +#: ../../../../inc/installer.class.php:108 msgid "Clave maestra muy corta" msgstr "Master-Passwort zu kurz" # Master password length need to be at least 11 characters -#: ../../../../inc/installer.class.php:107 +#: ../../../../inc/installer.class.php:109 msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" msgstr "Master-Password muss mindestens 11 Zeichen lang sein" # Enter database user -#: ../../../../inc/installer.class.php:113 +#: ../../../../inc/installer.class.php:115 msgid "Indicar el usuario de la BBDD" msgstr "Datenbankbenutzer eingeben" # An user with database administrative rights -#: ../../../../inc/installer.class.php:114 +#: ../../../../inc/installer.class.php:116 msgid "Usuario con permisos de administrador de la Base de Datos" msgstr "Ein Benutzer mit administrativen Rechten in der Datenbank" # Enter database password -#: ../../../../inc/installer.class.php:119 +#: ../../../../inc/installer.class.php:121 msgid "Indicar la clave de la BBDD" msgstr "Datenbankpasswort eingeben" # Database administartor's password -#: ../../../../inc/installer.class.php:120 +#: ../../../../inc/installer.class.php:122 msgid "Clave del usuario administrador de la Base de Datos" msgstr "Administrationspasswort der Datenbank" # Enter database name -#: ../../../../inc/installer.class.php:125 +#: ../../../../inc/installer.class.php:127 msgid "Indicar el nombre de la BBDD" msgstr "Datenbankname eingeben" # Application database name. eg. syspass -#: ../../../../inc/installer.class.php:126 +#: ../../../../inc/installer.class.php:128 msgid "Nombre para la BBDD de la aplicación pej. syspass" msgstr "Datenbankname der Anwendung, z.B. syspass" # Database name can't contains \".\" -#: ../../../../inc/installer.class.php:131 +#: ../../../../inc/installer.class.php:133 msgid "El nombre de la BBDD no puede contener \".\"" msgstr "Name der Datenbank darf keine \".\" enthalten" # Please, remove dots on database name -#: ../../../../inc/installer.class.php:132 +#: ../../../../inc/installer.class.php:134 msgid "Elimine los puntos del nombre de la Base de Datos" msgstr "Bitte entfernen Sie den Punkt aus dem Datenbanknamen" # Enter database server -#: ../../../../inc/installer.class.php:138 +#: ../../../../inc/installer.class.php:140 msgid "Indicar el servidor de la BBDD" msgstr "Datenbank-Server eingeben" # Server where the database will be installed -#: ../../../../inc/installer.class.php:139 +#: ../../../../inc/installer.class.php:141 msgid "Servidor donde se instalará la Base de Datos" msgstr "Server auf dem die Datenbank installiert wird" # Database already exist -#: ../../../../inc/installer.class.php:246 +#: ../../../../inc/installer.class.php:248 msgid "La BBDD ya existe" msgstr "Datenbank existiert bereits" # Enter a new database or delete the existing one -#: ../../../../inc/installer.class.php:247 +#: ../../../../inc/installer.class.php:249 msgid "Indique una nueva Base de Datos o elimine la existente" msgstr "Neuen Datenbanknamen eingeben oder bestehende Datenbank löschen" # MySQL user already exist -#: ../../../../inc/installer.class.php:272 +#: ../../../../inc/installer.class.php:274 msgid "El usuario de MySQL ya existe" msgstr "MySQL Benutzer wird schon benutzt" # Enter a new username or delete the existing one -#: ../../../../inc/installer.class.php:273 +#: ../../../../inc/installer.class.php:275 msgid "Indique un nuevo usuario o elimine el existente" msgstr "Neuen Benutzernamen eingeben oder bestehenden Benutzer löschen" # Error on DB creation -#: ../../../../inc/installer.class.php:292 -#: ../../../../inc/installer.class.php:368 +#: ../../../../inc/installer.class.php:294 +#: ../../../../inc/installer.class.php:370 msgid "Error al crear la BBDD" msgstr "Fehler beim Anlegen der Datenbank" # Please, check database user permissions -#: ../../../../inc/installer.class.php:293 -#: ../../../../inc/installer.class.php:304 +#: ../../../../inc/installer.class.php:295 +#: ../../../../inc/installer.class.php:306 msgid "Verifique los permisos del usuario de la Base de Datos" msgstr "Bitte überprüfen Sie die Datenbank-Zugriffsberechtigungen" # Error on setting database permissions -#: ../../../../inc/installer.class.php:303 +#: ../../../../inc/installer.class.php:305 msgid "Error al establecer permisos de la BBDD" msgstr "Fehler beim Setzen der Datenbank-Berechtigungen" # Database structure file doesn't exist -#: ../../../../inc/installer.class.php:346 +#: ../../../../inc/installer.class.php:348 msgid "El archivo de estructura de la BBDD no existe" msgstr "Datei mit Datenbank-Schema existiert nicht" # Unable to create application database. Please, download it again. -#: ../../../../inc/installer.class.php:347 +#: ../../../../inc/installer.class.php:349 msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." msgstr "" "Anwendungsdatenbank kann nicht angelegt werden. Bitte erneut herunterladen" # Error on selecting database. -#: ../../../../inc/installer.class.php:353 +#: ../../../../inc/installer.class.php:355 msgid "Error al seleccionar la BBDD" msgstr "Fehler beim Auswählen der Datenbank" # Unable to use the database to create the structure. Check permissions and it doesn't exist. -#: ../../../../inc/installer.class.php:354 +#: ../../../../inc/installer.class.php:356 msgid "" "No es posible usar la Base de Datos para crear la estructura. Compruebe los " "permisos y que no exista." msgstr "Datenbank kann nicht gefunden werden. Überprüfen Sie die Berechtigung." # Error on creating database structure. -#: ../../../../inc/installer.class.php:369 +#: ../../../../inc/installer.class.php:371 msgid "Error al crear la estructura de la Base de Datos." msgstr "Fehler beim Anlegen der Datenbankstruktur" # Error on creating \"admin\" group -#: ../../../../inc/installer.class.php:395 +#: ../../../../inc/installer.class.php:397 msgid "Error al crear el grupo \"admin\"" msgstr "Fehler beim Anlegen der \"admin\" Gruppe" # Warn to developer -#: ../../../../inc/installer.class.php:396 -#: ../../../../inc/installer.class.php:428 -#: ../../../../inc/installer.class.php:446 -#: ../../../../inc/installer.class.php:461 +#: ../../../../inc/installer.class.php:398 +#: ../../../../inc/installer.class.php:430 +#: ../../../../inc/installer.class.php:448 +#: ../../../../inc/installer.class.php:463 msgid "Informe al desarrollador" msgstr "Warnung an Entwickler" # Error on creating \"admin\" profile -#: ../../../../inc/installer.class.php:427 +#: ../../../../inc/installer.class.php:429 msgid "Error al crear el perfil \"admin\"" msgstr "Fehler beim Anlegen des \"admin\" Profils" # Error on creating \"admin\" user -#: ../../../../inc/installer.class.php:445 +#: ../../../../inc/installer.class.php:447 msgid "Error al crear el usuario \"admin\"" msgstr "Fehler beim Anlegen des \"admin\" Benutzers" # Error on updating master password for user \"admin\" -#: ../../../../inc/installer.class.php:460 +#: ../../../../inc/installer.class.php:462 msgid "Error al actualizar la clave maestra del usuario \"admin\"" msgstr "Fehler beim Ändern des Master-Passworts des Benutzers \"admin\"" @@ -2650,91 +2674,86 @@ msgstr "XML file not supported" msgid "No es posible detectar la aplicación que exportó los datos" msgstr "Unable to detect the application the data was exported from" -# The user have no associated groups -#: ../../../../inc/auth.class.php:107 -msgid "El usuario no tiene grupos asociados" -msgstr "Der Benutzer hat keine zugewiesene Gruppe" - # A request for changing your user password has been done. -#: ../../../../inc/auth.class.php:187 +#: ../../../../inc/auth.class.php:186 #, fuzzy msgid "Se ha solicitado el cambio de su clave de usuario." msgstr "Ein Anfrage zum Ändern ihres Benutzerpassworts wurde begonnen." # In order to complete the process, please go to this URL: -#: ../../../../inc/auth.class.php:189 +#: ../../../../inc/auth.class.php:188 msgid "Para completar el proceso es necesario que acceda a la siguiente URL:" msgstr "Zum Abschluss dieses Vorgangs, gehen Sie bitte zu der URL: " # If you have not requested this action, please dismiss this message. -#: ../../../../inc/auth.class.php:193 +#: ../../../../inc/auth.class.php:192 msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "" "Wenn Sie diese Aktion nicht ausgelöst haben, dann ignorieren Sie bitte diese " "Meldung" # Request Password Change -#: ../../../../inc/tpl/passreset.php:45 +#: ../../../../inc/tpl/passreset.php:46 msgid "Solicitud de Cambio de Clave" msgstr "Passwortänderung initiiert." # User login -#: ../../../../inc/tpl/passreset.php:48 +#: ../../../../inc/tpl/passreset.php:49 msgid "Login del Usuario" msgstr "Benutzer-Anmeldung" # User Email -#: ../../../../inc/tpl/passreset.php:52 +#: ../../../../inc/tpl/passreset.php:54 msgid "Email del Usuario" msgstr "Benutzer-E-Mail" # Email -#: ../../../../inc/tpl/passreset.php:52 ../../../../inc/tpl/users.php:112 +#: ../../../../inc/tpl/passreset.php:55 ../../../../inc/tpl/users.php:112 msgid "Email" msgstr "E-Mail" # New Password -#: ../../../../inc/tpl/passreset.php:57 +#: ../../../../inc/tpl/passreset.php:60 msgid "Nueva Clave" msgstr "Neues Passwort" # New Password (Verify) -#: ../../../../inc/tpl/passreset.php:61 +#: ../../../../inc/tpl/passreset.php:68 msgid "Nueva Clave (Verificar)" msgstr "Neues Passwort (Wіederholung)" # Password (Verify) -#: ../../../../inc/tpl/passreset.php:61 +#: ../../../../inc/tpl/passreset.php:69 msgid "Clave (Verificar)" msgstr "Passwort (Wiederholung)" # Back -#: ../../../../inc/tpl/passreset.php:72 +#: ../../../../inc/tpl/passreset.php:82 msgid "Volver" msgstr "Zurück" # Go back to login -#: ../../../../inc/tpl/passreset.php:72 +#: ../../../../inc/tpl/passreset.php:82 msgid "Volver a iniciar sesión" msgstr "Zurück zur Anmeldung" # Request -#: ../../../../inc/tpl/passreset.php:74 +#: ../../../../inc/tpl/passreset.php:84 msgid "Solicitar" msgstr "Anfrage" # Request password change -#: ../../../../inc/tpl/passreset.php:74 +#: ../../../../inc/tpl/passreset.php:85 msgid "Solicitar cambio de clave" msgstr "Starte Passwortänderung" # Change -#: ../../../../inc/tpl/passreset.php:76 +#: ../../../../inc/tpl/passreset.php:87 msgid "Cambiar" msgstr "Ändern" # Change password -#: ../../../../inc/tpl/passreset.php:76 +#: ../../../../inc/tpl/passreset.php:88 msgid "Cambiar Clave" msgstr "Passwort ändern" @@ -2754,8 +2773,8 @@ msgid "Descripción de la petición" msgstr "Beschreibung der Anfrage" # Back -#: ../../../../inc/tpl/request.php:68 ../../../../inc/tpl/editpass.php:78 -#: ../../../../inc/tpl/accounts.php:496 +#: ../../../../inc/tpl/request.php:68 ../../../../inc/tpl/editpass.php:83 +#: ../../../../inc/tpl/accounts.php:508 msgid "Atrás" msgstr "Zurück" @@ -2805,53 +2824,53 @@ msgid "Nueva Clave Maestra" msgstr "Neues Master-Passwort" # New Master Password (repeat) -#: ../../../../inc/tpl/masterpass.php:67 +#: ../../../../inc/tpl/masterpass.php:68 msgid "Nueva Clave Maestra (repetir)" msgstr "Neues Master-Passwort (Wiederholung)" # Don't modify accounts -#: ../../../../inc/tpl/masterpass.php:75 +#: ../../../../inc/tpl/masterpass.php:76 msgid "No modificar cuentas" msgstr "Konten nicht verändern" # NO -#: ../../../../inc/tpl/masterpass.php:79 ../../../../inc/tpl/masterpass.php:98 -#: ../../../../inc/tpl/masterpass.php:123 ../../../../inc/tpl/migrate.php:81 -#: ../../../../inc/tpl/migrate.php:130 ../../../../inc/tpl/accounts.php:298 -#: ../../../../inc/tpl/accounts.php:324 ../../../../inc/tpl/accounts.php:581 +#: ../../../../inc/tpl/masterpass.php:80 ../../../../inc/tpl/masterpass.php:99 +#: ../../../../inc/tpl/masterpass.php:125 ../../../../inc/tpl/migrate.php:81 +#: ../../../../inc/tpl/migrate.php:130 ../../../../inc/tpl/accounts.php:305 +#: ../../../../inc/tpl/accounts.php:336 ../../../../inc/tpl/accounts.php:593 msgid "NO" msgstr "Nein" # Confirm Change -#: ../../../../inc/tpl/masterpass.php:85 +#: ../../../../inc/tpl/masterpass.php:86 msgid "Confirmar cambio" msgstr "Änderung bestätigen" # Warning -#: ../../../../inc/tpl/masterpass.php:88 ../../../../inc/tpl/masterpass.php:91 -#: ../../../../inc/tpl/masterpass.php:94 ../../../../inc/tpl/migrate.php:78 +#: ../../../../inc/tpl/masterpass.php:89 ../../../../inc/tpl/masterpass.php:92 +#: ../../../../inc/tpl/masterpass.php:95 ../../../../inc/tpl/migrate.php:78 msgid "Atención" msgstr "Warnung" # You should save the new password on a secure place -#: ../../../../inc/tpl/masterpass.php:89 +#: ../../../../inc/tpl/masterpass.php:90 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Sie sollten das neue Passwort an einem sicheren Ort aufbewahren" # All accounts passwords will be encrypted again. -#: ../../../../inc/tpl/masterpass.php:92 +#: ../../../../inc/tpl/masterpass.php:93 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Alle Passwörter der Konten werden neu verschlüsselt." # All users must re-enter the new master password. -#: ../../../../inc/tpl/masterpass.php:95 +#: ../../../../inc/tpl/masterpass.php:96 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "All Benutzer müssen das neue Master-Passwort eingeben." # YES -#: ../../../../inc/tpl/masterpass.php:125 ../../../../inc/tpl/migrate.php:132 -#: ../../../../inc/tpl/accounts.php:298 ../../../../inc/tpl/accounts.php:324 -#: ../../../../inc/tpl/accounts.php:583 +#: ../../../../inc/tpl/masterpass.php:127 ../../../../inc/tpl/migrate.php:132 +#: ../../../../inc/tpl/accounts.php:305 ../../../../inc/tpl/accounts.php:336 +#: ../../../../inc/tpl/accounts.php:595 msgid "SI" msgstr "Ja" @@ -2871,26 +2890,26 @@ msgid "Importar phpPMS" msgstr "phpPMS Import" # DB Username -#: ../../../../inc/tpl/migrate.php:40 ../../../../inc/tpl/install.php:125 -#: ../../../../inc/tpl/install.php:126 +#: ../../../../inc/tpl/migrate.php:40 ../../../../inc/tpl/install.php:131 +#: ../../../../inc/tpl/install.php:132 msgid "Usuario BBDD" msgstr "Datenbankbenutzer" # DB Password -#: ../../../../inc/tpl/migrate.php:49 ../../../../inc/tpl/install.php:133 -#: ../../../../inc/tpl/install.php:134 +#: ../../../../inc/tpl/migrate.php:49 ../../../../inc/tpl/install.php:139 +#: ../../../../inc/tpl/install.php:140 msgid "Clave BBDD" msgstr "Datenbank-Passwort" # DB Name -#: ../../../../inc/tpl/migrate.php:57 ../../../../inc/tpl/install.php:141 -#: ../../../../inc/tpl/install.php:142 +#: ../../../../inc/tpl/migrate.php:57 ../../../../inc/tpl/install.php:147 +#: ../../../../inc/tpl/install.php:148 msgid "Nombre BBDD" msgstr "Datenbankname" # DB Server -#: ../../../../inc/tpl/migrate.php:66 ../../../../inc/tpl/install.php:150 -#: ../../../../inc/tpl/install.php:151 +#: ../../../../inc/tpl/migrate.php:66 ../../../../inc/tpl/install.php:156 +#: ../../../../inc/tpl/install.php:157 msgid "Servidor BBDD" msgstr "Datenbank-Server" @@ -3040,7 +3059,7 @@ msgid "Ver archivos de cuenta" msgstr "Dateien des Kontos anzeigen" # Files -#: ../../../../inc/tpl/profiles.php:65 ../../../../inc/tpl/accounts.php:346 +#: ../../../../inc/tpl/profiles.php:65 ../../../../inc/tpl/accounts.php:358 msgid "Archivos" msgstr "Dateien" @@ -3085,7 +3104,7 @@ msgid "Gestión de grupos" msgstr "Gruppenverwaltung" # Groups -#: ../../../../inc/tpl/profiles.php:90 ../../../../inc/tpl/accounts.php:305 +#: ../../../../inc/tpl/profiles.php:90 ../../../../inc/tpl/accounts.php:312 msgid "Grupos" msgstr "Gruppen" @@ -3160,19 +3179,20 @@ msgid "Cuentas por página" msgstr "Konten pro Seite" # Select Customer -#: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/accounts.php:560 +#: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/accounts.php:572 msgid "Seleccionar Cliente" msgstr "Kunde auswählen" # No results #: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/search.php:85 -#: ../../../../inc/tpl/accounts.php:562 ../../../../inc/tpl/accounts.php:567 +#: ../../../../inc/tpl/accounts.php:574 ../../../../inc/tpl/accounts.php:579 +#: ../../../../inc/tpl/config.php:566 ../../../../inc/tpl/config.php:571 #: ../../../../inc/tpl/users.php:220 ../../../../inc/tpl/users.php:225 msgid "Sin resultados" msgstr "Kein Ergebnis" # Select category -#: ../../../../inc/tpl/search.php:85 ../../../../inc/tpl/accounts.php:565 +#: ../../../../inc/tpl/search.php:85 ../../../../inc/tpl/accounts.php:577 msgid "Seleccionar Categoría" msgstr "Kategorie auswählen" @@ -3231,58 +3251,58 @@ msgstr "sysPass administrator's login" # Show Password #: ../../../../inc/tpl/install.php:96 ../../../../inc/tpl/install.php:97 -#: ../../../../inc/tpl/install.php:108 ../../../../inc/tpl/install.php:109 -#: ../../../../inc/tpl/install.php:131 ../../../../inc/tpl/install.php:132 +#: ../../../../inc/tpl/install.php:111 ../../../../inc/tpl/install.php:112 +#: ../../../../inc/tpl/install.php:137 ../../../../inc/tpl/install.php:138 #, fuzzy msgid "Mostrar Clave" msgstr "Show Password" # DB Configuration -#: ../../../../inc/tpl/install.php:118 +#: ../../../../inc/tpl/install.php:124 msgid "Configurar BBDD" msgstr "Datenbank-Konfiguration" # User login with with database administrative rights -#: ../../../../inc/tpl/install.php:124 +#: ../../../../inc/tpl/install.php:130 #, fuzzy msgid "Login de usuario con permisos de administrador de MySQL" msgstr "User login with with database administrative rights" # sysPass database name -#: ../../../../inc/tpl/install.php:140 +#: ../../../../inc/tpl/install.php:146 #, fuzzy msgid "Nombre de la base de datos para sysPass" msgstr "Name der sysPass-Datenbank eingeben" # sysPass database server name -#: ../../../../inc/tpl/install.php:149 +#: ../../../../inc/tpl/install.php:155 #, fuzzy msgid "Nombre del servidor de la base de datos de sysPass" msgstr "Server der sysPass-Datenbank eingeben" # It does not create or verify the user's permissions on the DB -#: ../../../../inc/tpl/install.php:159 +#: ../../../../inc/tpl/install.php:165 msgid "No crea ni verifica los permisos del usuario sobre la BBDD" msgstr "Zugangsberechtigungen zur DB werden weder angelegt nocht überprüft" # Hosting Mode -#: ../../../../inc/tpl/install.php:161 ../../../../inc/tpl/install.php:178 -#: ../../../../inc/tpl/install.php:180 +#: ../../../../inc/tpl/install.php:167 ../../../../inc/tpl/install.php:185 +#: ../../../../inc/tpl/install.php:187 msgid "Modo Hosting" msgstr "Hosting-Modus" # Install -#: ../../../../inc/tpl/install.php:167 +#: ../../../../inc/tpl/install.php:174 msgid "Instalar" msgstr "Installieren" # Edit Account Password -#: ../../../../inc/tpl/editpass.php:35 ../../../../inc/tpl/accounts.php:531 +#: ../../../../inc/tpl/editpass.php:35 ../../../../inc/tpl/accounts.php:543 msgid "Modificar Clave de Cuenta" msgstr "Konto-Passwort ändern" # The generated password will be shown here -#: ../../../../inc/tpl/editpass.php:57 ../../../../inc/tpl/accounts.php:252 +#: ../../../../inc/tpl/editpass.php:60 ../../../../inc/tpl/accounts.php:254 msgid "La clave generada se mostrará aquí" msgstr "Das erzeugte Passwort wird hier gezeigt" @@ -3292,127 +3312,127 @@ msgid "Editar Cuenta" msgstr "Konto ändern" # Account name -#: ../../../../inc/tpl/accounts.php:175 +#: ../../../../inc/tpl/accounts.php:177 msgid "Nombre de cuenta" msgstr "Kontoname" # Search down or enter -#: ../../../../inc/tpl/accounts.php:194 +#: ../../../../inc/tpl/accounts.php:196 msgid "Buscar en desplegable o introducir" msgstr "Weitersuchen" # Access URL or IP -#: ../../../../inc/tpl/accounts.php:220 +#: ../../../../inc/tpl/accounts.php:222 msgid "URL o IP de acceso" msgstr "Auf URL/IP zugreifen" # Access user -#: ../../../../inc/tpl/accounts.php:236 +#: ../../../../inc/tpl/accounts.php:238 msgid "Usuario de acceso" msgstr "Benutzer für Zugriff" # Notes about the account -#: ../../../../inc/tpl/accounts.php:269 +#: ../../../../inc/tpl/accounts.php:271 msgid "Notas sobre la cuenta" msgstr "Bemerkungen zum Konto" # Permissions -#: ../../../../inc/tpl/accounts.php:275 +#: ../../../../inc/tpl/accounts.php:277 msgid "Permisos" msgstr "Berechtigungen" # Enable Edit -#: ../../../../inc/tpl/accounts.php:297 ../../../../inc/tpl/accounts.php:323 +#: ../../../../inc/tpl/accounts.php:304 ../../../../inc/tpl/accounts.php:335 msgid "Hablitar edición" msgstr "Erlaube Änderungen" # Drop files here (max. 5) or click to select -#: ../../../../inc/tpl/accounts.php:359 +#: ../../../../inc/tpl/accounts.php:371 msgid "Soltar archivos aquí (max. 5) o click para seleccionar" msgstr "Dateien hier fallen lassen (max. 5) oder zum selektieren anklicken" # Maximum file size -#: ../../../../inc/tpl/accounts.php:359 ../../../../inc/tpl/config.php:172 +#: ../../../../inc/tpl/accounts.php:371 ../../../../inc/tpl/config.php:192 msgid "Tamaño máximo de archivo" msgstr "Maximale Dateigröße" # History -#: ../../../../inc/tpl/accounts.php:371 +#: ../../../../inc/tpl/accounts.php:383 msgid "Historial" msgstr "Protokol" # Select date -#: ../../../../inc/tpl/accounts.php:386 +#: ../../../../inc/tpl/accounts.php:398 msgid "Seleccionar fecha" msgstr "Datum auswählen" # Last Modification -#: ../../../../inc/tpl/accounts.php:393 ../../../../inc/tpl/users.php:183 +#: ../../../../inc/tpl/accounts.php:405 ../../../../inc/tpl/users.php:183 msgid "Última Modificación" msgstr "Letzte Änderung" # by -#: ../../../../inc/tpl/accounts.php:395 +#: ../../../../inc/tpl/accounts.php:407 msgid "por" msgstr "durch" # Visits -#: ../../../../inc/tpl/accounts.php:405 +#: ../../../../inc/tpl/accounts.php:417 msgid "Visitas" msgstr "Besuche" # Date Added -#: ../../../../inc/tpl/accounts.php:409 +#: ../../../../inc/tpl/accounts.php:421 msgid "Fecha Alta" msgstr "Datum hinzugefügt" # Creator -#: ../../../../inc/tpl/accounts.php:413 +#: ../../../../inc/tpl/accounts.php:425 msgid "Creador" msgstr "Erzeuger" # Main Group -#: ../../../../inc/tpl/accounts.php:417 +#: ../../../../inc/tpl/accounts.php:429 msgid "Grupo Principal" msgstr "Hauptgruppe" # Secondary Users -#: ../../../../inc/tpl/accounts.php:422 +#: ../../../../inc/tpl/accounts.php:434 msgid "Usuarios Secundarios" msgstr "Unter-Benutzer" # Secondary Groups -#: ../../../../inc/tpl/accounts.php:443 +#: ../../../../inc/tpl/accounts.php:455 msgid "Grupos Secundarios" msgstr "Untergruppe" # Date Modified -#: ../../../../inc/tpl/accounts.php:465 +#: ../../../../inc/tpl/accounts.php:477 msgid "Fecha Edición" msgstr "Änderungsdatum" # Editor -#: ../../../../inc/tpl/accounts.php:469 +#: ../../../../inc/tpl/accounts.php:481 msgid "Editor" msgstr "Editor" # View Current -#: ../../../../inc/tpl/accounts.php:491 +#: ../../../../inc/tpl/accounts.php:503 msgid "Ver Actual" msgstr "Ansehen" # Restore account from this point -#: ../../../../inc/tpl/accounts.php:503 +#: ../../../../inc/tpl/accounts.php:515 msgid "Restaurar cuenta desde este punto" msgstr "Wiederherstellen Konto von diesem Punkt" # Select secondary groups -#: ../../../../inc/tpl/accounts.php:570 +#: ../../../../inc/tpl/accounts.php:582 msgid "Seleccionar grupos secundarios" msgstr "Untergruppe auswählen" # Select users -#: ../../../../inc/tpl/accounts.php:573 +#: ../../../../inc/tpl/accounts.php:585 msgid "Seleccionar usuarios" msgstr "Benutzer auswählen" @@ -3427,201 +3447,223 @@ msgid "Descripción de la categoría" msgstr "Beschreibung der Kategorie" # Site -#: ../../../../inc/tpl/config.php:63 +#: ../../../../inc/tpl/config.php:83 msgid "Sitio" msgstr "Site" # Language -#: ../../../../inc/tpl/config.php:71 +#: ../../../../inc/tpl/config.php:91 msgid "Idioma" msgstr "Sprache" # Session timeout (s) -#: ../../../../inc/tpl/config.php:85 +#: ../../../../inc/tpl/config.php:105 msgid "Timeout de sesión (s)" msgstr "Ablauf der Sitzung (s)" # Enable event log -#: ../../../../inc/tpl/config.php:93 +#: ../../../../inc/tpl/config.php:113 msgid "Habilitar log de eventos" msgstr "Protokol einschalten" # Enable debug -#: ../../../../inc/tpl/config.php:103 +#: ../../../../inc/tpl/config.php:123 msgid "Habilitar depuración" msgstr "Debugging einschalten" # Maintenance mode. -#: ../../../../inc/tpl/config.php:113 +#: ../../../../inc/tpl/config.php:133 msgid "Modo mantenimiento" msgstr "Wartungsmodus" # Check for updates -#: ../../../../inc/tpl/config.php:123 +#: ../../../../inc/tpl/config.php:143 msgid "Comprobar actualizaciones" msgstr "Nach Updates schauen" # Account name as link -#: ../../../../inc/tpl/config.php:133 +#: ../../../../inc/tpl/config.php:153 msgid "Nombre de cuenta como enlace" msgstr "Kontoname als Link" # Files management -#: ../../../../inc/tpl/config.php:143 +#: ../../../../inc/tpl/config.php:163 msgid "Gestión de archivos" msgstr "Dateiverwaltung" # Global searches -#: ../../../../inc/tpl/config.php:153 +#: ../../../../inc/tpl/config.php:173 msgid "Búsquedas globales" msgstr "Globale Suchen" # Allowed file extensions -#: ../../../../inc/tpl/config.php:163 +#: ../../../../inc/tpl/config.php:183 msgid "Extensiones de archivos permitidas" msgstr "Erlaubte Dateiendungen" # Results per page -#: ../../../../inc/tpl/config.php:181 +#: ../../../../inc/tpl/config.php:201 msgid "Resultados por página" msgstr "Treffer pro Seite" # Results as Cards -#: ../../../../inc/tpl/config.php:197 +#: ../../../../inc/tpl/config.php:217 msgid "Resultados en Tarjetas" msgstr "Results as Cards" # Wiki -#: ../../../../inc/tpl/config.php:209 +#: ../../../../inc/tpl/config.php:229 msgid "Wiki" msgstr "Wiki" # Enable Wiki links -#: ../../../../inc/tpl/config.php:215 +#: ../../../../inc/tpl/config.php:235 msgid "Habilitar enlaces Wiki" msgstr "Wike-Links einschalten" # Wiki search URL -#: ../../../../inc/tpl/config.php:225 +#: ../../../../inc/tpl/config.php:245 msgid "URL de búsqueda Wiki" msgstr "Wiki Such-URL" # Wiki page URL -#: ../../../../inc/tpl/config.php:234 +#: ../../../../inc/tpl/config.php:254 msgid "URL de página en Wiki" msgstr "Wike URL" # Account name preffix -#: ../../../../inc/tpl/config.php:243 +#: ../../../../inc/tpl/config.php:263 msgid "Prefijo para nombre de cuenta" msgstr "Präfix eines Kontonamens" # LDAP -#: ../../../../inc/tpl/config.php:255 +#: ../../../../inc/tpl/config.php:275 msgid "LDAP" msgstr "LDAP" # Enable LDAP -#: ../../../../inc/tpl/config.php:262 +#: ../../../../inc/tpl/config.php:282 msgid "Habilitar LDAP" msgstr "LDAP verwenden" # Server -#: ../../../../inc/tpl/config.php:272 ../../../../inc/tpl/config.php:359 +#: ../../../../inc/tpl/config.php:292 ../../../../inc/tpl/config.php:397 msgid "Servidor" msgstr "Server" # Bind User -#: ../../../../inc/tpl/config.php:281 +#: ../../../../inc/tpl/config.php:301 msgid "Usuario de conexión" msgstr "Benutzer für Bind" # Bind Password -#: ../../../../inc/tpl/config.php:290 +#: ../../../../inc/tpl/config.php:310 msgid "Clave de conexión" msgstr "LDAP-Passwort" # Search base -#: ../../../../inc/tpl/config.php:299 +#: ../../../../inc/tpl/config.php:319 msgid "Base de búsqueda" msgstr "Suchpräfix" +# Default Group +#: ../../../../inc/tpl/config.php:337 +#, fuzzy +msgid "Grupo por Defecto" +msgstr "Default Group" + +# Default Profile +#: ../../../../inc/tpl/config.php:346 +#, fuzzy +msgid "Perfil por Defecto" +msgstr "Default Profile" + # Active Directory -#: ../../../../inc/tpl/config.php:317 +#: ../../../../inc/tpl/config.php:355 #, fuzzy msgid "Active Directory" msgstr "Active Directory" # Check -#: ../../../../inc/tpl/config.php:327 +#: ../../../../inc/tpl/config.php:365 msgid "Comprobar" msgstr "Überprüfung" # Check LDAP connection -#: ../../../../inc/tpl/config.php:330 +#: ../../../../inc/tpl/config.php:368 msgid "Comprobar conexión con LDAP" msgstr "LDAP-Verbindung prüfen" # Mail -#: ../../../../inc/tpl/config.php:344 +#: ../../../../inc/tpl/config.php:382 msgid "Correo" msgstr "E-Mail" # Enable email notifications -#: ../../../../inc/tpl/config.php:350 +#: ../../../../inc/tpl/config.php:388 msgid "Habilitar notificaciones de correo" msgstr "E-Mail-Benachrichtigung einschalten" # Port -#: ../../../../inc/tpl/config.php:367 +#: ../../../../inc/tpl/config.php:405 msgid "Puerto" msgstr "Port" # Enable Authentication -#: ../../../../inc/tpl/config.php:375 +#: ../../../../inc/tpl/config.php:413 msgid "Habilitar Autentificación" msgstr "aktivieren Sie Authentifizierung" # Security -#: ../../../../inc/tpl/config.php:400 +#: ../../../../inc/tpl/config.php:438 msgid "Seguridad" msgstr "Sicherheit" # Disabled -#: ../../../../inc/tpl/config.php:406 +#: ../../../../inc/tpl/config.php:444 msgid "Deshabilitada" msgstr "Inaktiv" # Recipient email address -#: ../../../../inc/tpl/config.php:417 +#: ../../../../inc/tpl/config.php:455 msgid "Dirección de correo de envío" msgstr "E-Mail-Adresse des Empfängers" # Enable requests by email -#: ../../../../inc/tpl/config.php:425 +#: ../../../../inc/tpl/config.php:463 msgid "Habilitar peticiones por correo" msgstr "Erlaube Anfragen per E-Mail" # Add extension -#: ../../../../inc/tpl/config.php:468 +#: ../../../../inc/tpl/config.php:506 msgid "Añadir extensión" msgstr "Endung hinzufügen" # Delete extension -#: ../../../../inc/tpl/config.php:469 +#: ../../../../inc/tpl/config.php:507 msgid "Eliminar extensión" msgstr "Endung löschen" # Add filter -#: ../../../../inc/tpl/config.php:497 +#: ../../../../inc/tpl/config.php:535 msgid "Añadir filtro" msgstr "Filter hinzufügen" # Delete filter -#: ../../../../inc/tpl/config.php:498 +#: ../../../../inc/tpl/config.php:536 msgid "Eliminar filtro" msgstr "Filter löschen" +# Select Group +#: ../../../../inc/tpl/config.php:564 ../../../../inc/tpl/users.php:223 +msgid "Seleccionar Grupo" +msgstr "Gruppe auswählen" + +# Select Profile +#: ../../../../inc/tpl/config.php:569 ../../../../inc/tpl/users.php:218 +msgid "Seleccionar Perfil" +msgstr "Profil auswählen" + # Full username #: ../../../../inc/tpl/users.php:71 msgid "Nombre de usuario completo" @@ -3682,16 +3724,6 @@ msgstr "Letzter Zugriff" msgid "Fecha Clave Maestra" msgstr "Datum des Master-Passworts" -# Select Profile -#: ../../../../inc/tpl/users.php:218 -msgid "Seleccionar Perfil" -msgstr "Profil auswählen" - -# Select Group -#: ../../../../inc/tpl/users.php:223 -msgid "Seleccionar Grupo" -msgstr "Gruppe auswählen" - # Date / Time #: ../../../../inc/tpl/eventlog.php:56 msgid "Fecha / Hora" diff --git a/inc/locales/en_US/LC_MESSAGES/messages.mo b/inc/locales/en_US/LC_MESSAGES/messages.mo index af1d6ba9..1d186580 100644 Binary files a/inc/locales/en_US/LC_MESSAGES/messages.mo and b/inc/locales/en_US/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/en_US/LC_MESSAGES/messages.po b/inc/locales/en_US/LC_MESSAGES/messages.po index b855408c..92d0d9c0 100644 --- a/inc/locales/en_US/LC_MESSAGES/messages.po +++ b/inc/locales/en_US/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-07-30 22:20+0100\n" -"PO-Revision-Date: 2014-07-30 22:21+0100\n" +"POT-Creation-Date: 2014-08-03 22:44+0100\n" +"PO-Revision-Date: 2014-08-03 22:45+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: en_US\n" @@ -102,7 +102,7 @@ msgstr "Error on user update" #: ../../../../ajax/ajax_appMgmtSave.php:138 #: ../../../../ajax/ajax_appMgmtSave.php:160 -#: ../../../../ajax/ajax_import.php:1 ../../../../ajax/ajax_configSave.php:210 +#: ../../../../ajax/ajax_import.php:1 ../../../../ajax/ajax_configSave.php:214 #: ../../../../ajax/ajax_migrate.php:1 msgid "Ey, esto es una DEMO!!" msgstr "Ey, this is a DEMO!!" @@ -137,7 +137,7 @@ msgstr "Error on user deletion" #: ../../../../ajax/ajax_appMgmtSave.php:415 #: ../../../../ajax/ajax_accountSave.php:116 #: ../../../../ajax/ajax_accountSave.php:268 -#: ../../../../ajax/ajax_configSave.php:225 +#: ../../../../ajax/ajax_configSave.php:229 msgid "Acción Inválida" msgstr "Invalid Action" @@ -167,7 +167,7 @@ msgstr "Error on updating group" #: ../../../../ajax/ajax_appMgmtSave.php:218 #: ../../../../ajax/ajax_appMgmtSave.php:295 -#: ../../../../inc/tpl/profiles.php:88 ../../../../inc/tpl/accounts.php:279 +#: ../../../../inc/tpl/profiles.php:88 ../../../../inc/tpl/accounts.php:281 msgid "Usuarios" msgstr "Users" @@ -231,7 +231,7 @@ msgstr "Delete Profile" #: ../../../../ajax/ajax_appMgmtSave.php:303 #: ../../../../ajax/ajax_getContent.php:114 -#: ../../../../ajax/ajax_doLogin.php:146 +#: ../../../../ajax/ajax_doLogin.php:153 #: ../../../../inc/profiles.class.php:203 #: ../../../../inc/profiles.class.php:254 ../../../../inc/tpl/users.php:98 msgid "Perfil" @@ -467,73 +467,73 @@ msgstr "Event log cleared" msgid "Error al vaciar el registro de eventos" msgstr "Error on clearing event log" -#: ../../../../ajax/ajax_configSave.php:94 +#: ../../../../ajax/ajax_configSave.php:96 msgid "Faltan parámetros de Wiki" msgstr "Missing Wiki parameters" -#: ../../../../ajax/ajax_configSave.php:105 +#: ../../../../ajax/ajax_configSave.php:107 msgid "Faltan parámetros de LDAP" msgstr "Missing LDAP parameters" -#: ../../../../ajax/ajax_configSave.php:119 +#: ../../../../ajax/ajax_configSave.php:123 msgid "Faltan parámetros de Correo" msgstr "Missing Mail parameters" -#: ../../../../ajax/ajax_configSave.php:140 +#: ../../../../ajax/ajax_configSave.php:144 msgid "El tamaño máximo de archivo es de 16MB" msgstr "The maximum file upload size is 16MB" -#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:161 msgid "Modificar Configuración" msgstr "Edit Configuration" -#: ../../../../ajax/ajax_configSave.php:165 +#: ../../../../ajax/ajax_configSave.php:169 msgid "Configuración actualizada" msgstr "Configuration updated" -#: ../../../../ajax/ajax_configSave.php:174 -#: ../../../../ajax/ajax_configSave.php:220 +#: ../../../../ajax/ajax_configSave.php:178 +#: ../../../../ajax/ajax_configSave.php:224 #: ../../../../ajax/ajax_viewpass.php:68 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/html.class.php:461 msgid "Clave maestra actualizada" msgstr "Master Password updated" -#: ../../../../ajax/ajax_configSave.php:174 +#: ../../../../ajax/ajax_configSave.php:178 #: ../../../../ajax/ajax_viewpass.php:68 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/html.class.php:461 msgid "Reinicie la sesión para cambiarla" msgstr "Restart session to update" -#: ../../../../ajax/ajax_configSave.php:178 +#: ../../../../ajax/ajax_configSave.php:182 msgid "Clave maestra no indicada" msgstr "Master Password needed" -#: ../../../../ajax/ajax_configSave.php:182 +#: ../../../../ajax/ajax_configSave.php:186 msgid "Se ha de confirmar el cambio de clave" msgstr "The password update must be confirmed" -#: ../../../../ajax/ajax_configSave.php:186 +#: ../../../../ajax/ajax_configSave.php:190 msgid "Las claves son idénticas" msgstr "The passwords are the same" -#: ../../../../ajax/ajax_configSave.php:190 +#: ../../../../ajax/ajax_configSave.php:194 msgid "Las claves maestras no coinciden" msgstr "The master passwords do not match" -#: ../../../../ajax/ajax_configSave.php:194 +#: ../../../../ajax/ajax_configSave.php:198 msgid "La clave maestra actual no coincide" msgstr "The current master password does not match" -#: ../../../../ajax/ajax_configSave.php:203 +#: ../../../../ajax/ajax_configSave.php:207 msgid "Errores al actualizar las claves de las cuentas" msgstr "Error on updating accounts' passwords" -#: ../../../../ajax/ajax_configSave.php:217 +#: ../../../../ajax/ajax_configSave.php:221 #: ../../../../inc/account.class.php:736 msgid "Actualizar Clave Maestra" msgstr "Update Master Password" -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:227 msgid "Error al guardar el hash de la clave maestra" msgstr "Error on saving master password's hash" @@ -561,7 +561,7 @@ msgstr "Profiles Management" #: ../../../../ajax/ajax_search.php:125 ../../../../ajax/ajax_search.php:236 #: ../../../../inc/tpl/request.php:38 ../../../../inc/tpl/groups.php:39 #: ../../../../inc/tpl/customers.php:39 ../../../../inc/tpl/profiles.php:39 -#: ../../../../inc/tpl/editpass.php:40 ../../../../inc/tpl/accounts.php:170 +#: ../../../../inc/tpl/editpass.php:40 ../../../../inc/tpl/accounts.php:172 #: ../../../../inc/tpl/categories.php:39 ../../../../inc/tpl/users.php:66 msgid "Nombre" msgstr "Name" @@ -573,9 +573,9 @@ msgid "Login" msgstr "Login" #: ../../../../ajax/ajax_getContent.php:115 -#: ../../../../ajax/ajax_doLogin.php:147 ../../../../inc/groups.class.php:151 +#: ../../../../ajax/ajax_doLogin.php:154 ../../../../inc/groups.class.php:151 #: ../../../../inc/groups.class.php:179 ../../../../inc/groups.class.php:205 -#: ../../../../inc/tpl/config.php:308 ../../../../inc/tpl/users.php:105 +#: ../../../../inc/tpl/config.php:328 ../../../../inc/tpl/users.php:105 msgid "Grupo" msgstr "Group" @@ -652,8 +652,8 @@ msgstr "Configuration" #: ../../../../ajax/ajax_getContent.php:320 ../../../../inc/tpl/login.php:40 #: ../../../../inc/tpl/login.php:47 ../../../../inc/tpl/profiles.php:76 -#: ../../../../inc/tpl/install.php:106 ../../../../inc/tpl/install.php:111 -#: ../../../../inc/tpl/install.php:112 +#: ../../../../inc/tpl/install.php:109 ../../../../inc/tpl/install.php:114 +#: ../../../../inc/tpl/install.php:115 msgid "Clave Maestra" msgstr "Master Password" @@ -830,7 +830,7 @@ msgid "La clave maestra no coincide" msgstr "The master password does not match" #: ../../../../ajax/ajax_viewpass.php:81 ../../../../ajax/ajax_search.php:291 -#: ../../../../inc/tpl/profiles.php:50 ../../../../inc/tpl/accounts.php:510 +#: ../../../../inc/tpl/profiles.php:50 ../../../../inc/tpl/accounts.php:522 msgid "Ver Clave" msgstr "View password" @@ -843,24 +843,25 @@ msgstr "Account" #: ../../../../ajax/ajax_viewpass.php:95 ../../../../ajax/ajax_search.php:131 #: ../../../../ajax/ajax_search.php:248 ../../../../ajax/ajax_doLogin.php:77 -#: ../../../../ajax/ajax_doLogin.php:84 ../../../../ajax/ajax_doLogin.php:94 -#: ../../../../ajax/ajax_doLogin.php:104 ../../../../ajax/ajax_doLogin.php:145 -#: ../../../../res/test.php:64 ../../../../inc/init.php:513 -#: ../../../../inc/users.class.php:788 ../../../../inc/users.class.php:829 -#: ../../../../inc/tpl/passreset.php:48 ../../../../inc/tpl/request.php:49 -#: ../../../../inc/tpl/login.php:35 ../../../../inc/tpl/login.php:44 -#: ../../../../inc/tpl/install.php:89 ../../../../inc/tpl/install.php:90 -#: ../../../../inc/tpl/editpass.php:50 ../../../../inc/tpl/accounts.php:231 -#: ../../../../inc/tpl/config.php:384 ../../../../inc/tpl/eventlog.php:62 +#: ../../../../ajax/ajax_doLogin.php:84 ../../../../ajax/ajax_doLogin.php:91 +#: ../../../../ajax/ajax_doLogin.php:101 ../../../../ajax/ajax_doLogin.php:111 +#: ../../../../ajax/ajax_doLogin.php:152 ../../../../res/test.php:64 +#: ../../../../inc/init.php:516 ../../../../inc/users.class.php:788 +#: ../../../../inc/users.class.php:829 ../../../../inc/tpl/passreset.php:50 +#: ../../../../inc/tpl/request.php:49 ../../../../inc/tpl/login.php:35 +#: ../../../../inc/tpl/login.php:44 ../../../../inc/tpl/install.php:89 +#: ../../../../inc/tpl/install.php:90 ../../../../inc/tpl/editpass.php:53 +#: ../../../../inc/tpl/accounts.php:233 ../../../../inc/tpl/config.php:422 +#: ../../../../inc/tpl/eventlog.php:62 msgid "Usuario" msgstr "User" #: ../../../../ajax/ajax_viewpass.php:99 ../../../../ajax/ajax_usrpass.php:53 -#: ../../../../ajax/ajax_usrpass.php:56 ../../../../inc/tpl/passreset.php:57 +#: ../../../../ajax/ajax_usrpass.php:56 ../../../../inc/tpl/passreset.php:61 #: ../../../../inc/tpl/login.php:37 ../../../../inc/tpl/login.php:45 #: ../../../../inc/tpl/install.php:99 ../../../../inc/tpl/install.php:100 -#: ../../../../inc/tpl/editpass.php:54 ../../../../inc/tpl/accounts.php:248 -#: ../../../../inc/tpl/config.php:392 ../../../../inc/tpl/users.php:129 +#: ../../../../inc/tpl/editpass.php:57 ../../../../inc/tpl/accounts.php:250 +#: ../../../../inc/tpl/config.php:430 ../../../../inc/tpl/users.php:129 msgid "Clave" msgstr "Password" @@ -879,7 +880,7 @@ msgstr "Sort by Customer" #: ../../../../inc/customer.class.php:57 #: ../../../../inc/customer.class.php:103 #: ../../../../inc/customer.class.php:128 ../../../../inc/tpl/request.php:41 -#: ../../../../inc/tpl/editpass.php:43 ../../../../inc/tpl/accounts.php:186 +#: ../../../../inc/tpl/editpass.php:44 ../../../../inc/tpl/accounts.php:188 msgid "Cliente" msgstr "Customer" @@ -894,7 +895,7 @@ msgstr "Sort by Category" #: ../../../../ajax/ajax_search.php:128 ../../../../ajax/ajax_search.php:241 #: ../../../../inc/category.class.php:78 #: ../../../../inc/category.class.php:132 -#: ../../../../inc/category.class.php:178 ../../../../inc/tpl/accounts.php:203 +#: ../../../../inc/category.class.php:178 ../../../../inc/tpl/accounts.php:205 msgid "Categoría" msgstr "Category" @@ -907,8 +908,8 @@ msgid "Ordenar por URL / IP" msgstr "Sort by URL / IP" #: ../../../../ajax/ajax_search.php:134 ../../../../ajax/ajax_search.php:253 -#: ../../../../inc/tpl/request.php:45 ../../../../inc/tpl/editpass.php:46 -#: ../../../../inc/tpl/accounts.php:215 +#: ../../../../inc/tpl/request.php:45 ../../../../inc/tpl/editpass.php:48 +#: ../../../../inc/tpl/accounts.php:217 msgid "URL / IP" msgstr "URL / IP" @@ -925,7 +926,7 @@ msgstr "Account Details" msgid "Abrir enlace a" msgstr "Open link to" -#: ../../../../ajax/ajax_search.php:260 ../../../../inc/tpl/accounts.php:267 +#: ../../../../ajax/ajax_search.php:260 ../../../../inc/tpl/accounts.php:269 #: ../../../../inc/tpl/users.php:147 msgid "Notas" msgstr "Notes" @@ -939,7 +940,7 @@ msgid "Enlace a Wiki" msgstr "Link to Wiki" #: ../../../../ajax/ajax_search.php:292 ../../../../ajax/ajax_search.php:344 -#: ../../../../inc/tpl/accounts.php:515 ../../../../inc/tpl/accounts.php:604 +#: ../../../../inc/tpl/accounts.php:527 ../../../../inc/tpl/accounts.php:616 msgid "Copiar Clave en Portapapeles" msgstr "Copy Password to Clipboard" @@ -947,7 +948,7 @@ msgstr "Copy Password to Clipboard" msgid "Más Acciones" msgstr "More Actions" -#: ../../../../ajax/ajax_search.php:300 ../../../../inc/tpl/accounts.php:538 +#: ../../../../ajax/ajax_search.php:300 ../../../../inc/tpl/accounts.php:550 msgid "Modificar Cuenta" msgstr "Edit Account" @@ -956,15 +957,15 @@ msgid "Copiar Cuenta" msgstr "Copy Account" #: ../../../../ajax/ajax_search.php:308 ../../../../inc/account.class.php:594 -#: ../../../../inc/tpl/accounts.php:73 ../../../../inc/tpl/accounts.php:550 +#: ../../../../inc/tpl/accounts.php:73 ../../../../inc/tpl/accounts.php:562 msgid "Eliminar Cuenta" msgstr "Delete Account" -#: ../../../../ajax/ajax_search.php:315 ../../../../inc/tpl/accounts.php:543 +#: ../../../../ajax/ajax_search.php:315 ../../../../inc/tpl/accounts.php:555 msgid "Solicitar Modificación" msgstr "Request Modification" -#: ../../../../ajax/ajax_search.php:348 ../../../../inc/tpl/accounts.php:608 +#: ../../../../ajax/ajax_search.php:348 ../../../../inc/tpl/accounts.php:620 msgid "Clave Copiada al Portapapeles" msgstr "Password Copied to Clipboard" @@ -988,32 +989,35 @@ msgstr "Error on sending request" msgid "No tiene permisos para realizar esta operación" msgstr "You don't have permission to do this operation" -#: ../../../../ajax/ajax_usrpass.php:48 ../../../../inc/auth.class.php:186 +#: ../../../../ajax/ajax_usrpass.php:48 ../../../../inc/auth.class.php:185 #: ../../../../inc/tpl/users.php:166 msgid "Cambio de Clave" msgstr "Password Change" -#: ../../../../ajax/ajax_usrpass.php:57 ../../../../inc/tpl/editpass.php:59 -#: ../../../../inc/tpl/accounts.php:255 ../../../../inc/tpl/users.php:133 +#: ../../../../ajax/ajax_usrpass.php:57 ../../../../inc/tpl/editpass.php:63 +#: ../../../../inc/tpl/accounts.php:257 ../../../../inc/tpl/users.php:133 msgid "Generar clave aleatoria" msgstr "Generate random password" #: ../../../../ajax/ajax_usrpass.php:62 ../../../../ajax/ajax_usrpass.php:64 -#: ../../../../inc/tpl/editpass.php:63 ../../../../inc/tpl/accounts.php:259 +#: ../../../../inc/tpl/editpass.php:68 ../../../../inc/tpl/accounts.php:261 #: ../../../../inc/tpl/users.php:138 msgid "Clave (repetir)" msgstr "Password (repeat)" -#: ../../../../ajax/ajax_usrpass.php:75 ../../../../inc/tpl/editpass.php:65 -#: ../../../../inc/tpl/accounts.php:262 ../../../../inc/tpl/users.php:141 +#: ../../../../ajax/ajax_usrpass.php:65 ../../../../inc/tpl/passreset.php:64 +#: ../../../../inc/tpl/passreset.php:72 ../../../../inc/tpl/masterpass.php:63 +#: ../../../../inc/tpl/install.php:104 ../../../../inc/tpl/install.php:119 +#: ../../../../inc/tpl/editpass.php:70 ../../../../inc/tpl/accounts.php:264 +#: ../../../../inc/tpl/users.php:141 msgid "Nivel de fortaleza de la clave" msgstr "Password strength level" -#: ../../../../ajax/ajax_usrpass.php:82 ../../../../inc/tpl/masterpass.php:112 +#: ../../../../ajax/ajax_usrpass.php:81 ../../../../inc/tpl/masterpass.php:113 #: ../../../../inc/tpl/groups.php:64 ../../../../inc/tpl/customers.php:64 -#: ../../../../inc/tpl/profiles.php:134 ../../../../inc/tpl/editpass.php:81 -#: ../../../../inc/tpl/accounts.php:524 ../../../../inc/tpl/categories.php:64 -#: ../../../../inc/tpl/config.php:449 ../../../../inc/tpl/users.php:210 +#: ../../../../inc/tpl/profiles.php:134 ../../../../inc/tpl/editpass.php:87 +#: ../../../../inc/tpl/accounts.php:536 ../../../../inc/tpl/categories.php:64 +#: ../../../../inc/tpl/config.php:487 ../../../../inc/tpl/users.php:210 msgid "Guardar" msgstr "Save" @@ -1046,7 +1050,7 @@ msgid "Usuario/Clave no introducidos" msgstr "User/Pass not entered" #: ../../../../ajax/ajax_doLogin.php:54 ../../../../ajax/ajax_doLogin.php:75 -#: ../../../../ajax/ajax_doLogin.php:82 +#: ../../../../ajax/ajax_doLogin.php:82 ../../../../ajax/ajax_doLogin.php:89 msgid "Inicio sesión (LDAP)" msgstr "Session start (LDAP)" @@ -1055,7 +1059,7 @@ msgid "Error al guardar los datos de LDAP" msgstr "Error on saving LDAP user data" #: ../../../../ajax/ajax_doLogin.php:63 ../../../../ajax/ajax_doLogin.php:71 -#: ../../../../ajax/ajax_doLogin.php:115 ../../../../inc/import.class.php:237 +#: ../../../../ajax/ajax_doLogin.php:122 ../../../../inc/import.class.php:237 #: ../../../../inc/import.class.php:244 ../../../../inc/import.class.php:262 msgid "Error interno" msgstr "Internal error" @@ -1064,11 +1068,12 @@ msgstr "Internal error" msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Error on updating user password in BD" -#: ../../../../ajax/ajax_doLogin.php:76 ../../../../ajax/ajax_doLogin.php:93 +#: ../../../../ajax/ajax_doLogin.php:76 ../../../../ajax/ajax_doLogin.php:100 msgid "Login incorrecto" msgstr "Incorrect login" -#: ../../../../ajax/ajax_doLogin.php:80 ../../../../ajax/ajax_doLogin.php:97 +#: ../../../../ajax/ajax_doLogin.php:80 ../../../../ajax/ajax_doLogin.php:94 +#: ../../../../ajax/ajax_doLogin.php:104 msgid "Usuario/Clave incorrectos" msgstr "Wrong user/pass" @@ -1076,23 +1081,27 @@ msgstr "Wrong user/pass" msgid "Cuenta expirada" msgstr "Account expired" -#: ../../../../ajax/ajax_doLogin.php:89 +#: ../../../../ajax/ajax_doLogin.php:90 +msgid "El usuario no tiene grupos asociados" +msgstr "The user have no associated groups" + +#: ../../../../ajax/ajax_doLogin.php:96 msgid "Inicio sesión (MySQL)" msgstr "Session start (MySQL)" -#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:107 +#: ../../../../ajax/ajax_doLogin.php:110 ../../../../ajax/ajax_doLogin.php:114 msgid "Usuario deshabilitado" msgstr "User disabled" -#: ../../../../ajax/ajax_doLogin.php:112 +#: ../../../../ajax/ajax_doLogin.php:119 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "Error on retrieving user data from DB" -#: ../../../../ajax/ajax_doLogin.php:120 +#: ../../../../ajax/ajax_doLogin.php:127 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "The master password not saved or is wrong" -#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:126 +#: ../../../../ajax/ajax_doLogin.php:130 ../../../../ajax/ajax_doLogin.php:133 msgid "Clave maestra incorrecta" msgstr "Invalid Master Password" @@ -1219,7 +1228,7 @@ msgid "" "Actualice la versión de PHP para que la aplicación funcione correctamente" msgstr "Please update the PHP version to run sysPass" -#: ../../../../inc/util.class.php:136 ../../../../inc/tpl/config.php:336 +#: ../../../../inc/util.class.php:136 ../../../../inc/tpl/config.php:374 msgid "Módulo no disponible" msgstr "Module unavilable" @@ -1277,8 +1286,8 @@ msgid "Opción no disponible" msgstr "Option unavailable" #: ../../../../inc/html.class.php:458 ../../../../inc/html.class.php:459 -#: ../../../../inc/html.class.php:460 ../../../../inc/init.php:411 -#: ../../../../inc/init.php:458 +#: ../../../../inc/html.class.php:460 ../../../../inc/init.php:414 +#: ../../../../inc/init.php:461 msgid "Consulte con el administrador" msgstr "Please, contact to the administrator" @@ -1320,20 +1329,20 @@ msgstr "Error on searching group RDN" msgid "RDN de grupo encontrado" msgstr "Group RDN found" -#: ../../../../inc/ldap.class.php:272 ../../../../inc/ldap.class.php:278 -#: ../../../../inc/ldap.class.php:293 ../../../../inc/ldap.class.php:298 +#: ../../../../inc/ldap.class.php:270 ../../../../inc/ldap.class.php:276 +#: ../../../../inc/ldap.class.php:291 ../../../../inc/ldap.class.php:296 msgid "Error al buscar el DN del usuario" msgstr "Error on searching user DN" -#: ../../../../inc/ldap.class.php:285 ../../../../inc/ldap.class.php:290 +#: ../../../../inc/ldap.class.php:283 ../../../../inc/ldap.class.php:288 msgid "Error al localizar el usuario en LDAP" msgstr "Error on searching user on LDAP" -#: ../../../../inc/ldap.class.php:366 ../../../../inc/ldap.class.php:372 +#: ../../../../inc/ldap.class.php:369 ../../../../inc/ldap.class.php:375 msgid "Error al buscar el grupo de usuarios" msgstr "Error on searching users group" -#: ../../../../inc/ldap.class.php:376 ../../../../inc/ldap.class.php:382 +#: ../../../../inc/ldap.class.php:379 ../../../../inc/ldap.class.php:385 msgid "No se encontró el grupo con ese nombre" msgstr "No group found with that name" @@ -1576,6 +1585,16 @@ msgstr "Enables to show account's search results like a card format." msgid "Habilita el modo de conexión con LDAP de Active Directory." msgstr "Enables Active Directory LDAP connection mode." +#: ../../../../inc/common.class.php:232 +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." +msgstr "Define the default users group for new LDAP users" + +#: ../../../../inc/common.class.php:233 +msgid "" +"Define el perfil de usuario por defecto para los nuevos usuarios de LDAP." +msgstr "Define the default users profile for new LDAP users" + #: ../../../../inc/account.class.php:320 ../../../../inc/account.class.php:842 msgid "Error al actualizar el historial" msgstr "Error on updating history" @@ -1665,67 +1684,67 @@ msgstr "Records updated" msgid "Error en la verificación de la base de datos" msgstr "Error on checking database" -#: ../../../../inc/init.php:309 +#: ../../../../inc/init.php:310 msgid "El directorio \"/config\" no existe" msgstr "The \"/config\" directory does not exist." -#: ../../../../inc/init.php:313 +#: ../../../../inc/init.php:315 msgid "No es posible escribir en el directorio \"config\"" msgstr "Unable to write into the \"/config\" directory" -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 msgid "Los permisos del directorio \"/config\" son incorrectos" msgstr "The \"/config\" directory permissions are incorrect" -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 msgid "Actual:" msgstr "Current:" -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 msgid "Necesario: 750" msgstr "Needed: 750" -#: ../../../../inc/init.php:386 +#: ../../../../inc/init.php:389 msgid "Aplicación en mantenimiento" msgstr "Application in maintenance" -#: ../../../../inc/init.php:386 +#: ../../../../inc/init.php:389 msgid "En breve estará operativa" msgstr "It will be running in short" -#: ../../../../inc/init.php:411 +#: ../../../../inc/init.php:414 msgid "La aplicación necesita actualizarse" msgstr "The application needs to be updated" -#: ../../../../inc/init.php:429 +#: ../../../../inc/init.php:432 msgid "Actualización" msgstr "Update" -#: ../../../../inc/init.php:430 +#: ../../../../inc/init.php:433 msgid "Actualización de versión realizada." msgstr "Version updating done." -#: ../../../../inc/init.php:431 +#: ../../../../inc/init.php:434 msgid "Versión" msgstr "Version" -#: ../../../../inc/init.php:452 +#: ../../../../inc/init.php:455 msgid "Sesion" msgstr "Session" -#: ../../../../inc/init.php:452 ../../../../inc/init.php:457 +#: ../../../../inc/init.php:455 ../../../../inc/init.php:460 msgid "La sesión no puede ser inicializada" msgstr "Session cannot be initialized" -#: ../../../../inc/init.php:512 +#: ../../../../inc/init.php:515 msgid "Finalizar sesión" msgstr "Logout session" -#: ../../../../inc/init.php:514 +#: ../../../../inc/init.php:517 msgid "Tiempo inactivo" msgstr "Inactive time" -#: ../../../../inc/init.php:515 +#: ../../../../inc/init.php:518 msgid "Tiempo total" msgstr "Total time" @@ -1749,23 +1768,23 @@ msgstr "Sign in" msgid "Actualizar BBDD" msgstr "Update DB" -#: ../../../../inc/upgrade.class.php:87 +#: ../../../../inc/upgrade.class.php:91 msgid "No es necesario actualizar la Base de Datos." msgstr "Database update not needed." -#: ../../../../inc/upgrade.class.php:93 +#: ../../../../inc/upgrade.class.php:97 msgid "Error al aplicar la actualización de la Base de Datos." msgstr "Error on updating database." -#: ../../../../inc/upgrade.class.php:100 +#: ../../../../inc/upgrade.class.php:104 msgid "Actualización de la Base de Datos realizada correctamente." msgstr "Database updating was done successfully." -#: ../../../../inc/upgrade.class.php:168 +#: ../../../../inc/upgrade.class.php:172 msgid "Actualizar Configuración" msgstr "Update Configuration" -#: ../../../../inc/upgrade.class.php:169 +#: ../../../../inc/upgrade.class.php:173 msgid "Actualización de la Configuración realizada correctamente." msgstr "Configuration updating was done successfully." @@ -1778,12 +1797,12 @@ msgid "Importación finalizada" msgstr "Import finished" #: ../../../../inc/migrate.class.php:138 -#: ../../../../inc/installer.class.php:200 +#: ../../../../inc/installer.class.php:202 msgid "El usuario/clave de MySQL no es correcto" msgstr "Wrong MySQL user/pass" #: ../../../../inc/migrate.class.php:139 -#: ../../../../inc/installer.class.php:201 +#: ../../../../inc/installer.class.php:203 msgid "Verifique el usuario de conexión con la Base de Datos" msgstr "Please, check database connection user" @@ -1919,121 +1938,121 @@ msgstr "Error on adding users groups" msgid "Importar Configuración" msgstr "Import Configuration" -#: ../../../../inc/installer.class.php:87 +#: ../../../../inc/installer.class.php:89 msgid "Indicar nombre de usuario admin" msgstr "Enter the admin username" -#: ../../../../inc/installer.class.php:88 +#: ../../../../inc/installer.class.php:90 msgid "Usuario admin para acceso a la aplicación" msgstr "Admin user to login to the application" -#: ../../../../inc/installer.class.php:93 +#: ../../../../inc/installer.class.php:95 msgid "Indicar la clave de admin" msgstr "Enter the admin's password" -#: ../../../../inc/installer.class.php:94 +#: ../../../../inc/installer.class.php:96 msgid "Clave del usuario admin de la aplicación" msgstr "Application administrator's password" -#: ../../../../inc/installer.class.php:100 +#: ../../../../inc/installer.class.php:102 msgid "Indicar la clave maestra" msgstr "Enter the master password" -#: ../../../../inc/installer.class.php:101 +#: ../../../../inc/installer.class.php:103 msgid "Clave maestra para encriptar las claves" msgstr "Master password to encrypt the passwords" -#: ../../../../inc/installer.class.php:106 +#: ../../../../inc/installer.class.php:108 msgid "Clave maestra muy corta" msgstr "Master password too short" -#: ../../../../inc/installer.class.php:107 +#: ../../../../inc/installer.class.php:109 msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" msgstr "The master password length need to be at least 11 characters" -#: ../../../../inc/installer.class.php:113 +#: ../../../../inc/installer.class.php:115 msgid "Indicar el usuario de la BBDD" msgstr "Enter the database user" -#: ../../../../inc/installer.class.php:114 +#: ../../../../inc/installer.class.php:116 msgid "Usuario con permisos de administrador de la Base de Datos" msgstr "An user with database administrative rights" -#: ../../../../inc/installer.class.php:119 +#: ../../../../inc/installer.class.php:121 msgid "Indicar la clave de la BBDD" msgstr "Enter the database password" -#: ../../../../inc/installer.class.php:120 +#: ../../../../inc/installer.class.php:122 msgid "Clave del usuario administrador de la Base de Datos" msgstr "Database administartor's password" -#: ../../../../inc/installer.class.php:125 +#: ../../../../inc/installer.class.php:127 msgid "Indicar el nombre de la BBDD" msgstr "Enter the database name" -#: ../../../../inc/installer.class.php:126 +#: ../../../../inc/installer.class.php:128 msgid "Nombre para la BBDD de la aplicación pej. syspass" msgstr "Application database name. eg. syspass" -#: ../../../../inc/installer.class.php:131 +#: ../../../../inc/installer.class.php:133 msgid "El nombre de la BBDD no puede contener \".\"" msgstr "Database name cannot contain \".\"" -#: ../../../../inc/installer.class.php:132 +#: ../../../../inc/installer.class.php:134 msgid "Elimine los puntos del nombre de la Base de Datos" msgstr "Please, remove dots in database name" -#: ../../../../inc/installer.class.php:138 +#: ../../../../inc/installer.class.php:140 msgid "Indicar el servidor de la BBDD" msgstr "Enter the database server" -#: ../../../../inc/installer.class.php:139 +#: ../../../../inc/installer.class.php:141 msgid "Servidor donde se instalará la Base de Datos" msgstr "Server where the database will be installed" -#: ../../../../inc/installer.class.php:246 +#: ../../../../inc/installer.class.php:248 msgid "La BBDD ya existe" msgstr "The database already exist" -#: ../../../../inc/installer.class.php:247 +#: ../../../../inc/installer.class.php:249 msgid "Indique una nueva Base de Datos o elimine la existente" msgstr "Enter a new database or delete the existing one" -#: ../../../../inc/installer.class.php:272 +#: ../../../../inc/installer.class.php:274 msgid "El usuario de MySQL ya existe" msgstr "The MySQL user already exist" -#: ../../../../inc/installer.class.php:273 +#: ../../../../inc/installer.class.php:275 msgid "Indique un nuevo usuario o elimine el existente" msgstr "Enter a new username or delete the existing one" -#: ../../../../inc/installer.class.php:292 -#: ../../../../inc/installer.class.php:368 +#: ../../../../inc/installer.class.php:294 +#: ../../../../inc/installer.class.php:370 msgid "Error al crear la BBDD" msgstr "Error on DB creation" -#: ../../../../inc/installer.class.php:293 -#: ../../../../inc/installer.class.php:304 +#: ../../../../inc/installer.class.php:295 +#: ../../../../inc/installer.class.php:306 msgid "Verifique los permisos del usuario de la Base de Datos" msgstr "Please, check database user permissions" -#: ../../../../inc/installer.class.php:303 +#: ../../../../inc/installer.class.php:305 msgid "Error al establecer permisos de la BBDD" msgstr "Error on setting database permissions" -#: ../../../../inc/installer.class.php:346 +#: ../../../../inc/installer.class.php:348 msgid "El archivo de estructura de la BBDD no existe" msgstr "The database structure file does not exist" -#: ../../../../inc/installer.class.php:347 +#: ../../../../inc/installer.class.php:349 msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." msgstr "Unable to create the application database. Please, download it again." -#: ../../../../inc/installer.class.php:353 +#: ../../../../inc/installer.class.php:355 msgid "Error al seleccionar la BBDD" msgstr "Error on selecting database." -#: ../../../../inc/installer.class.php:354 +#: ../../../../inc/installer.class.php:356 msgid "" "No es posible usar la Base de Datos para crear la estructura. Compruebe los " "permisos y que no exista." @@ -2041,30 +2060,30 @@ msgstr "" "Unable to use the database to create the structure. Check permissions and it " "does not exist." -#: ../../../../inc/installer.class.php:369 +#: ../../../../inc/installer.class.php:371 msgid "Error al crear la estructura de la Base de Datos." msgstr "Error on creating database structure." -#: ../../../../inc/installer.class.php:395 +#: ../../../../inc/installer.class.php:397 msgid "Error al crear el grupo \"admin\"" msgstr "Error on creating \"admin\" group" -#: ../../../../inc/installer.class.php:396 -#: ../../../../inc/installer.class.php:428 -#: ../../../../inc/installer.class.php:446 -#: ../../../../inc/installer.class.php:461 +#: ../../../../inc/installer.class.php:398 +#: ../../../../inc/installer.class.php:430 +#: ../../../../inc/installer.class.php:448 +#: ../../../../inc/installer.class.php:463 msgid "Informe al desarrollador" msgstr "Warn to developer" -#: ../../../../inc/installer.class.php:427 +#: ../../../../inc/installer.class.php:429 msgid "Error al crear el perfil \"admin\"" msgstr "Error on creating \"admin\" profile" -#: ../../../../inc/installer.class.php:445 +#: ../../../../inc/installer.class.php:447 msgid "Error al crear el usuario \"admin\"" msgstr "Error on creating \"admin\" user" -#: ../../../../inc/installer.class.php:460 +#: ../../../../inc/installer.class.php:462 msgid "Error al actualizar la clave maestra del usuario \"admin\"" msgstr "Error on updating master password for user \"admin\"" @@ -2156,71 +2175,67 @@ msgstr "XML file not supported" msgid "No es posible detectar la aplicación que exportó los datos" msgstr "Unable to detect the application the data was exported from" -#: ../../../../inc/auth.class.php:107 -msgid "El usuario no tiene grupos asociados" -msgstr "The user have no associated groups" - -#: ../../../../inc/auth.class.php:187 +#: ../../../../inc/auth.class.php:186 msgid "Se ha solicitado el cambio de su clave de usuario." msgstr "A request for changing your user password has been done." -#: ../../../../inc/auth.class.php:189 +#: ../../../../inc/auth.class.php:188 msgid "Para completar el proceso es necesario que acceda a la siguiente URL:" msgstr "In order to complete the process, please go to this URL:" -#: ../../../../inc/auth.class.php:193 +#: ../../../../inc/auth.class.php:192 msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "If you have not requested this action, please dismiss this message." -#: ../../../../inc/tpl/passreset.php:45 +#: ../../../../inc/tpl/passreset.php:46 msgid "Solicitud de Cambio de Clave" msgstr "Request Password Change" -#: ../../../../inc/tpl/passreset.php:48 +#: ../../../../inc/tpl/passreset.php:49 msgid "Login del Usuario" msgstr "User login" -#: ../../../../inc/tpl/passreset.php:52 +#: ../../../../inc/tpl/passreset.php:54 msgid "Email del Usuario" msgstr "User's Email" -#: ../../../../inc/tpl/passreset.php:52 ../../../../inc/tpl/users.php:112 +#: ../../../../inc/tpl/passreset.php:55 ../../../../inc/tpl/users.php:112 msgid "Email" msgstr "Email" -#: ../../../../inc/tpl/passreset.php:57 +#: ../../../../inc/tpl/passreset.php:60 msgid "Nueva Clave" msgstr "New Password" -#: ../../../../inc/tpl/passreset.php:61 +#: ../../../../inc/tpl/passreset.php:68 msgid "Nueva Clave (Verificar)" msgstr "New Password (Verify)" -#: ../../../../inc/tpl/passreset.php:61 +#: ../../../../inc/tpl/passreset.php:69 msgid "Clave (Verificar)" msgstr "Password (Verify)" -#: ../../../../inc/tpl/passreset.php:72 +#: ../../../../inc/tpl/passreset.php:82 msgid "Volver" msgstr "Back" -#: ../../../../inc/tpl/passreset.php:72 +#: ../../../../inc/tpl/passreset.php:82 msgid "Volver a iniciar sesión" msgstr "Go back to login" -#: ../../../../inc/tpl/passreset.php:74 +#: ../../../../inc/tpl/passreset.php:84 msgid "Solicitar" msgstr "Request" -#: ../../../../inc/tpl/passreset.php:74 +#: ../../../../inc/tpl/passreset.php:85 msgid "Solicitar cambio de clave" msgstr "Request password change" -#: ../../../../inc/tpl/passreset.php:76 +#: ../../../../inc/tpl/passreset.php:87 msgid "Cambiar" msgstr "Change" -#: ../../../../inc/tpl/passreset.php:76 +#: ../../../../inc/tpl/passreset.php:88 msgid "Cambiar Clave" msgstr "Change password" @@ -2236,8 +2251,8 @@ msgstr "Request" msgid "Descripción de la petición" msgstr "Request description" -#: ../../../../inc/tpl/request.php:68 ../../../../inc/tpl/editpass.php:78 -#: ../../../../inc/tpl/accounts.php:496 +#: ../../../../inc/tpl/request.php:68 ../../../../inc/tpl/editpass.php:83 +#: ../../../../inc/tpl/accounts.php:508 msgid "Atrás" msgstr "Back" @@ -2277,45 +2292,45 @@ msgstr "Current Master Password" msgid "Nueva Clave Maestra" msgstr "New Master Password" -#: ../../../../inc/tpl/masterpass.php:67 +#: ../../../../inc/tpl/masterpass.php:68 msgid "Nueva Clave Maestra (repetir)" msgstr "New Master Password (repeat)" -#: ../../../../inc/tpl/masterpass.php:75 +#: ../../../../inc/tpl/masterpass.php:76 msgid "No modificar cuentas" msgstr "Do not modify accounts" -#: ../../../../inc/tpl/masterpass.php:79 ../../../../inc/tpl/masterpass.php:98 -#: ../../../../inc/tpl/masterpass.php:123 ../../../../inc/tpl/migrate.php:81 -#: ../../../../inc/tpl/migrate.php:130 ../../../../inc/tpl/accounts.php:298 -#: ../../../../inc/tpl/accounts.php:324 ../../../../inc/tpl/accounts.php:581 +#: ../../../../inc/tpl/masterpass.php:80 ../../../../inc/tpl/masterpass.php:99 +#: ../../../../inc/tpl/masterpass.php:125 ../../../../inc/tpl/migrate.php:81 +#: ../../../../inc/tpl/migrate.php:130 ../../../../inc/tpl/accounts.php:305 +#: ../../../../inc/tpl/accounts.php:336 ../../../../inc/tpl/accounts.php:593 msgid "NO" msgstr "NO" -#: ../../../../inc/tpl/masterpass.php:85 +#: ../../../../inc/tpl/masterpass.php:86 msgid "Confirmar cambio" msgstr "Confirm Change" -#: ../../../../inc/tpl/masterpass.php:88 ../../../../inc/tpl/masterpass.php:91 -#: ../../../../inc/tpl/masterpass.php:94 ../../../../inc/tpl/migrate.php:78 +#: ../../../../inc/tpl/masterpass.php:89 ../../../../inc/tpl/masterpass.php:92 +#: ../../../../inc/tpl/masterpass.php:95 ../../../../inc/tpl/migrate.php:78 msgid "Atención" msgstr "Warning" -#: ../../../../inc/tpl/masterpass.php:89 +#: ../../../../inc/tpl/masterpass.php:90 msgid "Guarde la nueva clave en un lugar seguro." msgstr "You should save the new password on a secure place" -#: ../../../../inc/tpl/masterpass.php:92 +#: ../../../../inc/tpl/masterpass.php:93 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "All accounts passwords will be encrypted again." -#: ../../../../inc/tpl/masterpass.php:95 +#: ../../../../inc/tpl/masterpass.php:96 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Users will need to enter the new master key." -#: ../../../../inc/tpl/masterpass.php:125 ../../../../inc/tpl/migrate.php:132 -#: ../../../../inc/tpl/accounts.php:298 ../../../../inc/tpl/accounts.php:324 -#: ../../../../inc/tpl/accounts.php:583 +#: ../../../../inc/tpl/masterpass.php:127 ../../../../inc/tpl/migrate.php:132 +#: ../../../../inc/tpl/accounts.php:305 ../../../../inc/tpl/accounts.php:336 +#: ../../../../inc/tpl/accounts.php:595 msgid "SI" msgstr "YES" @@ -2331,23 +2346,23 @@ msgstr "Group description" msgid "Importar phpPMS" msgstr "phpPMS Import" -#: ../../../../inc/tpl/migrate.php:40 ../../../../inc/tpl/install.php:125 -#: ../../../../inc/tpl/install.php:126 +#: ../../../../inc/tpl/migrate.php:40 ../../../../inc/tpl/install.php:131 +#: ../../../../inc/tpl/install.php:132 msgid "Usuario BBDD" msgstr "DB Username" -#: ../../../../inc/tpl/migrate.php:49 ../../../../inc/tpl/install.php:133 -#: ../../../../inc/tpl/install.php:134 +#: ../../../../inc/tpl/migrate.php:49 ../../../../inc/tpl/install.php:139 +#: ../../../../inc/tpl/install.php:140 msgid "Clave BBDD" msgstr "DB Password" -#: ../../../../inc/tpl/migrate.php:57 ../../../../inc/tpl/install.php:141 -#: ../../../../inc/tpl/install.php:142 +#: ../../../../inc/tpl/migrate.php:57 ../../../../inc/tpl/install.php:147 +#: ../../../../inc/tpl/install.php:148 msgid "Nombre BBDD" msgstr "DB Name" -#: ../../../../inc/tpl/migrate.php:66 ../../../../inc/tpl/install.php:150 -#: ../../../../inc/tpl/install.php:151 +#: ../../../../inc/tpl/migrate.php:66 ../../../../inc/tpl/install.php:156 +#: ../../../../inc/tpl/install.php:157 msgid "Servidor BBDD" msgstr "DB Server" @@ -2467,7 +2482,7 @@ msgstr "Delete" msgid "Ver archivos de cuenta" msgstr "View account files" -#: ../../../../inc/tpl/profiles.php:65 ../../../../inc/tpl/accounts.php:346 +#: ../../../../inc/tpl/profiles.php:65 ../../../../inc/tpl/accounts.php:358 msgid "Archivos" msgstr "Files" @@ -2503,7 +2518,7 @@ msgstr "Users management" msgid "Gestión de grupos" msgstr "Groups management" -#: ../../../../inc/tpl/profiles.php:90 ../../../../inc/tpl/accounts.php:305 +#: ../../../../inc/tpl/profiles.php:90 ../../../../inc/tpl/accounts.php:312 msgid "Grupos" msgstr "Groups" @@ -2563,17 +2578,18 @@ msgstr "APP" msgid "Cuentas por página" msgstr "Accounts per page" -#: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/accounts.php:560 +#: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/accounts.php:572 msgid "Seleccionar Cliente" msgstr "Select Customer" #: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/search.php:85 -#: ../../../../inc/tpl/accounts.php:562 ../../../../inc/tpl/accounts.php:567 +#: ../../../../inc/tpl/accounts.php:574 ../../../../inc/tpl/accounts.php:579 +#: ../../../../inc/tpl/config.php:566 ../../../../inc/tpl/config.php:571 #: ../../../../inc/tpl/users.php:220 ../../../../inc/tpl/users.php:225 msgid "Sin resultados" msgstr "No results" -#: ../../../../inc/tpl/search.php:85 ../../../../inc/tpl/accounts.php:565 +#: ../../../../inc/tpl/search.php:85 ../../../../inc/tpl/accounts.php:577 msgid "Seleccionar Categoría" msgstr "Select category" @@ -2616,45 +2632,45 @@ msgid "Login del usuario administrador de sysPass" msgstr "sysPass administrator's login" #: ../../../../inc/tpl/install.php:96 ../../../../inc/tpl/install.php:97 -#: ../../../../inc/tpl/install.php:108 ../../../../inc/tpl/install.php:109 -#: ../../../../inc/tpl/install.php:131 ../../../../inc/tpl/install.php:132 +#: ../../../../inc/tpl/install.php:111 ../../../../inc/tpl/install.php:112 +#: ../../../../inc/tpl/install.php:137 ../../../../inc/tpl/install.php:138 msgid "Mostrar Clave" msgstr "Show Password" -#: ../../../../inc/tpl/install.php:118 +#: ../../../../inc/tpl/install.php:124 msgid "Configurar BBDD" msgstr "DB Configuration" -#: ../../../../inc/tpl/install.php:124 +#: ../../../../inc/tpl/install.php:130 msgid "Login de usuario con permisos de administrador de MySQL" msgstr "User login with with database administrative rights" -#: ../../../../inc/tpl/install.php:140 +#: ../../../../inc/tpl/install.php:146 msgid "Nombre de la base de datos para sysPass" msgstr "sysPass database name" -#: ../../../../inc/tpl/install.php:149 +#: ../../../../inc/tpl/install.php:155 msgid "Nombre del servidor de la base de datos de sysPass" msgstr "sysPass database server name" -#: ../../../../inc/tpl/install.php:159 +#: ../../../../inc/tpl/install.php:165 msgid "No crea ni verifica los permisos del usuario sobre la BBDD" msgstr "It does not create or verify the user's permissions on the DB" -#: ../../../../inc/tpl/install.php:161 ../../../../inc/tpl/install.php:178 -#: ../../../../inc/tpl/install.php:180 +#: ../../../../inc/tpl/install.php:167 ../../../../inc/tpl/install.php:185 +#: ../../../../inc/tpl/install.php:187 msgid "Modo Hosting" msgstr "Hosting Mode" -#: ../../../../inc/tpl/install.php:167 +#: ../../../../inc/tpl/install.php:174 msgid "Instalar" msgstr "Install" -#: ../../../../inc/tpl/editpass.php:35 ../../../../inc/tpl/accounts.php:531 +#: ../../../../inc/tpl/editpass.php:35 ../../../../inc/tpl/accounts.php:543 msgid "Modificar Clave de Cuenta" msgstr "Edit Account Password" -#: ../../../../inc/tpl/editpass.php:57 ../../../../inc/tpl/accounts.php:252 +#: ../../../../inc/tpl/editpass.php:60 ../../../../inc/tpl/accounts.php:254 msgid "La clave generada se mostrará aquí" msgstr "The generated password will be shown here" @@ -2662,103 +2678,103 @@ msgstr "The generated password will be shown here" msgid "Editar Cuenta" msgstr "Edit Account" -#: ../../../../inc/tpl/accounts.php:175 +#: ../../../../inc/tpl/accounts.php:177 msgid "Nombre de cuenta" msgstr "Account name" -#: ../../../../inc/tpl/accounts.php:194 +#: ../../../../inc/tpl/accounts.php:196 msgid "Buscar en desplegable o introducir" msgstr "Search down or enter" -#: ../../../../inc/tpl/accounts.php:220 +#: ../../../../inc/tpl/accounts.php:222 msgid "URL o IP de acceso" msgstr "Access URL or IP" -#: ../../../../inc/tpl/accounts.php:236 +#: ../../../../inc/tpl/accounts.php:238 msgid "Usuario de acceso" msgstr "Access user" -#: ../../../../inc/tpl/accounts.php:269 +#: ../../../../inc/tpl/accounts.php:271 msgid "Notas sobre la cuenta" msgstr "Notes about the account" -#: ../../../../inc/tpl/accounts.php:275 +#: ../../../../inc/tpl/accounts.php:277 msgid "Permisos" msgstr "Permissions" -#: ../../../../inc/tpl/accounts.php:297 ../../../../inc/tpl/accounts.php:323 +#: ../../../../inc/tpl/accounts.php:304 ../../../../inc/tpl/accounts.php:335 msgid "Hablitar edición" msgstr "Enable Edit" -#: ../../../../inc/tpl/accounts.php:359 +#: ../../../../inc/tpl/accounts.php:371 msgid "Soltar archivos aquí (max. 5) o click para seleccionar" msgstr "Drop files here (max. 5) or click to select" -#: ../../../../inc/tpl/accounts.php:359 ../../../../inc/tpl/config.php:172 +#: ../../../../inc/tpl/accounts.php:371 ../../../../inc/tpl/config.php:192 msgid "Tamaño máximo de archivo" msgstr "Maximum file size" -#: ../../../../inc/tpl/accounts.php:371 +#: ../../../../inc/tpl/accounts.php:383 msgid "Historial" msgstr "History" -#: ../../../../inc/tpl/accounts.php:386 +#: ../../../../inc/tpl/accounts.php:398 msgid "Seleccionar fecha" msgstr "Select date" -#: ../../../../inc/tpl/accounts.php:393 ../../../../inc/tpl/users.php:183 +#: ../../../../inc/tpl/accounts.php:405 ../../../../inc/tpl/users.php:183 msgid "Última Modificación" msgstr "Last Modification" -#: ../../../../inc/tpl/accounts.php:395 +#: ../../../../inc/tpl/accounts.php:407 msgid "por" msgstr "by" -#: ../../../../inc/tpl/accounts.php:405 +#: ../../../../inc/tpl/accounts.php:417 msgid "Visitas" msgstr "Visits" -#: ../../../../inc/tpl/accounts.php:409 +#: ../../../../inc/tpl/accounts.php:421 msgid "Fecha Alta" msgstr "Date Added" -#: ../../../../inc/tpl/accounts.php:413 +#: ../../../../inc/tpl/accounts.php:425 msgid "Creador" msgstr "Creator" -#: ../../../../inc/tpl/accounts.php:417 +#: ../../../../inc/tpl/accounts.php:429 msgid "Grupo Principal" msgstr "Main Group" -#: ../../../../inc/tpl/accounts.php:422 +#: ../../../../inc/tpl/accounts.php:434 msgid "Usuarios Secundarios" msgstr "Secondary Users" -#: ../../../../inc/tpl/accounts.php:443 +#: ../../../../inc/tpl/accounts.php:455 msgid "Grupos Secundarios" msgstr "Secondary Groups" -#: ../../../../inc/tpl/accounts.php:465 +#: ../../../../inc/tpl/accounts.php:477 msgid "Fecha Edición" msgstr "Date Modified" -#: ../../../../inc/tpl/accounts.php:469 +#: ../../../../inc/tpl/accounts.php:481 msgid "Editor" msgstr "Editor" -#: ../../../../inc/tpl/accounts.php:491 +#: ../../../../inc/tpl/accounts.php:503 msgid "Ver Actual" msgstr "View Current" -#: ../../../../inc/tpl/accounts.php:503 +#: ../../../../inc/tpl/accounts.php:515 msgid "Restaurar cuenta desde este punto" msgstr "Restore account from this point" -#: ../../../../inc/tpl/accounts.php:570 +#: ../../../../inc/tpl/accounts.php:582 msgid "Seleccionar grupos secundarios" msgstr "Select secondary groups" -#: ../../../../inc/tpl/accounts.php:573 +#: ../../../../inc/tpl/accounts.php:585 msgid "Seleccionar usuarios" msgstr "Select users" @@ -2770,162 +2786,178 @@ msgstr "Category name" msgid "Descripción de la categoría" msgstr "Category description" -#: ../../../../inc/tpl/config.php:63 +#: ../../../../inc/tpl/config.php:83 msgid "Sitio" msgstr "Site" -#: ../../../../inc/tpl/config.php:71 +#: ../../../../inc/tpl/config.php:91 msgid "Idioma" msgstr "Language" -#: ../../../../inc/tpl/config.php:85 +#: ../../../../inc/tpl/config.php:105 msgid "Timeout de sesión (s)" msgstr "Session timeout (s)" -#: ../../../../inc/tpl/config.php:93 +#: ../../../../inc/tpl/config.php:113 msgid "Habilitar log de eventos" msgstr "Enable event log" -#: ../../../../inc/tpl/config.php:103 +#: ../../../../inc/tpl/config.php:123 msgid "Habilitar depuración" msgstr "Enable debug" -#: ../../../../inc/tpl/config.php:113 +#: ../../../../inc/tpl/config.php:133 msgid "Modo mantenimiento" msgstr "Maintenance mode" -#: ../../../../inc/tpl/config.php:123 +#: ../../../../inc/tpl/config.php:143 msgid "Comprobar actualizaciones" msgstr "Check for updates" -#: ../../../../inc/tpl/config.php:133 +#: ../../../../inc/tpl/config.php:153 msgid "Nombre de cuenta como enlace" msgstr "Account name as link" -#: ../../../../inc/tpl/config.php:143 +#: ../../../../inc/tpl/config.php:163 msgid "Gestión de archivos" msgstr "Files management" -#: ../../../../inc/tpl/config.php:153 +#: ../../../../inc/tpl/config.php:173 msgid "Búsquedas globales" msgstr "Global searches" -#: ../../../../inc/tpl/config.php:163 +#: ../../../../inc/tpl/config.php:183 msgid "Extensiones de archivos permitidas" msgstr "Allowed file extensions" -#: ../../../../inc/tpl/config.php:181 +#: ../../../../inc/tpl/config.php:201 msgid "Resultados por página" msgstr "Results per page" -#: ../../../../inc/tpl/config.php:197 +#: ../../../../inc/tpl/config.php:217 msgid "Resultados en Tarjetas" msgstr "Results like Cards" -#: ../../../../inc/tpl/config.php:209 +#: ../../../../inc/tpl/config.php:229 msgid "Wiki" msgstr "Wiki" -#: ../../../../inc/tpl/config.php:215 +#: ../../../../inc/tpl/config.php:235 msgid "Habilitar enlaces Wiki" msgstr "Enable Wiki links" -#: ../../../../inc/tpl/config.php:225 +#: ../../../../inc/tpl/config.php:245 msgid "URL de búsqueda Wiki" msgstr "Wiki search URL" -#: ../../../../inc/tpl/config.php:234 +#: ../../../../inc/tpl/config.php:254 msgid "URL de página en Wiki" msgstr "Wiki page URL" -#: ../../../../inc/tpl/config.php:243 +#: ../../../../inc/tpl/config.php:263 msgid "Prefijo para nombre de cuenta" msgstr "Account name preffix" -#: ../../../../inc/tpl/config.php:255 +#: ../../../../inc/tpl/config.php:275 msgid "LDAP" msgstr "LDAP" -#: ../../../../inc/tpl/config.php:262 +#: ../../../../inc/tpl/config.php:282 msgid "Habilitar LDAP" msgstr "Enable LDAP" -#: ../../../../inc/tpl/config.php:272 ../../../../inc/tpl/config.php:359 +#: ../../../../inc/tpl/config.php:292 ../../../../inc/tpl/config.php:397 msgid "Servidor" msgstr "Server" -#: ../../../../inc/tpl/config.php:281 +#: ../../../../inc/tpl/config.php:301 msgid "Usuario de conexión" msgstr "Bind User" -#: ../../../../inc/tpl/config.php:290 +#: ../../../../inc/tpl/config.php:310 msgid "Clave de conexión" msgstr "Bind Password" -#: ../../../../inc/tpl/config.php:299 +#: ../../../../inc/tpl/config.php:319 msgid "Base de búsqueda" msgstr "Search base" -#: ../../../../inc/tpl/config.php:317 +#: ../../../../inc/tpl/config.php:337 +msgid "Grupo por Defecto" +msgstr "Default Group" + +#: ../../../../inc/tpl/config.php:346 +msgid "Perfil por Defecto" +msgstr "Default Profile" + +#: ../../../../inc/tpl/config.php:355 msgid "Active Directory" msgstr "Active Directory" -#: ../../../../inc/tpl/config.php:327 +#: ../../../../inc/tpl/config.php:365 msgid "Comprobar" msgstr "Check" -#: ../../../../inc/tpl/config.php:330 +#: ../../../../inc/tpl/config.php:368 msgid "Comprobar conexión con LDAP" msgstr "Check LDAP connection" -#: ../../../../inc/tpl/config.php:344 +#: ../../../../inc/tpl/config.php:382 msgid "Correo" msgstr "Mail" -#: ../../../../inc/tpl/config.php:350 +#: ../../../../inc/tpl/config.php:388 msgid "Habilitar notificaciones de correo" msgstr "Enable email notifications" -#: ../../../../inc/tpl/config.php:367 +#: ../../../../inc/tpl/config.php:405 msgid "Puerto" msgstr "Port" -#: ../../../../inc/tpl/config.php:375 +#: ../../../../inc/tpl/config.php:413 msgid "Habilitar Autentificación" msgstr "Enable Authentication" -#: ../../../../inc/tpl/config.php:400 +#: ../../../../inc/tpl/config.php:438 msgid "Seguridad" msgstr "Security" -#: ../../../../inc/tpl/config.php:406 +#: ../../../../inc/tpl/config.php:444 msgid "Deshabilitada" msgstr "Disabled" -#: ../../../../inc/tpl/config.php:417 +#: ../../../../inc/tpl/config.php:455 msgid "Dirección de correo de envío" msgstr "Recipient email address" -#: ../../../../inc/tpl/config.php:425 +#: ../../../../inc/tpl/config.php:463 msgid "Habilitar peticiones por correo" msgstr "Enable requests by email" -#: ../../../../inc/tpl/config.php:468 +#: ../../../../inc/tpl/config.php:506 msgid "Añadir extensión" msgstr "Add extension" -#: ../../../../inc/tpl/config.php:469 +#: ../../../../inc/tpl/config.php:507 msgid "Eliminar extensión" msgstr "Delete extension" -#: ../../../../inc/tpl/config.php:497 +#: ../../../../inc/tpl/config.php:535 msgid "Añadir filtro" msgstr "Add filter" -#: ../../../../inc/tpl/config.php:498 +#: ../../../../inc/tpl/config.php:536 msgid "Eliminar filtro" msgstr "Delete filter" +#: ../../../../inc/tpl/config.php:564 ../../../../inc/tpl/users.php:223 +msgid "Seleccionar Grupo" +msgstr "Select Group" + +#: ../../../../inc/tpl/config.php:569 ../../../../inc/tpl/users.php:218 +msgid "Seleccionar Perfil" +msgstr "Select Profile" + #: ../../../../inc/tpl/users.php:71 msgid "Nombre de usuario completo" msgstr "Full username" @@ -2974,14 +3006,6 @@ msgstr "Last Access" msgid "Fecha Clave Maestra" msgstr "Master Password Date" -#: ../../../../inc/tpl/users.php:218 -msgid "Seleccionar Perfil" -msgstr "Select Profile" - -#: ../../../../inc/tpl/users.php:223 -msgid "Seleccionar Grupo" -msgstr "Select Group" - #: ../../../../inc/tpl/eventlog.php:56 msgid "Fecha / Hora" msgstr "Date / Time" diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.mo b/inc/locales/hu_HU/LC_MESSAGES/messages.mo index 777348ce..637e8f3b 100644 Binary files a/inc/locales/hu_HU/LC_MESSAGES/messages.mo and b/inc/locales/hu_HU/LC_MESSAGES/messages.mo differ diff --git a/inc/locales/hu_HU/LC_MESSAGES/messages.po b/inc/locales/hu_HU/LC_MESSAGES/messages.po index 7169c590..5490f4d8 100644 --- a/inc/locales/hu_HU/LC_MESSAGES/messages.po +++ b/inc/locales/hu_HU/LC_MESSAGES/messages.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2014-07-30 22:21+0100\n" -"PO-Revision-Date: 2014-07-30 22:22+0100\n" +"POT-Creation-Date: 2014-08-03 22:43+0100\n" +"PO-Revision-Date: 2014-08-03 22:44+0100\n" "Last-Translator: nuxsmin \n" "Language-Team: \n" "Language: hu_HU\n" @@ -118,7 +118,7 @@ msgstr "Hiba a felhasználó frissítése közben" # "Ey, this is a DEMO!!" #: ../../../../ajax/ajax_appMgmtSave.php:138 #: ../../../../ajax/ajax_appMgmtSave.php:160 -#: ../../../../ajax/ajax_import.php:1 ../../../../ajax/ajax_configSave.php:210 +#: ../../../../ajax/ajax_import.php:1 ../../../../ajax/ajax_configSave.php:214 #: ../../../../ajax/ajax_migrate.php:1 msgid "Ey, esto es una DEMO!!" msgstr "Aj, ez egy próbaverzió" @@ -159,7 +159,7 @@ msgstr "Hiba a felhasználó törlése közben" #: ../../../../ajax/ajax_appMgmtSave.php:415 #: ../../../../ajax/ajax_accountSave.php:116 #: ../../../../ajax/ajax_accountSave.php:268 -#: ../../../../ajax/ajax_configSave.php:225 +#: ../../../../ajax/ajax_configSave.php:229 msgid "Acción Inválida" msgstr "Érvénytelen Akció" @@ -196,7 +196,7 @@ msgstr "Hiba a csoport frissítése közben" # "Users" #: ../../../../ajax/ajax_appMgmtSave.php:218 #: ../../../../ajax/ajax_appMgmtSave.php:295 -#: ../../../../inc/tpl/profiles.php:88 ../../../../inc/tpl/accounts.php:279 +#: ../../../../inc/tpl/profiles.php:88 ../../../../inc/tpl/accounts.php:281 msgid "Usuarios" msgstr "Felhasználók" @@ -274,7 +274,7 @@ msgstr "Profil törlése" # "Profile" #: ../../../../ajax/ajax_appMgmtSave.php:303 #: ../../../../ajax/ajax_getContent.php:114 -#: ../../../../ajax/ajax_doLogin.php:146 +#: ../../../../ajax/ajax_doLogin.php:153 #: ../../../../inc/profiles.class.php:203 #: ../../../../inc/profiles.class.php:254 ../../../../inc/tpl/users.php:98 msgid "Perfil" @@ -562,88 +562,88 @@ msgid "Error al vaciar el registro de eventos" msgstr "Hiba az esemény napló törlése közben" # "Missing Wiki parameters" -#: ../../../../ajax/ajax_configSave.php:94 +#: ../../../../ajax/ajax_configSave.php:96 msgid "Faltan parámetros de Wiki" msgstr "Hiányzó Wiki paraméter" # "Missing LDAP parameters" -#: ../../../../ajax/ajax_configSave.php:105 +#: ../../../../ajax/ajax_configSave.php:107 msgid "Faltan parámetros de LDAP" msgstr "Hiányzó LDAP paraméter" # "Missing Mail parameters" -#: ../../../../ajax/ajax_configSave.php:119 +#: ../../../../ajax/ajax_configSave.php:123 msgid "Faltan parámetros de Correo" msgstr "Hiányzó mail paraméter" # "Maximum file upload size in 16MB" -#: ../../../../ajax/ajax_configSave.php:140 +#: ../../../../ajax/ajax_configSave.php:144 msgid "El tamaño máximo de archivo es de 16MB" msgstr "Maximálisan feltölthetõ fájl mérete 16MB" # "Edit Configuration" -#: ../../../../ajax/ajax_configSave.php:157 +#: ../../../../ajax/ajax_configSave.php:161 msgid "Modificar Configuración" msgstr "Konfiguráció szerkesztése" # "Configuration updated" -#: ../../../../ajax/ajax_configSave.php:165 +#: ../../../../ajax/ajax_configSave.php:169 msgid "Configuración actualizada" msgstr "Beállítások frissítve" # "Master Password updated" -#: ../../../../ajax/ajax_configSave.php:174 -#: ../../../../ajax/ajax_configSave.php:220 +#: ../../../../ajax/ajax_configSave.php:178 +#: ../../../../ajax/ajax_configSave.php:224 #: ../../../../ajax/ajax_viewpass.php:68 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/html.class.php:461 msgid "Clave maestra actualizada" msgstr "A mester jelszó frissítve" # "Restart session to update" -#: ../../../../ajax/ajax_configSave.php:174 +#: ../../../../ajax/ajax_configSave.php:178 #: ../../../../ajax/ajax_viewpass.php:68 ../../../../ajax/ajax_viewpass.php:70 #: ../../../../inc/html.class.php:461 msgid "Reinicie la sesión para cambiarla" msgstr "Indítsa újra a munkamenetot a frissítéshez" # "Master Password needed" -#: ../../../../ajax/ajax_configSave.php:178 +#: ../../../../ajax/ajax_configSave.php:182 msgid "Clave maestra no indicada" msgstr "Mester jelszó szükséges" # "Password update must be confirmed" -#: ../../../../ajax/ajax_configSave.php:182 +#: ../../../../ajax/ajax_configSave.php:186 msgid "Se ha de confirmar el cambio de clave" msgstr "A jelszó frissítéshez megerõsítés szükséges" # "Password are the same" -#: ../../../../ajax/ajax_configSave.php:186 +#: ../../../../ajax/ajax_configSave.php:190 msgid "Las claves son idénticas" msgstr "A jelszó megegyezik" # "Master passwords mismatch" -#: ../../../../ajax/ajax_configSave.php:190 +#: ../../../../ajax/ajax_configSave.php:194 msgid "Las claves maestras no coinciden" msgstr "A mester jelszó nem egyezik" # "Current master password mismatch" -#: ../../../../ajax/ajax_configSave.php:194 +#: ../../../../ajax/ajax_configSave.php:198 msgid "La clave maestra actual no coincide" msgstr "A jelenlegi mester jelszó nem egyezik" # "Error on updating accounts' passwords" -#: ../../../../ajax/ajax_configSave.php:203 +#: ../../../../ajax/ajax_configSave.php:207 msgid "Errores al actualizar las claves de las cuentas" msgstr "Hiba a fiókok jelszavainak frissítése közben" # "Update Master Password" -#: ../../../../ajax/ajax_configSave.php:217 +#: ../../../../ajax/ajax_configSave.php:221 #: ../../../../inc/account.class.php:736 msgid "Actualizar Clave Maestra" msgstr "Frissítse a mester jelszót" # "Error on saving master password's hash" -#: ../../../../ajax/ajax_configSave.php:223 +#: ../../../../ajax/ajax_configSave.php:227 msgid "Error al guardar el hash de la clave maestra" msgstr "Hiba a mester jelszó hash-ének elmentése közben" @@ -676,7 +676,7 @@ msgstr "Profil Menedzsment" #: ../../../../ajax/ajax_search.php:125 ../../../../ajax/ajax_search.php:236 #: ../../../../inc/tpl/request.php:38 ../../../../inc/tpl/groups.php:39 #: ../../../../inc/tpl/customers.php:39 ../../../../inc/tpl/profiles.php:39 -#: ../../../../inc/tpl/editpass.php:40 ../../../../inc/tpl/accounts.php:170 +#: ../../../../inc/tpl/editpass.php:40 ../../../../inc/tpl/accounts.php:172 #: ../../../../inc/tpl/categories.php:39 ../../../../inc/tpl/users.php:66 msgid "Nombre" msgstr "Név" @@ -690,9 +690,9 @@ msgstr "Belépés" # "Group" #: ../../../../ajax/ajax_getContent.php:115 -#: ../../../../ajax/ajax_doLogin.php:147 ../../../../inc/groups.class.php:151 +#: ../../../../ajax/ajax_doLogin.php:154 ../../../../inc/groups.class.php:151 #: ../../../../inc/groups.class.php:179 ../../../../inc/groups.class.php:205 -#: ../../../../inc/tpl/config.php:308 ../../../../inc/tpl/users.php:105 +#: ../../../../inc/tpl/config.php:328 ../../../../inc/tpl/users.php:105 msgid "Grupo" msgstr "Csoport" @@ -785,8 +785,8 @@ msgstr "LDAP kapcsolat rendben" # "Master Password" #: ../../../../ajax/ajax_getContent.php:320 ../../../../inc/tpl/login.php:40 #: ../../../../inc/tpl/login.php:47 ../../../../inc/tpl/profiles.php:76 -#: ../../../../inc/tpl/install.php:106 ../../../../inc/tpl/install.php:111 -#: ../../../../inc/tpl/install.php:112 +#: ../../../../inc/tpl/install.php:109 ../../../../inc/tpl/install.php:114 +#: ../../../../inc/tpl/install.php:115 msgid "Clave Maestra" msgstr "Mester jelszó" @@ -1006,7 +1006,7 @@ msgstr "A mester jelszó nem egyezik" # "View password" #: ../../../../ajax/ajax_viewpass.php:81 ../../../../ajax/ajax_search.php:291 -#: ../../../../inc/tpl/profiles.php:50 ../../../../inc/tpl/accounts.php:510 +#: ../../../../inc/tpl/profiles.php:50 ../../../../inc/tpl/accounts.php:522 msgid "Ver Clave" msgstr "Jelszó" @@ -1021,25 +1021,26 @@ msgstr "Fiók" # "User" #: ../../../../ajax/ajax_viewpass.php:95 ../../../../ajax/ajax_search.php:131 #: ../../../../ajax/ajax_search.php:248 ../../../../ajax/ajax_doLogin.php:77 -#: ../../../../ajax/ajax_doLogin.php:84 ../../../../ajax/ajax_doLogin.php:94 -#: ../../../../ajax/ajax_doLogin.php:104 ../../../../ajax/ajax_doLogin.php:145 -#: ../../../../res/test.php:64 ../../../../inc/init.php:513 -#: ../../../../inc/users.class.php:788 ../../../../inc/users.class.php:829 -#: ../../../../inc/tpl/passreset.php:48 ../../../../inc/tpl/request.php:49 -#: ../../../../inc/tpl/login.php:35 ../../../../inc/tpl/login.php:44 -#: ../../../../inc/tpl/install.php:89 ../../../../inc/tpl/install.php:90 -#: ../../../../inc/tpl/editpass.php:50 ../../../../inc/tpl/accounts.php:231 -#: ../../../../inc/tpl/config.php:384 ../../../../inc/tpl/eventlog.php:62 +#: ../../../../ajax/ajax_doLogin.php:84 ../../../../ajax/ajax_doLogin.php:91 +#: ../../../../ajax/ajax_doLogin.php:101 ../../../../ajax/ajax_doLogin.php:111 +#: ../../../../ajax/ajax_doLogin.php:152 ../../../../res/test.php:64 +#: ../../../../inc/init.php:516 ../../../../inc/users.class.php:788 +#: ../../../../inc/users.class.php:829 ../../../../inc/tpl/passreset.php:50 +#: ../../../../inc/tpl/request.php:49 ../../../../inc/tpl/login.php:35 +#: ../../../../inc/tpl/login.php:44 ../../../../inc/tpl/install.php:89 +#: ../../../../inc/tpl/install.php:90 ../../../../inc/tpl/editpass.php:53 +#: ../../../../inc/tpl/accounts.php:233 ../../../../inc/tpl/config.php:422 +#: ../../../../inc/tpl/eventlog.php:62 msgid "Usuario" msgstr "Felhasználó" # "Password" #: ../../../../ajax/ajax_viewpass.php:99 ../../../../ajax/ajax_usrpass.php:53 -#: ../../../../ajax/ajax_usrpass.php:56 ../../../../inc/tpl/passreset.php:57 +#: ../../../../ajax/ajax_usrpass.php:56 ../../../../inc/tpl/passreset.php:61 #: ../../../../inc/tpl/login.php:37 ../../../../inc/tpl/login.php:45 #: ../../../../inc/tpl/install.php:99 ../../../../inc/tpl/install.php:100 -#: ../../../../inc/tpl/editpass.php:54 ../../../../inc/tpl/accounts.php:248 -#: ../../../../inc/tpl/config.php:392 ../../../../inc/tpl/users.php:129 +#: ../../../../inc/tpl/editpass.php:57 ../../../../inc/tpl/accounts.php:250 +#: ../../../../inc/tpl/config.php:430 ../../../../inc/tpl/users.php:129 msgid "Clave" msgstr "Jelszó" @@ -1061,7 +1062,7 @@ msgstr "Rendezés Ügyfél szerint" #: ../../../../inc/customer.class.php:57 #: ../../../../inc/customer.class.php:103 #: ../../../../inc/customer.class.php:128 ../../../../inc/tpl/request.php:41 -#: ../../../../inc/tpl/editpass.php:43 ../../../../inc/tpl/accounts.php:186 +#: ../../../../inc/tpl/editpass.php:44 ../../../../inc/tpl/accounts.php:188 msgid "Cliente" msgstr "Ügyfél" @@ -1079,7 +1080,7 @@ msgstr "Rendezés Kategória szerint" #: ../../../../ajax/ajax_search.php:128 ../../../../ajax/ajax_search.php:241 #: ../../../../inc/category.class.php:78 #: ../../../../inc/category.class.php:132 -#: ../../../../inc/category.class.php:178 ../../../../inc/tpl/accounts.php:203 +#: ../../../../inc/category.class.php:178 ../../../../inc/tpl/accounts.php:205 msgid "Categoría" msgstr "Kategória" @@ -1095,8 +1096,8 @@ msgstr "Rendezés URL / IP szerint" # "URL / IP" #: ../../../../ajax/ajax_search.php:134 ../../../../ajax/ajax_search.php:253 -#: ../../../../inc/tpl/request.php:45 ../../../../inc/tpl/editpass.php:46 -#: ../../../../inc/tpl/accounts.php:215 +#: ../../../../inc/tpl/request.php:45 ../../../../inc/tpl/editpass.php:48 +#: ../../../../inc/tpl/accounts.php:217 msgid "URL / IP" msgstr "URL / IP" @@ -1117,7 +1118,7 @@ msgid "Abrir enlace a" msgstr "Nyissa meg a linket, hogy" # "Notes" -#: ../../../../ajax/ajax_search.php:260 ../../../../inc/tpl/accounts.php:267 +#: ../../../../ajax/ajax_search.php:260 ../../../../inc/tpl/accounts.php:269 #: ../../../../inc/tpl/users.php:147 msgid "Notas" msgstr "Jegyzetek" @@ -1134,7 +1135,7 @@ msgstr "Wiki link" # Copy Password to Clipboard #: ../../../../ajax/ajax_search.php:292 ../../../../ajax/ajax_search.php:344 -#: ../../../../inc/tpl/accounts.php:515 ../../../../inc/tpl/accounts.php:604 +#: ../../../../inc/tpl/accounts.php:527 ../../../../inc/tpl/accounts.php:616 #, fuzzy msgid "Copiar Clave en Portapapeles" msgstr "Jelszó másolása a vágólapra" @@ -1145,7 +1146,7 @@ msgid "Más Acciones" msgstr "Több akció" # "Edit Account" -#: ../../../../ajax/ajax_search.php:300 ../../../../inc/tpl/accounts.php:538 +#: ../../../../ajax/ajax_search.php:300 ../../../../inc/tpl/accounts.php:550 msgid "Modificar Cuenta" msgstr "Fiók módosítás" @@ -1156,17 +1157,17 @@ msgstr "Fiók másolása" # "Delete Account" #: ../../../../ajax/ajax_search.php:308 ../../../../inc/account.class.php:594 -#: ../../../../inc/tpl/accounts.php:73 ../../../../inc/tpl/accounts.php:550 +#: ../../../../inc/tpl/accounts.php:73 ../../../../inc/tpl/accounts.php:562 msgid "Eliminar Cuenta" msgstr "Fiók törlése" # "Request Modification" -#: ../../../../ajax/ajax_search.php:315 ../../../../inc/tpl/accounts.php:543 +#: ../../../../ajax/ajax_search.php:315 ../../../../inc/tpl/accounts.php:555 msgid "Solicitar Modificación" msgstr "Kérés módosítás" # Password Copied to Clipboard -#: ../../../../ajax/ajax_search.php:348 ../../../../inc/tpl/accounts.php:608 +#: ../../../../ajax/ajax_search.php:348 ../../../../inc/tpl/accounts.php:620 #, fuzzy msgid "Clave Copiada al Portapapeles" msgstr "Jelszó vágólapra másolt" @@ -1197,36 +1198,39 @@ msgid "No tiene permisos para realizar esta operación" msgstr "Nincs jogosultságod végrehajtani ezt a mûveletet" # "Password Change" -#: ../../../../ajax/ajax_usrpass.php:48 ../../../../inc/auth.class.php:186 +#: ../../../../ajax/ajax_usrpass.php:48 ../../../../inc/auth.class.php:185 #: ../../../../inc/tpl/users.php:166 msgid "Cambio de Clave" msgstr "Jelszó változtatás" # "Generate random password" -#: ../../../../ajax/ajax_usrpass.php:57 ../../../../inc/tpl/editpass.php:59 -#: ../../../../inc/tpl/accounts.php:255 ../../../../inc/tpl/users.php:133 +#: ../../../../ajax/ajax_usrpass.php:57 ../../../../inc/tpl/editpass.php:63 +#: ../../../../inc/tpl/accounts.php:257 ../../../../inc/tpl/users.php:133 msgid "Generar clave aleatoria" msgstr "Véletlenszerû jelszó generálása" # "Password (repeat)" #: ../../../../ajax/ajax_usrpass.php:62 ../../../../ajax/ajax_usrpass.php:64 -#: ../../../../inc/tpl/editpass.php:63 ../../../../inc/tpl/accounts.php:259 +#: ../../../../inc/tpl/editpass.php:68 ../../../../inc/tpl/accounts.php:261 #: ../../../../inc/tpl/users.php:138 msgid "Clave (repetir)" msgstr "Jelszó (ismét)" # "Password strength level" -#: ../../../../ajax/ajax_usrpass.php:75 ../../../../inc/tpl/editpass.php:65 -#: ../../../../inc/tpl/accounts.php:262 ../../../../inc/tpl/users.php:141 +#: ../../../../ajax/ajax_usrpass.php:65 ../../../../inc/tpl/passreset.php:64 +#: ../../../../inc/tpl/passreset.php:72 ../../../../inc/tpl/masterpass.php:63 +#: ../../../../inc/tpl/install.php:104 ../../../../inc/tpl/install.php:119 +#: ../../../../inc/tpl/editpass.php:70 ../../../../inc/tpl/accounts.php:264 +#: ../../../../inc/tpl/users.php:141 msgid "Nivel de fortaleza de la clave" msgstr "Jelszó erõssége" # "Save" -#: ../../../../ajax/ajax_usrpass.php:82 ../../../../inc/tpl/masterpass.php:112 +#: ../../../../ajax/ajax_usrpass.php:81 ../../../../inc/tpl/masterpass.php:113 #: ../../../../inc/tpl/groups.php:64 ../../../../inc/tpl/customers.php:64 -#: ../../../../inc/tpl/profiles.php:134 ../../../../inc/tpl/editpass.php:81 -#: ../../../../inc/tpl/accounts.php:524 ../../../../inc/tpl/categories.php:64 -#: ../../../../inc/tpl/config.php:449 ../../../../inc/tpl/users.php:210 +#: ../../../../inc/tpl/profiles.php:134 ../../../../inc/tpl/editpass.php:87 +#: ../../../../inc/tpl/accounts.php:536 ../../../../inc/tpl/categories.php:64 +#: ../../../../inc/tpl/config.php:487 ../../../../inc/tpl/users.php:210 msgid "Guardar" msgstr "Mentés" @@ -1267,7 +1271,7 @@ msgstr "Felhasználó/jelszó nem lett kitöltve" # "Session start (LDAP)" #: ../../../../ajax/ajax_doLogin.php:54 ../../../../ajax/ajax_doLogin.php:75 -#: ../../../../ajax/ajax_doLogin.php:82 +#: ../../../../ajax/ajax_doLogin.php:82 ../../../../ajax/ajax_doLogin.php:89 msgid "Inicio sesión (LDAP)" msgstr "munkamenet elindult (LDAP)" @@ -1278,7 +1282,7 @@ msgstr "Hiba az LDAP felhasználók adatainak elmentése közben" # "Internal error" #: ../../../../ajax/ajax_doLogin.php:63 ../../../../ajax/ajax_doLogin.php:71 -#: ../../../../ajax/ajax_doLogin.php:115 ../../../../inc/import.class.php:237 +#: ../../../../ajax/ajax_doLogin.php:122 ../../../../inc/import.class.php:237 #: ../../../../inc/import.class.php:244 ../../../../inc/import.class.php:262 msgid "Error interno" msgstr "Belsõ hiba" @@ -1289,12 +1293,13 @@ msgid "Error al actualizar la clave del usuario en la BBDD" msgstr "Adatbázis Hiba a felhasználói jelszó frissítése közben" # "Incorrect login" -#: ../../../../ajax/ajax_doLogin.php:76 ../../../../ajax/ajax_doLogin.php:93 +#: ../../../../ajax/ajax_doLogin.php:76 ../../../../ajax/ajax_doLogin.php:100 msgid "Login incorrecto" msgstr "Hibás felhasználónév vagy jelszó" # "Wrong user/pass" -#: ../../../../ajax/ajax_doLogin.php:80 ../../../../ajax/ajax_doLogin.php:97 +#: ../../../../ajax/ajax_doLogin.php:80 ../../../../ajax/ajax_doLogin.php:94 +#: ../../../../ajax/ajax_doLogin.php:104 msgid "Usuario/Clave incorrectos" msgstr "Hibás felhasználó/jelszó" @@ -1304,28 +1309,33 @@ msgstr "Hibás felhasználó/jelszó" msgid "Cuenta expirada" msgstr "Fiók hozzáadva" +# "The user have no associated groups" +#: ../../../../ajax/ajax_doLogin.php:90 +msgid "El usuario no tiene grupos asociados" +msgstr "a felhasználó nincs csoporthoz társítva" + # "Session start (MySQL)" -#: ../../../../ajax/ajax_doLogin.php:89 +#: ../../../../ajax/ajax_doLogin.php:96 msgid "Inicio sesión (MySQL)" msgstr "munkamenet elindult (MySQL)" # "User disabled" -#: ../../../../ajax/ajax_doLogin.php:103 ../../../../ajax/ajax_doLogin.php:107 +#: ../../../../ajax/ajax_doLogin.php:110 ../../../../ajax/ajax_doLogin.php:114 msgid "Usuario deshabilitado" msgstr "Felhasználó letiltva" # "Error on retrieving user data from DB" -#: ../../../../ajax/ajax_doLogin.php:112 +#: ../../../../ajax/ajax_doLogin.php:119 msgid "Error al obtener los datos del usuario de la BBDD" msgstr "Hiba a felhasználói adatok adatbázisból való betöltése közben" # "The master password not saved or is incorrect" -#: ../../../../ajax/ajax_doLogin.php:120 +#: ../../../../ajax/ajax_doLogin.php:127 msgid "La clave maestra no ha sido guardada o es incorrecta" msgstr "A mester jelszó nem lett elmentve, vagy helytelen" # "Invalid Master Password" -#: ../../../../ajax/ajax_doLogin.php:123 ../../../../ajax/ajax_doLogin.php:126 +#: ../../../../ajax/ajax_doLogin.php:130 ../../../../ajax/ajax_doLogin.php:133 msgid "Clave maestra incorrecta" msgstr "Érvénytelen mester jelszó" @@ -1480,7 +1490,7 @@ msgid "" msgstr "Kérem, frissítse a PHP verziót, hogy a sysPass biztonságos legyen" # "Module unavilable" -#: ../../../../inc/util.class.php:136 ../../../../inc/tpl/config.php:336 +#: ../../../../inc/util.class.php:136 ../../../../inc/tpl/config.php:374 msgid "Módulo no disponible" msgstr "Modul nem elérhetõ" @@ -1553,8 +1563,8 @@ msgstr "Beállítás nem elérhetõ" # "Please, contact to administrator" #: ../../../../inc/html.class.php:458 ../../../../inc/html.class.php:459 -#: ../../../../inc/html.class.php:460 ../../../../inc/init.php:411 -#: ../../../../inc/init.php:458 +#: ../../../../inc/html.class.php:460 ../../../../inc/init.php:414 +#: ../../../../inc/init.php:461 msgid "Consulte con el administrador" msgstr "Kérem, keresse a rendszergazdát" @@ -1607,23 +1617,23 @@ msgid "RDN de grupo encontrado" msgstr "Alap RDN találat" # "Error on searching user DN" -#: ../../../../inc/ldap.class.php:272 ../../../../inc/ldap.class.php:278 -#: ../../../../inc/ldap.class.php:293 ../../../../inc/ldap.class.php:298 +#: ../../../../inc/ldap.class.php:270 ../../../../inc/ldap.class.php:276 +#: ../../../../inc/ldap.class.php:291 ../../../../inc/ldap.class.php:296 msgid "Error al buscar el DN del usuario" msgstr "Hiba a DN felhasználó keresése közben" # "Error on searching user on LDAP" -#: ../../../../inc/ldap.class.php:285 ../../../../inc/ldap.class.php:290 +#: ../../../../inc/ldap.class.php:283 ../../../../inc/ldap.class.php:288 msgid "Error al localizar el usuario en LDAP" msgstr "Hiba az LDAP felhasználók keresése közben" # "Error on searching users group" -#: ../../../../inc/ldap.class.php:366 ../../../../inc/ldap.class.php:372 +#: ../../../../inc/ldap.class.php:369 ../../../../inc/ldap.class.php:375 msgid "Error al buscar el grupo de usuarios" msgstr "Hiba a keresése közben" # "No group found with that name" -#: ../../../../inc/ldap.class.php:376 ../../../../inc/ldap.class.php:382 +#: ../../../../inc/ldap.class.php:379 ../../../../inc/ldap.class.php:385 msgid "No se encontró el grupo con ese nombre" msgstr "Nincs ilyen nevû csoport" @@ -1919,6 +1929,20 @@ msgstr "Enables to show account's search results like a card format." msgid "Habilita el modo de conexión con LDAP de Active Directory." msgstr "Enables Active Directory LDAP connection mode." +# Define the default users group for new LDAP users +#: ../../../../inc/common.class.php:232 +#, fuzzy +msgid "" +"Define el grupo de usuarios por defecto para los nuevos usuarios de LDAP." +msgstr "Define the default users group for new LDAP users" + +# Define the default users profile for new LDAP users +#: ../../../../inc/common.class.php:233 +#, fuzzy +msgid "" +"Define el perfil de usuario por defecto para los nuevos usuarios de LDAP." +msgstr "Define the default users profile for new LDAP users" + # "Error on updating history" #: ../../../../inc/account.class.php:320 ../../../../inc/account.class.php:842 msgid "Error al actualizar el historial" @@ -2031,84 +2055,84 @@ msgid "Error en la verificación de la base de datos" msgstr "Hiba az adatbázis ellenõrzése közben" # "\"/config\" directory doesn't exist." -#: ../../../../inc/init.php:309 +#: ../../../../inc/init.php:310 msgid "El directorio \"/config\" no existe" msgstr "\"/config\" mappa nem létezik" # "Unable to write into \"/config\" directory" -#: ../../../../inc/init.php:313 +#: ../../../../inc/init.php:315 msgid "No es posible escribir en el directorio \"config\"" msgstr "Nem lehet a \"/config\" mappába írni" # "\"/config\" directory permissions are incorrect" -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 msgid "Los permisos del directorio \"/config\" son incorrectos" msgstr "\"/config\" mappa jogosultságai helytelenek" # Current -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 #, fuzzy msgid "Actual:" msgstr "Current:" # Needed: 750 -#: ../../../../inc/init.php:320 +#: ../../../../inc/init.php:323 #, fuzzy msgid "Necesario: 750" msgstr "Needed: 750" # "Application in maintenance" -#: ../../../../inc/init.php:386 +#: ../../../../inc/init.php:389 msgid "Aplicación en mantenimiento" msgstr "Az alkalmazás fut" # "It will be running in short" -#: ../../../../inc/init.php:386 +#: ../../../../inc/init.php:389 msgid "En breve estará operativa" msgstr "Hamar végezni fog" # "The application needs to be updated" -#: ../../../../inc/init.php:411 +#: ../../../../inc/init.php:414 msgid "La aplicación necesita actualizarse" msgstr "Frissítsd az alkalmazást" # "Update" -#: ../../../../inc/init.php:429 +#: ../../../../inc/init.php:432 msgid "Actualización" msgstr "Frissítés" # "Version updating done." -#: ../../../../inc/init.php:430 +#: ../../../../inc/init.php:433 msgid "Actualización de versión realizada." msgstr "Verzió frissítés kész" # "Version" -#: ../../../../inc/init.php:431 +#: ../../../../inc/init.php:434 msgid "Versión" msgstr "Verzió" # "Session" -#: ../../../../inc/init.php:452 +#: ../../../../inc/init.php:455 msgid "Sesion" msgstr "Munkamenet" # "Session cannot be initialized." -#: ../../../../inc/init.php:452 ../../../../inc/init.php:457 +#: ../../../../inc/init.php:455 ../../../../inc/init.php:460 msgid "La sesión no puede ser inicializada" msgstr "A munkamenetot nem lehet elindítani" # "Logout session" -#: ../../../../inc/init.php:512 +#: ../../../../inc/init.php:515 msgid "Finalizar sesión" msgstr "Kijelentkezés" # "Inactive time" -#: ../../../../inc/init.php:514 +#: ../../../../inc/init.php:517 msgid "Tiempo inactivo" msgstr "Idõ kikapcsolása" # "Total time" -#: ../../../../inc/init.php:515 +#: ../../../../inc/init.php:518 msgid "Tiempo total" msgstr "Teljes idõ" @@ -2138,27 +2162,27 @@ msgid "Actualizar BBDD" msgstr "Frissítse az adatbázist" # "Database update not needed." -#: ../../../../inc/upgrade.class.php:87 +#: ../../../../inc/upgrade.class.php:91 msgid "No es necesario actualizar la Base de Datos." msgstr "Az adatbázis frissítése nem szükséges" # "Error on updating database." -#: ../../../../inc/upgrade.class.php:93 +#: ../../../../inc/upgrade.class.php:97 msgid "Error al aplicar la actualización de la Base de Datos." msgstr "Hiba az adatbázis frissítése közben" # "Database updating was done successfully." -#: ../../../../inc/upgrade.class.php:100 +#: ../../../../inc/upgrade.class.php:104 msgid "Actualización de la Base de Datos realizada correctamente." msgstr "Az adatbázis frissítés sikeresen megtörtént" # "Update Configuration" -#: ../../../../inc/upgrade.class.php:168 +#: ../../../../inc/upgrade.class.php:172 msgid "Actualizar Configuración" msgstr "Konfiguráció frissítése" # "Configuration updating successfully done." -#: ../../../../inc/upgrade.class.php:169 +#: ../../../../inc/upgrade.class.php:173 msgid "Actualización de la Configuración realizada correctamente." msgstr "A beállítások elmentve" @@ -2174,13 +2198,13 @@ msgstr "Importálás kész" # "Wrong MySQL user/pass" #: ../../../../inc/migrate.class.php:138 -#: ../../../../inc/installer.class.php:200 +#: ../../../../inc/installer.class.php:202 msgid "El usuario/clave de MySQL no es correcto" msgstr "Hibás MySQL felhasználó/jelszó" # "Please, check database connection user" #: ../../../../inc/migrate.class.php:139 -#: ../../../../inc/installer.class.php:201 +#: ../../../../inc/installer.class.php:203 msgid "Verifique el usuario de conexión con la Base de Datos" msgstr "Kérem, ellenõrizze az adatbázis felhasználót" @@ -2349,149 +2373,149 @@ msgid "Importar Configuración" msgstr "Konfiguráció importálása" # "Enter admin username" -#: ../../../../inc/installer.class.php:87 +#: ../../../../inc/installer.class.php:89 msgid "Indicar nombre de usuario admin" msgstr "Írd be az admin felhasználó nevét" # "Admin user to login to application" -#: ../../../../inc/installer.class.php:88 +#: ../../../../inc/installer.class.php:90 msgid "Usuario admin para acceso a la aplicación" msgstr "Rendszergazda felhasználó bejelentkezés" # "Enter admin password" -#: ../../../../inc/installer.class.php:93 +#: ../../../../inc/installer.class.php:95 msgid "Indicar la clave de admin" msgstr "Írd be az admin jelszót" # "Application administrator's password" -#: ../../../../inc/installer.class.php:94 +#: ../../../../inc/installer.class.php:96 msgid "Clave del usuario admin de la aplicación" msgstr "Az alkalmazás rendszergazdai jelszava" # "Enter master password" -#: ../../../../inc/installer.class.php:100 +#: ../../../../inc/installer.class.php:102 msgid "Indicar la clave maestra" msgstr "Írd be a mester jelszót" # "Master password to encrypt the passwords" -#: ../../../../inc/installer.class.php:101 +#: ../../../../inc/installer.class.php:103 msgid "Clave maestra para encriptar las claves" msgstr "Mester jelszó szükséges a jelszavak titkosításához" # "Master password too short" -#: ../../../../inc/installer.class.php:106 +#: ../../../../inc/installer.class.php:108 msgid "Clave maestra muy corta" msgstr "Túl rövid a mester jelszó" # "Master password length need to be at least 11 characters" -#: ../../../../inc/installer.class.php:107 +#: ../../../../inc/installer.class.php:109 msgid "La longitud de la clave maestra ha de ser mayor de 11 caracteres" msgstr "A mester jelszó legaláb 11 karakterbõl kell, hogy álljon" # "Enter database user" -#: ../../../../inc/installer.class.php:113 +#: ../../../../inc/installer.class.php:115 msgid "Indicar el usuario de la BBDD" msgstr "Írd be az adatbázis felhasználót" # "An user with database administrative rights" -#: ../../../../inc/installer.class.php:114 +#: ../../../../inc/installer.class.php:116 msgid "Usuario con permisos de administrador de la Base de Datos" msgstr "Adatbázis rendszergazdai jogokkal rendelkezõ felhasználó" # "Enter database password" -#: ../../../../inc/installer.class.php:119 +#: ../../../../inc/installer.class.php:121 msgid "Indicar la clave de la BBDD" msgstr "Írd be az aadtbázis jelszavát" # "Database administartor's password" -#: ../../../../inc/installer.class.php:120 +#: ../../../../inc/installer.class.php:122 msgid "Clave del usuario administrador de la Base de Datos" msgstr "Az adatbázis rendszergazdai jelszava" # "Enter database name" -#: ../../../../inc/installer.class.php:125 +#: ../../../../inc/installer.class.php:127 msgid "Indicar el nombre de la BBDD" msgstr "Írd be az adatbázis nevét" # "Application database name. eg. syspass" -#: ../../../../inc/installer.class.php:126 +#: ../../../../inc/installer.class.php:128 msgid "Nombre para la BBDD de la aplicación pej. syspass" msgstr "Az alkalmazás neve. Pl.: syspass" # "Database name can't contains \".\"" -#: ../../../../inc/installer.class.php:131 +#: ../../../../inc/installer.class.php:133 msgid "El nombre de la BBDD no puede contener \".\"" msgstr "Az adatbázis neve nem tartalmazhat: \".\"" # "Please, remove dots on database name" -#: ../../../../inc/installer.class.php:132 +#: ../../../../inc/installer.class.php:134 msgid "Elimine los puntos del nombre de la Base de Datos" msgstr "Kérem, törölje a pontokat az adatbázis nevébõl" # "Enter database server" -#: ../../../../inc/installer.class.php:138 +#: ../../../../inc/installer.class.php:140 msgid "Indicar el servidor de la BBDD" msgstr "Írd be az adatbázis szervert" # "Server where the database will be installed" -#: ../../../../inc/installer.class.php:139 +#: ../../../../inc/installer.class.php:141 msgid "Servidor donde se instalará la Base de Datos" msgstr "Szerver, ahová az adatbázis telepítve lesz" # "Database already exist" -#: ../../../../inc/installer.class.php:246 +#: ../../../../inc/installer.class.php:248 msgid "La BBDD ya existe" msgstr "Az adatbázis már létezik" # "Enter a new database or delete the existing one" -#: ../../../../inc/installer.class.php:247 +#: ../../../../inc/installer.class.php:249 msgid "Indique una nueva Base de Datos o elimine la existente" msgstr "Írd be az új adatbázist, vagy töröld a jelenlegit" # "MySQL user already exist" -#: ../../../../inc/installer.class.php:272 +#: ../../../../inc/installer.class.php:274 msgid "El usuario de MySQL ya existe" msgstr "MySQL felhasználó már létezik" # "Enter a new username or delete the existing one" -#: ../../../../inc/installer.class.php:273 +#: ../../../../inc/installer.class.php:275 msgid "Indique un nuevo usuario o elimine el existente" msgstr "Írd be az új felhasználónevet, vagy töröld a jelenlegit" # "Error on DB creation" -#: ../../../../inc/installer.class.php:292 -#: ../../../../inc/installer.class.php:368 +#: ../../../../inc/installer.class.php:294 +#: ../../../../inc/installer.class.php:370 msgid "Error al crear la BBDD" msgstr "Hiba az adatbázis létrehozása közben" # "Please, check database user permissions" -#: ../../../../inc/installer.class.php:293 -#: ../../../../inc/installer.class.php:304 +#: ../../../../inc/installer.class.php:295 +#: ../../../../inc/installer.class.php:306 msgid "Verifique los permisos del usuario de la Base de Datos" msgstr "Kérem, ellenõrizze az adatbázis felhasználó jogosultságait" # "Error on setting database permissions" -#: ../../../../inc/installer.class.php:303 +#: ../../../../inc/installer.class.php:305 msgid "Error al establecer permisos de la BBDD" msgstr "Hiba az adatbázis jogosultságok beállítása közben" # "Database structure file doesn't exist" -#: ../../../../inc/installer.class.php:346 +#: ../../../../inc/installer.class.php:348 msgid "El archivo de estructura de la BBDD no existe" msgstr "Adatbázis fájl nem létezik" # "Unable to create application database. Please, download it again." -#: ../../../../inc/installer.class.php:347 +#: ../../../../inc/installer.class.php:349 msgid "No es posible crear la BBDD de la aplicación. Descárguela de nuevo." msgstr "Az adatbázis létrehozása meghiúsult. Kérem, töltse le újra" # "Error on selecting database." -#: ../../../../inc/installer.class.php:353 +#: ../../../../inc/installer.class.php:355 msgid "Error al seleccionar la BBDD" msgstr "Hiba az adatbázis kiválasztása közben" # "Unable to use the database to create the structure. Check permissions and it doesn't exist." -#: ../../../../inc/installer.class.php:354 +#: ../../../../inc/installer.class.php:356 msgid "" "No es posible usar la Base de Datos para crear la estructura. Compruebe los " "permisos y que no exista." @@ -2500,35 +2524,35 @@ msgstr "" "jogosultságokat és hogy valóban létezik az adatbázis" # "Error on creating database structure." -#: ../../../../inc/installer.class.php:369 +#: ../../../../inc/installer.class.php:371 msgid "Error al crear la estructura de la Base de Datos." msgstr "Hiba az adatbázis létrehozása közben" # "Error on creating \"admin\" group" -#: ../../../../inc/installer.class.php:395 +#: ../../../../inc/installer.class.php:397 msgid "Error al crear el grupo \"admin\"" msgstr "Hiba az ügyfél létrehozása közben" # "Warn to developer" -#: ../../../../inc/installer.class.php:396 -#: ../../../../inc/installer.class.php:428 -#: ../../../../inc/installer.class.php:446 -#: ../../../../inc/installer.class.php:461 +#: ../../../../inc/installer.class.php:398 +#: ../../../../inc/installer.class.php:430 +#: ../../../../inc/installer.class.php:448 +#: ../../../../inc/installer.class.php:463 msgid "Informe al desarrollador" msgstr "Figyelmeztetsd a fejlesztõt" # "Error on creating \"admin\" profile" -#: ../../../../inc/installer.class.php:427 +#: ../../../../inc/installer.class.php:429 msgid "Error al crear el perfil \"admin\"" msgstr "Hiba az \"admin\" profil létrehozása közben" # "Error on creating \"admin\" user" -#: ../../../../inc/installer.class.php:445 +#: ../../../../inc/installer.class.php:447 msgid "Error al crear el usuario \"admin\"" msgstr "Hiba az \"admin\" felhasználó létrehozása közben" # "Error on updating master password for user \"admin\"" -#: ../../../../inc/installer.class.php:460 +#: ../../../../inc/installer.class.php:462 msgid "Error al actualizar la clave maestra del usuario \"admin\"" msgstr "Hiba a mester jelszó frissítése közben" @@ -2648,88 +2672,83 @@ msgstr "XML file not supported" msgid "No es posible detectar la aplicación que exportó los datos" msgstr "Unable to detect the application the data was exported from" -# "The user have no associated groups" -#: ../../../../inc/auth.class.php:107 -msgid "El usuario no tiene grupos asociados" -msgstr "a felhasználó nincs csoporthoz társítva" - # A request for updating your user password has been done. -#: ../../../../inc/auth.class.php:187 +#: ../../../../inc/auth.class.php:186 msgid "Se ha solicitado el cambio de su clave de usuario." msgstr "A kérelmet frissíteni a felhasználói jelszót megtörtént." # "In order to complete the process, please go to this URL:" -#: ../../../../inc/auth.class.php:189 +#: ../../../../inc/auth.class.php:188 msgid "Para completar el proceso es necesario que acceda a la siguiente URL:" msgstr "A folyamat befejezéséhez látogass el a következõ oldalra:" # "If you have not requested this action, please dismiss this message." -#: ../../../../inc/auth.class.php:193 +#: ../../../../inc/auth.class.php:192 msgid "Si no ha solicitado esta acción, ignore este mensaje." msgstr "Amennyiben nincs szüksége erre a folyamatra, zárja be ezt az üzenetet" # "Request Password Change" -#: ../../../../inc/tpl/passreset.php:45 +#: ../../../../inc/tpl/passreset.php:46 msgid "Solicitud de Cambio de Clave" msgstr "Kérés jelszó módosítás" # "User login" -#: ../../../../inc/tpl/passreset.php:48 +#: ../../../../inc/tpl/passreset.php:49 msgid "Login del Usuario" msgstr "Felhasználó bejelentkezés" # "User Email" -#: ../../../../inc/tpl/passreset.php:52 +#: ../../../../inc/tpl/passreset.php:54 msgid "Email del Usuario" msgstr "Felhasználó Email" # "Email" -#: ../../../../inc/tpl/passreset.php:52 ../../../../inc/tpl/users.php:112 +#: ../../../../inc/tpl/passreset.php:55 ../../../../inc/tpl/users.php:112 msgid "Email" msgstr "Email" # "New Password" -#: ../../../../inc/tpl/passreset.php:57 +#: ../../../../inc/tpl/passreset.php:60 msgid "Nueva Clave" msgstr "Új jelszó" # "New Password (Verify)" -#: ../../../../inc/tpl/passreset.php:61 +#: ../../../../inc/tpl/passreset.php:68 msgid "Nueva Clave (Verificar)" msgstr "Új jelszó (megerõsítés)" # "Password (Verify)" -#: ../../../../inc/tpl/passreset.php:61 +#: ../../../../inc/tpl/passreset.php:69 msgid "Clave (Verificar)" msgstr "Jelszó (Megerõsítés)" # "Back" -#: ../../../../inc/tpl/passreset.php:72 +#: ../../../../inc/tpl/passreset.php:82 msgid "Volver" msgstr "Vissza" # "Go back to login" -#: ../../../../inc/tpl/passreset.php:72 +#: ../../../../inc/tpl/passreset.php:82 msgid "Volver a iniciar sesión" msgstr "Vissza a bejelentkezéshez" # "Request" -#: ../../../../inc/tpl/passreset.php:74 +#: ../../../../inc/tpl/passreset.php:84 msgid "Solicitar" msgstr "Kérés" # "Request password change" -#: ../../../../inc/tpl/passreset.php:74 +#: ../../../../inc/tpl/passreset.php:85 msgid "Solicitar cambio de clave" msgstr "Kérés jelszó módosítás" # "Change" -#: ../../../../inc/tpl/passreset.php:76 +#: ../../../../inc/tpl/passreset.php:87 msgid "Cambiar" msgstr "Változtatás" # "Change password" -#: ../../../../inc/tpl/passreset.php:76 +#: ../../../../inc/tpl/passreset.php:88 msgid "Cambiar Clave" msgstr "Változtatsd meg a jelszót" @@ -2749,8 +2768,8 @@ msgid "Descripción de la petición" msgstr "Kérés leírás" # "Back" -#: ../../../../inc/tpl/request.php:68 ../../../../inc/tpl/editpass.php:78 -#: ../../../../inc/tpl/accounts.php:496 +#: ../../../../inc/tpl/request.php:68 ../../../../inc/tpl/editpass.php:83 +#: ../../../../inc/tpl/accounts.php:508 msgid "Atrás" msgstr "Vissza" @@ -2800,53 +2819,53 @@ msgid "Nueva Clave Maestra" msgstr "Új mester jelszó" # "New Master Password (repeat)" -#: ../../../../inc/tpl/masterpass.php:67 +#: ../../../../inc/tpl/masterpass.php:68 msgid "Nueva Clave Maestra (repetir)" msgstr "Új mester jelszó (megerõsítés)" # "Don't modify accounts" -#: ../../../../inc/tpl/masterpass.php:75 +#: ../../../../inc/tpl/masterpass.php:76 msgid "No modificar cuentas" msgstr "Ne módosítsa a fiókokat" # "NO" -#: ../../../../inc/tpl/masterpass.php:79 ../../../../inc/tpl/masterpass.php:98 -#: ../../../../inc/tpl/masterpass.php:123 ../../../../inc/tpl/migrate.php:81 -#: ../../../../inc/tpl/migrate.php:130 ../../../../inc/tpl/accounts.php:298 -#: ../../../../inc/tpl/accounts.php:324 ../../../../inc/tpl/accounts.php:581 +#: ../../../../inc/tpl/masterpass.php:80 ../../../../inc/tpl/masterpass.php:99 +#: ../../../../inc/tpl/masterpass.php:125 ../../../../inc/tpl/migrate.php:81 +#: ../../../../inc/tpl/migrate.php:130 ../../../../inc/tpl/accounts.php:305 +#: ../../../../inc/tpl/accounts.php:336 ../../../../inc/tpl/accounts.php:593 msgid "NO" msgstr "Nem" # "Confirm Change" -#: ../../../../inc/tpl/masterpass.php:85 +#: ../../../../inc/tpl/masterpass.php:86 msgid "Confirmar cambio" msgstr "Változás megerõsítése" # "Warning" -#: ../../../../inc/tpl/masterpass.php:88 ../../../../inc/tpl/masterpass.php:91 -#: ../../../../inc/tpl/masterpass.php:94 ../../../../inc/tpl/migrate.php:78 +#: ../../../../inc/tpl/masterpass.php:89 ../../../../inc/tpl/masterpass.php:92 +#: ../../../../inc/tpl/masterpass.php:95 ../../../../inc/tpl/migrate.php:78 msgid "Atención" msgstr "Figyelem" # "You should save the new password on a secure place" -#: ../../../../inc/tpl/masterpass.php:89 +#: ../../../../inc/tpl/masterpass.php:90 msgid "Guarde la nueva clave en un lugar seguro." msgstr "Tárold biztonságos helyen az új jelszót" # "All accounts passwords will be encrypted again." -#: ../../../../inc/tpl/masterpass.php:92 +#: ../../../../inc/tpl/masterpass.php:93 msgid "Se volverán a encriptar las claves de todas las cuentas." msgstr "Minden fiók jelszó újra titkosítva lesz" # "All users must re-enter the new master password." -#: ../../../../inc/tpl/masterpass.php:95 +#: ../../../../inc/tpl/masterpass.php:96 msgid "Los usuarios deberán de introducir la nueva clave maestra." msgstr "Minden felhasználónak úrja be kell írnia az új mester jelszót" # "YES" -#: ../../../../inc/tpl/masterpass.php:125 ../../../../inc/tpl/migrate.php:132 -#: ../../../../inc/tpl/accounts.php:298 ../../../../inc/tpl/accounts.php:324 -#: ../../../../inc/tpl/accounts.php:583 +#: ../../../../inc/tpl/masterpass.php:127 ../../../../inc/tpl/migrate.php:132 +#: ../../../../inc/tpl/accounts.php:305 ../../../../inc/tpl/accounts.php:336 +#: ../../../../inc/tpl/accounts.php:595 msgid "SI" msgstr "Igen" @@ -2866,26 +2885,26 @@ msgid "Importar phpPMS" msgstr "phpPMS importálása" # "DB Username" -#: ../../../../inc/tpl/migrate.php:40 ../../../../inc/tpl/install.php:125 -#: ../../../../inc/tpl/install.php:126 +#: ../../../../inc/tpl/migrate.php:40 ../../../../inc/tpl/install.php:131 +#: ../../../../inc/tpl/install.php:132 msgid "Usuario BBDD" msgstr "DB felhasználónév" # "DB Password" -#: ../../../../inc/tpl/migrate.php:49 ../../../../inc/tpl/install.php:133 -#: ../../../../inc/tpl/install.php:134 +#: ../../../../inc/tpl/migrate.php:49 ../../../../inc/tpl/install.php:139 +#: ../../../../inc/tpl/install.php:140 msgid "Clave BBDD" msgstr "Adatbázis jelszó" # "DB Name" -#: ../../../../inc/tpl/migrate.php:57 ../../../../inc/tpl/install.php:141 -#: ../../../../inc/tpl/install.php:142 +#: ../../../../inc/tpl/migrate.php:57 ../../../../inc/tpl/install.php:147 +#: ../../../../inc/tpl/install.php:148 msgid "Nombre BBDD" msgstr "DB név" # "DB Server" -#: ../../../../inc/tpl/migrate.php:66 ../../../../inc/tpl/install.php:150 -#: ../../../../inc/tpl/install.php:151 +#: ../../../../inc/tpl/migrate.php:66 ../../../../inc/tpl/install.php:156 +#: ../../../../inc/tpl/install.php:157 msgid "Servidor BBDD" msgstr "DB szerver" @@ -3036,7 +3055,7 @@ msgid "Ver archivos de cuenta" msgstr "Fiók fáljok" # "Files" -#: ../../../../inc/tpl/profiles.php:65 ../../../../inc/tpl/accounts.php:346 +#: ../../../../inc/tpl/profiles.php:65 ../../../../inc/tpl/accounts.php:358 msgid "Archivos" msgstr "Fájlok" @@ -3081,7 +3100,7 @@ msgid "Gestión de grupos" msgstr "Csoport menedzsment" # "Groups" -#: ../../../../inc/tpl/profiles.php:90 ../../../../inc/tpl/accounts.php:305 +#: ../../../../inc/tpl/profiles.php:90 ../../../../inc/tpl/accounts.php:312 msgid "Grupos" msgstr "Csoportok" @@ -3156,19 +3175,20 @@ msgid "Cuentas por página" msgstr "Fiók/oldal" # "Select Customer" -#: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/accounts.php:560 +#: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/accounts.php:572 msgid "Seleccionar Cliente" msgstr "Válassz ügyfelet" # "No results" #: ../../../../inc/tpl/search.php:84 ../../../../inc/tpl/search.php:85 -#: ../../../../inc/tpl/accounts.php:562 ../../../../inc/tpl/accounts.php:567 +#: ../../../../inc/tpl/accounts.php:574 ../../../../inc/tpl/accounts.php:579 +#: ../../../../inc/tpl/config.php:566 ../../../../inc/tpl/config.php:571 #: ../../../../inc/tpl/users.php:220 ../../../../inc/tpl/users.php:225 msgid "Sin resultados" msgstr "Nincsenek eredmények" # "Select category" -#: ../../../../inc/tpl/search.php:85 ../../../../inc/tpl/accounts.php:565 +#: ../../../../inc/tpl/search.php:85 ../../../../inc/tpl/accounts.php:577 msgid "Seleccionar Categoría" msgstr "Válassz kategóriát" @@ -3225,58 +3245,58 @@ msgstr "sysPass administrator's login" # Show Password #: ../../../../inc/tpl/install.php:96 ../../../../inc/tpl/install.php:97 -#: ../../../../inc/tpl/install.php:108 ../../../../inc/tpl/install.php:109 -#: ../../../../inc/tpl/install.php:131 ../../../../inc/tpl/install.php:132 +#: ../../../../inc/tpl/install.php:111 ../../../../inc/tpl/install.php:112 +#: ../../../../inc/tpl/install.php:137 ../../../../inc/tpl/install.php:138 #, fuzzy msgid "Mostrar Clave" msgstr "Show Password" # "DB Configuration" -#: ../../../../inc/tpl/install.php:118 +#: ../../../../inc/tpl/install.php:124 msgid "Configurar BBDD" msgstr "Adatbázis beállítások" # User login with with database administrative rights -#: ../../../../inc/tpl/install.php:124 +#: ../../../../inc/tpl/install.php:130 #, fuzzy msgid "Login de usuario con permisos de administrador de MySQL" msgstr "User login with with database administrative rights" # sysPass database name -#: ../../../../inc/tpl/install.php:140 +#: ../../../../inc/tpl/install.php:146 #, fuzzy msgid "Nombre de la base de datos para sysPass" msgstr "ÍsysPass database name" # sysPass database server name -#: ../../../../inc/tpl/install.php:149 +#: ../../../../inc/tpl/install.php:155 #, fuzzy msgid "Nombre del servidor de la base de datos de sysPass" msgstr "sysPass database server name" # "It does not create or verify the user's permissions on the DB" -#: ../../../../inc/tpl/install.php:159 +#: ../../../../inc/tpl/install.php:165 msgid "No crea ni verifica los permisos del usuario sobre la BBDD" msgstr "Ez nem hozza létre, illetve erõsíti meg az adatbázis jogosultságokat" # "Hosting Mode" -#: ../../../../inc/tpl/install.php:161 ../../../../inc/tpl/install.php:178 -#: ../../../../inc/tpl/install.php:180 +#: ../../../../inc/tpl/install.php:167 ../../../../inc/tpl/install.php:185 +#: ../../../../inc/tpl/install.php:187 msgid "Modo Hosting" msgstr "Hosting mód" # "Install" -#: ../../../../inc/tpl/install.php:167 +#: ../../../../inc/tpl/install.php:174 msgid "Instalar" msgstr "Telepítés" # "Edit Account Password" -#: ../../../../inc/tpl/editpass.php:35 ../../../../inc/tpl/accounts.php:531 +#: ../../../../inc/tpl/editpass.php:35 ../../../../inc/tpl/accounts.php:543 msgid "Modificar Clave de Cuenta" msgstr "Fiók jelszavának szerkesztése" # "The generated password will be shown here" -#: ../../../../inc/tpl/editpass.php:57 ../../../../inc/tpl/accounts.php:252 +#: ../../../../inc/tpl/editpass.php:60 ../../../../inc/tpl/accounts.php:254 msgid "La clave generada se mostrará aquí" msgstr "A generált jelszó megjelenítése itt" @@ -3286,127 +3306,127 @@ msgid "Editar Cuenta" msgstr "Fiók módosítás" # "Account name" -#: ../../../../inc/tpl/accounts.php:175 +#: ../../../../inc/tpl/accounts.php:177 msgid "Nombre de cuenta" msgstr "Fiók név" # "Search down or enter" -#: ../../../../inc/tpl/accounts.php:194 +#: ../../../../inc/tpl/accounts.php:196 msgid "Buscar en desplegable o introducir" msgstr "Keress lentebb, vagy nyomj entert" # "Access URL or IP" -#: ../../../../inc/tpl/accounts.php:220 +#: ../../../../inc/tpl/accounts.php:222 msgid "URL o IP de acceso" msgstr "URL vagy IP elérés" # "Access user" -#: ../../../../inc/tpl/accounts.php:236 +#: ../../../../inc/tpl/accounts.php:238 msgid "Usuario de acceso" msgstr "Felhasználó elérése" # "Notes about the account" -#: ../../../../inc/tpl/accounts.php:269 +#: ../../../../inc/tpl/accounts.php:271 msgid "Notas sobre la cuenta" msgstr "Jegyzetek a fiókokról" # "Permissions" -#: ../../../../inc/tpl/accounts.php:275 +#: ../../../../inc/tpl/accounts.php:277 msgid "Permisos" msgstr "Jofosultságok" # "Enable Edit" -#: ../../../../inc/tpl/accounts.php:297 ../../../../inc/tpl/accounts.php:323 +#: ../../../../inc/tpl/accounts.php:304 ../../../../inc/tpl/accounts.php:335 msgid "Hablitar edición" msgstr "Szerkesztés engedélyezése" # "Drop files here (max. 5) or click to select" -#: ../../../../inc/tpl/accounts.php:359 +#: ../../../../inc/tpl/accounts.php:371 msgid "Soltar archivos aquí (max. 5) o click para seleccionar" msgstr "Dobja el a fájlokat (max. 5) vagy kattintson a választáshoz" # "Maximum file size" -#: ../../../../inc/tpl/accounts.php:359 ../../../../inc/tpl/config.php:172 +#: ../../../../inc/tpl/accounts.php:371 ../../../../inc/tpl/config.php:192 msgid "Tamaño máximo de archivo" msgstr "Maximális fájl méret" # "History" -#: ../../../../inc/tpl/accounts.php:371 +#: ../../../../inc/tpl/accounts.php:383 msgid "Historial" msgstr "Elõzmények" # "Select date" -#: ../../../../inc/tpl/accounts.php:386 +#: ../../../../inc/tpl/accounts.php:398 msgid "Seleccionar fecha" msgstr "Válassz dátumot" # "Last Modification" -#: ../../../../inc/tpl/accounts.php:393 ../../../../inc/tpl/users.php:183 +#: ../../../../inc/tpl/accounts.php:405 ../../../../inc/tpl/users.php:183 msgid "Última Modificación" msgstr "Utoljára módosítva" # "by" -#: ../../../../inc/tpl/accounts.php:395 +#: ../../../../inc/tpl/accounts.php:407 msgid "por" msgstr "által" # "Visits" -#: ../../../../inc/tpl/accounts.php:405 +#: ../../../../inc/tpl/accounts.php:417 msgid "Visitas" msgstr "Látogatók" # "Date Added" -#: ../../../../inc/tpl/accounts.php:409 +#: ../../../../inc/tpl/accounts.php:421 msgid "Fecha Alta" msgstr "Dátum hozzáadva" # "Creator" -#: ../../../../inc/tpl/accounts.php:413 +#: ../../../../inc/tpl/accounts.php:425 msgid "Creador" msgstr "Készítõ" # "Main Group" -#: ../../../../inc/tpl/accounts.php:417 +#: ../../../../inc/tpl/accounts.php:429 msgid "Grupo Principal" msgstr "Fõcsoport" # "Secondary Users" -#: ../../../../inc/tpl/accounts.php:422 +#: ../../../../inc/tpl/accounts.php:434 msgid "Usuarios Secundarios" msgstr "Másodlagos felhasználók" # "Secondary Groups" -#: ../../../../inc/tpl/accounts.php:443 +#: ../../../../inc/tpl/accounts.php:455 msgid "Grupos Secundarios" msgstr "Másodlagos csoportok" # "Date Modified" -#: ../../../../inc/tpl/accounts.php:465 +#: ../../../../inc/tpl/accounts.php:477 msgid "Fecha Edición" msgstr "Adat módosítva" # "Editor" -#: ../../../../inc/tpl/accounts.php:469 +#: ../../../../inc/tpl/accounts.php:481 msgid "Editor" msgstr "Szerkesztõ" # "View Current" -#: ../../../../inc/tpl/accounts.php:491 +#: ../../../../inc/tpl/accounts.php:503 msgid "Ver Actual" msgstr "Általános" # "Restore account from this point" -#: ../../../../inc/tpl/accounts.php:503 +#: ../../../../inc/tpl/accounts.php:515 msgid "Restaurar cuenta desde este punto" msgstr "Restore véve ezen a ponton" # "Select secondary groups" -#: ../../../../inc/tpl/accounts.php:570 +#: ../../../../inc/tpl/accounts.php:582 msgid "Seleccionar grupos secundarios" msgstr " Válassz másodlagos csoportot" # "Select users" -#: ../../../../inc/tpl/accounts.php:573 +#: ../../../../inc/tpl/accounts.php:585 msgid "Seleccionar usuarios" msgstr "Válassz felhasználót" @@ -3421,202 +3441,224 @@ msgid "Descripción de la categoría" msgstr "Kategória leírás" # "Site" -#: ../../../../inc/tpl/config.php:63 +#: ../../../../inc/tpl/config.php:83 msgid "Sitio" msgstr "Oldal" # "Language" -#: ../../../../inc/tpl/config.php:71 +#: ../../../../inc/tpl/config.php:91 msgid "Idioma" msgstr "Nyelv" # "Session timeout (s)" -#: ../../../../inc/tpl/config.php:85 +#: ../../../../inc/tpl/config.php:105 msgid "Timeout de sesión (s)" msgstr "Munkamenet idõ" # "Enable event log" -#: ../../../../inc/tpl/config.php:93 +#: ../../../../inc/tpl/config.php:113 msgid "Habilitar log de eventos" msgstr "Esemény napló engedélyezése" # "Enable debug" -#: ../../../../inc/tpl/config.php:103 +#: ../../../../inc/tpl/config.php:123 msgid "Habilitar depuración" msgstr "Nyomkövetés engedélyezése" # "Maintenance mode." -#: ../../../../inc/tpl/config.php:113 +#: ../../../../inc/tpl/config.php:133 msgid "Modo mantenimiento" msgstr "Fenntartás mód" # "Check for updates" -#: ../../../../inc/tpl/config.php:123 +#: ../../../../inc/tpl/config.php:143 msgid "Comprobar actualizaciones" msgstr "Frissítések keresése" # "Account name as link" -#: ../../../../inc/tpl/config.php:133 +#: ../../../../inc/tpl/config.php:153 msgid "Nombre de cuenta como enlace" msgstr "Fiók neve linkként" # "Files management" -#: ../../../../inc/tpl/config.php:143 +#: ../../../../inc/tpl/config.php:163 msgid "Gestión de archivos" msgstr "Fájl menedzsment" # "Global searches" -#: ../../../../inc/tpl/config.php:153 +#: ../../../../inc/tpl/config.php:173 msgid "Búsquedas globales" msgstr "Gblobális Keresések" # "Allowed file extensions" -#: ../../../../inc/tpl/config.php:163 +#: ../../../../inc/tpl/config.php:183 msgid "Extensiones de archivos permitidas" msgstr "Engedélyezett fájl kiterjesztés" # "Results per page" -#: ../../../../inc/tpl/config.php:181 +#: ../../../../inc/tpl/config.php:201 msgid "Resultados por página" msgstr "Eredmény / oldal" # Results like Cards -#: ../../../../inc/tpl/config.php:197 +#: ../../../../inc/tpl/config.php:217 #, fuzzy msgid "Resultados en Tarjetas" msgstr "Results like Cards" # "Wiki" -#: ../../../../inc/tpl/config.php:209 +#: ../../../../inc/tpl/config.php:229 msgid "Wiki" msgstr "Wiki" # "Enable Wiki links" -#: ../../../../inc/tpl/config.php:215 +#: ../../../../inc/tpl/config.php:235 msgid "Habilitar enlaces Wiki" msgstr "Wiki linkek engedélyezése" # "Wiki search URL" -#: ../../../../inc/tpl/config.php:225 +#: ../../../../inc/tpl/config.php:245 msgid "URL de búsqueda Wiki" msgstr "Wiki keresés URL" # "Wiki page URL" -#: ../../../../inc/tpl/config.php:234 +#: ../../../../inc/tpl/config.php:254 msgid "URL de página en Wiki" msgstr "Wiki oldal URL" # "Account name preffix" -#: ../../../../inc/tpl/config.php:243 +#: ../../../../inc/tpl/config.php:263 msgid "Prefijo para nombre de cuenta" msgstr "Fiók név elõtag" # "LDAP" -#: ../../../../inc/tpl/config.php:255 +#: ../../../../inc/tpl/config.php:275 msgid "LDAP" msgstr "LDAP" # "Enable LDAP" -#: ../../../../inc/tpl/config.php:262 +#: ../../../../inc/tpl/config.php:282 msgid "Habilitar LDAP" msgstr "LDAP engedélyezése" # "Server" -#: ../../../../inc/tpl/config.php:272 ../../../../inc/tpl/config.php:359 +#: ../../../../inc/tpl/config.php:292 ../../../../inc/tpl/config.php:397 msgid "Servidor" msgstr "Szerver" # "Bind User" -#: ../../../../inc/tpl/config.php:281 +#: ../../../../inc/tpl/config.php:301 msgid "Usuario de conexión" msgstr "Bind felhasználó" # "Bind Password" -#: ../../../../inc/tpl/config.php:290 +#: ../../../../inc/tpl/config.php:310 msgid "Clave de conexión" msgstr "Bind jelszó" # "Search base" -#: ../../../../inc/tpl/config.php:299 +#: ../../../../inc/tpl/config.php:319 msgid "Base de búsqueda" msgstr "Keresés" +# Default Group +#: ../../../../inc/tpl/config.php:337 +#, fuzzy +msgid "Grupo por Defecto" +msgstr "Default Group" + +# Default Profile +#: ../../../../inc/tpl/config.php:346 +#, fuzzy +msgid "Perfil por Defecto" +msgstr "Default Profile" + # Active Directory -#: ../../../../inc/tpl/config.php:317 +#: ../../../../inc/tpl/config.php:355 #, fuzzy msgid "Active Directory" msgstr "Active Directory" # "Check" -#: ../../../../inc/tpl/config.php:327 +#: ../../../../inc/tpl/config.php:365 msgid "Comprobar" msgstr "Ellenõrzés" # "Check LDAP connection" -#: ../../../../inc/tpl/config.php:330 +#: ../../../../inc/tpl/config.php:368 msgid "Comprobar conexión con LDAP" msgstr "LDAP kapcsolat ellenõrzése" # "Mail" -#: ../../../../inc/tpl/config.php:344 +#: ../../../../inc/tpl/config.php:382 msgid "Correo" msgstr "Mail" # "Enable email notifications" -#: ../../../../inc/tpl/config.php:350 +#: ../../../../inc/tpl/config.php:388 msgid "Habilitar notificaciones de correo" msgstr "Email értesítés engedélyezése" # "Port" -#: ../../../../inc/tpl/config.php:367 +#: ../../../../inc/tpl/config.php:405 msgid "Puerto" msgstr "Port" # "Enable Authentication" -#: ../../../../inc/tpl/config.php:375 +#: ../../../../inc/tpl/config.php:413 msgid "Habilitar Autentificación" msgstr "Engedélyezése Hitelesítés" # "Security" -#: ../../../../inc/tpl/config.php:400 +#: ../../../../inc/tpl/config.php:438 msgid "Seguridad" msgstr "Biztonság" # "Disabled" -#: ../../../../inc/tpl/config.php:406 +#: ../../../../inc/tpl/config.php:444 msgid "Deshabilitada" msgstr "Inaktív" # "Recipient email address" -#: ../../../../inc/tpl/config.php:417 +#: ../../../../inc/tpl/config.php:455 msgid "Dirección de correo de envío" msgstr "Címzett email címe" # "Enable requests by email" -#: ../../../../inc/tpl/config.php:425 +#: ../../../../inc/tpl/config.php:463 msgid "Habilitar peticiones por correo" msgstr "Email kérések engedélyezése" # "Add extension" -#: ../../../../inc/tpl/config.php:468 +#: ../../../../inc/tpl/config.php:506 msgid "Añadir extensión" msgstr "Kiterjesztés hozzáadása" # "Delete extension" -#: ../../../../inc/tpl/config.php:469 +#: ../../../../inc/tpl/config.php:507 msgid "Eliminar extensión" msgstr "Kiterjesztés törlése" # "Add filter" -#: ../../../../inc/tpl/config.php:497 +#: ../../../../inc/tpl/config.php:535 msgid "Añadir filtro" msgstr "Szûrõ hozzáadása" # "Delete filter" -#: ../../../../inc/tpl/config.php:498 +#: ../../../../inc/tpl/config.php:536 msgid "Eliminar filtro" msgstr "Szûrõ törlése" +# "Select Group" +#: ../../../../inc/tpl/config.php:564 ../../../../inc/tpl/users.php:223 +msgid "Seleccionar Grupo" +msgstr "Válassz csoportot" + +# "Select Profile" +#: ../../../../inc/tpl/config.php:569 ../../../../inc/tpl/users.php:218 +msgid "Seleccionar Perfil" +msgstr "Válassz profilt" + # "Full username" #: ../../../../inc/tpl/users.php:71 msgid "Nombre de usuario completo" @@ -3677,16 +3719,6 @@ msgstr "Utolsó belépés" msgid "Fecha Clave Maestra" msgstr "Mester jelszó dátum" -# "Select Profile" -#: ../../../../inc/tpl/users.php:218 -msgid "Seleccionar Perfil" -msgstr "Válassz profilt" - -# "Select Group" -#: ../../../../inc/tpl/users.php:223 -msgid "Seleccionar Grupo" -msgstr "Válassz csoportot" - # "Date / Time" #: ../../../../inc/tpl/eventlog.php:56 msgid "Fecha / Hora" diff --git a/inc/log.class.php b/inc/log.class.php index e0df3e79..5503313f 100644 --- a/inc/log.class.php +++ b/inc/log.class.php @@ -99,7 +99,11 @@ class SP_Log $login = (isset($_SESSION["ulogin"])) ? $_SESSION["ulogin"] : "-"; $userId = (isset($_SESSION['uid'])) ? $_SESSION['uid'] : 0; $action = strip_tags(utf8_encode($message['action'])); - $description = strip_tags(utf8_encode(implode(';;', $message['text']))); + $description = (isset($message['text'])) ? strip_tags(utf8_encode(implode(';;', $message['text']))) : ''; + + if (defined('IS_INSTALLER') && IS_INSTALLER === 1) { + error_log('Action: ' . $action . ' -- Description: ' . $description); + } $query = "INSERT INTO log SET " . "log_date = UNIX_TIMESTAMP()," . diff --git a/inc/tpl/accounts.php b/inc/tpl/accounts.php index 7544c263..d381cfa7 100644 --- a/inc/tpl/accounts.php +++ b/inc/tpl/accounts.php @@ -100,6 +100,8 @@ switch ($action) { return; } +$gotData = (isset($accountData) && is_object($accountData)); + if ($data['id'] > 0) { // Comprobar permisos de acceso SP_ACL::checkAccountAccess($action, $account->getAccountDataForACL()) || SP_Html::showCommonError('noaccpermission'); @@ -114,7 +116,7 @@ $customersSelProp = array("name" => "customerId", "class" => "", "size" => 1, "label" => "", - "selected" => $accountData->account_customerId, + "selected" => ($gotData) ? $accountData->account_customerId : '', "default" => "", "js" => "", "attribs" => ""); @@ -124,12 +126,12 @@ $categoriesSelProp = array("name" => "categoryId", "class" => "", "size" => 1, "label" => "", - "selected" => $accountData->account_categoryId, + "selected" => ($gotData) ? $accountData->account_categoryId : '', "default" => "", "js" => "", "attribs" => ""); -$isModified = ($accountData->account_dateEdit && $accountData->account_dateEdit <> '0000-00-00 00:00:00'); +$isModified = ($gotData && $accountData->account_dateEdit && $accountData->account_dateEdit <> '0000-00-00 00:00:00'); $showHistory = (($action == 'accview' || $action == 'accviewhistory') && SP_ACL::checkUserAccess("accviewhistory") && ($isModified || $action == 'accviewhistory')); $showDetails = ($action == 'accview' || $action == 'accviewhistory' || $action == 'accdelete'); $showPass = ($action == "accnew" || $action == 'acccopy'); @@ -174,7 +176,7 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1); ?> + value="account_name : ''; ?>"> account_name; @@ -219,7 +221,7 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1); ?> + value="account_url : ''; ?>"> account_url; @@ -235,7 +237,7 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1); ?> + value="account_login : ''; ?>"> account_login; @@ -259,7 +261,7 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1); - + @@ -267,7 +269,7 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1); + maxlength="1000" >account_notes : ''; ?> @@ -284,11 +286,16 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1); foreach ($users as $otherUserName => $otherUserId) { $userSelected = ''; - if ($otherUserId != $accountData->account_userId) { + if ($gotData && $otherUserId != $accountData->account_userId) { if (isset($accountUsers) && is_array($accountUsers)) { $userSelected = (in_array($otherUserId, $accountUsers)) ? "selected" : ""; } echo ""; + } else{ + if ($userId === $otherUserId){ + continue; + } + echo ""; } } ?> @@ -310,11 +317,16 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1); foreach ($groups as $otherGroupName => $otherGroupId) { $uGroupSelected = ''; - if ($otherGroupId != $accountData->account_userGroupId) { + if ($gotData && $otherGroupId != $accountData->account_userGroupId) { if (isset($accountGroups) && is_array($accountGroups)) { $uGroupSelected = (in_array($otherGroupId, $accountGroups)) ? "selected" : ""; } echo ""; + } else{ + if ($userGroupId === $otherGroupId){ + continue; + } + echo ""; } } ?> @@ -488,7 +500,7 @@ $maxFileSize = round(SP_Config::getValue('files_allowed_size') / 1024, 1);
      accountIsHistory): ?>
    • -
    • diff --git a/inc/tpl/config.php b/inc/tpl/config.php index a6c4efd6..c52cf148 100644 --- a/inc/tpl/config.php +++ b/inc/tpl/config.php @@ -41,7 +41,7 @@ $mailSecurity = array('SSL','TLS'); $isDemoMode = SP_Util::demoIsEnabled(); -$txtDisabled = ( $isDemoMode ) ? "DISABLED" : ""; +$isDisabled = ( $isDemoMode ) ? "DISABLED" : ""; $chkLog = ( SP_Config::getValue('log_enabled') ) ? 'checked="checked"' : ''; $chkDebug = ( SP_Config::getValue('debug') ) ? 'checked="checked"' : ''; $chkMaintenance = ( SP_Config::getValue('maintenance') ) ? 'checked="checked"' : ''; @@ -57,6 +57,26 @@ $chkMailRequests = ( SP_Config::getValue('mail_requestsenabled') ) ? 'checked="c $chkMailAuth = ( SP_Config::getValue('mail_authenabled') ) ? 'checked="checked"' : ''; $chkResultsAsCards = ( SP_Config::getValue('resultsascards') ) ? 'checked="checked"' : ''; $allowedExts = SP_Config::getValue('files_allowed_exts'); + +$groupsSelProp = array('name' => 'ldap_defaultgroup', + 'id' => 'ldap_defaultgroup', + 'class' => '', + 'size' => 1, + 'label' => '', + 'selected' => SP_Config::getValue('ldap_defaultgroup'), + 'default' => '', + 'js' => '', + 'attribs' => array('required',$isDisabled)); + +$profilesSelProp = array('name' => 'ldap_defaultprofile', + 'id' => 'ldap_defaultprofile', + 'class' => '', + 'size' => 1, + 'label' => '', + 'selected' => SP_Config::getValue('ldap_defaultprofile'), + 'default' => '', + 'js' => '', + 'attribs' => array('required',$isDisabled)); ?>
      @@ -85,7 +105,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -95,7 +115,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -105,7 +125,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -115,7 +135,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -125,7 +145,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -145,7 +165,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -155,7 +175,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -173,7 +193,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -199,7 +219,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -217,7 +237,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -264,7 +284,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -312,6 +332,24 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); + + + + + + + + + + + + + + + + + + @@ -319,7 +357,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -351,7 +389,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -376,7 +414,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -426,7 +464,7 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); - /> + /> @@ -522,4 +560,14 @@ $allowedExts = SP_Config::getValue('files_allowed_exts'); $(this + '[title]').powerTip(powertipOptions); } }); + $("#ldap_defaultgroup").chosen({ + placeholder_text_single: "", + disable_search_threshold: 10, + no_results_text: "" + }); + $("#ldap_defaultprofile").chosen({ + placeholder_text_single: "", + disable_search_threshold: 10, + no_results_text: "" + }); \ No newline at end of file diff --git a/inc/tpl/editpass.php b/inc/tpl/editpass.php index f9a58658..9b9c36c3 100644 --- a/inc/tpl/editpass.php +++ b/inc/tpl/editpass.php @@ -1,11 +1,11 @@ accountId = $data['id']; $account->lastAction = $data['lastaction']; -$accountData= $account->getAccount(); +$accountData = $account->getAccount(); -( ! SP_ACL::checkAccountAccess("acceditpass", $account->getAccountDataForACL()) || ! SP_ACL::checkUserAccess("acceditpass")) && SP_Html::showCommonError('noaccpermission'); +(!SP_ACL::checkAccountAccess("acceditpass", $account->getAccountDataForACL()) || !SP_ACL::checkUserAccess("acceditpass")) && SP_Html::showCommonError('noaccpermission'); ?>
      -
      + - + + - + + - + @@ -54,20 +57,22 @@ $accountData= $account->getAccount();
      account_name; ?>account_name; ?>
      customer_name; ?>customer_name; ?>
      account_url; ?>account_url; ?>
      - +    - +
      - +
      - - + +
      @@ -75,14 +80,18 @@ $accountData= $account->getAccount();
      • - +
      • - +
      \ No newline at end of file diff --git a/inc/tpl/install.php b/inc/tpl/install.php index 081e98de..18ee88d3 100644 --- a/inc/tpl/install.php +++ b/inc/tpl/install.php @@ -40,7 +40,7 @@ if (isset($_POST['install']) AND $_POST['install'] == 'true') { ?> -
      +
    '; } - if ($isCompleted == 0): + if ($isCompleted === 0): ?>
    @@ -98,7 +98,10 @@ if (isset($_POST['install']) AND $_POST['install'] == 'true') { + value="" autocomplete="off" + onKeyUp="checkPassLevel(this.value,'adminaccount')" required/> +

    @@ -110,7 +113,10 @@ if (isset($_POST['install']) AND $_POST['install'] == 'true') { + value="" autocomplete="off" + onKeyUp="checkPassLevel(this.value,'masterpwd')" required/> +

    @@ -160,7 +166,8 @@ if (isset($_POST['install']) AND $_POST['install'] == 'true') { /> + id="hostingmode" + class="checkbox" />

    diff --git a/inc/tpl/masterpass.php b/inc/tpl/masterpass.php index a360886c..12d6cc3f 100644 --- a/inc/tpl/masterpass.php +++ b/inc/tpl/masterpass.php @@ -1,11 +1,11 @@ - 0 ): ?> - - - - - + 0): ?> + + + + + @@ -77,7 +78,7 @@ $lastUpdateMPass = SP_Config::getConfigValue("lastupdatempass"); @@ -85,43 +86,44 @@ $lastUpdateMPass = SP_Config::getConfigValue("lastupdatempass");
    - - - -
    + + + +
    @@ -59,7 +59,8 @@ $lastUpdateMPass = SP_Config::getConfigValue("lastupdatempass"); - + +
    - +
    - <?php echo _('Atención'); ?> + <?php echo _('Atención'); ?>
    - <?php echo _('Atención'); ?> + <?php echo _('Atención'); ?>
    - <?php echo _('Atención'); ?> + <?php echo _('Atención'); ?>

    - +
    - - - - + + + +
    • - +