From 749a45fd0a9fa5a03a680f95a4ae2cb30eefc1c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 21 Dec 2019 11:30:54 +0100 Subject: [PATCH 01/36] * [FIX] Do not allow deleting Plugins from the UI. Thanks to @yawnbros for the feedback. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- .../Controllers/Helpers/Grid/PluginGrid.php | 6 - public/js/app-actions.js | 25 +- public/js/app-actions.min.js | 17 +- public/vendor/css/magnific-popup.min.css | 2 +- public/vendor/css/toastr.min.css | 2 +- public/vendor/js/clipboard.min.js | 46 +-- public/vendor/js/jquery-3.3.1.min.js | 371 +++++++++--------- public/vendor/js/jquery-migrate-3.0.0.min.js | 34 +- public/vendor/js/jsencrypt.min.js | 215 +++++----- public/vendor/js/moment-timezone.min.js | 26 +- public/vendor/js/moment.min.js | 327 ++++++++------- public/vendor/js/selectize-plugins.min.js | 2 +- public/vendor/js/selectize.min.js | 185 ++++----- public/vendor/js/spark-md5.min.js | 30 +- public/vendor/js/toastr.min.js | 20 +- public/vendor/js/zxcvbn-async.min.js | 2 +- 16 files changed, 652 insertions(+), 658 deletions(-) diff --git a/app/modules/web/Controllers/Helpers/Grid/PluginGrid.php b/app/modules/web/Controllers/Helpers/Grid/PluginGrid.php index f5f64142..7a4dcb3c 100644 --- a/app/modules/web/Controllers/Helpers/Grid/PluginGrid.php +++ b/app/modules/web/Controllers/Helpers/Grid/PluginGrid.php @@ -69,12 +69,6 @@ final class PluginGrid extends GridBase $grid->addDataAction($this->getDisableAction()); $grid->addDataAction($this->getResetAction()); $grid->addDataAction($this->getDeleteAction()); - $grid->addDataAction( - $this->getDeleteAction() - ->setName(__('Delete Selected')) - ->setTitle(__('Delete Selected')) - ->setIsSelection(true), - true); $grid->setTime(round(getElapsedTime($this->queryTimeStart), 5)); diff --git a/public/js/app-actions.js b/public/js/app-actions.js index 566e3ab9..b8edcbd3 100644 --- a/public/js/app-actions.js +++ b/public/js/app-actions.js @@ -1470,30 +1470,7 @@ sysPass.Actions = function (log) { log.info("plugin:nav"); grid.nav($obj); - }, - delete: function ($obj) { - log.info("plugin:delete"); - - grid.delete($obj, function (items) { - const opts = sysPassApp.requests.getRequestOpts(); - opts.method = "get"; - opts.url = sysPassApp.util.getUrl(ajaxUrl.entrypoint, - { - r: [$obj.data("action-route"), (items.length === 0 ? $obj.data("item-id") : null)], - sk: sysPassApp.sk.get(), - isAjax: 1 - }); - opts.data = {items: items}; - - sysPassApp.requests.getActionCall(opts, function (json) { - sysPassApp.msg.out(json); - - if (json.status === 0) { - getContent({r: $obj.data("action-next")}); - } - }); - }); - }, + } }; /** diff --git a/public/js/app-actions.min.js b/public/js/app-actions.min.js index 6aa453fa..1f59a4ae 100644 --- a/public/js/app-actions.min.js +++ b/public/js/app-actions.min.js @@ -11,7 +11,7 @@ isAjax:1});return sysPassApp.requests.getActionCall(d)},copyPassHistory:function isAjax:1};sysPassApp.requests.getActionCall(u,function(c){sysPassApp.msg.out(c);0===c.status&&(a.data("status",d?"off":"on"),"function"===typeof b&&b())})},request:function(a){c.info("account:request");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("action-route")+"/"+a.data("item-id");b.data=a.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&void 0!==a.data.nextAction&&(sysPassApp.sk.set(a.csrf), f({r:a.data.nextAction},"account"))})},menu:function(a){a.hide();a.parent().children(".actions-optional").show(250)},sort:function(a){c.info("account:sort");var b=$("#frmSearch");b.find('input[name="skey"]').val(a.data("key"));b.find('input[name="sorder"]').val(a.data("dir"));b.find('input[name="start"]').val(a.data("start"));m.search()},editPass:function(a){c.info("account:editpass");var b=a.data("parent-id");b=void 0===b?a.data("item-id"):b;f({r:[a.data("action-route"),b]},"account")},saveEditRestore:function(a){c.info("account:restore"); var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint;b.data={r:a.data("action-route")+"/"+a.data("history-id")+"/"+a.data("item-id"),sk:sysPassApp.sk.get()};sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);void 0!==a.data.itemId&&void 0!==a.data.nextAction&&f({r:[a.data.nextAction,a.data.itemId]},"account")})},listFiles:function(a){c.info("account:getfiles");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.type="html";b.url=sysPassApp.util.getUrl(e.entrypoint, -{r:[a.data("action-route"),a.data("item-id")],del:a.data("delete"),sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(b,function(d){a.html(d)})},search:function(a){c.info("account:search");var b=$("#frmSearch");b.find("input[name='sk']").val(sysPassApp.sk.get());b.find("input[name='skey']").val();b.find("input[name='sorder']").val();void 0!==a&&b.find("input[name='start']").val(0);a=sysPassApp.requests.getRequestOpts();a.method="get";a.url=sysPassApp.util.getUrl(e.entrypoint,{r:b.data("action-route")}); +{r:[a.data("action-route"),a.data("item-id")],del:a.data("delete"),sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(b,function(b){a.html(b)})},search:function(a){c.info("account:search");var b=$("#frmSearch");b.find("input[name='sk']").val(sysPassApp.sk.get());b.find("input[name='skey']").val();b.find("input[name='sorder']").val();void 0!==a&&b.find("input[name='start']").val(0);a=sysPassApp.requests.getRequestOpts();a.method="get";a.url=sysPassApp.util.getUrl(e.entrypoint,{r:b.data("action-route")}); a.data=b.serialize();sysPassApp.requests.getActionCall(a,function(a){10===a.status&&sysPassApp.msg.out(a);$("#res-content").empty().html(a.data.html)})},save:function(a){c.info("account:save");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("action-route")+"/"+a.data("item-id");b.data=a.serialize();$("select.select-box-tags[data-hash][data-updated=true]").each(function(a,c){b.data+="&"+c.getAttribute("id")+"_update=1"});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a); void 0!==a.data.itemId&&void 0!==a.data.nextAction&&f({r:[a.data.nextAction,a.data.itemId]},"account")})}},w={logout:function(){sysPassApp.util.redirect("index.php?r=login/logout")},login:function(a){c.info("main:login");var b=sysPassApp.requests.getRequestOpts();b.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("route")});b.data=a.serialize();sysPassApp.requests.getActionCall(b,function(b){var d=$(".extra-hidden");switch(b.status){case 0:sysPassApp.util.redirect(b.data.url);break;case 2:sysPassApp.msg.out(b); a.find("input[type='text'],input[type='password']").val("");0";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})},refresh:function(a){$("#"+a.data("action-form")).submit()}},ajaxUrl:e,plugin:{toggle:function(a){c.info("plugin:enable"); g.state.update(a);var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){sysPassApp.msg.out(a);0===a.status&&setTimeout(function(){sysPassApp.util.redirect("index.php")},2E3)})},reset:function(a){c.info("plugin:reset");var b='

'+sysPassApp.config.LANG[58]+"

";mdlDialog().show({text:b, negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&&f({r:a.data("action-next")})})}}})}, -search:function(a){c.info("plugin:search");l.search(a)},show:function(a){c.info("plugin:show");v.show(a)},save:function(a){c.info("plugin:save");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("route");b.data=a.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&&(f({r:a.data("action-next")}),$.magnificPopup.close())})},nav:function(a){c.info("plugin:nav");l.nav(a)},delete:function(a){c.info("plugin:delete"); -l.delete(a,function(b){var d=sysPassApp.requests.getRequestOpts();d.method="get";d.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),0===b.length?a.data("item-id"):null],sk:sysPassApp.sk.get(),isAjax:1});d.data={items:b};sysPassApp.requests.getActionCall(d,function(b){sysPassApp.msg.out(b);0===b.status&&f({r:a.data("action-next")})})})}},notification:t,wiki:{show:function(a){c.info("wiki:show");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint, -{r:a.data("action-route"),pageName:a.data("pagename"),actionId:a.data("action-id"),sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){0!==a.status?sysPassApp.msg.out(a):h(a.data.html)})}},items:{get:function(a){c.info("items:get");var b=a[0].selectize;b.clearOptions();b.load(function(d){var c=sysPassApp.requests.getRequestOpts();c.method="get";c.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(c, -function(c){d(c.data);b.setValue(a.data("selected-id"),!0);sysPassApp.triggers.updateFormHash()})})},update:function(a){c.info("items:update");var b=$("#"+a.data("item-dst"))[0].selectize,d=b.getValue();b.clearOptions();b.load(function(c){var f=sysPassApp.requests.getRequestOpts();f.method="get";f.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("item-route"),sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(f,function(a){c(a);b.setValue(d,!0)})})}},ldap:{check:function(a){c.info("ldap:check"); -var b=$(a.data("src")),d=sysPassApp.requests.getRequestOpts();d.url=e.entrypoint+"?r="+a.data("action-route");d.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(d,function(a){sysPassApp.msg.out(a);0===a.status&&void 0!==a.data.template&&void 0!==a.data.items&&h(a.data.template,{open:function(){var b=$("#ldap-results").find(".list-wrap").empty();a.data.items.forEach(function(a){b.append(sysPassApp.theme.html.getList(a.items,a.icon))})}})})},import:function(a){c.info("ldap:import"); -var b='

'+sysPassApp.config.LANG[57]+"

";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b=$(a.data("src"));var c=sysPassApp.requests.getRequestOpts();c.url=e.entrypoint+"?r="+a.data("action-route");c.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(c,function(a){sysPassApp.msg.out(a)})}}})}}, -track:{unlock:function(a){c.info("track:unlock");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);g.refresh(a)})},clear:function(a){c.info("track:clear");var b='

'+sysPassApp.config.LANG[71]+"

";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44], -onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})},refresh:function(a){$("#"+a.data("action-form")).submit()}}}}; +search:function(a){c.info("plugin:search");l.search(a)},show:function(a){c.info("plugin:show");v.show(a)},save:function(a){c.info("plugin:save");var b=sysPassApp.requests.getRequestOpts();b.url=e.entrypoint+"?r="+a.data("route");b.data=a.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);0===b.status&&(f({r:a.data("action-next")}),$.magnificPopup.close())})},nav:function(a){c.info("plugin:nav");l.nav(a)}},notification:t,wiki:{show:function(a){c.info("wiki:show"); +var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("action-route"),pageName:a.data("pagename"),actionId:a.data("action-id"),sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(a){0!==a.status?sysPassApp.msg.out(a):h(a.data.html)})}},items:{get:function(a){c.info("items:get");var b=a[0].selectize;b.clearOptions();b.load(function(c){var d=sysPassApp.requests.getRequestOpts();d.method="get";d.url=sysPassApp.util.getUrl(e.entrypoint, +{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(d,function(d){c(d.data);b.setValue(a.data("selected-id"),!0);sysPassApp.triggers.updateFormHash()})})},update:function(a){c.info("items:update");var b=$("#"+a.data("item-dst"))[0].selectize,d=b.getValue();b.clearOptions();b.load(function(c){var f=sysPassApp.requests.getRequestOpts();f.method="get";f.url=sysPassApp.util.getUrl(e.entrypoint,{r:a.data("item-route"),sk:sysPassApp.sk.get()});sysPassApp.requests.getActionCall(f, +function(a){c(a);b.setValue(d,!0)})})}},ldap:{check:function(a){c.info("ldap:check");var b=$(a.data("src")),d=sysPassApp.requests.getRequestOpts();d.url=e.entrypoint+"?r="+a.data("action-route");d.data=b.serialize()+"&sk="+sysPassApp.sk.get();sysPassApp.requests.getActionCall(d,function(a){sysPassApp.msg.out(a);0===a.status&&void 0!==a.data.template&&void 0!==a.data.items&&h(a.data.template,{open:function(){var b=$("#ldap-results").find(".list-wrap").empty();a.data.items.forEach(function(a){b.append(sysPassApp.theme.html.getList(a.items, +a.icon))})}})})},import:function(a){c.info("ldap:import");var b='

'+sysPassApp.config.LANG[57]+"

";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b=$(a.data("src"));var c=sysPassApp.requests.getRequestOpts();c.url=e.entrypoint+"?r="+a.data("action-route");c.data=b.serialize()+"&sk="+ +sysPassApp.sk.get();sysPassApp.requests.getActionCall(c,function(a){sysPassApp.msg.out(a)})}}})}},track:{unlock:function(a){c.info("track:unlock");var b=sysPassApp.requests.getRequestOpts();b.method="get";b.url=sysPassApp.util.getUrl(e.entrypoint,{r:[a.data("action-route"),a.data("item-id")],sk:sysPassApp.sk.get(),isAjax:1});sysPassApp.requests.getActionCall(b,function(b){sysPassApp.msg.out(b);g.refresh(a)})},clear:function(a){c.info("track:clear");var b='

'+sysPassApp.config.LANG[71]+ +"

";mdlDialog().show({text:b,negative:{title:sysPassApp.config.LANG[44],onClick:function(a){a.preventDefault();sysPassApp.msg.error(sysPassApp.config.LANG[44])}},positive:{title:sysPassApp.config.LANG[43],onClick:function(b){b.preventDefault();g.save(a)}}})},refresh:function(a){$("#"+a.data("action-form")).submit()}}}}; diff --git a/public/vendor/css/magnific-popup.min.css b/public/vendor/css/magnific-popup.min.css index e19f0a4c..364a2307 100644 --- a/public/vendor/css/magnific-popup.min.css +++ b/public/vendor/css/magnific-popup.min.css @@ -1 +1 @@ -.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.5}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none!important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none!important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} \ No newline at end of file +.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.5}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#CCC}.mfp-preloader a:hover{color:#FFF}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3f3f3f}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid #3f3f3f}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}}@media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)}.mfp-arrow-left{-webkit-transform-origin:0 0;transform-origin:0 0}.mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}} \ No newline at end of file diff --git a/public/vendor/css/toastr.min.css b/public/vendor/css/toastr.min.css index c174f8f3..d095e5ac 100644 --- a/public/vendor/css/toastr.min.css +++ b/public/vendor/css/toastr.min.css @@ -1 +1 @@ -.toast-title{font-weight:bold}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#fff}.toast-message a:hover{color:#ccc;text-decoration:none}.toast-close-button{position:relative;right:-0.3em;top:-0.3em;float:right;font-size:20px;font-weight:bold;color:#fff;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:alpha(opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:hover,.toast-close-button:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:alpha(opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-0.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;border-radius:3px 3px 3px 3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#fff;opacity:.8;-ms-filter:alpha(opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:alpha(opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=")!important}#toast-container>.toast-error{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=")!important}#toast-container>.toast-success{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==")!important}#toast-container>.toast-warning{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=")!important}#toast-container.toast-top-center>div,#toast-container.toast-bottom-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-top-full-width>div,#toast-container.toast-bottom-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51a351}.toast-error{background-color:#bd362f}.toast-info{background-color:#2f96b4}.toast-warning{background-color:#f89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:alpha(opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-0.2em;top:-0.2em}#toast-container .rtl .toast-close-button{left:-0.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-0.2em;top:-0.2em}#toast-container .rtl .toast-close-button{left:-0.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}} \ No newline at end of file +.toast-title{font-weight:bold}.toast-message{-ms-word-wrap:break-word;word-wrap:break-word}.toast-message a,.toast-message label{color:#fff}.toast-message a:hover{color:#ccc;text-decoration:none}.toast-close-button{position:relative;right:-0.3em;top:-0.3em;float:right;font-size:20px;font-weight:bold;color:#fff;-webkit-text-shadow:0 1px 0 #fff;text-shadow:0 1px 0 #fff;opacity:.8;-ms-filter:alpha(opacity=80);filter:alpha(opacity=80);line-height:1}.toast-close-button:hover,.toast-close-button:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.4;-ms-filter:alpha(opacity=40);filter:alpha(opacity=40)}.rtl .toast-close-button{left:-0.3em;float:left;right:.3em}button.toast-close-button{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.toast-top-center{top:0;right:0;width:100%}.toast-bottom-center{bottom:0;right:0;width:100%}.toast-top-full-width{top:0;right:0;width:100%}.toast-bottom-full-width{bottom:0;right:0;width:100%}.toast-top-left{top:12px;left:12px}.toast-top-right{top:12px;right:12px}.toast-bottom-right{right:12px;bottom:12px}.toast-bottom-left{bottom:12px;left:12px}#toast-container{position:fixed;z-index:999999;pointer-events:none}#toast-container *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}#toast-container>div{position:relative;pointer-events:auto;overflow:hidden;margin:0 0 6px;padding:15px 15px 15px 50px;width:300px;-moz-border-radius:3px 3px 3px 3px;-webkit-border-radius:3px 3px 3px 3px;border-radius:3px 3px 3px 3px;background-position:15px center;background-repeat:no-repeat;-moz-box-shadow:0 0 12px #999;-webkit-box-shadow:0 0 12px #999;box-shadow:0 0 12px #999;color:#fff;opacity:.8;-ms-filter:alpha(opacity=80);filter:alpha(opacity=80)}#toast-container>div.rtl{direction:rtl;padding:15px 50px 15px 15px;background-position:right 15px center}#toast-container>div:hover{-moz-box-shadow:0 0 12px #000;-webkit-box-shadow:0 0 12px #000;box-shadow:0 0 12px #000;opacity:1;-ms-filter:alpha(opacity=100);filter:alpha(opacity=100);cursor:pointer}#toast-container>.toast-info{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important}#toast-container>.toast-error{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important}#toast-container>.toast-success{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important}#toast-container>.toast-warning{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important}#toast-container.toast-top-center>div,#toast-container.toast-bottom-center>div{width:300px;margin-left:auto;margin-right:auto}#toast-container.toast-top-full-width>div,#toast-container.toast-bottom-full-width>div{width:96%;margin-left:auto;margin-right:auto}.toast{background-color:#030303}.toast-success{background-color:#51a351}.toast-error{background-color:#bd362f}.toast-info{background-color:#2f96b4}.toast-warning{background-color:#f89406}.toast-progress{position:absolute;left:0;bottom:0;height:4px;background-color:#000;opacity:.4;-ms-filter:alpha(opacity=40);filter:alpha(opacity=40)}@media all and (max-width:240px){#toast-container>div{padding:8px 8px 8px 50px;width:11em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-0.2em;top:-0.2em}#toast-container .rtl .toast-close-button{left:-0.2em;right:.2em}}@media all and (min-width:241px) and (max-width:480px){#toast-container>div{padding:8px 8px 8px 50px;width:18em}#toast-container>div.rtl{padding:8px 50px 8px 8px}#toast-container .toast-close-button{right:-0.2em;top:-0.2em}#toast-container .rtl .toast-close-button{left:-0.2em;right:.2em}}@media all and (min-width:481px) and (max-width:768px){#toast-container>div{padding:15px 15px 15px 50px;width:25em}#toast-container>div.rtl{padding:15px 50px 15px 15px}} \ No newline at end of file diff --git a/public/vendor/js/clipboard.min.js b/public/vendor/js/clipboard.min.js index d425b17b..dfe4d840 100644 --- a/public/vendor/js/clipboard.min.js +++ b/public/vendor/js/clipboard.min.js @@ -1,22 +1,24 @@ -var $jscomp={scope:{}};$jscomp.defineProperty="function"==typeof Object.defineProperties?Object.defineProperty:function(c,b,e){if(e.get||e.set)throw new TypeError("ES3 does not support getters and setters.");c!=Array.prototype&&c!=Object.prototype&&(c[b]=e.value)};$jscomp.getGlobal=function(c){return"undefined"!=typeof window&&window===c?c:"undefined"!=typeof global&&null!=global?global:c};$jscomp.global=$jscomp.getGlobal(this);$jscomp.SYMBOL_PREFIX="jscomp_symbol_"; -$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};$jscomp.symbolCounter_=0;$jscomp.Symbol=function(c){return $jscomp.SYMBOL_PREFIX+(c||"")+$jscomp.symbolCounter_++}; -$jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var c=$jscomp.global.Symbol.iterator;c||(c=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("iterator"));"function"!=typeof Array.prototype[c]&&$jscomp.defineProperty(Array.prototype,c,{configurable:!0,writable:!0,value:function(){return $jscomp.arrayIterator(this)}});$jscomp.initSymbolIterator=function(){}};$jscomp.arrayIterator=function(c){var b=0;return $jscomp.iteratorPrototype(function(){return ba;a++)f.call(this,this._deferreds[a]);this._deferreds=null}function l(a,b,c,d){this.onFulfilled="function"==typeof a?a:null;this.onRejected="function"==typeof b?b:null;this.resolve=c;this.reject=d}function p(a,b,c){var d=!1;try{a(function(a){d||(d=!0,b(a))},function(a){d||(d=!0,c(a))})}catch(n){d||(d= -!0,c(n))}}var r=a.immediateFn||"function"==typeof setImmediate&&setImmediate||function(a){setTimeout(a,1)},q=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)};a.prototype["catch"]=function(a){return this.then(null,a)};a.prototype.then=function(b,c){var d=this;return new a(function(a,e){f.call(d,new l(b,c,a,e))})};a.all=function(){var b=Array.prototype.slice.call(1===arguments.length&&q(arguments[0])?arguments[0]:arguments);return new a(function(a,c){function d(f, -h){try{if(h&&("object"==typeof h||"function"==typeof h)){var g=h.then;if("function"==typeof g)return void g.call(h,function(a){d(f,a)},c)}b[f]=h;0===--e&&a(b)}catch(t){c(t)}}if(0===b.length)return a([]);for(var e=b.length,f=0;fd;d++)b[d].then(a,c)})}; -"undefined"!=typeof module&&module.exports?module.exports=a:b.Promise||(b.Promise=a)}(this),c.copy=function(b){return new Promise(function(c,a){if("string"!==typeof b&&!("text/plain"in b))throw Error("You must provide a text/plain type.");window.clipboardData.setData("Text","string"===typeof b?b:b["text/plain"])?c():a(Error("Copying was rejected."))})},c.paste=function(){return new Promise(function(b,c){var a=window.clipboardData.getData("Text");a?b(a):c(Error("Pasting was rejected."))})});return c}); +/* + promise-polyfill 2.0.1 */ +var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(b,a,f){b!=Array.prototype&&b!=Object.prototype&&(b[a]=f.value)};$jscomp.getGlobal=function(b){return"undefined"!=typeof window&&window===b?b:"undefined"!=typeof global&&null!=global?global:b};$jscomp.global=$jscomp.getGlobal(this);$jscomp.SYMBOL_PREFIX="jscomp_symbol_"; +$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};$jscomp.Symbol=function(){var b=0;return function(a){return $jscomp.SYMBOL_PREFIX+(a||"")+b++}}(); +$jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var b=$jscomp.global.Symbol.iterator;b||(b=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("iterator"));"function"!=typeof Array.prototype[b]&&$jscomp.defineProperty(Array.prototype,b,{configurable:!0,writable:!0,value:function(){return $jscomp.arrayIterator(this)}});$jscomp.initSymbolIterator=function(){}}; +$jscomp.initSymbolAsyncIterator=function(){$jscomp.initSymbol();var b=$jscomp.global.Symbol.asyncIterator;b||(b=$jscomp.global.Symbol.asyncIterator=$jscomp.global.Symbol("asyncIterator"));$jscomp.initSymbolAsyncIterator=function(){}};$jscomp.arrayIterator=function(b){var a=0;return $jscomp.iteratorPrototype(function(){return aa;a++)e.call(this,this._deferreds[a]);this._deferreds=null}function k(a,b,c,d){this.onFulfilled="function"==typeof a?a:null;this.onRejected="function"==typeof b?b:null;this.resolve=c;this.reject=d}function l(a,b,c){var d=!1;try{a(function(a){d||(d=!0,b(a))},function(a){d||(d=!0,c(a))})}catch(p){d||(d= +!0,c(p))}}var q=d.immediateFn||"function"==typeof setImmediate&&setImmediate||function(a){setTimeout(a,1)},u=Array.isArray||function(a){return"[object Array]"===Object.prototype.toString.call(a)};d.prototype["catch"]=function(a){return this.then(null,a)};d.prototype.then=function(a,b){var c=this;return new d(function(d,f){e.call(c,new k(a,b,d,f))})};d.all=function(){var a=Array.prototype.slice.call(1===arguments.length&&u(arguments[0])?arguments[0]:arguments);return new d(function(b,c){function d(f, +g){try{if(g&&("object"==typeof g||"function"==typeof g)){var h=g.then;if("function"==typeof h)return void h.call(g,function(a){d(f,a)},c)}a[f]=g;0===--e&&b(a)}catch(v){c(v)}}if(0===a.length)return b([]);for(var e=a.length,f=0;fd;d++)a[d].then(b,c)})}; +"undefined"!=typeof module&&module.exports?module.exports=d:a.Promise||(a.Promise=d)}(this),b.copy=function(a){return new Promise(function(b,d){if("string"!==typeof a&&!("text/plain"in a))throw Error("You must provide a text/plain type.");window.clipboardData.setData("Text","string"===typeof a?a:a["text/plain"])?b():d(Error("Copying was rejected."))})},b.paste=function(){return new Promise(function(a,b){var d=window.clipboardData.getData("Text");d?a(d):b(Error("Pasting was rejected."))})});return b}); diff --git a/public/vendor/js/jquery-3.3.1.min.js b/public/vendor/js/jquery-3.3.1.min.js index f13145f5..021cda55 100644 --- a/public/vendor/js/jquery-3.3.1.min.js +++ b/public/vendor/js/jquery-3.3.1.min.js @@ -1,175 +1,196 @@ -var $jscomp={scope:{},findInternal:function(p,E,C){p instanceof String&&(p=String(p));for(var H=p.length,I=0;I=(1-g)*(1-(g=k()/l||.5))&&(h=0),q/=g;q*=2;d.style(a,b,q+n);c=c||[]}c&&(q=+q||+l||0,f=c[1]?q+(c[1]+1)*c[2]:+c[2],e&&(e.unit=n,e.start=q,e.end=f));return f}function ka(a,b){for(var c,e,f=[],g=0,h=a.length;gh;h+=2)"margin"===c&&(l+=d.css(a,c+Z[h],!0,f)),e?("content"===c&&(l-=d.css(a, -"padding"+Z[h],!0,f)),"margin"!==c&&(l-=d.css(a,"border"+Z[h]+"Width",!0,f))):(l+=d.css(a,"padding"+Z[h],!0,f),"padding"!==c?l+=d.css(a,"border"+Z[h]+"Width",!0,f):k+=d.css(a,"border"+Z[h]+"Width",!0,f));!e&&0<=g&&(l+=Math.max(0,Math.ceil(a["offset"+b[0].toUpperCase()+b.slice(1)]-g-l-k-.5)));return l}function vb(a,b,c){var e=Ha(a),f=Y(a,b,e),g="border-box"===d.css(a,"boxSizing",!1,e),h=g;if(Ra.test(f)){if(!c)return f;f="auto"}h=h&&(v.boxSizingReliable()||f===a.style[b]);if("auto"===f||!parseFloat(f)&& -"inline"===d.css(a,"display",!1,e))f=a["offset"+b[0].toUpperCase()+b.slice(1)],h=!0;f=parseFloat(f)||0;return f+Sa(a,b,c||(g?"border":"content"),h,e,f)+"px"}function B(a,b,c,e,d){return new B.prototype.init(a,b,c,e,d)}function Ta(){Ia&&(!1===u.hidden&&p.requestAnimationFrame?p.requestAnimationFrame(Ta):p.setTimeout(Ta,d.fx.interval),d.fx.tick())}function wb(){p.setTimeout(function(){na=void 0});return na=Date.now()}function Ja(a,b){var c,e=0,d={height:a};for(b=b?1:0;4>e;e+=2-b)c=Z[e],d["margin"+c]= -d["padding"+c]=a;b&&(d.opacity=d.width=a);return d}function xb(a,b,c){for(var e,d=(U.tweeners[b]||[]).concat(U.tweeners["*"]),g=0,h=d.length;gc&&f)return b;f||h.notifyWith(a,[l,1,0]);h.resolveWith(a,[l]);return!1},l=h.promise({elem:a,props:d.extend({},b),opts:d.extend(!0,{specialEasing:{},easing:d.easing._default},c),originalProperties:b,originalOptions:c,startTime:na||wb(),duration:c.duration,tweens:[],createTween:function(b,c){var e=d.Tween(a,l.opts,b, -c,l.opts.specialEasing[b]||l.opts.easing);l.tweens.push(e);return e},stop:function(b){var c=0,d=b?l.tweens.length:0;if(e)return this;for(e=!0;ca?this[a+this.length]:this[a]},pushStack:function(a){a=d.merge(this.constructor(),a);a.prevObject=this;return a},each:function(a){return d.each(this,a)},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(S.apply(this,arguments))},first:function(){return this.eq(0)}, -last:function(){return this.eq(-1)},eq:function(a){var b=this.length;a=+a+(0>a?b:0);return this.pushStack(0<=a&&ax.cacheLength&&delete a[b.shift()];return a[c+" "]=d}var b=[];return a}function d(a){a[D]=!0;return a}function f(a){var b=z.createElement("fieldset");try{return!!a(b)}catch(A){return!1}finally{b.parentNode&&b.parentNode.removeChild(b)}}function g(a,b){for(var c=a.split("|"),d=c.length;d--;)x.attrHandle[c[d]]=b}function h(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)for(;c=c.nextSibling;)if(c===b)return-1;return a?1:-1}function k(a){return function(b){return"input"=== -b.nodeName.toLowerCase()&&b.type===a}}function l(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function n(a){return function(b){return"form"in b?b.parentNode&&!1===b.disabled?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&za(b)===a:b.disabled===a:"label"in b?b.disabled===a:!1}}function q(a){return d(function(b){b=+b;return d(function(c,d){for(var e,f=a([],c.length,b),g=f.length;g--;)c[e= -f[g]]&&(c[e]=!(d[e]=c[e]))})})}function p(a){return a&&"undefined"!==typeof a.getElementsByTagName&&a}function m(){}function Fa(a){for(var b=0,c=a.length,d="";b+~]|[\x20\t\r\n\f])[\x20\t\r\n\f]*/,la=RegExp("=[\\x20\\t\\r\\n\\f]*([^\\]'\"]*?)[\\x20\\t\\r\\n\\f]*\\]","g"),ma=/:((?:\\.|[\w-]|[^\x00-\xa0])+)(?:\((('((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)")|((?:\\.|[^\\()[\]]|\[[\x20\t\r\n\f]*((?:\\.|[\w-]|[^\x00-\xa0])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\.|[\w-]|[^\x00-\xa0])+))|)[\x20\t\r\n\f]*\])*)|.*)\)|)/, -na=/^(?:\\.|[\w-]|[^\x00-\xa0])+$/,aa={ID:/^#((?:\\.|[\w-]|[^\x00-\xa0])+)/,CLASS:/^\.((?:\\.|[\w-]|[^\x00-\xa0])+)/,TAG:/^((?:\\.|[\w-]|[^\x00-\xa0])+|[*])/,ATTR:/^\[[\x20\t\r\n\f]*((?:\\.|[\w-]|[^\x00-\xa0])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\.|[\w-]|[^\x00-\xa0])+))|)[\x20\t\r\n\f]*\]/,PSEUDO:/^:((?:\\.|[\w-]|[^\x00-\xa0])+)(?:\((('((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)")|((?:\\.|[^\\()[\]]|\[[\x20\t\r\n\f]*((?:\\.|[\w-]|[^\x00-\xa0])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\.|[\w-]|[^\x00-\xa0])+))|)[\x20\t\r\n\f]*\])*)|.*)\)|)/, -CHILD:/^:(only|first|last|nth|nth-last)-(child|of-type)(?:\([\x20\t\r\n\f]*(even|odd|(([+-]|)(\d*)n|)[\x20\t\r\n\f]*(?:([+-]|)[\x20\t\r\n\f]*(\d+)|))[\x20\t\r\n\f]*\)|)/i,bool:/^(?:checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)$/i,needsContext:/^[\x20\t\r\n\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\([\x20\t\r\n\f]*((?:-\d)?\d*)[\x20\t\r\n\f]*\)|)(?=[^-]|$)/i},va=/^(?:input|select|textarea|button)$/i,wa=/^h\d$/i,Y=/^[^{]+\{\s*\[native \w/, -ya=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ia=/[+~]/,fa=RegExp("\\\\([\\da-f]{1,6}[\\x20\\t\\r\\n\\f]?|([\\x20\\t\\r\\n\\f])|.)","ig"),ga=function(a,b,c){a="0x"+b-65536;return a!==a||c?b:0>a?String.fromCharCode(a+65536):String.fromCharCode(a>>10|55296,a&1023|56320)},sa=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ta=function(a,b){return b?"\x00"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},ua=function(){pa()},za=Ga(function(a){return!0===a.disabled&&("form"in -a||"label"in a)},{dir:"parentNode",next:"legend"});try{qa.apply(O=ba.call(V.childNodes),V.childNodes),O[V.childNodes.length].nodeType}catch(t){qa={apply:O.length?function(a,b){da.apply(a,ba.call(b))}:function(a,b){for(var c=a.length,d=0;a[c++]=b[d++];);a.length=c-1}}}w=b.support={};Cb=b.isXML=function(a){return(a=a&&(a.ownerDocument||a).documentElement)?"HTML"!==a.nodeName:!1};pa=b.setDocument=function(a){var b;a=a?a.ownerDocument||a:V;if(a===z||9!==a.nodeType||!a.documentElement)return z;z=a;K=z.documentElement; -G=!Cb(z);V!==z&&(b=z.defaultView)&&b.top!==b&&(b.addEventListener?b.addEventListener("unload",ua,!1):b.attachEvent&&b.attachEvent("onunload",ua));w.attributes=f(function(a){a.className="i";return!a.getAttribute("className")});w.getElementsByTagName=f(function(a){a.appendChild(z.createComment(""));return!a.getElementsByTagName("*").length});w.getElementsByClassName=Y.test(z.getElementsByClassName);w.getById=f(function(a){K.appendChild(a).id=D;return!z.getElementsByName||!z.getElementsByName(D).length}); -w.getById?(x.filter.ID=function(a){var b=a.replace(fa,ga);return function(a){return a.getAttribute("id")===b}},x.find.ID=function(a,b){if("undefined"!==typeof b.getElementById&&G){var c=b.getElementById(a);return c?[c]:[]}}):(x.filter.ID=function(a){var b=a.replace(fa,ga);return function(a){return(a="undefined"!==typeof a.getAttributeNode&&a.getAttributeNode("id"))&&a.value===b}},x.find.ID=function(a,b){if("undefined"!==typeof b.getElementById&&G){var c,d,e,f=b.getElementById(a);if(f){if((c=f.getAttributeNode("id"))&& -c.value===a)return[f];e=b.getElementsByName(a);for(d=0;f=e[d++];)if((c=f.getAttributeNode("id"))&&c.value===a)return[f]}return[]}});x.find.TAG=w.getElementsByTagName?function(a,b){if("undefined"!==typeof b.getElementsByTagName)return b.getElementsByTagName(a);if(w.qsa)return b.querySelectorAll(a)}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){for(;c=f[e++];)1===c.nodeType&&d.push(c);return d}return f};x.find.CLASS=w.getElementsByClassName&&function(a,b){if("undefined"!==typeof b.getElementsByClassName&& -G)return b.getElementsByClassName(a)};xa=[];J=[];if(w.qsa=Y.test(z.querySelectorAll))f(function(a){K.appendChild(a).innerHTML="";a.querySelectorAll("[msallowcapture^='']").length&&J.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")");a.querySelectorAll("[selected]").length||J.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)"); -a.querySelectorAll("[id~="+D+"-]").length||J.push("~=");a.querySelectorAll(":checked").length||J.push(":checked");a.querySelectorAll("a#"+D+"+*").length||J.push(".#.+[+~]")}),f(function(a){a.innerHTML="";var b=z.createElement("input");b.setAttribute("type","hidden");a.appendChild(b).setAttribute("name","D");a.querySelectorAll("[name=d]").length&&J.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?=");2!==a.querySelectorAll(":enabled").length&& -J.push(":enabled",":disabled");K.appendChild(a).disabled=!0;2!==a.querySelectorAll(":disabled").length&&J.push(":enabled",":disabled");a.querySelectorAll("*,:x");J.push(",.*:")});(w.matchesSelector=Y.test(B=K.matches||K.webkitMatchesSelector||K.mozMatchesSelector||K.oMatchesSelector||K.msMatchesSelector))&&f(function(a){w.disconnectedMatch=B.call(a,"*");B.call(a,"[s!='']:x");xa.push("!=",":((?:\\\\.|[\\w-]|[^\x00-\\xa0])+)(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|\\[[\\x20\\t\\r\\n\\f]*((?:\\\\.|[\\w-]|[^\x00-\\xa0])+)(?:[\\x20\\t\\r\\n\\f]*([*^$|!~]?=)[\\x20\\t\\r\\n\\f]*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|((?:\\\\.|[\\w-]|[^\x00-\\xa0])+))|)[\\x20\\t\\r\\n\\f]*\\])*)|.*)\\)|)")}); -J=J.length&&new RegExp(J.join("|"));xa=xa.length&&new RegExp(xa.join("|"));L=(b=Y.test(K.compareDocumentPosition))||Y.test(K.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&1===d.nodeType&&(c.contains?c.contains(d):a.compareDocumentPosition&&a.compareDocumentPosition(d)&16))}:function(a,b){if(b)for(;b=b.parentNode;)if(b===a)return!0;return!1};T=b?function(a,b){if(a===b)return Aa=!0,0;var c=!a.compareDocumentPosition-!b.compareDocumentPosition; -if(c)return c;c=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1;return c&1||!w.sortDetached&&b.compareDocumentPosition(a)===c?a===z||a.ownerDocument===V&&L(V,a)?-1:b===z||b.ownerDocument===V&&L(V,b)?1:ra?S(ra,a)-S(ra,b):0:c&4?-1:1}:function(a,b){if(a===b)return Aa=!0,0;var c,d=0;c=a.parentNode;var e=b.parentNode,f=[a],g=[b];if(!c||!e)return a===z?-1:b===z?1:c?-1:e?1:ra?S(ra,a)-S(ra,b):0;if(c===e)return h(a,b);for(c=a;c=c.parentNode;)f.unshift(c);for(c=b;c=c.parentNode;)g.unshift(c); -for(;f[d]===g[d];)d++;return d?h(f[d],g[d]):f[d]===V?-1:g[d]===V?1:0};return z};b.matches=function(a,c){return b(a,null,null,c)};b.matchesSelector=function(a,c){(a.ownerDocument||a)!==z&&pa(a);c=c.replace(la,"='$1']");if(!(!w.matchesSelector||!G||Q[c+" "]||xa&&xa.test(c)||J&&J.test(c)))try{var d=B.call(a,c);if(d||w.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(oa){}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0}, -"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){a[1]=a[1].replace(fa,ga);a[3]=(a[3]||a[4]||a[5]||"").replace(fa,ga);"~="===a[2]&&(a[3]=" "+a[3]+" ");return a.slice(0,4)},CHILD:function(a){a[1]=a[1].toLowerCase();"nth"===a[1].slice(0,3)?(a[3]||b.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&b.error(a[0]);return a},PSEUDO:function(a){var b,c=!a[6]&&a[2];if(aa.CHILD.test(a[0]))return null;a[3]?a[2]=a[4]||a[5]||"":c&&ma.test(c)&& -(b=H(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b));return a.slice(0,3)}},filter:{TAG:function(a){var b=a.replace(fa,ga).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=R[a+" "];return b||(b=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+a+"([\\x20\\t\\r\\n\\f]|$)"),R(a,function(a){return b.test("string"===typeof a.className&&a.className||"undefined"!==typeof a.getAttribute&&a.getAttribute("class")|| -"")}))},ATTR:function(a,c,d){return function(e){e=b.attr(e,a);if(null==e)return"!="===c;if(!c)return!0;e+="";return"="===c?e===d:"!="===c?e!==d:"^="===c?d&&0===e.indexOf(d):"*="===c?d&&-1a.nodeType)return!1;return!0},parent:function(a){return!x.pseudos.empty(a)},header:function(a){return wa.test(a.nodeName)},input:function(a){return va.test(a.nodeName)},button:function(a){var b= -a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:q(function(){return[0]}),last:q(function(a,b){return[b-1]}),eq:q(function(a,b,c){return[0>c?c+b:c]}),even:q(function(a,b){for(var c=0;cc?c+b:c;0<=--b;)a.push(b); -return a}),gt:q(function(a,b,c){for(c=0>c?c+b:c;++c";a.firstChild.setAttribute("value","");return""===a.firstChild.getAttribute("value")})|| -g("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue});f(function(a){return null==a.getAttribute("disabled")})||g("checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",function(a,b,c){var d;if(!c)return!0===a[b]?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null});return b}(p);d.find=ha;d.expr=ha.selectors;d.expr[":"]=d.expr.pseudos;d.uniqueSort=d.unique=ha.uniqueSort;d.text= -ha.getText;d.isXMLDoc=ha.isXML;d.contains=ha.contains;d.escapeSelector=ha.escape;var aa=function(a,b,c){for(var e=[],f=void 0!==c;(a=a[b])&&9!==a.nodeType;)if(1===a.nodeType){if(f&&d(a).is(c))break;e.push(a)}return e},Db=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},Eb=d.expr.match.needsContext,Fb=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;d.filter=function(a,b,c){var e=b[0];c&&(a=":not("+a+")");return 1===b.length&&1===e.nodeType?d.find.matchesSelector(e, -a)?[e]:[]:d.find.matches(a,d.grep(b,function(a){return 1===a.nodeType}))};d.fn.extend({find:function(a){var b,c,e=this.length,f=this;if("string"!==typeof a)return this.pushStack(d(a).filter(function(){for(b=0;b)[^>]*|#([\w-]+))$/;(d.fn.init=function(a,b,c){var e;if(!a)return this;c=c||Gb;if("string"===typeof a){e="<"===a[0]&&">"===a[a.length-1]&&3<=a.length?[null,a,null]:mc.exec(a);if(!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof d?b[0]:b,d.merge(this,d.parseHTML(e[1],b&&b.nodeType?b.ownerDocument||b:u,!0)),Fb.test(e[1])&&d.isPlainObject(b))for(e in b)if(r(this[e]))this[e](b[e]);else this.attr(e, -b[e])}else if(a=u.getElementById(e[2]))this[0]=a,this.length=1;return this}return a.nodeType?(this[0]=a,this.length=1,this):r(a)?void 0!==c.ready?c.ready(a):a(d):d.makeArray(a,this)}).prototype=d.fn;Gb=d(u);var nc=/^(?:parents|prev(?:Until|All))/,oc={children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({has:function(a){var b=d(a,this),c=b.length;return this.filter(function(){for(var a=0;ac.nodeType&&(h?-1=g&&(c!==za&&(h=void 0,k=[Bb]),b.rejectWith(h,k))}};a?m():(d.Deferred.getStackHook&&(m.stackTrace=d.Deferred.getStackHook()),p.setTimeout(m))}}var g=0;return d.Deferred(function(d){b[0][3].add(f(0,d,r(e)?e:ja,d.notifyWith));b[1][3].add(f(0,d,r(a)?a:ja)); -b[2][3].add(f(0,d,r(c)?c:za))}).promise()},promise:function(a){return null!=a?d.extend(a,e):e}},f={};d.each(b,function(a,d){var g=d[2],h=d[5];e[d[1]]=g.add;h&&g.add(function(){c=h},b[3-a][2].disable,b[3-a][3].disable,b[0][2].lock,b[0][3].lock);g.add(d[3].fire);f[d[0]]=function(){f[d[0]+"With"](this===f?void 0:this,arguments);return this};f[d[0]+"With"]=g.fireWith});e.promise(f);a&&a.call(f,f);return f},when:function(a){var b=arguments.length,c=b,e=Array(c),f=S.call(arguments),g=d.Deferred(),h=function(a){return function(c){e[a]= -this;f[a]=1=b&&(eb(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r(f[c]&&f[c].then)))return g.then();for(;c--;)eb(f[c],h(c),g.reject);return g.promise()}});var pc=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;d.Deferred.exceptionHook=function(a,b){p.console&&p.console.warn&&a&&pc.test(a.name)&&p.console.warn("jQuery.Deferred exception: "+a.message,a.stack,b)};d.readyException=function(a){p.setTimeout(function(){throw a; -})};var Za=d.Deferred();d.fn.ready=function(a){Za.then(a)["catch"](function(a){d.readyException(a)});return this};d.extend({isReady:!1,readyWait:1,ready:function(a){(!0===a?--d.readyWait:d.isReady)||(d.isReady=!0,!0!==a&&0<--d.readyWait||Za.resolveWith(u,[d]))}});d.ready.then=Za.then;"complete"===u.readyState||"loading"!==u.readyState&&!u.documentElement.doScroll?p.setTimeout(d.ready):(u.addEventListener("DOMContentLoaded",Ca),p.addEventListener("load",Ca));var O=function(a,b,c,e,f,g,h){var k=0,l= -a.length,n=null==c;if("object"===H(c))for(k in f=!0,c)O(a,b,k,c[k],!0,g,h);else if(void 0!==e&&(f=!0,r(e)||(h=!0),n&&(h?(b.call(a,e),b=null):(n=b,b=function(a,b,c){return n.call(d(a),c)})),b))for(;k\x20\t\r\n\f]+)/i, -kb=/^$|^module$|\/(?:java|ecma)script/i,R={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};R.optgroup=R.option;R.tbody=R.tfoot=R.colgroup=R.caption=R.thead;R.th=R.td;var bc=/<|&#?\w+;/;(function(){var a=u.createDocumentFragment().appendChild(u.createElement("div")),b=u.createElement("input");b.setAttribute("type", -"radio");b.setAttribute("checked","checked");b.setAttribute("name","t");a.appendChild(b);v.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked;a.innerHTML="";v.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue})();var Na=u.documentElement,qc=/^key/,rc=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Kb=/^([^.]*)(?:\.(.+)|)/;d.event={global:{},add:function(a,b,c,e,f){var g,h,k,l,n,q,p,m,r;if(n=y.get(a))for(c.handler&&(g=c,c=g.handler,f=g.selector),f&&d.find.matchesSelector(Na, -f),c.guid||(c.guid=d.guid++),(l=n.events)||(l=n.events={}),(h=n.handle)||(h=n.handle=function(b){return"undefined"!==typeof d&&d.event.triggered!==b.type?d.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(Q)||[""],n=b.length;n--;)k=Kb.exec(b[n])||[],m=q=k[1],r=(k[2]||"").split(".").sort(),m&&(k=d.event.special[m]||{},m=(f?k.delegateType:k.bindType)||m,k=d.event.special[m]||{},q=d.extend({type:m,origType:q,data:e,handler:c,guid:c.guid,selector:f,needsContext:f&&d.expr.match.needsContext.test(f), -namespace:r.join(".")},g),(p=l[m])||(p=l[m]=[],p.delegateCount=0,k.setup&&!1!==k.setup.call(a,e,r,h)||a.addEventListener&&a.addEventListener(m,h)),k.add&&(k.add.call(a,q),q.handler.guid||(q.handler.guid=c.guid)),f?p.splice(p.delegateCount++,0,q):p.push(q),d.event.global[m]=!0)},remove:function(a,b,c,e,f){var g,h,k,l,n,q,p,m,r,u,v,E=y.hasData(a)&&y.get(a);if(E&&(l=E.events)){b=(b||"").match(Q)||[""];for(n=b.length;n--;)if(k=Kb.exec(b[n])||[],r=v=k[1],u=(k[2]||"").split(".").sort(),r){p=d.event.special[r]|| -{};r=(e?p.delegateType:p.bindType)||r;m=l[r]||[];k=k[2]&&new RegExp("(^|\\.)"+u.join("\\.(?:.*\\.|)")+"(\\.|$)");for(h=g=m.length;g--;)q=m[g],!f&&v!==q.origType||c&&c.guid!==q.guid||k&&!k.test(q.namespace)||e&&e!==q.selector&&("**"!==e||!q.selector)||(m.splice(g,1),q.selector&&m.delegateCount--,p.remove&&p.remove.call(a,q));h&&!m.length&&(p.teardown&&!1!==p.teardown.call(a,u,E.handle)||d.removeEvent(a,r,E.handle),delete l[r])}else for(r in l)d.event.remove(a,r+b[n],c,e,!0);d.isEmptyObject(l)&&y.remove(a, -"handle events")}},dispatch:function(a){var b=d.event.fix(a),c,e,f,g,h,k=Array(arguments.length);e=(y.get(this,"events")||{})[b.type]||[];var l=d.event.special[b.type]||{};k[0]=b;for(c=1;c\x20\t\r\n\f]*)[^>]*)\/>/gi, -tc=/\s*$/g;d.extend({htmlPrefilter:function(a){return a.replace(sc,"<$1>")},clone:function(a,b,c){var e,f,g,h,k=a.cloneNode(!0),l=d.contains(a.ownerDocument,a);if(!(v.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||d.isXMLDoc(a)))for(h=N(k),g=N(a),e=0,f=g.length;ed.inArray(this,a)&&(d.cleanData(N(this)),c&&c.replaceChild(b, -this))},a)}});d.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){d.fn[a]=function(a){for(var c=[],f=d(a),g=f.length-1,h=0;h<=g;h++)a=h===g?this:this.clone(!0),d(f[h])[b](a),Ya.apply(c,a.get());return this.pushStack(c)}});var Ra=new RegExp("^("+Hb+")(?!px)[a-z%]+$","i"),Ha=function(a){var b=a.ownerDocument.defaultView;b&&b.opener||(b=p);return b.getComputedStyle(a)},gc=new RegExp(Z.join("|"),"i");(function(){function a(){if(k){h.style.cssText= -"position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0";k.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%";Na.appendChild(h).appendChild(k);var a=p.getComputedStyle(k);b="1%"!==a.top;g=12===Math.round(parseFloat(a.marginLeft));k.style.right="60%";f=36===Math.round(parseFloat(a.right));c=36===Math.round(parseFloat(a.width));k.style.position="absolute";e=36===k.offsetWidth||"absolute";Na.removeChild(h); -k=null}}var b,c,e,f,g,h=u.createElement("div"),k=u.createElement("div");k.style&&(k.style.backgroundClip="content-box",k.cloneNode(!0).style.backgroundClip="",v.clearCloneStyle="content-box"===k.style.backgroundClip,d.extend(v,{boxSizingReliable:function(){a();return c},pixelBoxStyles:function(){a();return f},pixelPosition:function(){a();return b},reliableMarginLeft:function(){a();return g},scrollboxSize:function(){a();return e}}))})();var uc=/^(none|table(?!-c[ea]).+)/,Lb=/^--/,vc={position:"absolute", -visibility:"hidden",display:"block"},Mb={letterSpacing:"0",fontWeight:"400"},tb=["Webkit","Moz","ms"],sb=u.createElement("div").style;d.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Y(a,"opacity");return""===c?"1":c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(a,b,c,e){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var f, -g,h,k=T(b),l=Lb.test(b),n=a.style;l||(b=rb(k));h=d.cssHooks[b]||d.cssHooks[k];if(void 0!==c)g=typeof c,"string"===g&&(f=wa.exec(c))&&f[1]&&(c=gb(a,b,f),g="number"),null!=c&&c===c&&("number"===g&&(c+=f&&f[3]||(d.cssNumber[k]?"":"px")),v.clearCloneStyle||""!==c||0!==b.indexOf("background")||(n[b]="inherit"),h&&"set"in h&&void 0===(c=h.set(a,c,e))||(l?n.setProperty(b,c):n[b]=c));else return h&&"get"in h&&void 0!==(f=h.get(a,!1,e))?f:n[b]}},css:function(a,b,c,e){var f,g;g=T(b);Lb.test(b)||(b=rb(g));(g= -d.cssHooks[b]||d.cssHooks[g])&&"get"in g&&(f=g.get(a,!0,c));void 0===f&&(f=Y(a,b,e));"normal"===f&&b in Mb&&(f=Mb[b]);return""===c||c?(a=parseFloat(f),!0===c||isFinite(a)?a||0:f):f}});d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,e,f){if(e)return!uc.test(d.css(a,"display"))||a.getClientRects().length&&a.getBoundingClientRect().width?vb(a,b,f):Ib(a,vc,function(){return vb(a,b,f)})},set:function(a,e,f){var c,h=Ha(a),k="border-box"===d.css(a,"boxSizing",!1,h);f=f&&Sa(a,b,f,k, -h);k&&v.scrollboxSize()===h.position&&(f-=Math.ceil(a["offset"+b[0].toUpperCase()+b.slice(1)]-parseFloat(h[b])-Sa(a,b,"border",!1,h)-.5));f&&(c=wa.exec(e))&&"px"!==(c[3]||"px")&&(a.style[b]=e,e=d.css(a,b));return ub(a,e,f)}}});d.cssHooks.marginLeft=qb(v.reliableMarginLeft,function(a,b){if(b)return(parseFloat(Y(a,"marginLeft"))||a.getBoundingClientRect().left-Ib(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}))+"px"});d.each({margin:"",padding:"",border:"Width"},function(a,b){d.cssHooks[a+ -b]={expand:function(c){var d=0,f={};for(c="string"===typeof c?c.split(" "):[c];4>d;d++)f[a+Z[d]+b]=c[d]||c[d-2]||c[0];return f}};"margin"!==a&&(d.cssHooks[a+b].set=ub)});d.fn.extend({css:function(a,b){return O(this,function(a,b,f){var c,e={},k=0;if(Array.isArray(b)){f=Ha(a);for(c=b.length;ke.indexOf(" "+g+" ")&&(e+=g+" ");e=ca(e);f!==e&&c.setAttribute("class",e)}return this},removeClass:function(a){var b,c,e,f,g,h,k=0;if(r(a))return this.each(function(b){d(this).removeClass(a.call(this,b,da(this)))});if(!arguments.length)return this.attr("class","");b=Ua(a);if(b.length)for(;c=this[k++];)if(f=da(c),e=1===c.nodeType&&" "+ca(f)+" "){for(h=0;g=b[h++];)for(;-1e?h:f?e:0;am.indexOf(":")&&"on"+m,a=a[d.expando]?a:new d.Event(m,"object"=== -typeof a&&a),a.isTrigger=e?2:3,a.namespace=n.join("."),a.rnamespace=a.namespace?new RegExp("(^|\\.)"+n.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,a.result=void 0,a.target||(a.target=c),b=null==b?[a]:d.makeArray(b,[a]),n=d.event.special[m]||{},e||!n.trigger||!1!==n.trigger.apply(c,b))){if(!e&&!n.noBubble&&!W(c)){h=n.delegateType||m;Ob.test(h+m)||(g=g.parentNode);for(;g;g=g.parentNode)v.push(g),f=g;f===(c.ownerDocument||u)&&v.push(f.defaultView||f.parentWindow||p)}for(f=0;(g=v[f++])&&!a.isPropagationStopped();)q= -g,a.type=1a||304===a;if(c){x=m;for(var C=w,B,z,K,G,J=x.contents,F=x.dataTypes;"*"===F[0];)F.shift(),void 0=== -B&&(B=x.mimeType||C.getResponseHeader("Content-Type"));if(B)for(z in J)if(J[z]&&J[z].test(B)){F.unshift(z);break}if(F[0]in c)K=F[0];else{for(z in c){if(!F[0]||x.converters[z+" "+F[0]]){K=z;break}G||(G=z)}K=K||G}K?(K!==F[0]&&F.unshift(K),x=c[K]):x=void 0}a:{c=m;B=x;z=w;K=h;var ea,L,D,C={},J=c.dataTypes.slice();if(J[1])for(L in c.converters)C[L.toLowerCase()]=c.converters[L];for(G=J.shift();G;)if(c.responseFields[G]&&(z[c.responseFields[G]]=B),!D&&K&&c.dataFilter&&(B=c.dataFilter(B,c.dataType)),D=G, -G=J.shift())if("*"===G)G=D;else if("*"!==D&&D!==G){L=C[D+" "+G]||C["* "+G];if(!L)for(ea in C)if(x=ea.split(" "),x[1]===G&&(L=C[D+" "+x[0]]||C["* "+x[0]])){!0===L?L=C[ea]:!0!==C[ea]&&(G=x[0],J.unshift(x[1]));break}if(!0!==L)if(L&&c["throws"])B=L(B);else try{B=L(B)}catch(V){x={state:"parsererror",error:L?V:"No conversion from "+D+" to "+G};break a}}x={state:"success",data:B}}if(h)m.ifModified&&((u=w.getResponseHeader("Last-Modified"))&&(d.lastModified[f]=u),(u=w.getResponseHeader("etag"))&&(d.etag[f]= -u)),204===a||"HEAD"===m.type?u="nocontent":304===a?u="notmodified":(u=x.state,l=x.data,r=x.error,h=!r);else if(r=u,a||!u)u="error",0>a&&(a=0);w.status=a;w.statusText=(b||u)+"";h?E.resolveWith(v,[l,u,w]):E.rejectWith(v,[w,u,r]);w.statusCode(H);H=void 0;q&&y.trigger(h?"ajaxSuccess":"ajaxError",[w,m,h?l:r]);I.fireWith(v,[w,u]);q&&(y.trigger("ajaxComplete",[w,m]),--d.active||d.event.trigger("ajaxStop"))}}"object"===typeof a&&(b=a,a=void 0);b=b||{};var e,f,g,h,k,l,n,q,r,m=d.ajaxSetup({},b),v=m.context|| -m,y=m.context&&(v.nodeType||v.jquery)?d(v):d.event,E=d.Deferred(),I=d.Callbacks("once memory"),H=m.statusCode||{},C={},B={},F="canceled",w={readyState:0,getResponseHeader:function(a){var b;if(n){if(!h)for(h={};b=Gc.exec(g);)h[b[1].toLowerCase()]=b[2];b=h[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return n?g:null},setRequestHeader:function(a,b){null==n&&(a=B[a.toLowerCase()]=B[a.toLowerCase()]||a,C[a]=b);return this},overrideMimeType:function(a){null==n&&(m.mimeType=a); -return this},statusCode:function(a){var b;if(a)if(n)w.always(a[w.status]);else for(b in a)H[b]=[H[b],a[b]];return this},abort:function(a){a=a||F;e&&e.abort(a);c(0,a);return this}};E.promise(w);m.url=((a||m.url||ia.href)+"").replace(Ic,ia.protocol+"//");m.type=b.method||b.type||m.method||m.type;m.dataTypes=(m.dataType||"*").toLowerCase().match(Q)||[""];if(null==m.crossDomain){l=u.createElement("a");try{l.href=m.url,l.href=l.href,m.crossDomain=ab.protocol+"//"+ab.host!==l.protocol+"//"+l.host}catch(x){m.crossDomain= -!0}}m.data&&m.processData&&"string"!==typeof m.data&&(m.data=d.param(m.data,m.traditional));zb(Sb,m,b,w);if(n)return w;(q=d.event&&m.global)&&0===d.active++&&d.event.trigger("ajaxStart");m.type=m.type.toUpperCase();m.hasContent=!Hc.test(m.type);f=m.url.replace(Ec,"");m.hasContent?m.data&&m.processData&&0===(m.contentType||"").indexOf("application/x-www-form-urlencoded")&&(m.data=m.data.replace(Dc,"+")):(l=m.url.slice(f.length),m.data&&(m.processData||"string"===typeof m.data)&&(f+=($a.test(f)?"&": -"?")+m.data,delete m.data),!1===m.cache&&(f=f.replace(Fc,"$1"),l=($a.test(f)?"&":"?")+"_="+Qb++ +l),m.url=f+l);m.ifModified&&(d.lastModified[f]&&w.setRequestHeader("If-Modified-Since",d.lastModified[f]),d.etag[f]&&w.setRequestHeader("If-None-Match",d.etag[f]));(m.data&&m.hasContent&&!1!==m.contentType||b.contentType)&&w.setRequestHeader("Content-Type",m.contentType);w.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+("*"!==m.dataTypes[0]?", "+Tb+"; q=0.01": -""):m.accepts["*"]);for(r in m.headers)w.setRequestHeader(r,m.headers[r]);if(m.beforeSend&&(!1===m.beforeSend.call(v,w,m)||n))return w.abort();F="abort";I.add(m.complete);w.done(m.success);w.fail(m.error);if(e=zb(Wa,m,b,w)){w.readyState=1;q&&y.trigger("ajaxSend",[w,m]);if(n)return w;m.async&&0").prop({charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove();c=null;a&&f("error"===a.type?404:200,a.type)});u.head.appendChild(b[0])},abort:function(){c&&c()}}}}); -var Ub=[],bb=/(=)\?(?=&|$)|\?\?/;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Ub.pop()||d.expando+"_"+Qb++;this[a]=!0;return a}});d.ajaxPrefilter("json jsonp",function(a,b,c){var e,f,g,h=!1!==a.jsonp&&(bb.test(a.url)?"url":"string"===typeof a.data&&0===(a.contentType||"").indexOf("application/x-www-form-urlencoded")&&bb.test(a.data)&&"data");if(h||"jsonp"===a.dataTypes[0])return e=a.jsonpCallback=r(a.jsonpCallback)?a.jsonpCallback():a.jsonpCallback,h?a[h]=a[h].replace(bb,"$1"+e):!1!== -a.jsonp&&(a.url+=($a.test(a.url)?"&":"?")+a.jsonp+"="+e),a.converters["script json"]=function(){g||d.error(e+" was not called");return g[0]},a.dataTypes[0]="json",f=p[e],p[e]=function(){g=arguments},c.always(function(){void 0===f?d(p).removeProp(e):p[e]=f;a[e]&&(a.jsonpCallback=b.jsonpCallback,Ub.push(e));g&&r(f)&&f(g[0]);g=f=void 0}),"script"});v.createHTMLDocument=function(){var a=u.implementation.createHTMLDocument("").body;a.innerHTML="
";return 2===a.childNodes.length}(); -d.parseHTML=function(a,b,c){if("string"!==typeof a)return[];"boolean"===typeof b&&(c=b,b=!1);var e;b||(v.createHTMLDocument?(b=u.implementation.createHTMLDocument(""),e=b.createElement("base"),e.href=u.location.href,b.head.appendChild(e)):b=u);e=Fb.exec(a);c=!c&&[];if(e)return[b.createElement(e[1])];e=ib([a],b,c);c&&c.length&&d(c).remove();return d.merge([],e.childNodes)};d.fn.load=function(a,b,c){var e,f,g,h=this,k=a.indexOf(" ");-1").append(d.parseHTML(a)).find(e):a)}).always(c&&function(a,b){h.each(function(){c.apply(this,g||[a.responseText,b,a])})});return this};d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.on(b,a)}});d.expr.pseudos.animated=function(a){return d.grep(d.timers,function(b){return a===b.elem}).length}; -d.offset={setOffset:function(a,b,c){var e,f,g,h=d.css(a,"position"),k=d(a),l={};"static"===h&&(a.style.position="relative");g=k.offset();f=d.css(a,"top");e=d.css(a,"left");("absolute"===h||"fixed"===h)&&-1<(f+e).indexOf("auto")?(e=k.position(),f=e.top,e=e.left):(f=parseFloat(f)||0,e=parseFloat(e)||0);r(b)&&(b=b.call(a,c,d.extend({},g)));null!=b.top&&(l.top=b.top-g.top+f);null!=b.left&&(l.left=b.left-g.left+e);"using"in b?b.using.call(a,l):k.css(l)}};d.fn.extend({offset:function(a){if(arguments.length)return void 0=== -a?this:this.each(function(b){d.offset.setOffset(this,a,b)});var b,c;if(c=this[0]){if(!c.getClientRects().length)return{top:0,left:0};b=c.getBoundingClientRect();c=c.ownerDocument.defaultView;return{top:b.top+c.pageYOffset,left:b.left+c.pageXOffset}}},position:function(){if(this[0]){var a,b,c,e=this[0],f={top:0,left:0};if("fixed"===d.css(e,"position"))b=e.getBoundingClientRect();else{b=this.offset();c=e.ownerDocument;for(a=e.offsetParent||c.documentElement;a&&(a===c.body||a===c.documentElement)&&"static"=== -d.css(a,"position");)a=a.parentNode;a&&a!==e&&1===a.nodeType&&(f=d(a).offset(),f.top+=d.css(a,"borderTopWidth",!0),f.left+=d.css(a,"borderLeftWidth",!0))}return{top:b.top-f.top-d.css(e,"marginTop",!0),left:b.left-f.left-d.css(e,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent;a&&"static"===d.css(a,"position");)a=a.offsetParent;return a||Na})}});d.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c="pageYOffset"===b;d.fn[a]= -function(d){return O(this,function(a,d,e){var f;W(a)?f=a:9===a.nodeType&&(f=a.defaultView);if(void 0===e)return f?f[b]:a[d];f?f.scrollTo(c?f.pageXOffset:e,c?e:f.pageYOffset):a[d]=e},a,d,arguments.length)}});d.each(["top","left"],function(a,b){d.cssHooks[b]=qb(v.pixelPosition,function(a,e){if(e)return e=Y(a,b),Ra.test(e)?d(a).position()[b]+"px":e})});d.each({Height:"height",Width:"width"},function(a,b){d.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,e){d.fn[e]=function(f,g){var h=arguments.length&& -(c||"boolean"!==typeof f),k=c||(!0===f||!0===g?"margin":"border");return O(this,function(b,c,f){return W(b)?0===e.indexOf("outer")?b["inner"+a]:b.document.documentElement["client"+a]:9===b.nodeType?(c=b.documentElement,Math.max(b.body["scroll"+a],c["scroll"+a],b.body["offset"+a],c["offset"+a],c["client"+a])):void 0===f?d.css(b,c,k):d.style(b,c,f,k)},b,h?f:void 0,h)}})});d.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "), -function(a,b){d.fn[b]=function(a,d){return 0=(1-f)*(1-(f=h()/k||.5))&&(g=0),m/=f;m*=2;d.style(a,b,m+l);c=c||[]}if(c){m=+m||+k||0;var p=c[1]?m+(c[1]+1)*c[2]:+c[2];e&&(e.unit=l,e.start=m,e.end=p)}return p}function sa(a,b){for(var c,e,f=[],g=0,h=a.length;gh;h+=2)"margin"===c&&(l+=d.css(a,c+N[h],!0,f)),e?("content"===c&&(l-=d.css(a, +"padding"+N[h],!0,f)),"margin"!==c&&(l-=d.css(a,"border"+N[h]+"Width",!0,f))):(l+=d.css(a,"padding"+N[h],!0,f),"padding"!==c?l+=d.css(a,"border"+N[h]+"Width",!0,f):k+=d.css(a,"border"+N[h]+"Width",!0,f));!e&&0<=g&&(l+=Math.max(0,Math.ceil(a["offset"+b[0].toUpperCase()+b.slice(1)]-g-l-k-.5)));return l}function wb(a,b,c){var e=Ja(a),f=ua(a,b,e),g="border-box"===d.css(a,"boxSizing",!1,e),h=g;if(Sa.test(f)){if(!c)return f;f="auto"}h=h&&(w.boxSizingReliable()||f===a.style[b]);if("auto"===f||!parseFloat(f)&& +"inline"===d.css(a,"display",!1,e))f=a["offset"+b[0].toUpperCase()+b.slice(1)],h=!0;f=parseFloat(f)||0;return f+Ta(a,b,c||(g?"border":"content"),h,e,f)+"px"}function I(a,b,c,e,d){return new I.prototype.init(a,b,c,e,d)}function Ua(){Ka&&(!1===q.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(Ua):n.setTimeout(Ua,d.fx.interval),d.fx.tick())}function xb(){n.setTimeout(function(){va=void 0});return va=Date.now()}function La(a,b){var c=0,d={height:a};for(b=b?1:0;4>c;c+=2-b){var f=N[c];d["margin"+ +f]=d["padding"+f]=a}b&&(d.opacity=d.width=a);return d}function yb(a,b,c){for(var d,f=(T.tweeners[b]||[]).concat(T.tweeners["*"]),g=0,h=f.length;gc&&f)return b;f||h.notifyWith(a,[l,1,0]);h.resolveWith(a,[l]);return!1},l=h.promise({elem:a,props:d.extend({},b),opts:d.extend(!0,{specialEasing:{},easing:d.easing._default},c),originalProperties:b,originalOptions:c,startTime:va||xb(),duration:c.duration,tweens:[],createTween:function(b,c){b=d.Tween(a,l.opts,b, +c,l.opts.specialEasing[b]||l.opts.easing);l.tweens.push(b);return b},stop:function(b){var c=0,d=b?l.tweens.length:0;if(e)return this;for(e=!0;ca?this[a+this.length]:this[a]},pushStack:function(a){a=d.merge(this.constructor(),a);a.prevObject=this;return a},each:function(a){return d.each(this,a)},map:function(a){return this.pushStack(d.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(ja.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)}, +eq:function(a){var b=this.length;a=+a+(0>a?b:0);return this.pushStack(0<=a&&aE.cacheLength&&delete a[b.shift()]; +return a[c+" "]=d}var b=[];return a}function d(a){a[A]=!0;return a}function f(a){var b=z.createElement("fieldset");try{return!!a(b)}catch(C){return!1}finally{b.parentNode&&b.parentNode.removeChild(b)}}function g(a,b){a=a.split("|");for(var c=a.length;c--;)E.attrHandle[a[c]]=b}function h(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&a.sourceIndex-b.sourceIndex;if(d)return d;if(c)for(;c=c.nextSibling;)if(c===b)return-1;return a?1:-1}function k(a){return function(b){return"input"===b.nodeName.toLowerCase()&& +b.type===a}}function l(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function m(a){return function(b){return"form"in b?b.parentNode&&!1===b.disabled?"label"in b?"label"in b.parentNode?b.parentNode.disabled===a:b.disabled===a:b.isDisabled===a||b.isDisabled!==!a&&za(b)===a:b.disabled===a:"label"in b?b.disabled===a:!1}}function p(a){return d(function(b){b=+b;return d(function(c,d){for(var e,f=a([],c.length,b),g=f.length;g--;)c[e=f[g]]&&(c[e]=!(d[e]= +c[e]))})})}function n(a){return a&&"undefined"!==typeof a.getElementsByTagName&&a}function Ia(){}function u(a){for(var b=0,c=a.length,d="";b+~]|[\x20\t\r\n\f])[\x20\t\r\n\f]*/,ja=/=[\x20\t\r\n\f]*([^\]'"]*?)[\x20\t\r\n\f]*\]/g,na=/:((?:\\.|[\w-]|[^\x00-\xa0])+)(?:\((('((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)")|((?:\\.|[^\\()[\]]|\[[\x20\t\r\n\f]*((?:\\.|[\w-]|[^\x00-\xa0])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\.|[\w-]|[^\x00-\xa0])+))|)[\x20\t\r\n\f]*\])*)|.*)\)|)/,pa=/^(?:\\.|[\w-]|[^\x00-\xa0])+$/,aa={ID:/^#((?:\\.|[\w-]|[^\x00-\xa0])+)/, +CLASS:/^\.((?:\\.|[\w-]|[^\x00-\xa0])+)/,TAG:/^((?:\\.|[\w-]|[^\x00-\xa0])+|[*])/,ATTR:/^\[[\x20\t\r\n\f]*((?:\\.|[\w-]|[^\x00-\xa0])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\.|[\w-]|[^\x00-\xa0])+))|)[\x20\t\r\n\f]*\]/,PSEUDO:/^:((?:\\.|[\w-]|[^\x00-\xa0])+)(?:\((('((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)")|((?:\\.|[^\\()[\]]|\[[\x20\t\r\n\f]*((?:\\.|[\w-]|[^\x00-\xa0])+)(?:[\x20\t\r\n\f]*([*^$|!~]?=)[\x20\t\r\n\f]*(?:'((?:\\.|[^\\'])*)'|"((?:\\.|[^\\"])*)"|((?:\\.|[\w-]|[^\x00-\xa0])+))|)[\x20\t\r\n\f]*\])*)|.*)\)|)/, +CHILD:/^:(only|first|last|nth|nth-last)-(child|of-type)(?:\([\x20\t\r\n\f]*(even|odd|(([+-]|)(\d*)n|)[\x20\t\r\n\f]*(?:([+-]|)[\x20\t\r\n\f]*(\d+)|))[\x20\t\r\n\f]*\)|)/i,bool:/^(?:checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)$/i,needsContext:/^[\x20\t\r\n\f]*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\([\x20\t\r\n\f]*((?:-\d)?\d*)[\x20\t\r\n\f]*\)|)(?=[^-]|$)/i},sa=/^(?:input|select|textarea|button)$/i,ta=/^h\d$/i,V=/^[^{]+\{\s*\[native \w/, +va=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ea=/[+~]/,la=/\\([\da-f]{1,6}[\x20\t\r\n\f]?|([\x20\t\r\n\f])|.)/ig,ma=function(a,b,c){a="0x"+b-65536;return a!==a||c?b:0>a?String.fromCharCode(a+65536):String.fromCharCode(a>>10|55296,a&1023|56320)},qa=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ra=function(a,b){return b?"\x00"===a?"\ufffd":a.slice(0,-1)+"\\"+a.charCodeAt(a.length-1).toString(16)+" ":"\\"+a},ua=function(){xa()},za=ba(function(a){return!0===a.disabled&&("form"in a||"label"in a)},{dir:"parentNode", +next:"legend"});try{K.apply(D=S.call(X.childNodes),X.childNodes),D[X.childNodes.length].nodeType}catch(y){K={apply:D.length?function(a,b){T.apply(a,S.call(b))}:function(a,b){for(var c=a.length,d=0;a[c++]=b[d++];);a.length=c-1}}}var L=b.support={};var Aa=b.isXML=function(a){return(a=a&&(a.ownerDocument||a).documentElement)?"HTML"!==a.nodeName:!1};var xa=b.setDocument=function(a){var b;a=a?a.ownerDocument||a:X;if(a===z||9!==a.nodeType||!a.documentElement)return z;z=a;Z=z.documentElement;Y=!Aa(z);X!== +z&&(b=z.defaultView)&&b.top!==b&&(b.addEventListener?b.addEventListener("unload",ua,!1):b.attachEvent&&b.attachEvent("onunload",ua));L.attributes=f(function(a){a.className="i";return!a.getAttribute("className")});L.getElementsByTagName=f(function(a){a.appendChild(z.createComment(""));return!a.getElementsByTagName("*").length});L.getElementsByClassName=V.test(z.getElementsByClassName);L.getById=f(function(a){Z.appendChild(a).id=A;return!z.getElementsByName||!z.getElementsByName(A).length});L.getById? +(E.filter.ID=function(a){var b=a.replace(la,ma);return function(a){return a.getAttribute("id")===b}},E.find.ID=function(a,b){if("undefined"!==typeof b.getElementById&&Y)return(a=b.getElementById(a))?[a]:[]}):(E.filter.ID=function(a){var b=a.replace(la,ma);return function(a){return(a="undefined"!==typeof a.getAttributeNode&&a.getAttributeNode("id"))&&a.value===b}},E.find.ID=function(a,b){if("undefined"!==typeof b.getElementById&&Y){var c,d=b.getElementById(a);if(d){if((c=d.getAttributeNode("id"))&& +c.value===a)return[d];var e=b.getElementsByName(a);for(b=0;d=e[b++];)if((c=d.getAttributeNode("id"))&&c.value===a)return[d]}return[]}});E.find.TAG=L.getElementsByTagName?function(a,b){if("undefined"!==typeof b.getElementsByTagName)return b.getElementsByTagName(a);if(L.qsa)return b.querySelectorAll(a)}:function(a,b){var c=[],d=0;b=b.getElementsByTagName(a);if("*"===a){for(;a=b[d++];)1===a.nodeType&&c.push(a);return c}return b};E.find.CLASS=L.getElementsByClassName&&function(a,b){if("undefined"!==typeof b.getElementsByClassName&& +Y)return b.getElementsByClassName(a)};ya=[];Q=[];if(L.qsa=V.test(z.querySelectorAll))f(function(a){Z.appendChild(a).innerHTML="";a.querySelectorAll("[msallowcapture^='']").length&&Q.push("[*^$]=[\\x20\\t\\r\\n\\f]*(?:''|\"\")");a.querySelectorAll("[selected]").length||Q.push("\\[[\\x20\\t\\r\\n\\f]*(?:value|checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped)"); +a.querySelectorAll("[id~="+A+"-]").length||Q.push("~=");a.querySelectorAll(":checked").length||Q.push(":checked");a.querySelectorAll("a#"+A+"+*").length||Q.push(".#.+[+~]")}),f(function(a){a.innerHTML="";var b=z.createElement("input");b.setAttribute("type","hidden");a.appendChild(b).setAttribute("name","D");a.querySelectorAll("[name=d]").length&&Q.push("name[\\x20\\t\\r\\n\\f]*[*^$|!~]?=");2!==a.querySelectorAll(":enabled").length&& +Q.push(":enabled",":disabled");Z.appendChild(a).disabled=!0;2!==a.querySelectorAll(":disabled").length&&Q.push(":enabled",":disabled");a.querySelectorAll("*,:x");Q.push(",.*:")});(L.matchesSelector=V.test(t=Z.matches||Z.webkitMatchesSelector||Z.mozMatchesSelector||Z.oMatchesSelector||Z.msMatchesSelector))&&f(function(a){L.disconnectedMatch=t.call(a,"*");t.call(a,"[s!='']:x");ya.push("!=",":((?:\\\\.|[\\w-]|[^\x00-\\xa0])+)(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|\\[[\\x20\\t\\r\\n\\f]*((?:\\\\.|[\\w-]|[^\x00-\\xa0])+)(?:[\\x20\\t\\r\\n\\f]*([*^$|!~]?=)[\\x20\\t\\r\\n\\f]*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|((?:\\\\.|[\\w-]|[^\x00-\\xa0])+))|)[\\x20\\t\\r\\n\\f]*\\])*)|.*)\\)|)")}); +Q=Q.length&&new RegExp(Q.join("|"));ya=ya.length&&new RegExp(ya.join("|"));v=(b=V.test(Z.compareDocumentPosition))||V.test(Z.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a;b=b&&b.parentNode;return a===b||!!(b&&1===b.nodeType&&(c.contains?c.contains(b):a.compareDocumentPosition&&a.compareDocumentPosition(b)&16))}:function(a,b){if(b)for(;b=b.parentNode;)if(b===a)return!0;return!1};I=b?function(a,b){if(a===b)return Ea=!0,0;var c=!a.compareDocumentPosition-!b.compareDocumentPosition; +if(c)return c;c=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1;return c&1||!L.sortDetached&&b.compareDocumentPosition(a)===c?a===z||a.ownerDocument===X&&v(X,a)?-1:b===z||b.ownerDocument===X&&v(X,b)?1:U?N(U,a)-N(U,b):0:c&4?-1:1}:function(a,b){if(a===b)return Ea=!0,0;var c=0,d=a.parentNode,e=b.parentNode,f=[a],g=[b];if(!d||!e)return a===z?-1:b===z?1:d?-1:e?1:U?N(U,a)-N(U,b):0;if(d===e)return h(a,b);for(;a=a.parentNode;)f.unshift(a);for(a=b;a=a.parentNode;)g.unshift(a);for(;f[c]=== +g[c];)c++;return c?h(f[c],g[c]):f[c]===X?-1:g[c]===X?1:0};return z};b.matches=function(a,c){return b(a,null,null,c)};b.matchesSelector=function(a,c){(a.ownerDocument||a)!==z&&xa(a);c=c.replace(ja,"='$1']");if(!(!L.matchesSelector||!Y||G[c+" "]||ya&&ya.test(c)||Q&&Q.test(c)))try{var d=t.call(a,c);if(d||L.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(P){}return 0":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling", +first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){a[1]=a[1].replace(la,ma);a[3]=(a[3]||a[4]||a[5]||"").replace(la,ma);"~="===a[2]&&(a[3]=" "+a[3]+" ");return a.slice(0,4)},CHILD:function(a){a[1]=a[1].toLowerCase();"nth"===a[1].slice(0,3)?(a[3]||b.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&b.error(a[0]);return a},PSEUDO:function(a){var b,c=!a[6]&&a[2];if(aa.CHILD.test(a[0]))return null;a[3]?a[2]=a[4]||a[5]||"":c&& +na.test(c)&&(b=fa(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b));return a.slice(0,3)}},filter:{TAG:function(a){var b=a.replace(la,ma).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=H[a+" "];return b||(b=new RegExp("(^|[\\x20\\t\\r\\n\\f])"+a+"([\\x20\\t\\r\\n\\f]|$)"),H(a,function(a){return b.test("string"===typeof a.className&&a.className||"undefined"!==typeof a.getAttribute&& +a.getAttribute("class")||"")}))},ATTR:function(a,c,d){return function(e){e=b.attr(e,a);if(null==e)return"!="===c;if(!c)return!0;e+="";return"="===c?e===d:"!="===c?e!==d:"^="===c?d&&0===e.indexOf(d):"*="===c?d&&-1a.nodeType)return!1;return!0},parent:function(a){return!E.pseudos.empty(a)},header:function(a){return ta.test(a.nodeName)},input:function(a){return sa.test(a.nodeName)}, +button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:p(function(){return[0]}),last:p(function(a,b){return[b-1]}),eq:p(function(a,b,c){return[0>c?c+b:c]}),even:p(function(a,b){for(var c=0;cc?c+b:c;0<=--b;)a.push(b);return a}),gt:p(function(a,b,c){for(c=0>c?c+b:c;++c";a.firstChild.setAttribute("value","");return""===a.firstChild.getAttribute("value")})||g("value",function(a,b,c){if(!c&&"input"===a.nodeName.toLowerCase())return a.defaultValue});f(function(a){return null==a.getAttribute("disabled")})||g("checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",function(a,b,c){var d;if(!c)return!0===a[b]?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null});return b}(n); +d.find=na;d.expr=na.selectors;d.expr[":"]=d.expr.pseudos;d.uniqueSort=d.unique=na.uniqueSort;d.text=na.getText;d.isXMLDoc=na.isXML;d.contains=na.contains;d.escapeSelector=na.escape;var ea=function(a,b,c){for(var e=[],f=void 0!==c;(a=a[b])&&9!==a.nodeType;)if(1===a.nodeType){if(f&&d(a).is(c))break;e.push(a)}return e},Db=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c},Eb=d.expr.match.needsContext,Fb=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; +d.filter=function(a,b,c){var e=b[0];c&&(a=":not("+a+")");return 1===b.length&&1===e.nodeType?d.find.matchesSelector(e,a)?[e]:[]:d.find.matches(a,d.grep(b,function(a){return 1===a.nodeType}))};d.fn.extend({find:function(a){var b,c=this.length,e=this;if("string"!==typeof a)return this.pushStack(d(a).filter(function(){for(b=0;b)[^>]*|#([\w-]+))$/;(d.fn.init=function(a,b,c){if(!a)return this;c=c||nc;if("string"===typeof a){var e="<"===a[0]&&">"===a[a.length-1]&&3<=a.length?[null,a,null]:mc.exec(a);if(!e||!e[1]&&b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof d?b[0]:b,d.merge(this,d.parseHTML(e[1],b&& +b.nodeType?b.ownerDocument||b:q,!0)),Fb.test(e[1])&&d.isPlainObject(b))for(e in b)if(r(this[e]))this[e](b[e]);else this.attr(e,b[e])}else if(a=q.getElementById(e[2]))this[0]=a,this.length=1;return this}return a.nodeType?(this[0]=a,this.length=1,this):r(a)?void 0!==c.ready?c.ready(a):a(d):d.makeArray(a,this)}).prototype=d.fn;var nc=d(q);var oc=/^(?:parents|prev(?:Until|All))/,pc={children:!0,contents:!0,next:!0,prev:!0};d.fn.extend({has:function(a){var b=d(a,this),c=b.length;return this.filter(function(){for(var a= +0;ac.nodeType&&(h?-1=g&&(c!==Ba&&(h=void 0,k=[x]),b.rejectWith(h,k))}};a?m():(d.Deferred.getStackHook&&(m.stackTrace=d.Deferred.getStackHook()),n.setTimeout(m))}}var g=0;return d.Deferred(function(d){b[0][3].add(f(0, +d,r(e)?e:aa,d.notifyWith));b[1][3].add(f(0,d,r(a)?a:aa));b[2][3].add(f(0,d,r(c)?c:Ba))}).promise()},promise:function(a){return null!=a?d.extend(a,e):e}},f={};d.each(b,function(a,d){var g=d[2],h=d[5];e[d[1]]=g.add;h&&g.add(function(){c=h},b[3-a][2].disable,b[3-a][3].disable,b[0][2].lock,b[0][3].lock);g.add(d[3].fire);f[d[0]]=function(){f[d[0]+"With"](this===f?void 0:this,arguments);return this};f[d[0]+"With"]=g.fireWith});e.promise(f);a&&a.call(f,f);return f},when:function(a){var b=arguments.length, +c=b,e=Array(c),f=ja.call(arguments),g=d.Deferred(),h=function(a){return function(c){e[a]=this;f[a]=1=b&&(fb(a,g.done(h(c)).resolve,g.reject,!b),"pending"===g.state()||r(f[c]&&f[c].then)))return g.then();for(;c--;)fb(f[c],h(c),g.reject);return g.promise()}});var qc=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;d.Deferred.exceptionHook=function(a,b){n.console&&n.console.warn&&a&&qc.test(a.name)&&n.console.warn("jQuery.Deferred exception: "+ +a.message,a.stack,b)};d.readyException=function(a){n.setTimeout(function(){throw a;})};var $a=d.Deferred();d.fn.ready=function(a){$a.then(a).catch(function(a){d.readyException(a)});return this};d.extend({isReady:!1,readyWait:1,ready:function(a){(!0===a?--d.readyWait:d.isReady)||(d.isReady=!0,!0!==a&&0<--d.readyWait||$a.resolveWith(q,[d]))}});d.ready.then=$a.then;"complete"===q.readyState||"loading"!==q.readyState&&!q.documentElement.doScroll?n.setTimeout(d.ready):(q.addEventListener("DOMContentLoaded", +Fa),n.addEventListener("load",Fa));var da=function(a,b,c,e,f,g,h){var k=0,l=a.length,m=null==c;if("object"===F(c))for(k in f=!0,c)da(a,b,k,c[k],!0,g,h);else if(void 0!==e&&(f=!0,r(e)||(h=!0),m&&(h?(b.call(a,e),b=null):(m=b,b=function(a,b,c){return m.call(d(a),c)})),b))for(;k\x20\t\r\n\f]+)/i,lb=/^$|^module$|\/(?:java|ecma)script/i,R={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};R.optgroup=R.option;R.tbody=R.tfoot=R.colgroup=R.caption=R.thead;R.th=R.td;var $b=/<|&#?\w+;/;(function(){var a= +q.createDocumentFragment().appendChild(q.createElement("div")),b=q.createElement("input");b.setAttribute("type","radio");b.setAttribute("checked","checked");b.setAttribute("name","t");a.appendChild(b);w.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked;a.innerHTML="";w.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue})();var Oa=q.documentElement,rc=/^key/,sc=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Jb=/^([^.]*)(?:\.(.+)|)/;d.event={global:{},add:function(a, +b,c,e,f){var g,h,k,l,m;if(k=u.get(a)){if(c.handler){var n=c;c=n.handler;f=n.selector}f&&d.find.matchesSelector(Oa,f);c.guid||(c.guid=d.guid++);(h=k.events)||(h=k.events={});(g=k.handle)||(g=k.handle=function(b){return"undefined"!==typeof d&&d.event.triggered!==b.type?d.event.dispatch.apply(a,arguments):void 0});b=(b||"").match(K)||[""];for(k=b.length;k--;){var B=Jb.exec(b[k])||[];var r=l=B[1];var q=(B[2]||"").split(".").sort();r&&(B=d.event.special[r]||{},r=(f?B.delegateType:B.bindType)||r,B=d.event.special[r]|| +{},l=d.extend({type:r,origType:l,data:e,handler:c,guid:c.guid,selector:f,needsContext:f&&d.expr.match.needsContext.test(f),namespace:q.join(".")},n),(m=h[r])||(m=h[r]=[],m.delegateCount=0,B.setup&&!1!==B.setup.call(a,e,q,g)||a.addEventListener&&a.addEventListener(r,g)),B.add&&(B.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),f?m.splice(m.delegateCount++,0,l):m.push(l),d.event.global[r]=!0)}}},remove:function(a,b,c,e,f){var g,h,k,l,m,n=u.hasData(a)&&u.get(a);if(n&&(k=n.events)){b=(b||"").match(K)|| +[""];for(l=b.length;l--;){var r=Jb.exec(b[l])||[];var q=m=r[1];var w=(r[2]||"").split(".").sort();if(q){var ba=d.event.special[q]||{};q=(e?ba.delegateType:ba.bindType)||q;var v=k[q]||[];r=r[2]&&new RegExp("(^|\\.)"+w.join("\\.(?:.*\\.|)")+"(\\.|$)");for(h=g=v.length;g--;){var t=v[g];!f&&m!==t.origType||c&&c.guid!==t.guid||r&&!r.test(t.namespace)||e&&e!==t.selector&&("**"!==e||!t.selector)||(v.splice(g,1),t.selector&&v.delegateCount--,ba.remove&&ba.remove.call(a,t))}h&&!v.length&&(ba.teardown&&!1!== +ba.teardown.call(a,w,n.handle)||d.removeEvent(a,q,n.handle),delete k[q])}else for(q in k)d.event.remove(a,q+b[l],c,e,!0)}d.isEmptyObject(k)&&u.remove(a,"handle events")}},dispatch:function(a){var b=d.event.fix(a),c,e,f,g=Array(arguments.length);var h=(u.get(this,"events")||{})[b.type]||[];var k=d.event.special[b.type]||{};g[0]=b;for(c=1;c\x20\t\r\n\f]*)[^>]*)\/>/gi,uc=/\s*$/g;d.extend({htmlPrefilter:function(a){return a.replace(tc,"<$1>")},clone:function(a,b,c){var e,f=a.cloneNode(!0),g=d.contains(a.ownerDocument,a);if(!(w.noCloneChecked||1!==a.nodeType&&11!== +a.nodeType||d.isXMLDoc(a))){var h=G(f);var k=G(a);var l=0;for(e=k.length;ld.inArray(this,a)&&(d.cleanData(G(this)),c&&c.replaceChild(b,this))},a)}});d.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){d.fn[a]=function(a){for(var c=[],f=d(a),g=f.length-1,h=0;h<=g;h++)a=h===g?this:this.clone(!0),d(f[h])[b](a),Za.apply(c,a.get());return this.pushStack(c)}}); +var Sa=new RegExp("^("+Gb+")(?!px)[a-z%]+$","i"),Ja=function(a){var b=a.ownerDocument.defaultView;b&&b.opener||(b=n);return b.getComputedStyle(a)},ec=new RegExp(N.join("|"),"i");(function(){function a(){if(k){h.style.cssText="position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0";k.style.cssText="position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%";Oa.appendChild(h).appendChild(k);var a=n.getComputedStyle(k); +b="1%"!==a.top;g=12===Math.round(parseFloat(a.marginLeft));k.style.right="60%";f=36===Math.round(parseFloat(a.right));c=36===Math.round(parseFloat(a.width));k.style.position="absolute";e=36===k.offsetWidth||"absolute";Oa.removeChild(h);k=null}}var b,c,e,f,g,h=q.createElement("div"),k=q.createElement("div");k.style&&(k.style.backgroundClip="content-box",k.cloneNode(!0).style.backgroundClip="",w.clearCloneStyle="content-box"===k.style.backgroundClip,d.extend(w,{boxSizingReliable:function(){a();return c}, +pixelBoxStyles:function(){a();return f},pixelPosition:function(){a();return b},reliableMarginLeft:function(){a();return g},scrollboxSize:function(){a();return e}}))})();var vc=/^(none|table(?!-c[ea]).+)/,Kb=/^--/,wc={position:"absolute",visibility:"hidden",display:"block"},Lb={letterSpacing:"0",fontWeight:"400"},ub=["Webkit","Moz","ms"],tb=q.createElement("div").style;d.extend({cssHooks:{opacity:{get:function(a,b){if(b)return a=ua(a,"opacity"),""===a?"1":a}}},cssNumber:{animationIterationCount:!0, +columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(a,b,c,e){if(a&&3!==a.nodeType&&8!==a.nodeType&&a.style){var f,g=S(b),h=Kb.test(b),k=a.style;h||(b=sb(g));var l=d.cssHooks[b]||d.cssHooks[g];if(void 0!==c){var m=typeof c;"string"===m&&(f=ra.exec(c))&&f[1]&&(c=hb(a,b,f),m="number");null!=c&&c===c&&("number"===m&&(c+=f&&f[3]||(d.cssNumber[g]?"":"px")),w.clearCloneStyle||""!==c||0!== +b.indexOf("background")||(k[b]="inherit"),l&&"set"in l&&void 0===(c=l.set(a,c,e))||(h?k.setProperty(b,c):k[b]=c))}else return l&&"get"in l&&void 0!==(f=l.get(a,!1,e))?f:k[b]}},css:function(a,b,c,e){var f;var g=S(b);Kb.test(b)||(b=sb(g));(g=d.cssHooks[b]||d.cssHooks[g])&&"get"in g&&(f=g.get(a,!0,c));void 0===f&&(f=ua(a,b,e));"normal"===f&&b in Lb&&(f=Lb[b]);return""===c||c?(a=parseFloat(f),!0===c||isFinite(a)?a||0:f):f}});d.each(["height","width"],function(a,b){d.cssHooks[b]={get:function(a,e,f){if(e)return!vc.test(d.css(a, +"display"))||a.getClientRects().length&&a.getBoundingClientRect().width?wb(a,b,f):Hb(a,wc,function(){return wb(a,b,f)})},set:function(a,e,f){var c,h=Ja(a),k="border-box"===d.css(a,"boxSizing",!1,h);f=f&&Ta(a,b,f,k,h);k&&w.scrollboxSize()===h.position&&(f-=Math.ceil(a["offset"+b[0].toUpperCase()+b.slice(1)]-parseFloat(h[b])-Ta(a,b,"border",!1,h)-.5));f&&(c=ra.exec(e))&&"px"!==(c[3]||"px")&&(a.style[b]=e,e=d.css(a,b));return vb(a,e,f)}}});d.cssHooks.marginLeft=rb(w.reliableMarginLeft,function(a,b){if(b)return(parseFloat(ua(a, +"marginLeft"))||a.getBoundingClientRect().left-Hb(a,{marginLeft:0},function(){return a.getBoundingClientRect().left}))+"px"});d.each({margin:"",padding:"",border:"Width"},function(a,b){d.cssHooks[a+b]={expand:function(c){var d=0,f={};for(c="string"===typeof c?c.split(" "):[c];4>d;d++)f[a+N[d]+b]=c[d]||c[d-2]||c[0];return f}};"margin"!==a&&(d.cssHooks[a+b].set=vb)});d.fn.extend({css:function(a,b){return da(this,function(a,b,f){var c,e={},k=0;if(Array.isArray(b)){f=Ja(a);for(c=b.length;kc.indexOf(" "+e+" ")&&(c+=e+" ");c=W(c);k!==c&&b.setAttribute("class",c)}}return this},removeClass:function(a){var b,c,e,f,g=0;if(r(a))return this.each(function(b){d(this).removeClass(a.call(this,b,ha(this)))});if(!arguments.length)return this.attr("class", +"");var h=Va(a);if(h.length)for(;b=this[g++];){var k=ha(b);if(c=1===b.nodeType&&" "+W(k)+" "){for(f=0;e=h[f++];)for(;-1c?g:e?c:0;al.indexOf(":")&&"on"+l;a=a[d.expando]?a:new d.Event(l,"object"===typeof a&&a);a.isTrigger=e?2:3;a.namespace=m.join(".");a.rnamespace=a.namespace?new RegExp("(^|\\.)"+m.join("\\.(?:.*\\.|)")+"(\\.|$)"):null;a.result=void 0;a.target||(a.target=c);b=null==b?[a]:d.makeArray(b,[a]);m=d.event.special[l]||{};if(e||!m.trigger||!1!==m.trigger.apply(c,b)){if(!e&& +!m.noBubble&&!pa(c)){var w=m.delegateType||l;Mb.test(w+l)||(p=p.parentNode);for(;p;p=p.parentNode)k.push(p),f=p;f===(c.ownerDocument||q)&&k.push(f.defaultView||f.parentWindow||n)}for(f=0;(p=k[f++])&&!a.isPropagationStopped();)h=p,a.type=1a||304===a;if(c){var q=m;for(var z=x,v,O,B,A,D=q.contents,G=q.dataTypes;"*"===G[0];)G.shift(),void 0===v&&(v=q.mimeType||z.getResponseHeader("Content-Type"));if(v)for(O in D)if(D[O]&&D[O].test(v)){G.unshift(O);break}if(G[0]in c)B=G[0];else{for(O in c){if(!G[0]||q.converters[O+" "+G[0]]){B=O;break}A||(A=O)}B=B||A}B?(B!==G[0]&&G.unshift(B),q=c[B]):q=void 0}a:{c=m;v=q;O= +x;B=g;var U;z={};D=c.dataTypes.slice();if(D[1])for(H in c.converters)z[H.toLowerCase()]=c.converters[H];for(A=D.shift();A;){c.responseFields[A]&&(O[c.responseFields[A]]=v);!K&&B&&c.dataFilter&&(v=c.dataFilter(v,c.dataType));var K=A;if(A=D.shift())if("*"===A)A=K;else if("*"!==K&&K!==A){var H=z[K+" "+A]||z["* "+A];if(!H)for(U in z)if(q=U.split(" "),q[1]===A&&(H=z[K+" "+q[0]]||z["* "+q[0]])){!0===H?H=z[U]:!0!==z[U]&&(A=q[0],D.unshift(q[1]));break}if(!0!==H)if(H&&c.throws)v=H(v);else try{v=H(v)}catch(lc){q= +{state:"parsererror",error:H?lc:"No conversion from "+K+" to "+A};break a}}}q={state:"success",data:v}}if(g)if(m.ifModified&&((l=x.getResponseHeader("Last-Modified"))&&(d.lastModified[F]=l),(l=x.getResponseHeader("etag"))&&(d.etag[F]=l)),204===a||"HEAD"===m.type)l="nocontent";else if(304===a)l="notmodified";else{l=q.state;var N=q.data;var M=q.error;g=!M}else if(M=l,a||!l)l="error",0>a&&(a=0);x.status=a;x.statusText=(b||l)+"";g?t.resolveWith(p,[N,l,x]):t.rejectWith(p,[x,l,M]);x.statusCode(w);w=void 0; +k&&r.trigger(g?"ajaxSuccess":"ajaxError",[x,m,g?N:M]);u.fireWith(p,[x,l]);k&&(r.trigger("ajaxComplete",[x,m]),--d.active||d.event.trigger("ajaxStop"))}}"object"===typeof a&&(b=a,a=void 0);b=b||{};var e,f,g,h,k,l,m=d.ajaxSetup({},b),p=m.context||m,r=m.context&&(p.nodeType||p.jquery)?d(p):d.event,t=d.Deferred(),u=d.Callbacks("once memory"),w=m.statusCode||{},v={},D={},G="canceled",x={readyState:0,getResponseHeader:function(a){var b;if(I){if(!g)for(g={};b=Ic.exec(f);)g[b[1].toLowerCase()]=b[2];b=g[a.toLowerCase()]}return null== +b?null:b},getAllResponseHeaders:function(){return I?f:null},setRequestHeader:function(a,b){null==I&&(a=D[a.toLowerCase()]=D[a.toLowerCase()]||a,v[a]=b);return this},overrideMimeType:function(a){null==I&&(m.mimeType=a);return this},statusCode:function(a){var b;if(a)if(I)x.always(a[x.status]);else for(b in a)w[b]=[w[b],a[b]];return this},abort:function(a){a=a||G;e&&e.abort(a);c(0,a);return this}};t.promise(x);m.url=((a||m.url||Aa.href)+"").replace(Kc,Aa.protocol+"//");m.type=b.method||b.type||m.method|| +m.type;m.dataTypes=(m.dataType||"*").toLowerCase().match(K)||[""];if(null==m.crossDomain){a=q.createElement("a");try{a.href=m.url,a.href=a.href,m.crossDomain=bb.protocol+"//"+bb.host!==a.protocol+"//"+a.host}catch(O){m.crossDomain=!0}}m.data&&m.processData&&"string"!==typeof m.data&&(m.data=d.param(m.data,m.traditional));Ab(Qb,m,b,x);if(I)return x;(k=d.event&&m.global)&&0===d.active++&&d.event.trigger("ajaxStart");m.type=m.type.toUpperCase();m.hasContent=!Jc.test(m.type);var F=m.url.replace(Gc,""); +m.hasContent?m.data&&m.processData&&0===(m.contentType||"").indexOf("application/x-www-form-urlencoded")&&(m.data=m.data.replace(Fc,"+")):(a=m.url.slice(F.length),m.data&&(m.processData||"string"===typeof m.data)&&(F+=(ab.test(F)?"&":"?")+m.data,delete m.data),!1===m.cache&&(F=F.replace(Hc,"$1"),a=(ab.test(F)?"&":"?")+"_="+Ob++ +a),m.url=F+a);m.ifModified&&(d.lastModified[F]&&x.setRequestHeader("If-Modified-Since",d.lastModified[F]),d.etag[F]&&x.setRequestHeader("If-None-Match",d.etag[F]));(m.data&& +m.hasContent&&!1!==m.contentType||b.contentType)&&x.setRequestHeader("Content-Type",m.contentType);x.setRequestHeader("Accept",m.dataTypes[0]&&m.accepts[m.dataTypes[0]]?m.accepts[m.dataTypes[0]]+("*"!==m.dataTypes[0]?", "+Rb+"; q=0.01":""):m.accepts["*"]);for(l in m.headers)x.setRequestHeader(l,m.headers[l]);if(m.beforeSend&&(!1===m.beforeSend.call(p,x,m)||I))return x.abort();G="abort";u.add(m.complete);x.done(m.success);x.fail(m.error);if(e=Ab(Xa,m,b,x)){x.readyState=1;k&&r.trigger("ajaxSend",[x, +m]);if(I)return x;m.async&&0").prop({charset:a.scriptCharset,src:a.url}).on("load error",c=function(a){b.remove();c=null;a&&f("error"===a.type?404:200,a.type)});q.head.appendChild(b[0])},abort:function(){c&&c()}}}});var Sb=[],cb=/(=)\?(?=&|$)|\?\?/;d.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Sb.pop()||d.expando+"_"+Ob++;this[a]=!0;return a}});d.ajaxPrefilter("json jsonp",function(a,b,c){var e,f=!1!==a.jsonp&&(cb.test(a.url)?"url":"string"=== +typeof a.data&&0===(a.contentType||"").indexOf("application/x-www-form-urlencoded")&&cb.test(a.data)&&"data");if(f||"jsonp"===a.dataTypes[0]){var g=a.jsonpCallback=r(a.jsonpCallback)?a.jsonpCallback():a.jsonpCallback;f?a[f]=a[f].replace(cb,"$1"+g):!1!==a.jsonp&&(a.url+=(ab.test(a.url)?"&":"?")+a.jsonp+"="+g);a.converters["script json"]=function(){e||d.error(g+" was not called");return e[0]};a.dataTypes[0]="json";var h=n[g];n[g]=function(){e=arguments};c.always(function(){void 0===h?d(n).removeProp(g): +n[g]=h;a[g]&&(a.jsonpCallback=b.jsonpCallback,Sb.push(g));e&&r(h)&&h(e[0]);e=h=void 0});return"script"}});w.createHTMLDocument=function(){var a=q.implementation.createHTMLDocument("").body;a.innerHTML="
";return 2===a.childNodes.length}();d.parseHTML=function(a,b,c){if("string"!==typeof a)return[];"boolean"===typeof b&&(c=b,b=!1);if(!b)if(w.createHTMLDocument){b=q.implementation.createHTMLDocument("");var e=b.createElement("base");e.href=q.location.href;b.head.appendChild(e)}else b= +q;e=Fb.exec(a);c=!c&&[];if(e)return[b.createElement(e[1])];e=jb([a],b,c);c&&c.length&&d(c).remove();return d.merge([],e.childNodes)};d.fn.load=function(a,b,c){var e,f,g=this,h=a.indexOf(" ");if(-1").append(d.parseHTML(a)).find(k):a)}).always(c&&function(a,b){g.each(function(){c.apply(this,f||[a.responseText, +b,a])})});return this};d.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){d.fn[b]=function(a){return this.on(b,a)}});d.expr.pseudos.animated=function(a){return d.grep(d.timers,function(b){return a===b.elem}).length};d.offset={setOffset:function(a,b,c){var e=d.css(a,"position"),f=d(a),g={};"static"===e&&(a.style.position="relative");var h=f.offset();var k=d.css(a,"top");var l=d.css(a,"left");("absolute"===e||"fixed"===e)&&-1<(k+l).indexOf("auto")?(l=f.position(), +k=l.top,l=l.left):(k=parseFloat(k)||0,l=parseFloat(l)||0);r(b)&&(b=b.call(a,c,d.extend({},h)));null!=b.top&&(g.top=b.top-h.top+k);null!=b.left&&(g.left=b.left-h.left+l);"using"in b?b.using.call(a,g):f.css(g)}};d.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){d.offset.setOffset(this,a,b)});var b;if(b=this[0]){if(!b.getClientRects().length)return{top:0,left:0};var c=b.getBoundingClientRect();b=b.ownerDocument.defaultView;return{top:c.top+b.pageYOffset, +left:c.left+b.pageXOffset}}},position:function(){if(this[0]){var a,b=this[0],c={top:0,left:0};if("fixed"===d.css(b,"position"))var e=b.getBoundingClientRect();else{e=this.offset();var f=b.ownerDocument;for(a=b.offsetParent||f.documentElement;a&&(a===f.body||a===f.documentElement)&&"static"===d.css(a,"position");)a=a.parentNode;a&&a!==b&&1===a.nodeType&&(c=d(a).offset(),c.top+=d.css(a,"borderTopWidth",!0),c.left+=d.css(a,"borderLeftWidth",!0))}return{top:e.top-c.top-d.css(b,"marginTop",!0),left:e.left- +c.left-d.css(b,"marginLeft",!0)}}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent;a&&"static"===d.css(a,"position");)a=a.offsetParent;return a||Oa})}});d.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,b){var c="pageYOffset"===b;d.fn[a]=function(d){return da(this,function(a,d,e){if(pa(a))var f=a;else 9===a.nodeType&&(f=a.defaultView);if(void 0===e)return f?f[b]:a[d];f?f.scrollTo(c?f.pageXOffset:e,c?e:f.pageYOffset):a[d]=e},a,d,arguments.length)}}); +d.each(["top","left"],function(a,b){d.cssHooks[b]=rb(w.pixelPosition,function(a,e){if(e)return e=ua(a,b),Sa.test(e)?d(a).position()[b]+"px":e})});d.each({Height:"height",Width:"width"},function(a,b){d.each({padding:"inner"+a,content:b,"":"outer"+a},function(c,e){d.fn[e]=function(f,g){var h=arguments.length&&(c||"boolean"!==typeof f),k=c||(!0===f||!0===g?"margin":"border");return da(this,function(b,c,f){return pa(b)?0===e.indexOf("outer")?b["inner"+a]:b.document.documentElement["client"+a]:9===b.nodeType? +(c=b.documentElement,Math.max(b.body["scroll"+a],c["scroll"+a],b.body["offset"+a],c["offset"+a],c["client"+a])):void 0===f?d.css(b,c,k):d.style(b,c,f,k)},b,h?f:void 0,h)}})});d.each("blur focus focusin focusout resize scroll click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup contextmenu".split(" "),function(a,b){d.fn[b]=function(a,d){return 0MIT License -*/ -var JSEncryptExports={}; -(function(N){function f(a,b,c){null!=a&&("number"==typeof a?this.fromNumber(a,b,c):null==b&&"string"!=typeof a?this.fromString(a,256):this.fromString(a,b))}function m(){return new f(null)}function Y(a,b,c,d,e,g){for(;0<=--g;){var h=b*this[a++]+c[d]+e;e=Math.floor(h/67108864);c[d++]=h&67108863}return e}function Z(a,b,c,d,e,g){var h=b&32767;for(b>>=15;0<=--g;){var k=this[a]&32767,f=this[a++]>>15,w=b*k+f*h,k=h*k+((w&32767)<<15)+c[d]+(e&1073741823);e=(k>>>30)+(w>>>15)+b*f+(e>>>30);c[d++]=k&1073741823}return e} -function aa(a,b,c,d,e,g){var h=b&16383;for(b>>=14;0<=--g;){var k=this[a]&16383,f=this[a++]>>14,w=b*k+f*h,k=h*k+((w&16383)<<14)+c[d]+e;e=(k>>28)+(w>>14)+b*f;c[d++]=k&268435455}return e}function S(a,b){var c=H[a.charCodeAt(b)];return null==c?-1:c}function z(a){var b=m();b.fromInt(a);return b}function I(a){var b=1,c;0!=(c=a>>>16)&&(a=c,b+=16);0!=(c=a>>8)&&(a=c,b+=8);0!=(c=a>>4)&&(a=c,b+=4);0!=(c=a>>2)&&(a=c,b+=2);0!=a>>1&&(b+=1);return b}function C(a){this.m=a}function D(a){this.m=a;this.mp=a.invDigit(); -this.mpl=this.mp&32767;this.mph=this.mp>>15;this.um=(1<>6)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(c&63);b+1==a.length?(c=parseInt(a.substring(b,b+1),16),d+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(c<<2)):b+2==a.length&&(c=parseInt(a.substring(b,b+2),16),d+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(c>> -2)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((c&3)<<4));for(;0<(d.length&3);)d+="=";return d}function ca(a){var b="",c,d=0,e;for(c=0;cv||(0==d?(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(v>>2),e=v&3,d=1):1==d?(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e<<2|v>>4),e=v&15,d=2):2==d?(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e), -b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(v>>2),e=v&3,d=3):(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e<<2|v>>4),b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(v&15),d=0));1==d&&(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e<<2));return b}var q;"Microsoft Internet Explorer"==navigator.appName?(f.prototype.am=Z,q=30):"Netscape"!=navigator.appName?(f.prototype.am=Y,q=26):(f.prototype.am=aa,q=28);f.prototype.DB=q;f.prototype.DM=(1<=r;++r)H[q++]=r;q=97;for(r=10;36>r;++r)H[q++]=r;q=65;for(r=10;36>r;++r)H[q++]=r;C.prototype.convert=function(a){return 0>a.s||0<=a.compareTo(this.m)?a.mod(this.m):a};C.prototype.revert=function(a){return a};C.prototype.reduce=function(a){a.divRemTo(this.m,null,a)};C.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};C.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};D.prototype.convert=function(a){var b= -m();a.abs().dlShiftTo(this.m.t,b);b.divRemTo(this.m,null,b);0>a.s&&0>15)*this.mpl&this.um)<<15)&a.DM,c=b+this.m.t;for(a[c]+=this.m.am(0,d,a,b,0,this.m.t);a[c]>=a.DV;)a[c]-=a.DV,a[++c]++}a.clamp();a.drShiftTo(this.m.t,a);0<=a.compareTo(this.m)&& -a.subTo(this.m,a)};D.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};D.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};f.prototype.copyTo=function(a){for(var b=this.t-1;0<=b;--b)a[b]=this[b];a.t=this.t;a.s=this.s};f.prototype.fromInt=function(a){this.t=1;this.s=0>a?-1:0;0a?this[0]=a+this.DV:this.t=0};f.prototype.fromString=function(a,b){var c;if(16==b)c=4;else if(8==b)c=3;else if(256==b)c=8;else if(2==b)c=1;else if(32==b)c=5;else if(4==b)c=2;else{this.fromRadix(a, -b);return}this.s=this.t=0;for(var d=a.length,e=!1,g=0;0<=--d;){var h=8==c?a[d]&255:S(a,d);0>h?"-"==a.charAt(d)&&(e=!0):(e=!1,0==g?this[this.t++]=h:g+c>this.DB?(this[this.t-1]|=(h&(1<>this.DB-g):this[this.t-1]|=h<=this.DB&&(g-=this.DB))}8==c&&0!=(a[0]&128)&&(this.s=-1,0>d|h,h=(this[k]&e)<=this.t)b.t=0;else{var d=a%this.DB,e=this.DB-d,g=(1<>d;for(var h=c+1;h>d;0>=this.DB;if(a.t>=this.DB;d+=this.s}else{for(d+=this.s;c>=this.DB;d-=a.s}b.s=0>d?-1:0;-1>d?b[c++]=this.DV+d:0=b.DV&&(a[c+b.t]-=b.DV,a[c+b.t+ -1]=1)}0=d.t)){var e=this.abs();if(e.t>this.F2:0),w=this.FV/y,y=(1<h&&f.ZERO.subTo(c,c)}}}};f.prototype.invDigit=function(){if(1>this.t)return 0;var a=this[0];if(0==(a&1))return 0;var b=a&3,b=b*(2-(a&15)*b)&15,b=b*(2-(a&255)*b)&255,b=b*(2- -((a&65535)*b&65535))&65535,b=b*(2-a*b%this.DV)%this.DV;return 0a)return f.ONE;var c=m(),d=m(),e=b.convert(this),g=I(a)-1;for(e.copyTo(c);0<=--g;)if(b.sqrTo(c,d),0<(a&1<this.s)return"-"+this.negate().toString(a);if(16==a)a=4;else if(8==a)a=3;else if(2==a)a=1;else if(32== -a)a=5;else if(4==a)a=2;else return this.toRadix(a);var b=(1<>h)&&(d=!0,e="0123456789abcdefghijklmnopqrstuvwxyz".charAt(c));0<=g;)h>(h+=this.DB-a)):(c=this[g]>>(h-=a)&b,0>=h&&(h+=this.DB,--g)),0 -this.s?this.negate():this};f.prototype.compareTo=function(a){var b=this.s-a.s;if(0!=b)return b;var c=this.t,b=c-a.t;if(0!=b)return 0>this.s?-b:b;for(;0<=--c;)if(0!=(b=this[c]-a[c]))return b;return 0};f.prototype.bitLength=function(){return 0>=this.t?0:this.DB*(this.t-1)+I(this[this.t-1]^this.s&this.DM)};f.prototype.mod=function(a){var b=m();this.abs().divRemTo(a,null,b);0>this.s&&0a||b.isEven()?new C(b):new D(b); -return this.exp(a,c)};f.ZERO=z(0);f.ONE=z(1);F.prototype.convert=V;F.prototype.revert=V;F.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c)};F.prototype.sqrTo=function(a,b){a.squareTo(b)};E.prototype.convert=function(a){if(0>a.s||a.t>2*this.m.t)return a.mod(this.m);if(0>a.compareTo(this.m))return a;var b=m();a.copyTo(b);this.reduce(b);return b};E.prototype.revert=function(a){return a};E.prototype.reduce=function(a){a.drShiftTo(this.m.t-1,this.r2);a.t>this.m.t+1&&(a.t=this.m.t+1,a.clamp());this.mu.multiplyUpperTo(this.r2, -this.m.t+1,this.q3);for(this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);0>a.compareTo(this.r2);)a.dAddOffset(1,this.m.t+1);for(a.subTo(this.r2,a);0<=a.compareTo(this.m);)a.subTo(this.m,a)};E.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};E.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};var u=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173,179,181,191,193,197,199,211,223,227,229,233, -239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983,991,997],da=67108864/u[u.length-1];f.prototype.chunkSize= -function(a){return Math.floor(Math.LN2*this.DB/Math.log(a))};f.prototype.toRadix=function(a){null==a&&(a=10);if(0==this.signum()||2>a||36y?"-"==a.charAt(k)&&0==this.signum()&&(e=!0):(h=b*h+y,++g>=c&&(this.dMultiply(d),this.dAddOffset(h,0),h=g=0))}0a)this.fromInt(1);else for(this.fromNumber(a,c),this.testBit(a-1)||this.bitwiseTo(f.ONE.shiftLeft(a-1),J,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(b);)this.dAddOffset(2,0),this.bitLength()>a&&this.subTo(f.ONE.shiftLeft(a- -1),this);else{c=[];var d=a&7;c.length=(a>>3)+1;b.nextBytes(c);c[0]=0>=this.DB;if(a.t>=this.DB;d+=this.s}else{for(d+=this.s;c>=this.DB;d+=a.s}b.s=0>d?-1:0;0d&&(b[c++]=this.DV+d);b.t=c;b.clamp()};f.prototype.dMultiply=function(a){this[this.t]=this.am(0,a-1,this,0,0,this.t);++this.t;this.clamp()};f.prototype.dAddOffset=function(a,b){if(0!=a){for(;this.t<=b;)this[this.t++]=0;for(this[b]+= -a;this[b]>=this.DV;)this[b]-=this.DV,++b>=this.t&&(this[this.t++]=0),++this[b]}};f.prototype.multiplyLowerTo=function(a,b,c){var d=Math.min(this.t+a.t,b);c.s=0;for(c.t=d;0=a)return 0;var b=this.DV%a,c=0>this.s?a-1:0;if(0=c)return!1;var d=b.shiftRight(c);a=a+1>>1;a>u.length&&(a=u.length);for(var e=m(),g=0;gthis.s){if(1==this.t)return this[0]-this.DV;if(0==this.t)return-1}else{if(1==this.t)return this[0];if(0==this.t)return 0}return(this[1]&(1<<32-this.DB)-1)<>24};f.prototype.shortValue=function(){return 0== -this.t?this.s:this[0]<<16>>16};f.prototype.signum=function(){return 0>this.s?-1:0>=this.t||1==this.t&&0>=this[0]?0:1};f.prototype.toByteArray=function(){var a=this.t,b=[];b[0]=this.s;var c=this.DB-a*this.DB%8,d,e=0;if(0>c)!=(this.s&this.DM)>>c&&(b[e++]=d|this.s<c?(d=(this[a]&(1<>(c+=this.DB-8)):(d=this[a]>>(c-=8)&255,0>=c&&(c+=this.DB,--a)),0!=(d&128)&&(d|=-256),0==e&&(this.s&128)!=(d&128)&&++e,0this.compareTo(a)?this:a};f.prototype.max=function(a){return 0a?this.rShiftTo(-a,b):this.lShiftTo(a,b);return b};f.prototype.shiftRight=function(a){var b=m();0>a?this.lShiftTo(-a,b):this.rShiftTo(a,b);return b};f.prototype.getLowestSetBit=function(){for(var a=0;a>=16,c+=16);0==(a&255)&&(a>>=8,c+=8);0==(a&15)&&(a>>=4,c+=4);0==(a&3)&&(a>>=2,c+=2); -0==(a&1)&&++c;a=c}return b+a}return 0>this.s?this.t*this.DB:-1};f.prototype.bitCount=function(){for(var a=0,b=this.s&this.DM,c=0;c=this.t?0!=this.s:0!=(this[b]&1<=c)return e;d=18>c?1:48>c?3:144>c?4:768>c?5:6;g=8>c?new C(b):b.isEven()?new E(b):new D(b);var h=[],k=3,f=d-1,w=(1<=f?t=a[l]>>c-f&w:(t=(a[l]&(1<>this.DB+c-f));for(k=d;0==(t&1);)t>>=1,--k;0>(c-=k)&&(c+=this.DB,--l);if(p)h[t].copyTo(e),p=!1;else{for(;1--c&&(c=this.DB-1,--l)}return g.revert(e)};f.prototype.modInverse=function(a){var b=a.isEven();if(this.isEven()&&b||0==a.signum())return f.ZERO;for(var c=a.clone(),d=this.clone(),e=z(1),g=z(0),h=z(0),k=z(1);0!=c.signum();){for(;c.isEven();)c.rShiftTo(1,c),b?(e.isEven()&&g.isEven()||(e.addTo(this,e),g.subTo(a,g)),e.rShiftTo(1,e)):g.isEven()||g.subTo(a,g),g.rShiftTo(1,g);for(;d.isEven();)d.rShiftTo(1,d),b?(h.isEven()&&k.isEven()|| -(h.addTo(this,h),k.subTo(a,k)),h.rShiftTo(1,h)):k.isEven()||k.subTo(a,k),k.rShiftTo(1,k);0<=c.compareTo(d)?(c.subTo(d,c),b&&e.subTo(h,e),g.subTo(k,g)):(d.subTo(c,d),b&&h.subTo(e,h),k.subTo(g,k))}if(0!=d.compareTo(f.ONE))return f.ZERO;if(0<=k.compareTo(a))return k.subtract(a);if(0>k.signum())k.addTo(a,k);else return k;return 0>k.signum()?k.add(a):k};f.prototype.pow=function(a){return this.exp(a,new F)};f.prototype.gcd=function(a){var b=0>this.s?this.negate():this.clone();a=0>a.s?a.negate():a.clone(); -if(0>b.compareTo(a)){var c=b,b=a;a=c}var c=b.getLowestSetBit(),d=a.getLowestSetBit();if(0>d)return b;cb;++b)this.S[b]=b;for(b=c=0;256>b;++b)c=c+this.S[b]+a[b%a.length]&255,d=this.S[b],this.S[b]=this.S[c],this.S[c]=d;this.j=this.i=0};O.prototype.next=function(){var a;this.i=this.i+1&255;this.j=this.j+this.S[this.i]& -255;a=this.S[this.i];this.S[this.i]=this.S[this.j];this.S[this.j]=a;return this.S[a+this.S[this.i]&255]};var L,B,x;if(null==B){B=[];x=0;if(window.crypto&&window.crypto.getRandomValues)for(r=new Uint32Array(256),window.crypto.getRandomValues(r),q=0;qx;)d=Math.floor(65536*Math.random()),B[x++]=d&255;L.init(B);for(x=0;x>3;if(be?c[--b]=e:127e?(c[--b]=e&63|128,c[--b]=e>>6|192):(c[--b]=e&63|128,c[--b]=e>>6&63|128,c[--b]=e>>12|224)}c[--b]=0;a=new K;for(d=[];2b.compareTo(a);)b=b.add(this.p);return b.subtract(a).multiply(this.coeff).mod(this.p).multiply(this.q).add(a)};p.prototype.setPrivate=function(a,b,c){null!=a&&null!=b&&0>1;this.e=parseInt(b,16);for(var e=new f(b,16);;){for(;this.p=new f(a-d,1,c),0!=this.p.subtract(f.ONE).gcd(e).compareTo(f.ONE)|| -!this.p.isProbablePrime(10););for(;this.q=new f(d,1,c),0!=this.q.subtract(f.ONE).gcd(e).compareTo(f.ONE)||!this.q.isProbablePrime(10););if(0>=this.p.compareTo(this.q)){var g=this.p;this.p=this.q;this.q=g}var g=this.p.subtract(f.ONE),h=this.q.subtract(f.ONE),k=g.multiply(h);if(0==k.gcd(e).compareTo(f.ONE)){this.n=this.p.multiply(this.q);this.d=e.modInverse(k);this.dmp1=this.d.mod(g);this.dmq1=this.d.mod(h);this.coeff=this.q.modInverse(this.p);break}}};p.prototype.decrypt=function(a){a=n(a,16);a=this.doPrivate(a); -if(null==a)return null;a:{var b=this.n.bitLength()+7>>3;a=a.toByteArray();for(var c=0;c=a.length){a=null;break a}for(b="";++cd?b+=String.fromCharCode(d):191d?(b+=String.fromCharCode((d&31)<<6|a[c+1]&63),++c):(b+=String.fromCharCode((d&15)<<12|(a[c+1]&63)<<6|a[c+2]&63),c+=2)}a=b}}return a};(function(){p.prototype.generateAsync=function(a,b,c){var d=new K,e=a>>1;this.e=parseInt(b, -16);var g=new f(b,16),h=this,k=function(){var b=function(){if(0>=h.p.compareTo(h.q)){var a=h.p;h.p=h.q;h.q=a}var a=h.p.subtract(f.ONE),b=h.q.subtract(f.ONE),d=a.multiply(b);0==d.gcd(g).compareTo(f.ONE)?(h.n=h.p.multiply(h.q),h.d=g.modInverse(d),h.dmp1=h.d.mod(a),h.dmq1=h.d.mod(b),h.coeff=h.q.modInverse(h.p),setTimeout(function(){c()},0)):setTimeout(k,0)},l=function(){h.q=m();h.q.fromNumberAsync(e,1,d,function(){h.q.subtract(f.ONE).gcda(g,function(a){0==a.compareTo(f.ONE)&&h.q.isProbablePrime(10)? -setTimeout(b,0):setTimeout(l,0)})})},n=function(){h.p=m();h.p.fromNumberAsync(a-e,1,d,function(){h.p.subtract(f.ONE).gcda(g,function(a){0==a.compareTo(f.ONE)&&h.p.isProbablePrime(10)?setTimeout(l,0):setTimeout(n,0)})})};setTimeout(n,0)};setTimeout(k,0)};f.prototype.gcda=function(a,b){var c=0>this.s?this.negate():this.clone(),d=0>a.s?a.negate():a.clone();if(0>c.compareTo(d))var e=c,c=d,d=e;var g=c.getLowestSetBit(),h=d.getLowestSetBit();if(0>h)b(c);else{ga)this.fromInt(1);else{this.fromNumber(a,c);this.testBit(a-1)||this.bitwiseTo(f.ONE.shiftLeft(a-1),J,this);this.isEven()&&this.dAddOffset(1, -0);var e=this,g=function(){e.dAddOffset(2,0);e.bitLength()>a&&e.subTo(f.ONE.shiftLeft(a-1),e);e.isProbablePrime(b)?setTimeout(function(){d()},0):setTimeout(g,0)};setTimeout(g,0)}else{c=[];var h=a&7;c.length=(a>>3)+1;b.nextBytes(c);c[0]=0a)return b;var c=b.length/2;if(15=c?a:Array(c-a.length+1).join("0")+a};this.getString=function(){return this.s};this.setString=function(a){this.hTLV=null;this.isModified=!0;this.s=a;this.hV=stohex(this.s)};this.setByDateValue=function(a,c,d,e,g,h){a=new Date(Date.UTC(a,c-1,d,e,g,h,0));this.setByDate(a)};this.getFreshValueHex=function(){return this.hV}};l.extend(KJUR.asn1.DERAbstractTime,KJUR.asn1.ASN1Object);KJUR.asn1.DERAbstractStructured=function(a){KJUR.asn1.DERAbstractString.superclass.constructor.call(this); -this.setByASN1ObjectArray=function(a){this.hTLV=null;this.isModified=!0;this.asn1Array=a};this.appendASN1Object=function(a){this.hTLV=null;this.isModified=!0;this.asn1Array.push(a)};this.asn1Array=[];"undefined"!=typeof a&&"undefined"!=typeof a.array&&(this.asn1Array=a.array)};l.extend(KJUR.asn1.DERAbstractStructured,KJUR.asn1.ASN1Object);KJUR.asn1.DERBoolean=function(){KJUR.asn1.DERBoolean.superclass.constructor.call(this);this.hT="01";this.hTLV="0101ff"};l.extend(KJUR.asn1.DERBoolean,KJUR.asn1.ASN1Object); -KJUR.asn1.DERInteger=function(a){KJUR.asn1.DERInteger.superclass.constructor.call(this);this.hT="02";this.setByBigInteger=function(a){this.hTLV=null;this.isModified=!0;this.hV=KJUR.asn1.ASN1Util.bigIntToMinTwosComplementsHex(a)};this.setByInteger=function(a){a=new f(String(a),10);this.setByBigInteger(a)};this.setValueHex=function(a){this.hV=a};this.getFreshValueHex=function(){return this.hV};"undefined"!=typeof a&&("undefined"!=typeof a.bigint?this.setByBigInteger(a.bigint):"undefined"!=typeof a["int"]? -this.setByInteger(a["int"]):"undefined"!=typeof a.hex&&this.setValueHex(a.hex))};l.extend(KJUR.asn1.DERInteger,KJUR.asn1.ASN1Object);KJUR.asn1.DERBitString=function(a){KJUR.asn1.DERBitString.superclass.constructor.call(this);this.hT="03";this.setHexValueIncludingUnusedBits=function(a){this.hTLV=null;this.isModified=!0;this.hV=a};this.setUnusedBitsAndHexValue=function(a,c){if(0>a||7d;++d)c[g.charAt(d)]=d;g=g.toLowerCase(); -for(d=10;16>d;++d)c[g.charAt(d)]=d;for(d=0;8>d;++d)c[" \f\n\r\t\u00a0\u2028\u2029".charAt(d)]=-1}var g=[],h=0,k=0;for(d=0;dd;++d)c["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d)]= -d;for(d=0;9>d;++d)c["= \f\n\r\t\u00a0\u2028\u2029".charAt(d)]=-1}var g=[],h=0,k=0;for(d=0;d>16,g[g.length]=h>>8&255,g[g.length]=h&255,k=h=0):h<<=6}}switch(k){case 1:throw"Base64 encoding incomplete: at least 2 bits missing";case 2:g[g.length]=h>>10;break;case 3:g[g.length]=h>>16,g[g.length]=h>>8&255}return g};b.re=/-----BEGIN [^-]+-----([A-Za-z0-9+\/=\s]+)-----END [^-]+-----|begin-base64[^\n]+\n([A-Za-z0-9+\/=\s]+)====/; -b.unarmor=function(a){var c=b.re.exec(a);if(c)if(c[1])a=c[1];else if(c[2])a=c[2];else throw"RegExp out of sync";return b.decode(a)};window.Base64=b})();(function(a){function b(a,c){a instanceof b?(this.enc=a.enc,this.pos=a.pos):(this.enc=a,this.pos=c)}function c(a,b,c,d,f){this.stream=a;this.header=b;this.length=c;this.tag=d;this.sub=f}var d={tag:function(a,b){var c=document.createElement(a);c.className=b;return c},text:function(a){return document.createTextNode(a)}};b.prototype.get=function(b){b=== -a&&(b=this.pos++);if(b>=this.enc.length)throw"Requesting byte offset "+b+" on a stream of length "+this.enc.length;return this.enc[b]};b.prototype.hexDigits="0123456789ABCDEF";b.prototype.hexByte=function(a){return this.hexDigits.charAt(a>>4&15)+this.hexDigits.charAt(a&15)};b.prototype.hexDump=function(a,b,c){for(var d="";ae?c+String.fromCharCode(e):191e?c+String.fromCharCode((e&31)<<6|this.get(d++)&63):c+String.fromCharCode((e&15)<<12|(this.get(d++)&63)<<6|this.get(d++)&63);return c};b.prototype.parseStringBMP=function(a,b){for(var c="",d=a;dd;)d<<=1,--c;return"("+c+" bit)"}c=0;for(d=a;d=d)for(var g=c,e=e+" ",c=b-1;c>a;--c){for(d=this.get(c);8>g;++g)e+=d>>g&1?"1":"0";g=0}return e};b.prototype.parseOctetString=function(a,b){var c=b-a,d="("+c+" byte) ";100d?40>d?0:1:2,c=c+"."+(d-40*c)):c+="."+(31<= -e?"bigint":d),d=e=0)}return c};c.prototype.typeName=function(){if(this.tag===a)return"unknown";var b=this.tag&31;switch(this.tag>>6){case 0:switch(b){case 0:return"EOC";case 1:return"BOOLEAN";case 2:return"INTEGER";case 3:return"BIT_STRING";case 4:return"OCTET_STRING";case 5:return"NULL";case 6:return"OBJECT_IDENTIFIER";case 7:return"ObjectDescriptor";case 8:return"EXTERNAL";case 9:return"REAL";case 10:return"ENUMERATED";case 11:return"EMBEDDED_PDV";case 12:return"UTF8String";case 16:return"SEQUENCE"; -case 17:return"SET";case 18:return"NumericString";case 19:return"PrintableString";case 20:return"TeletexString";case 21:return"VideotexString";case 22:return"IA5String";case 23:return"UTCTime";case 24:return"GeneralizedTime";case 25:return"GraphicString";case 26:return"VisibleString";case 27:return"GeneralString";case 28:return"UniversalString";case 30:return"BMPString";default:return"Universal_"+b.toString(16)}case 1:return"Application_"+b.toString(16);case 2:return"["+b+"]";case 3:return"Private_"+ -b.toString(16)}};c.prototype.reSeemsASCII=/^[ -~]+$/;c.prototype.content=function(){if(this.tag===a)return null;var b=this.tag>>6,c=this.tag&31,d=this.posContent(),f=Math.abs(this.length);if(0!==b){if(null!==this.sub)return"("+this.sub.length+" elem)";b=this.stream.parseStringISO(d,d+Math.min(f,100));return this.reSeemsASCII.test(b)?b.substring(0,200)+(200",c=c+("Length: "+this.header+"+"),c=0<=this.length?c+this.length:c+(-this.length+" (undefined)");this.tag&32?c+="
(constructed)":3!=this.tag&&4!=this.tag||null===this.sub||(c+="
(encapsulates)");null!==f&&(c+="
Value:
"+f+"","object"===typeof oids&&6==this.tag&&(f=oids[f]))&&(f.d&&(c+="
"+f.d),f.c&&(c+="
"+f.c),f.w&&(c+="
(warning!)"));l.innerHTML=c;a.appendChild(l);c=d.tag("div","sub"); -if(null!==this.sub)for(f=0,l=this.sub.length;f=l||(b=d.tag("span",b),b.appendChild(d.text(c.hexDump(f,l))),a.appendChild(b))};c.prototype.toHexDOM=function(b){var c=d.tag("span","hex");b===a&&(b=c);this.head.hexNode=c;this.head.onmouseover=function(){this.hexNode.className="hexCurrent"};this.head.onmouseout=function(){this.hexNode.className= -"hex"};c.asn1=this;c.onmouseover=function(){var a=!b.selected;a&&(b.selected=this.asn1,this.className="hexCurrent");this.asn1.fakeHover(a)};c.onmouseout=function(){var a=b.selected==this.asn1;this.asn1.fakeOut(a);a&&(b.selected=null,this.className="hex")};this.toHexDOM_sub(c,"tag",this.stream,this.posStart(),this.posStart()+1);this.toHexDOM_sub(c,0<=this.length?"dlen":"ulen",this.stream,this.posStart()+1,this.posContent());if(null===this.sub)c.appendChild(d.text(this.stream.hexDump(this.posContent(), -this.posEnd())));else if(0a||4>6&1)return!1;try{var g=c.decodeLength(e);return e.pos-f.pos+g==d}catch(w){return!1}};c.decode=function(a){a instanceof b||(a=new b(a,0));var d=new b(a),e=a.get(),f=c.decodeLength(a),l=a.pos-d.pos,m=null;if(c.hasContent(e,f,a)){var n=a.pos;3==e&&a.get();m=[];if(0<=f){for(var p=n+f;a.posMIT License +*/ +var JSEncryptExports={}; +(function(M){function f(a,b,c){null!=a&&("number"==typeof a?this.fromNumber(a,b,c):null==b&&"string"!=typeof a?this.fromString(a,256):this.fromString(a,b))}function n(){return new f(null)}function X(a,b,c,d,e,h){for(;0<=--h;){var g=b*this[a++]+c[d]+e;e=Math.floor(g/67108864);c[d++]=g&67108863}return e}function Y(a,b,c,d,e,h){var g=b&32767;for(b>>=15;0<=--h;){var k=this[a]&32767,f=this[a++]>>15,r=b*k+f*g;k=g*k+((r&32767)<<15)+c[d]+(e&1073741823);e=(k>>>30)+(r>>>15)+b*f+(e>>>30);c[d++]=k&1073741823}return e} +function Z(a,b,c,d,e,h){var g=b&16383;for(b>>=14;0<=--h;){var k=this[a]&16383,f=this[a++]>>14,r=b*k+f*g;k=g*k+((r&16383)<<14)+c[d]+e;e=(k>>28)+(r>>14)+b*f;c[d++]=k&268435455}return e}function R(a,b){a=G[a.charCodeAt(b)];return null==a?-1:a}function z(a){var b=n();b.fromInt(a);return b}function H(a){var b=1,c;0!=(c=a>>>16)&&(a=c,b+=16);0!=(c=a>>8)&&(a=c,b+=8);0!=(c=a>>4)&&(a=c,b+=4);0!=(c=a>>2)&&(a=c,b+=2);0!=a>>1&&(b+=1);return b}function A(a){this.m=a}function B(a){this.m=a;this.mp=a.invDigit(); +this.mpl=this.mp&32767;this.mph=this.mp>>15;this.um=(1<>6)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d&63)}b+1==a.length?(d=parseInt(a.substring(b,b+1),16),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d<<2)):b+2==a.length&&(d=parseInt(a.substring(b,b+2),16),c+="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(d>> +2)+"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt((d&3)<<4));for(;0<(c.length&3);)c+="=";return c}function ba(a){var b="",c,d=0;for(c=0;cv))if(0==d){b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(v>>2);var e=v&3;d=1}else 1==d?(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e<<2|v>>4),e=v&15,d=2):2==d?(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e), +b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(v>>2),e=v&3,d=3):(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e<<2|v>>4),b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(v&15),d=0);1==d&&(b+="0123456789abcdefghijklmnopqrstuvwxyz".charAt(e<<2));return b}if("Microsoft Internet Explorer"==navigator.appName){f.prototype.am=Y;var q=30}else"Netscape"!=navigator.appName?(f.prototype.am=X,q=26):(f.prototype.am=Z,q=28);f.prototype.DB=q;f.prototype.DM=(1<=u;++u)G[q++]=u;q=97;for(u=10;36>u;++u)G[q++]=u;q=65;for(u=10;36>u;++u)G[q++]=u;A.prototype.convert=function(a){return 0>a.s||0<=a.compareTo(this.m)?a.mod(this.m):a};A.prototype.revert=function(a){return a};A.prototype.reduce=function(a){a.divRemTo(this.m,null,a)};A.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};A.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};B.prototype.convert=function(a){var b= +n();a.abs().dlShiftTo(this.m.t,b);b.divRemTo(this.m,null,b);0>a.s&&0>15)*this.mpl&this.um)<<15)&a.DM;c=b+this.m.t;for(a[c]+=this.m.am(0,d,a,b,0,this.m.t);a[c]>=a.DV;)a[c]-=a.DV,a[++c]++}a.clamp();a.drShiftTo(this.m.t,a);0<=a.compareTo(this.m)&& +a.subTo(this.m,a)};B.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};B.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};f.prototype.copyTo=function(a){for(var b=this.t-1;0<=b;--b)a[b]=this[b];a.t=this.t;a.s=this.s};f.prototype.fromInt=function(a){this.t=1;this.s=0>a?-1:0;0a?this[0]=a+this.DV:this.t=0};f.prototype.fromString=function(a,b){if(16==b)b=4;else if(8==b)b=3;else if(256==b)b=8;else if(2==b)b=1;else if(32==b)b=5;else if(4==b)b=2;else{this.fromRadix(a, +b);return}this.s=this.t=0;for(var c=a.length,d=!1,e=0;0<=--c;){var h=8==b?a[c]&255:R(a,c);0>h?"-"==a.charAt(c)&&(d=!0):(d=!1,0==e?this[this.t++]=h:e+b>this.DB?(this[this.t-1]|=(h&(1<>this.DB-e):this[this.t-1]|=h<=this.DB&&(e-=this.DB))}8==b&&0!=(a[0]&128)&&(this.s=-1,0>d|h,h=(this[g]&e)<=this.t)b.t=0;else{a%=this.DB;var d=this.DB-a,e=(1<>a;for(var h=c+1;h>a;0>=this.DB;if(a.t>=this.DB;d+=this.s}else{for(d+=this.s;c>=this.DB;d-=a.s}b.s=0>d?-1:0;-1>d?b[c++]=this.DV+d:0=b.DV&&(a[c+b.t]-=b.DV, +a[c+b.t+1]=1)}0=d.t)){var e=this.abs();if(e.t>this.F2:0),r=this.FV/x;x=(1<g&&f.ZERO.subTo(c,c)}}}};f.prototype.invDigit=function(){if(1>this.t)return 0;var a=this[0];if(0==(a&1))return 0;var b=a&3;b=b*(2-(a&15)*b)&15;b=b*(2- +(a&255)*b)&255;b=b*(2-((a&65535)*b&65535))&65535;b=b*(2-a*b%this.DV)%this.DV;return 0a)return f.ONE;var c=n(),d=n(),e=b.convert(this),h=H(a)-1;for(e.copyTo(c);0<=--h;)if(b.sqrTo(c,d),0<(a&1<this.s)return"-"+this.negate().toString(a);if(16==a)a=4;else if(8==a)a=3;else if(2== +a)a=1;else if(32==a)a=5;else if(4==a)a=2;else return this.toRadix(a);var b=(1<>g)&&(d=!0,e="0123456789abcdefghijklmnopqrstuvwxyz".charAt(c));0<=h;)g>(g+=this.DB-a)):(c=this[h]>>(g-=a)&b,0>=g&&(g+=this.DB,--h)),0this.s?this.negate():this};f.prototype.compareTo=function(a){var b=this.s-a.s;if(0!=b)return b;var c=this.t;b=c-a.t;if(0!=b)return 0>this.s?-b:b;for(;0<=--c;)if(0!=(b=this[c]-a[c]))return b;return 0};f.prototype.bitLength=function(){return 0>=this.t?0:this.DB*(this.t-1)+H(this[this.t-1]^this.s&this.DM)};f.prototype.mod=function(a){var b=n();this.abs().divRemTo(a,null,b);0>this.s&&0a||b.isEven()? +new A(b):new B(b);return this.exp(a,b)};f.ZERO=z(0);f.ONE=z(1);E.prototype.convert=U;E.prototype.revert=U;E.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c)};E.prototype.sqrTo=function(a,b){a.squareTo(b)};D.prototype.convert=function(a){if(0>a.s||a.t>2*this.m.t)return a.mod(this.m);if(0>a.compareTo(this.m))return a;var b=n();a.copyTo(b);this.reduce(b);return b};D.prototype.revert=function(a){return a};D.prototype.reduce=function(a){a.drShiftTo(this.m.t-1,this.r2);a.t>this.m.t+1&&(a.t=this.m.t+1, +a.clamp());this.mu.multiplyUpperTo(this.r2,this.m.t+1,this.q3);for(this.m.multiplyLowerTo(this.q3,this.m.t+1,this.r2);0>a.compareTo(this.r2);)a.dAddOffset(1,this.m.t+1);for(a.subTo(this.r2,a);0<=a.compareTo(this.m);)a.subTo(this.m,a)};D.prototype.mulTo=function(a,b,c){a.multiplyTo(b,c);this.reduce(c)};D.prototype.sqrTo=function(a,b){a.squareTo(b);this.reduce(b)};var w=[2,3,5,7,11,13,17,19,23,29,31,37,41,43,47,53,59,61,67,71,73,79,83,89,97,101,103,107,109,113,127,131,137,139,149,151,157,163,167,173, +179,181,191,193,197,199,211,223,227,229,233,239,241,251,257,263,269,271,277,281,283,293,307,311,313,317,331,337,347,349,353,359,367,373,379,383,389,397,401,409,419,421,431,433,439,443,449,457,461,463,467,479,487,491,499,503,509,521,523,541,547,557,563,569,571,577,587,593,599,601,607,613,617,619,631,641,643,647,653,659,661,673,677,683,691,701,709,719,727,733,739,743,751,757,761,769,773,787,797,809,811,821,823,827,829,839,853,857,859,863,877,881,883,887,907,911,919,929,937,941,947,953,967,971,977,983, +991,997],ca=67108864/w[w.length-1];f.prototype.chunkSize=function(a){return Math.floor(Math.LN2*this.DB/Math.log(a))};f.prototype.toRadix=function(a){null==a&&(a=10);if(0==this.signum()||2>a||36x?"-"==a.charAt(k)&&0==this.signum()&&(e=!0):(g=b*g+x,++h>=c&&(this.dMultiply(d),this.dAddOffset(g,0),g=h=0))}0a)this.fromInt(1);else for(this.fromNumber(a,c),this.testBit(a-1)||this.bitwiseTo(f.ONE.shiftLeft(a-1),I,this),this.isEven()&&this.dAddOffset(1,0);!this.isProbablePrime(b);)this.dAddOffset(2, +0),this.bitLength()>a&&this.subTo(f.ONE.shiftLeft(a-1),this);else{c=[];var d=a&7;c.length=(a>>3)+1;b.nextBytes(c);c[0]=0>=this.DB;if(a.t>=this.DB;d+=this.s}else{for(d+=this.s;c>=this.DB;d+=a.s}b.s=0>d?-1:0;0d&&(b[c++]=this.DV+d);b.t=c;b.clamp()};f.prototype.dMultiply=function(a){this[this.t]=this.am(0,a-1,this,0,0,this.t);++this.t;this.clamp()};f.prototype.dAddOffset=function(a,b){if(0!= +a){for(;this.t<=b;)this[this.t++]=0;for(this[b]+=a;this[b]>=this.DV;)this[b]-=this.DV,++b>=this.t&&(this[this.t++]=0),++this[b]}};f.prototype.multiplyLowerTo=function(a,b,c){var d=Math.min(this.t+a.t,b);c.s=0;for(c.t=d;0=a)return 0;var b=this.DV%a,c=0>this.s?a-1:0;if(0=c)return!1;var d=b.shiftRight(c);a=a+1>>1;a>w.length&&(a=w.length);for(var e=n(),h=0;hthis.s){if(1==this.t)return this[0]-this.DV;if(0==this.t)return-1}else{if(1==this.t)return this[0];if(0==this.t)return 0}return(this[1]&(1<<32-this.DB)-1)<>24};f.prototype.shortValue=function(){return 0==this.t?this.s:this[0]<<16>>16};f.prototype.signum=function(){return 0>this.s?-1:0>=this.t||1==this.t&&0>=this[0]?0:1};f.prototype.toByteArray=function(){var a=this.t,b=[];b[0]=this.s;var c=this.DB-a*this.DB%8,d,e=0;if(0>c)!=(this.s&this.DM)>>c&&(b[e++]=d|this.s<c?(d=(this[a]&(1<>(c+=this.DB-8)):(d=this[a]>>(c-=8)&255,0>=c&&(c+=this.DB,--a)),0!=(d&128)&&(d|=-256), +0==e&&(this.s&128)!=(d&128)&&++e,0this.compareTo(a)?this:a};f.prototype.max=function(a){return 0a?this.rShiftTo(-a,b):this.lShiftTo(a,b);return b};f.prototype.shiftRight=function(a){var b=n();0>a?this.lShiftTo(-a,b):this.rShiftTo(a,b);return b};f.prototype.getLowestSetBit=function(){for(var a=0;a>=16,c+=16);0== +(a&255)&&(a>>=8,c+=8);0==(a&15)&&(a>>=4,c+=4);0==(a&3)&&(a>>=2,c+=2);0==(a&1)&&++c;a=c}return b+a}return 0>this.s?this.t*this.DB:-1};f.prototype.bitCount=function(){for(var a=0,b=this.s&this.DM,c=0;c=this.t?0!=this.s:0!=(this[b]&1<=c)return d;var e=18>c?1:48>c?3:144>c?4:768>c?5:6;b=8>c?new A(b):b.isEven()?new D(b):new B(b);var h=[],g=3,k=e-1,f=(1<=k)var m=a[r]>>c-k&f;else m=(a[r]&(1<>this.DB+c-k);for(g=e;0==(m&1);)m>>=1,--g;0>(c-=g)&&(c+=this.DB,--r);if(l)h[m].copyTo(d),l=!1; +else{for(;1--c&&(c=this.DB-1,--r)}return b.revert(d)};f.prototype.modInverse=function(a){var b=a.isEven();if(this.isEven()&&b||0==a.signum())return f.ZERO;for(var c=a.clone(),d=this.clone(),e=z(1),h=z(0),g=z(0),k=z(1);0!=c.signum();){for(;c.isEven();)c.rShiftTo(1,c),b?(e.isEven()&&h.isEven()||(e.addTo(this,e),h.subTo(a,h)),e.rShiftTo(1,e)):h.isEven()||h.subTo(a, +h),h.rShiftTo(1,h);for(;d.isEven();)d.rShiftTo(1,d),b?(g.isEven()&&k.isEven()||(g.addTo(this,g),k.subTo(a,k)),g.rShiftTo(1,g)):k.isEven()||k.subTo(a,k),k.rShiftTo(1,k);0<=c.compareTo(d)?(c.subTo(d,c),b&&e.subTo(g,e),h.subTo(k,h)):(d.subTo(c,d),b&&g.subTo(e,g),k.subTo(h,k))}if(0!=d.compareTo(f.ONE))return f.ZERO;if(0<=k.compareTo(a))return k.subtract(a);if(0>k.signum())k.addTo(a,k);else return k;return 0>k.signum()?k.add(a):k};f.prototype.pow=function(a){return this.exp(a,new E)};f.prototype.gcd=function(a){var b= +0>this.s?this.negate():this.clone();a=0>a.s?a.negate():a.clone();if(0>b.compareTo(a)){var c=b;b=a;a=c}c=b.getLowestSetBit();var d=a.getLowestSetBit();if(0>d)return b;cb;++b)this.S[b]=b;for(b=c=0;256>b;++b){c=c+this.S[b]+a[b%a.length]&255;var d=this.S[b];this.S[b]=this.S[c];this.S[c]=d}this.j=this.i=0};N.prototype.next= +function(){this.i=this.i+1&255;this.j=this.j+this.S[this.i]&255;var a=this.S[this.i];this.S[this.i]=this.S[this.j];this.S[this.j]=a;return this.S[a+this.S[this.i]&255]};var K;if(null==C){var C=[];var y=0;if(window.crypto&&window.crypto.getRandomValues)for(u=new Uint32Array(256),window.crypto.getRandomValues(u),q=0;qy;){var d=Math.floor(65536*Math.random());C[y++]=d&255}K.init(C);for(y=0;y>3;if(be?c[--b]=e:127e?(c[--b]=e&63|128,c[--b]=e>>6|192):(c[--b]=e&63|128,c[--b]=e>>6&63|128,c[--b]=e>>12|224)}c[--b]=0;a=new J;for(d=[];2b.compareTo(a);)b=b.add(this.p);return b.subtract(a).multiply(this.coeff).mod(this.p).multiply(this.q).add(a)};p.prototype.setPrivate= +function(a,b,c){null!=a&&null!=b&&0>1;this.e=parseInt(b,16); +for(b=new f(b,16);;){for(;this.p=new f(a-d,1,c),0!=this.p.subtract(f.ONE).gcd(b).compareTo(f.ONE)||!this.p.isProbablePrime(10););for(;this.q=new f(d,1,c),0!=this.q.subtract(f.ONE).gcd(b).compareTo(f.ONE)||!this.q.isProbablePrime(10););if(0>=this.p.compareTo(this.q)){var e=this.p;this.p=this.q;this.q=e}e=this.p.subtract(f.ONE);var h=this.q.subtract(f.ONE),g=e.multiply(h);if(0==g.gcd(b).compareTo(f.ONE)){this.n=this.p.multiply(this.q);this.d=b.modInverse(g);this.dmp1=this.d.mod(e);this.dmq1=this.d.mod(h); +this.coeff=this.q.modInverse(this.p);break}}};p.prototype.decrypt=function(a){a=m(a,16);a=this.doPrivate(a);if(null==a)return null;a:{var b=this.n.bitLength()+7>>3;a=a.toByteArray();for(var c=0;c=a.length){a=null;break a}for(b="";++cd?b+=String.fromCharCode(d):191d?(b+=String.fromCharCode((d&31)<<6|a[c+1]&63),++c):(b+=String.fromCharCode((d&15)<<12|(a[c+1]&63)<<6|a[c+2]&63), +c+=2)}a=b}}return a};(function(){p.prototype.generateAsync=function(a,b,c){var d=new J,e=a>>1;this.e=parseInt(b,16);var h=new f(b,16),g=this,k=function(){var b=function(){if(0>=g.p.compareTo(g.q)){var a=g.p;g.p=g.q;g.q=a}a=g.p.subtract(f.ONE);var b=g.q.subtract(f.ONE),e=a.multiply(b);0==e.gcd(h).compareTo(f.ONE)?(g.n=g.p.multiply(g.q),g.d=h.modInverse(e),g.dmp1=g.d.mod(a),g.dmq1=g.d.mod(b),g.coeff=g.q.modInverse(g.p),setTimeout(function(){c()},0)):setTimeout(k,0)},l=function(){g.q=n();g.q.fromNumberAsync(e, +1,d,function(){g.q.subtract(f.ONE).gcda(h,function(a){0==a.compareTo(f.ONE)&&g.q.isProbablePrime(10)?setTimeout(b,0):setTimeout(l,0)})})},m=function(){g.p=n();g.p.fromNumberAsync(a-e,1,d,function(){g.p.subtract(f.ONE).gcda(h,function(a){0==a.compareTo(f.ONE)&&g.p.isProbablePrime(10)?setTimeout(l,0):setTimeout(m,0)})})};setTimeout(m,0)};setTimeout(k,0)};f.prototype.gcda=function(a,b){var c=0>this.s?this.negate():this.clone(),d=0>a.s?a.negate():a.clone();0>c.compareTo(d)&&(a=c,c=d,d=a);var e=c.getLowestSetBit(), +h=d.getLowestSetBit();if(0>h)b(c);else{ea)this.fromInt(1);else{this.fromNumber(a,c);this.testBit(a- +1)||this.bitwiseTo(f.ONE.shiftLeft(a-1),I,this);this.isEven()&&this.dAddOffset(1,0);var e=this,h=function(){e.dAddOffset(2,0);e.bitLength()>a&&e.subTo(f.ONE.shiftLeft(a-1),e);e.isProbablePrime(b)?setTimeout(function(){d()},0):setTimeout(h,0)};setTimeout(h,0)}else{c=[];var g=a&7;c.length=(a>>3)+1;b.nextBytes(c);c[0]=0a)return b;var c=b.length/2;if(15=c?a:Array(c-a.length+1).join("0")+a};this.getString=function(){return this.s};this.setString=function(a){this.hTLV=null;this.isModified=!0;this.s=a;this.hV=stohex(this.s)};this.setByDateValue=function(a,c,d,e,h,g){a=new Date(Date.UTC(a,c-1,d,e,h,g,0));this.setByDate(a)};this.getFreshValueHex=function(){return this.hV}};l.extend(KJUR.asn1.DERAbstractTime,KJUR.asn1.ASN1Object);KJUR.asn1.DERAbstractStructured= +function(a){KJUR.asn1.DERAbstractString.superclass.constructor.call(this);this.setByASN1ObjectArray=function(a){this.hTLV=null;this.isModified=!0;this.asn1Array=a};this.appendASN1Object=function(a){this.hTLV=null;this.isModified=!0;this.asn1Array.push(a)};this.asn1Array=[];"undefined"!=typeof a&&"undefined"!=typeof a.array&&(this.asn1Array=a.array)};l.extend(KJUR.asn1.DERAbstractStructured,KJUR.asn1.ASN1Object);KJUR.asn1.DERBoolean=function(){KJUR.asn1.DERBoolean.superclass.constructor.call(this); +this.hT="01";this.hTLV="0101ff"};l.extend(KJUR.asn1.DERBoolean,KJUR.asn1.ASN1Object);KJUR.asn1.DERInteger=function(a){KJUR.asn1.DERInteger.superclass.constructor.call(this);this.hT="02";this.setByBigInteger=function(a){this.hTLV=null;this.isModified=!0;this.hV=KJUR.asn1.ASN1Util.bigIntToMinTwosComplementsHex(a)};this.setByInteger=function(a){a=new f(String(a),10);this.setByBigInteger(a)};this.setValueHex=function(a){this.hV=a};this.getFreshValueHex=function(){return this.hV};"undefined"!=typeof a&& +("undefined"!=typeof a.bigint?this.setByBigInteger(a.bigint):"undefined"!=typeof a["int"]?this.setByInteger(a["int"]):"undefined"!=typeof a.hex&&this.setValueHex(a.hex))};l.extend(KJUR.asn1.DERInteger,KJUR.asn1.ASN1Object);KJUR.asn1.DERBitString=function(a){KJUR.asn1.DERBitString.superclass.constructor.call(this);this.hT="03";this.setHexValueIncludingUnusedBits=function(a){this.hTLV=null;this.isModified=!0;this.hV=a};this.setUnusedBitsAndHexValue=function(a,c){if(0>a||7e;++e)c[d.charAt(e)]=e;d=d.toLowerCase();for(e=10;16>e;++e)c[d.charAt(e)]=e;for(e=0;8>e;++e)c[" \f\n\r\t\u00a0\u2028\u2029".charAt(e)]=-1}d=[];var g=0,k=0;for(e=0;ee;++e)c["ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".charAt(e)]=e;for(e=0;9>e;++e)c["= \f\n\r\t\u00a0\u2028\u2029".charAt(e)]=-1}var d=[],g=0,k=0;for(e=0;e>16,d[d.length]=g>>8&255,d[d.length]=g&255,k=g=0):g<<=6}}switch(k){case 1:throw"Base64 encoding incomplete: at least 2 bits missing"; +case 2:d[d.length]=g>>10;break;case 3:d[d.length]=g>>16,d[d.length]=g>>8&255}return d};b.re=/-----BEGIN [^-]+-----([A-Za-z0-9+\/=\s]+)-----END [^-]+-----|begin-base64[^\n]+\n([A-Za-z0-9+\/=\s]+)====/;b.unarmor=function(a){var c=b.re.exec(a);if(c)if(c[1])a=c[1];else if(c[2])a=c[2];else throw"RegExp out of sync";return b.decode(a)};window.Base64=b})();(function(a){function b(a,c){a instanceof b?(this.enc=a.enc,this.pos=a.pos):(this.enc=a,this.pos=c)}function c(a,b,c,d,f){this.stream=a;this.header=b; +this.length=c;this.tag=d;this.sub=f}var d={tag:function(a,b){a=document.createElement(a);a.className=b;return a},text:function(a){return document.createTextNode(a)}};b.prototype.get=function(b){b===a&&(b=this.pos++);if(b>=this.enc.length)throw"Requesting byte offset "+b+" on a stream of length "+this.enc.length;return this.enc[b]};b.prototype.hexDigits="0123456789ABCDEF";b.prototype.hexByte=function(a){return this.hexDigits.charAt(a>>4&15)+this.hexDigits.charAt(a&15)};b.prototype.hexDump=function(a, +b,c){for(var d="";ad?c+String.fromCharCode(d):191d?c+String.fromCharCode((d&31)<<6|this.get(a++)&63):c+String.fromCharCode((d&15)<<12|(this.get(a++)&63)<<6|this.get(a++)&63)}return c}; +b.prototype.parseStringBMP=function(a,b){for(var c="";ab;)b<<=1,--c;return"("+c+" bit)"}for(c=0;a=d)for(e+=" ",--b;b>a;--b){for(d=this.get(b);8>c;++c)e+=d>>c&1?"1":"0";c=0}return e};b.prototype.parseOctetString=function(a, +b){var c=b-a,d="("+c+" byte) ";for(100d?40>d?0:1:2,c=c+"."+(d-40*c)):c+="."+(31<=e?"bigint":d),d=e=0)}return c};c.prototype.typeName=function(){if(this.tag===a)return"unknown";var b=this.tag&31;switch(this.tag>>6){case 0:switch(b){case 0:return"EOC";case 1:return"BOOLEAN";case 2:return"INTEGER";case 3:return"BIT_STRING"; +case 4:return"OCTET_STRING";case 5:return"NULL";case 6:return"OBJECT_IDENTIFIER";case 7:return"ObjectDescriptor";case 8:return"EXTERNAL";case 9:return"REAL";case 10:return"ENUMERATED";case 11:return"EMBEDDED_PDV";case 12:return"UTF8String";case 16:return"SEQUENCE";case 17:return"SET";case 18:return"NumericString";case 19:return"PrintableString";case 20:return"TeletexString";case 21:return"VideotexString";case 22:return"IA5String";case 23:return"UTCTime";case 24:return"GeneralizedTime";case 25:return"GraphicString"; +case 26:return"VisibleString";case 27:return"GeneralString";case 28:return"UniversalString";case 30:return"BMPString";default:return"Universal_"+b.toString(16)}case 1:return"Application_"+b.toString(16);case 2:return"["+b+"]";case 3:return"Private_"+b.toString(16)}};c.prototype.reSeemsASCII=/^[ -~]+$/;c.prototype.content=function(){if(this.tag===a)return null;var b=this.tag>>6,c=this.tag&31,d=this.posContent(),f=Math.abs(this.length);if(0!==b){if(null!==this.sub)return"("+this.sub.length+" elem)"; +b=this.stream.parseStringISO(d,d+Math.min(f,100));return this.reSeemsASCII.test(b)?b.substring(0,200)+(200";c+="Length: "+this.header+"+";c=0<=this.length?c+this.length:c+(-this.length+" (undefined)");this.tag&32?c+="
(constructed)":3!=this.tag&&4!=this.tag||null===this.sub||(c+= +"
(encapsulates)");null!==f&&(c+="
Value:
"+f+"","object"===typeof oids&&6==this.tag&&(f=oids[f]))&&(f.d&&(c+="
"+f.d),f.c&&(c+="
"+f.c),f.w&&(c+="
(warning!)"));l.innerHTML=c;a.appendChild(l);c=d.tag("div","sub");if(null!==this.sub)for(f=0,l=this.sub.length;f=l||(b=d.tag("span",b),b.appendChild(d.text(c.hexDump(f, +l))),a.appendChild(b))};c.prototype.toHexDOM=function(b){var c=d.tag("span","hex");b===a&&(b=c);this.head.hexNode=c;this.head.onmouseover=function(){this.hexNode.className="hexCurrent"};this.head.onmouseout=function(){this.hexNode.className="hex"};c.asn1=this;c.onmouseover=function(){var a=!b.selected;a&&(b.selected=this.asn1,this.className="hexCurrent");this.asn1.fakeHover(a)};c.onmouseout=function(){var a=b.selected==this.asn1;this.asn1.fakeOut(a);a&&(b.selected=null,this.className="hex")};this.toHexDOM_sub(c, +"tag",this.stream,this.posStart(),this.posStart()+1);this.toHexDOM_sub(c,0<=this.length?"dlen":"ulen",this.stream,this.posStart()+1,this.posContent());if(null===this.sub)c.appendChild(d.text(this.stream.hexDump(this.posContent(),this.posEnd())));else if(0a||4>6&1)return!1;try{var g=c.decodeLength(e);return e.pos-f.pos+ +g==d}catch(r){return!1}};c.decode=function(a){a instanceof b||(a=new b(a,0));var d=new b(a),e=a.get(),f=c.decodeLength(a),l=a.pos-d.pos,m=null;if(c.hasContent(e,f,a)){var n=a.pos;3==e&&a.get();m=[];if(0<=f){for(var p=n+f;a.posA||2===A&&6>L)&&u("Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js "+e.version+". See momentjs.com");v.prototype={_set:function(a){this.name=a.name;this.abbrs=a.abbrs;this.untils=a.untils;this.offsets=a.offsets;this.population= -a.population},_index:function(a){a=+a;var c=this.untils,b;for(b=0;be&&h.moveInvalidForward&&(f=e),af;f++){b=new r(new Date(c,f,1));if(b.offset!==d.offset){for(var g=b,e;e=6E4*((g.at-d.at)/12E4|0);)e=new r(new Date(d.at+e)),e.offset===d.offset?d=e:g=e;a.push(d);a.push(new r(new Date(d.at+6E4)))}d=b}for(f=0;4>f;f++)a.push(new r(new Date(c+f,0,1))),a.push(new r(new Date(c+f,6,1)));f=c=a.length;for(var d={},b=[],h,g=0;gMath.abs(b)&& -(b/=60),void 0!==a.utcOffset?a.utcOffset(-b,c):a.zone(b,c))};k.tz=function(a){if(a)return(this._z=n(a))?e.updateOffset(this):u("Moment Timezone has no data for "+a+". See http://momentjs.com/timezone/docs/#/data-loading/."),this;if(this._z)return this._z.name};k.zoneName=K(k.zoneName);k.zoneAbbr=K(k.zoneAbbr);k.utc=function(a){return function(){this._z=null;return a.apply(this,arguments)}}(k.utc);e.tz.setDefault=function(a){(2>A||2===A&&9>L)&&u("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+ -e.version+".");e.defaultZone=a?n(a):null;return e};k=e.momentProperties;"[object Array]"===Object.prototype.toString.call(k)?(k.push("_z"),k.push("_a")):k&&(k._z=null);J({version:"2016j",zones:"Africa/Abidjan|GMT|0|0||48e5;Africa/Khartoum|EAT|-30|0||51e5;Africa/Algiers|CET|-10|0||26e5;Africa/Lagos|WAT|-10|0||17e6;Africa/Maputo|CAT|-20|0||26e5;Africa/Cairo|EET EEST|-20 -30|010101010|1Cby0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0|15e6;Africa/Casablanca|WET WEST|0 -10|01010101010101010101010101010101010101010|1Cco0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 Rc0 11A0 e00 e00 U00 11A0 8o0 e00 11A0|32e5;Europe/Paris|CET CEST|-10 -20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e6;Africa/Johannesburg|SAST|-20|0||84e5;Africa/Tripoli|EET CET CEST|-20 -10 -20|0120|1IlA0 TA0 1o00|11e5;Africa/Windhoek|WAST WAT|-20 -10|01010101010101010101010|1C1c0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0|32e4;America/Adak|HST HDT|a0 90|01010101010101010101010|1BR00 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326;America/Anchorage|AKST AKDT|90 80|01010101010101010101010|1BQX0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4;America/Santo_Domingo|AST|40|0||29e5;America/Araguaina|BRT BRST|30 20|010|1IdD0 Lz0|14e4;America/Argentina/Buenos_Aires|ART|30|0|;America/Asuncion|PYST PYT|30 40|01010101010101010101010|1C430 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0|28e5;America/Panama|EST|50|0||15e5;America/Bahia|BRT BRST|30 20|010|1FJf0 Rb0|27e5;America/Bahia_Banderas|MST CDT CST|70 50 60|01212121212121212121212|1C1l0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|84e3;America/Fortaleza|BRT|30|0||34e5;America/Managua|CST|60|0||22e5;America/Manaus|AMT|40|0||19e5;America/Bogota|COT|50|0||90e5;America/Denver|MST MDT|70 60|01010101010101010101010|1BQV0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5;America/Campo_Grande|AMST AMT|30 40|01010101010101010101010|1BIr0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10|77e4;America/Cancun|CST CDT EST|60 50 50|010101010102|1C1k0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4;America/Caracas|VET VET|4u 40|01|1QMT0|29e5;America/Cayenne|GFT|30|0||58e3;America/Chicago|CST CDT|60 50|01010101010101010101010|1BQU0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5;America/Chihuahua|MST MDT|70 60|01010101010101010101010|1C1l0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|81e4;America/Phoenix|MST|70|0||42e5;America/Los_Angeles|PST PDT|80 70|01010101010101010101010|1BQW0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6;America/New_York|EST EDT|50 40|01010101010101010101010|1BQT0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6;America/Rio_Branco|AMT ACT|40 50|01|1KLE0|31e4;America/Fort_Nelson|PST PDT MST|80 70 70|010101010102|1BQW0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2;America/Halifax|AST ADT|40 30|01010101010101010101010|1BQS0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4;America/Godthab|WGT WGST|30 20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e3;America/Goose_Bay|AST ADT|40 30|01010101010101010101010|1BQQ1 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2;America/Grand_Turk|EST EDT AST|50 40 40|0101010101012|1BQT0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2;America/Guayaquil|ECT|50|0||27e5;America/Guyana|GYT|40|0||80e4;America/Havana|CST CDT|50 40|01010101010101010101010|1BQR0 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5;America/La_Paz|BOT|40|0||19e5;America/Lima|PET|50|0||11e6;America/Mexico_City|CST CDT|60 50|01010101010101010101010|1C1k0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|20e6;America/Metlakatla|PST AKST AKDT|80 90 80|012121212121|1PAa0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2;America/Miquelon|PMST PMDT|30 20|01010101010101010101010|1BQR0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2;America/Montevideo|UYST UYT|20 30|010101010101|1BQQ0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5;America/Noronha|FNT|20|0||30e2;America/North_Dakota/Beulah|MST MDT CST CDT|70 60 60 50|01232323232323232323232|1BQV0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0;America/Paramaribo|SRT|30|0||24e4;America/Port-au-Prince|EST EDT|50 40|010101010|1GI70 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5;America/Santiago|CLST CLT|30 40|010101010101010101010|1C1f0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|62e5;America/Sao_Paulo|BRST BRT|20 30|01010101010101010101010|1BIq0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10|20e6;America/Scoresbysund|EGT EGST|10 0|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|452;America/St_Johns|NST NDT|3u 2u|01010101010101010101010|1BQPv 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4;Antarctica/Casey|+11 +08|-b0 -80|01010|1BN30 40P0 KL0 blz0|10;Antarctica/Davis|+05 +07|-50 -70|0101|1BPw0 3Wn0 KN0|70;Antarctica/DumontDUrville|+10|-a0|0||80;Antarctica/Macquarie|AEDT MIST|-b0 -b0|01|1C140|1;Asia/Tashkent|+05|-50|0||23e5;Pacific/Auckland|NZDT NZST|-d0 -c0|01010101010101010101010|1C120 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|14e5;Antarctica/Rothera|-03|30|0||130;Antarctica/Syowa|+03|-30|0||20;Antarctica/Troll|+00 +02|0 -20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|40;Asia/Almaty|+06|-60|0||15e5;Asia/Baghdad|AST|-30|0||66e5;Asia/Amman|EET EEST|-20 -30|010101010101010101010|1BVy0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0|25e5;Asia/Kamchatka|+12 +11|-c0 -b0|010|1Dp30 WM0|18e4;Asia/Baku|+04 +05|-40 -50|0101010101010|1BWo0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5;Asia/Bangkok|ICT|-70|0||15e6;Asia/Barnaul|+06 +07|-60 -70|010101|1BWk0 1qM0 WM0 8Hz0 3rd0;Asia/Beirut|EET EEST|-20 -30|01010101010101010101010|1BWm0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0|22e5;Asia/Brunei|BNT|-80|0||42e4;Asia/Kolkata|IST|-5u|0||15e6;Asia/Chita|+09 +10 +08|-90 -a0 -80|010120|1BWh0 1qM0 WM0 8Hz0 3re0|33e4;Asia/Choibalsan|CHOT CHOST|-80 -90|0101010101010|1O8G0 1cJ0 1cP0 1cJ0 1cP0 1fx0 1cP0 1cJ0 1cP0 1cJ0 1cP0 1cJ0|38e3;Asia/Shanghai|CST|-80|0||23e6;Asia/Colombo|+0530|-5u|0||22e5;Asia/Dhaka|BDT|-60|0||16e6;Asia/Damascus|EET EEST|-20 -30|01010101010101010101010|1C0m0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0|26e5;Asia/Dili|TLT|-90|0||19e4;Asia/Dubai|GST|-40|0||39e5;Asia/Famagusta|EET EEST +03|-20 -30 -30|010101010101012|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0;Asia/Gaza|EET EEST|-20 -30|01010101010101010101010|1BVW1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|18e5;Asia/Hebron|EET EEST|-20 -30|0101010101010101010101010|1BVy0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|25e4;Asia/Hong_Kong|HKT|-80|0||73e5;Asia/Hovd|HOVT HOVST|-70 -80|0101010101010|1O8H0 1cJ0 1cP0 1cJ0 1cP0 1fx0 1cP0 1cJ0 1cP0 1cJ0 1cP0 1cJ0|81e3;Asia/Irkutsk|+08 +09|-80 -90|01010|1BWi0 1qM0 WM0 8Hz0|60e4;Europe/Istanbul|EET EEST +03|-20 -30 -30|010101010101012|1BWp0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6;Asia/Jakarta|WIB|-70|0||31e6;Asia/Jayapura|WIT|-90|0||26e4;Asia/Jerusalem|IST IDT|-20 -30|01010101010101010101010|1BVA0 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0|81e4;Asia/Kabul|AFT|-4u|0||46e5;Asia/Karachi|PKT|-50|0||24e6;Asia/Urumqi|XJT|-60|0||32e5;Asia/Kathmandu|NPT|-5J|0||12e5;Asia/Khandyga|+10 +11 +09|-a0 -b0 -90|010102|1BWg0 1qM0 WM0 17V0 7zD0|66e2;Asia/Krasnoyarsk|+07 +08|-70 -80|01010|1BWj0 1qM0 WM0 8Hz0|10e5;Asia/Kuala_Lumpur|MYT|-80|0||71e5;Asia/Magadan|+11 +12 +10|-b0 -c0 -a0|010120|1BWf0 1qM0 WM0 8Hz0 3Cq0|95e3;Asia/Makassar|WITA|-80|0||15e5;Asia/Manila|PHT|-80|0||24e6;Europe/Athens|EET EEST|-20 -30|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|35e5;Asia/Novokuznetsk|+07 +06|-70 -60|010|1Dp80 WM0|55e4;Asia/Novosibirsk|+06 +07|-60 -70|010101|1BWk0 1qM0 WM0 8Hz0 4eN0|15e5;Asia/Omsk|+06 +07|-60 -70|01010|1BWk0 1qM0 WM0 8Hz0|12e5;Asia/Pyongyang|KST KST|-90 -8u|01|1P4D0|29e5;Asia/Rangoon|MMT|-6u|0||48e5;Asia/Sakhalin|+10 +11|-a0 -b0|010101|1BWg0 1qM0 WM0 8Hz0 3rd0|58e4;Asia/Seoul|KST|-90|0||23e6;Asia/Singapore|SGT|-80|0||56e5;Asia/Srednekolymsk|+11 +12|-b0 -c0|01010|1BWf0 1qM0 WM0 8Hz0|35e2;Asia/Tbilisi|+04|-40|0||11e5;Asia/Tehran|IRST IRDT|-3u -4u|01010101010101010101010|1BTUu 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0|14e6;Asia/Thimphu|BTT|-60|0||79e3;Asia/Tokyo|JST|-90|0||38e6;Asia/Tomsk|+06 +07|-60 -70|010101|1BWk0 1qM0 WM0 8Hz0 3Qp0|10e5;Asia/Ulaanbaatar|ULAT ULAST|-80 -90|0101010101010|1O8G0 1cJ0 1cP0 1cJ0 1cP0 1fx0 1cP0 1cJ0 1cP0 1cJ0 1cP0 1cJ0|12e5;Asia/Ust-Nera|+11 +12 +10|-b0 -c0 -a0|010102|1BWf0 1qM0 WM0 17V0 7zD0|65e2;Asia/Vladivostok|+10 +11|-a0 -b0|01010|1BWg0 1qM0 WM0 8Hz0|60e4;Asia/Yakutsk|+09 +10|-90 -a0|01010|1BWh0 1qM0 WM0 8Hz0|28e4;Asia/Yekaterinburg|+05 +06|-50 -60|01010|1BWl0 1qM0 WM0 8Hz0|14e5;Asia/Yerevan|+04 +05|-40 -50|01010|1BWm0 1qM0 WM0 1qM0|13e5;Atlantic/Azores|AZOT AZOST|10 0|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4;Europe/Lisbon|WET WEST|0 -10|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e5;Atlantic/Cape_Verde|CVT|10|0||50e4;Atlantic/South_Georgia|GST|20|0||30;Atlantic/Stanley|FKST FKT|30 40|010|1C6R0 U10|21e2;Australia/Sydney|AEDT AEST|-b0 -a0|01010101010101010101010|1C140 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|40e5;Australia/Adelaide|ACDT ACST|-au -9u|01010101010101010101010|1C14u 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|11e5;Australia/Brisbane|AEST|-a0|0||20e5;Australia/Darwin|ACST|-9u|0||12e4;Australia/Eucla|ACWST|-8J|0||368;Australia/Lord_Howe|LHDT LHST|-b0 -au|01010101010101010101010|1C130 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu|347;Australia/Perth|AWST|-80|0||18e5;Pacific/Easter|EASST EAST|50 60|010101010101010101010|1C1f0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|30e2;Europe/Dublin|GMT IST|0 -10|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5;Etc/GMT+1|-01|10|0|;Etc/GMT+10|-10|a0|0|;Etc/GMT+11|-11|b0|0|;Etc/GMT+12|-12|c0|0|;Etc/GMT+2|-02|20|0|;Etc/GMT+4|-04|40|0|;Etc/GMT+5|-05|50|0|;Etc/GMT+6|-06|60|0|;Etc/GMT+7|-07|70|0|;Etc/GMT+8|-08|80|0|;Etc/GMT+9|-09|90|0|;Etc/GMT-1|+01|-10|0|;Etc/GMT-11|+11|-b0|0|;Etc/GMT-12|+12|-c0|0|;Etc/GMT-13|+13|-d0|0|;Etc/GMT-14|+14|-e0|0|;Etc/GMT-2|+02|-20|0|;Etc/GMT-7|+07|-70|0|;Etc/GMT-8|+08|-80|0|;Etc/GMT-9|+09|-90|0|;Etc/UCT|UCT|0|0|;Etc/UTC|UTC|0|0|;Europe/Astrakhan|+03 +04|-30 -40|010101|1BWn0 1qM0 WM0 8Hz0 3rd0;Europe/London|GMT BST|0 -10|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|10e6;Europe/Chisinau|EET EEST|-20 -30|01010101010101010101010|1BWo0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|67e4;Europe/Kaliningrad|EET EEST +03|-20 -30 -30|01020|1BWo0 1qM0 WM0 8Hz0|44e4;Europe/Volgograd|+03 +04|-30 -40|01010|1BWn0 1qM0 WM0 8Hz0|10e5;Europe/Minsk|EET EEST +03|-20 -30 -30|0102|1BWo0 1qM0 WM0|19e5;Europe/Moscow|MSK MSD MSK|-30 -40 -40|01020|1BWn0 1qM0 WM0 8Hz0|16e6;Europe/Samara|+04 +03|-40 -30|010|1Dpb0 WM0|12e5;Europe/Saratov|+03 +04|-30 -40|010101|1BWn0 1qM0 WM0 8Hz0 5810;Europe/Simferopol|EET EEST MSK MSK|-20 -30 -40 -30|01010101023|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4;Pacific/Honolulu|HST|a0|0||37e4;Indian/Chagos|IOT|-60|0||30e2;Indian/Christmas|CXT|-70|0||21e2;Indian/Cocos|CCT|-6u|0||596;Indian/Mahe|SCT|-40|0||79e3;Indian/Maldives|MVT|-50|0||35e4;Indian/Mauritius|MUT|-40|0||15e4;Indian/Reunion|RET|-40|0||84e4;Pacific/Majuro|MHT|-c0|0||28e3;MET|MET MEST|-10 -20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00;Pacific/Chatham|CHADT CHAST|-dJ -cJ|01010101010101010101010|1C120 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|600;Pacific/Apia|SST SDT WSDT WSST|b0 a0 -e0 -d0|01012323232323232323232|1Dbn0 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|37e3;Pacific/Bougainville|PGT BST|-a0 -b0|01|1NwE0|18e4;Pacific/Chuuk|CHUT|-a0|0||49e3;Pacific/Efate|VUT|-b0|0||66e3;Pacific/Enderbury|PHOT|-d0|0||1;Pacific/Fakaofo|TKT TKT|b0 -d0|01|1Gfn0|483;Pacific/Fiji|FJST FJT|-d0 -c0|01010101010101010101010|1BWe0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0|88e4;Pacific/Funafuti|TVT|-c0|0||45e2;Pacific/Galapagos|GALT|60|0||25e3;Pacific/Gambier|GAMT|90|0||125;Pacific/Guadalcanal|SBT|-b0|0||11e4;Pacific/Guam|ChST|-a0|0||17e4;Pacific/Kiritimati|LINT|-e0|0||51e2;Pacific/Kosrae|KOST|-b0|0||66e2;Pacific/Marquesas|MART|9u|0||86e2;Pacific/Pago_Pago|SST|b0|0||37e2;Pacific/Nauru|NRT|-c0|0||10e3;Pacific/Niue|NUT|b0|0||12e2;Pacific/Norfolk|NFT NFT|-bu -b0|01|1PoCu|25e4;Pacific/Noumea|NCT|-b0|0||98e3;Pacific/Palau|PWT|-90|0||21e3;Pacific/Pitcairn|PST|80|0||56;Pacific/Pohnpei|PONT|-b0|0||34e3;Pacific/Port_Moresby|PGT|-a0|0||25e4;Pacific/Rarotonga|CKT|a0|0||13e3;Pacific/Tahiti|TAHT|a0|0||18e4;Pacific/Tarawa|GILT|-c0|0||29e3;Pacific/Tongatapu|+13 +14|-d0 -e0|0101010101|1S4d0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0|75e3;Pacific/Wake|WAKT|-c0|0||16e3;Pacific/Wallis|WFT|-c0|0||94".split(";"), +(function(f,p){"function"===typeof define&&define.amd?define(["vendor/moment"],p):"object"===typeof module&&module.exports?module.exports=p(require("vendor/moment")):p(f.moment)})(this,function(f){function p(a){return 96z||2===z&&6>K)&&t("Moment Timezone requires Moment.js >= 2.6.0. You are using Moment.js "+f.version+". See momentjs.com");u.prototype={_set:function(a){this.name=a.name;this.abbrs=a.abbrs; +this.untils=a.untils;this.offsets=a.offsets;this.population=a.population},_index:function(a){a=+a;var c=this.untils,b;for(b=0;bh&&g.moveInvalidForward&&(k=h);if(ae;e++){b=new q(new Date(c,e,1));if(b.offset!==d.offset){for(var f,g=b;f=6E4*((g.at-d.at)/12E4|0);)f=new q(new Date(d.at+f)),f.offset===d.offset?d=f:g=f;a.push(d);a.push(new q(new Date(d.at+6E4)))}d=b}for(e=0;4>e;e++)a.push(new q(new Date(c+e,0,1))),a.push(new q(new Date(c+e,6,1)));e=c=a.length;d={};b=[];for(g=0;gMath.abs(b)&&(b/=60),void 0!==a.utcOffset?a.utcOffset(-b,c):a.zone(b,c))};h.tz=function(a){if(a)return(this._z=m(a))?f.updateOffset(this):t("Moment Timezone has no data for "+a+". See http://momentjs.com/timezone/docs/#/data-loading/."),this;if(this._z)return this._z.name};h.zoneName=J(h.zoneName);h.zoneAbbr=J(h.zoneAbbr);h.utc=function(a){return function(){this._z=null;return a.apply(this,arguments)}}(h.utc);f.tz.setDefault=function(a){(2> +z||2===z&&9>K)&&t("Moment Timezone setDefault() requires Moment.js >= 2.9.0. You are using Moment.js "+f.version+".");f.defaultZone=a?m(a):null;return f};h=f.momentProperties;"[object Array]"===Object.prototype.toString.call(h)?(h.push("_z"),h.push("_a")):h&&(h._z=null);I({version:"2016j",zones:"Africa/Abidjan|GMT|0|0||48e5;Africa/Khartoum|EAT|-30|0||51e5;Africa/Algiers|CET|-10|0||26e5;Africa/Lagos|WAT|-10|0||17e6;Africa/Maputo|CAT|-20|0||26e5;Africa/Cairo|EET EEST|-20 -30|010101010|1Cby0 Fb0 c10 8n0 8Nd0 gL0 e10 mn0|15e6;Africa/Casablanca|WET WEST|0 -10|01010101010101010101010101010101010101010|1Cco0 Db0 1zd0 Lz0 1Nf0 wM0 co0 go0 1o00 s00 dA0 vc0 11A0 A00 e00 y00 11A0 uM0 e00 Dc0 11A0 s00 e00 IM0 WM0 mo0 gM0 LA0 WM0 jA0 e00 Rc0 11A0 e00 e00 U00 11A0 8o0 e00 11A0|32e5;Europe/Paris|CET CEST|-10 -20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|11e6;Africa/Johannesburg|SAST|-20|0||84e5;Africa/Tripoli|EET CET CEST|-20 -10 -20|0120|1IlA0 TA0 1o00|11e5;Africa/Windhoek|WAST WAT|-20 -10|01010101010101010101010|1C1c0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 11B0|32e4;America/Adak|HST HDT|a0 90|01010101010101010101010|1BR00 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|326;America/Anchorage|AKST AKDT|90 80|01010101010101010101010|1BQX0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|30e4;America/Santo_Domingo|AST|40|0||29e5;America/Araguaina|BRT BRST|30 20|010|1IdD0 Lz0|14e4;America/Argentina/Buenos_Aires|ART|30|0|;America/Asuncion|PYST PYT|30 40|01010101010101010101010|1C430 1a10 1fz0 1a10 1fz0 1cN0 17b0 1ip0 17b0 1ip0 17b0 1ip0 19X0 1fB0 19X0 1fB0 19X0 1ip0 17b0 1ip0 17b0 1ip0|28e5;America/Panama|EST|50|0||15e5;America/Bahia|BRT BRST|30 20|010|1FJf0 Rb0|27e5;America/Bahia_Banderas|MST CDT CST|70 50 60|01212121212121212121212|1C1l0 1nW0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|84e3;America/Fortaleza|BRT|30|0||34e5;America/Managua|CST|60|0||22e5;America/Manaus|AMT|40|0||19e5;America/Bogota|COT|50|0||90e5;America/Denver|MST MDT|70 60|01010101010101010101010|1BQV0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|26e5;America/Campo_Grande|AMST AMT|30 40|01010101010101010101010|1BIr0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10|77e4;America/Cancun|CST CDT EST|60 50 50|010101010102|1C1k0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 Dd0|63e4;America/Caracas|VET VET|4u 40|01|1QMT0|29e5;America/Cayenne|GFT|30|0||58e3;America/Chicago|CST CDT|60 50|01010101010101010101010|1BQU0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|92e5;America/Chihuahua|MST MDT|70 60|01010101010101010101010|1C1l0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|81e4;America/Phoenix|MST|70|0||42e5;America/Los_Angeles|PST PDT|80 70|01010101010101010101010|1BQW0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|15e6;America/New_York|EST EDT|50 40|01010101010101010101010|1BQT0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|21e6;America/Rio_Branco|AMT ACT|40 50|01|1KLE0|31e4;America/Fort_Nelson|PST PDT MST|80 70 70|010101010102|1BQW0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0|39e2;America/Halifax|AST ADT|40 30|01010101010101010101010|1BQS0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|39e4;America/Godthab|WGT WGST|30 20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|17e3;America/Goose_Bay|AST ADT|40 30|01010101010101010101010|1BQQ1 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|76e2;America/Grand_Turk|EST EDT AST|50 40 40|0101010101012|1BQT0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|37e2;America/Guayaquil|ECT|50|0||27e5;America/Guyana|GYT|40|0||80e4;America/Havana|CST CDT|50 40|01010101010101010101010|1BQR0 1wo0 U00 1zc0 U00 1qM0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Rc0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0 Oo0 1zc0|21e5;America/La_Paz|BOT|40|0||19e5;America/Lima|PET|50|0||11e6;America/Mexico_City|CST CDT|60 50|01010101010101010101010|1C1k0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0 14p0 1lb0 14p0 1nX0 11B0 1nX0 11B0 1nX0 14p0 1lb0 14p0 1lb0|20e6;America/Metlakatla|PST AKST AKDT|80 90 80|012121212121|1PAa0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|14e2;America/Miquelon|PMST PMDT|30 20|01010101010101010101010|1BQR0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|61e2;America/Montevideo|UYST UYT|20 30|010101010101|1BQQ0 1ld0 14n0 1ld0 14n0 1o10 11z0 1o10 11z0 1o10 11z0|17e5;America/Noronha|FNT|20|0||30e2;America/North_Dakota/Beulah|MST MDT CST CDT|70 60 60 50|01232323232323232323232|1BQV0 1zb0 Oo0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0;America/Paramaribo|SRT|30|0||24e4;America/Port-au-Prince|EST EDT|50 40|010101010|1GI70 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|23e5;America/Santiago|CLST CLT|30 40|010101010101010101010|1C1f0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|62e5;America/Sao_Paulo|BRST BRT|20 30|01010101010101010101010|1BIq0 1zd0 On0 1zd0 Rb0 1zd0 Lz0 1C10 Lz0 1C10 On0 1zd0 On0 1zd0 On0 1zd0 On0 1C10 Lz0 1C10 Lz0 1C10|20e6;America/Scoresbysund|EGT EGST|10 0|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|452;America/St_Johns|NST NDT|3u 2u|01010101010101010101010|1BQPv 1zb0 Op0 1zcX Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Rd0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0 Op0 1zb0|11e4;Antarctica/Casey|+11 +08|-b0 -80|01010|1BN30 40P0 KL0 blz0|10;Antarctica/Davis|+05 +07|-50 -70|0101|1BPw0 3Wn0 KN0|70;Antarctica/DumontDUrville|+10|-a0|0||80;Antarctica/Macquarie|AEDT MIST|-b0 -b0|01|1C140|1;Asia/Tashkent|+05|-50|0||23e5;Pacific/Auckland|NZDT NZST|-d0 -c0|01010101010101010101010|1C120 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|14e5;Antarctica/Rothera|-03|30|0||130;Antarctica/Syowa|+03|-30|0||20;Antarctica/Troll|+00 +02|0 -20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|40;Asia/Almaty|+06|-60|0||15e5;Asia/Baghdad|AST|-30|0||66e5;Asia/Amman|EET EEST|-20 -30|010101010101010101010|1BVy0 1qM0 11A0 1o00 11A0 4bX0 Dd0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0|25e5;Asia/Kamchatka|+12 +11|-c0 -b0|010|1Dp30 WM0|18e4;Asia/Baku|+04 +05|-40 -50|0101010101010|1BWo0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00|27e5;Asia/Bangkok|ICT|-70|0||15e6;Asia/Barnaul|+06 +07|-60 -70|010101|1BWk0 1qM0 WM0 8Hz0 3rd0;Asia/Beirut|EET EEST|-20 -30|01010101010101010101010|1BWm0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0|22e5;Asia/Brunei|BNT|-80|0||42e4;Asia/Kolkata|IST|-5u|0||15e6;Asia/Chita|+09 +10 +08|-90 -a0 -80|010120|1BWh0 1qM0 WM0 8Hz0 3re0|33e4;Asia/Choibalsan|CHOT CHOST|-80 -90|0101010101010|1O8G0 1cJ0 1cP0 1cJ0 1cP0 1fx0 1cP0 1cJ0 1cP0 1cJ0 1cP0 1cJ0|38e3;Asia/Shanghai|CST|-80|0||23e6;Asia/Colombo|+0530|-5u|0||22e5;Asia/Dhaka|BDT|-60|0||16e6;Asia/Damascus|EET EEST|-20 -30|01010101010101010101010|1C0m0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0 WN0 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1nX0 11B0 1qL0|26e5;Asia/Dili|TLT|-90|0||19e4;Asia/Dubai|GST|-40|0||39e5;Asia/Famagusta|EET EEST +03|-20 -30 -30|010101010101012|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 15U0;Asia/Gaza|EET EEST|-20 -30|01010101010101010101010|1BVW1 SKX 1xd1 MKX 1AN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|18e5;Asia/Hebron|EET EEST|-20 -30|0101010101010101010101010|1BVy0 Tb0 1xd1 MKX bB0 cn0 1cN0 1a00 1fA0 1cL0 1cN0 1nX0 1210 1nz0 1220 1qL0 WN0 1qL0 11B0 1nX0 11B0 1nX0 11B0 1qL0|25e4;Asia/Hong_Kong|HKT|-80|0||73e5;Asia/Hovd|HOVT HOVST|-70 -80|0101010101010|1O8H0 1cJ0 1cP0 1cJ0 1cP0 1fx0 1cP0 1cJ0 1cP0 1cJ0 1cP0 1cJ0|81e3;Asia/Irkutsk|+08 +09|-80 -90|01010|1BWi0 1qM0 WM0 8Hz0|60e4;Europe/Istanbul|EET EEST +03|-20 -30 -30|010101010101012|1BWp0 1qM0 Xc0 1qo0 WM0 1qM0 11A0 1o00 1200 1nA0 11A0 1tA0 U00 15w0|13e6;Asia/Jakarta|WIB|-70|0||31e6;Asia/Jayapura|WIT|-90|0||26e4;Asia/Jerusalem|IST IDT|-20 -30|01010101010101010101010|1BVA0 17X0 1kp0 1dz0 1c10 1aL0 1eN0 1oL0 10N0 1oL0 10N0 1oL0 10N0 1rz0 W10 1rz0 W10 1rz0 10N0 1oL0 10N0 1oL0|81e4;Asia/Kabul|AFT|-4u|0||46e5;Asia/Karachi|PKT|-50|0||24e6;Asia/Urumqi|XJT|-60|0||32e5;Asia/Kathmandu|NPT|-5J|0||12e5;Asia/Khandyga|+10 +11 +09|-a0 -b0 -90|010102|1BWg0 1qM0 WM0 17V0 7zD0|66e2;Asia/Krasnoyarsk|+07 +08|-70 -80|01010|1BWj0 1qM0 WM0 8Hz0|10e5;Asia/Kuala_Lumpur|MYT|-80|0||71e5;Asia/Magadan|+11 +12 +10|-b0 -c0 -a0|010120|1BWf0 1qM0 WM0 8Hz0 3Cq0|95e3;Asia/Makassar|WITA|-80|0||15e5;Asia/Manila|PHT|-80|0||24e6;Europe/Athens|EET EEST|-20 -30|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|35e5;Asia/Novokuznetsk|+07 +06|-70 -60|010|1Dp80 WM0|55e4;Asia/Novosibirsk|+06 +07|-60 -70|010101|1BWk0 1qM0 WM0 8Hz0 4eN0|15e5;Asia/Omsk|+06 +07|-60 -70|01010|1BWk0 1qM0 WM0 8Hz0|12e5;Asia/Pyongyang|KST KST|-90 -8u|01|1P4D0|29e5;Asia/Rangoon|MMT|-6u|0||48e5;Asia/Sakhalin|+10 +11|-a0 -b0|010101|1BWg0 1qM0 WM0 8Hz0 3rd0|58e4;Asia/Seoul|KST|-90|0||23e6;Asia/Singapore|SGT|-80|0||56e5;Asia/Srednekolymsk|+11 +12|-b0 -c0|01010|1BWf0 1qM0 WM0 8Hz0|35e2;Asia/Tbilisi|+04|-40|0||11e5;Asia/Tehran|IRST IRDT|-3u -4u|01010101010101010101010|1BTUu 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0 1cN0 1dz0 1cp0 1dz0 1cp0 1dz0 1cp0 1dz0|14e6;Asia/Thimphu|BTT|-60|0||79e3;Asia/Tokyo|JST|-90|0||38e6;Asia/Tomsk|+06 +07|-60 -70|010101|1BWk0 1qM0 WM0 8Hz0 3Qp0|10e5;Asia/Ulaanbaatar|ULAT ULAST|-80 -90|0101010101010|1O8G0 1cJ0 1cP0 1cJ0 1cP0 1fx0 1cP0 1cJ0 1cP0 1cJ0 1cP0 1cJ0|12e5;Asia/Ust-Nera|+11 +12 +10|-b0 -c0 -a0|010102|1BWf0 1qM0 WM0 17V0 7zD0|65e2;Asia/Vladivostok|+10 +11|-a0 -b0|01010|1BWg0 1qM0 WM0 8Hz0|60e4;Asia/Yakutsk|+09 +10|-90 -a0|01010|1BWh0 1qM0 WM0 8Hz0|28e4;Asia/Yekaterinburg|+05 +06|-50 -60|01010|1BWl0 1qM0 WM0 8Hz0|14e5;Asia/Yerevan|+04 +05|-40 -50|01010|1BWm0 1qM0 WM0 1qM0|13e5;Atlantic/Azores|AZOT AZOST|10 0|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|25e4;Europe/Lisbon|WET WEST|0 -10|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|27e5;Atlantic/Cape_Verde|CVT|10|0||50e4;Atlantic/South_Georgia|GST|20|0||30;Atlantic/Stanley|FKST FKT|30 40|010|1C6R0 U10|21e2;Australia/Sydney|AEDT AEST|-b0 -a0|01010101010101010101010|1C140 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|40e5;Australia/Adelaide|ACDT ACST|-au -9u|01010101010101010101010|1C14u 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1cM0 1fA0 1cM0 1cM0 1cM0 1cM0|11e5;Australia/Brisbane|AEST|-a0|0||20e5;Australia/Darwin|ACST|-9u|0||12e4;Australia/Eucla|ACWST|-8J|0||368;Australia/Lord_Howe|LHDT LHST|-b0 -au|01010101010101010101010|1C130 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1cMu 1cLu 1fAu 1cLu 1cMu 1cLu 1cMu|347;Australia/Perth|AWST|-80|0||18e5;Pacific/Easter|EASST EAST|50 60|010101010101010101010|1C1f0 1fB0 1nX0 G10 1EL0 Op0 1zb0 Rd0 1wn0 Rd0 46n0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0 1Nb0 Ap0|30e2;Europe/Dublin|GMT IST|0 -10|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|12e5;Etc/GMT+1|-01|10|0|;Etc/GMT+10|-10|a0|0|;Etc/GMT+11|-11|b0|0|;Etc/GMT+12|-12|c0|0|;Etc/GMT+2|-02|20|0|;Etc/GMT+4|-04|40|0|;Etc/GMT+5|-05|50|0|;Etc/GMT+6|-06|60|0|;Etc/GMT+7|-07|70|0|;Etc/GMT+8|-08|80|0|;Etc/GMT+9|-09|90|0|;Etc/GMT-1|+01|-10|0|;Etc/GMT-11|+11|-b0|0|;Etc/GMT-12|+12|-c0|0|;Etc/GMT-13|+13|-d0|0|;Etc/GMT-14|+14|-e0|0|;Etc/GMT-2|+02|-20|0|;Etc/GMT-7|+07|-70|0|;Etc/GMT-8|+08|-80|0|;Etc/GMT-9|+09|-90|0|;Etc/UCT|UCT|0|0|;Etc/UTC|UTC|0|0|;Europe/Astrakhan|+03 +04|-30 -40|010101|1BWn0 1qM0 WM0 8Hz0 3rd0;Europe/London|GMT BST|0 -10|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|10e6;Europe/Chisinau|EET EEST|-20 -30|01010101010101010101010|1BWo0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00|67e4;Europe/Kaliningrad|EET EEST +03|-20 -30 -30|01020|1BWo0 1qM0 WM0 8Hz0|44e4;Europe/Volgograd|+03 +04|-30 -40|01010|1BWn0 1qM0 WM0 8Hz0|10e5;Europe/Minsk|EET EEST +03|-20 -30 -30|0102|1BWo0 1qM0 WM0|19e5;Europe/Moscow|MSK MSD MSK|-30 -40 -40|01020|1BWn0 1qM0 WM0 8Hz0|16e6;Europe/Samara|+04 +03|-40 -30|010|1Dpb0 WM0|12e5;Europe/Saratov|+03 +04|-30 -40|010101|1BWn0 1qM0 WM0 8Hz0 5810;Europe/Simferopol|EET EEST MSK MSK|-20 -30 -40 -30|01010101023|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11z0 1nW0|33e4;Pacific/Honolulu|HST|a0|0||37e4;Indian/Chagos|IOT|-60|0||30e2;Indian/Christmas|CXT|-70|0||21e2;Indian/Cocos|CCT|-6u|0||596;Indian/Mahe|SCT|-40|0||79e3;Indian/Maldives|MVT|-50|0||35e4;Indian/Mauritius|MUT|-40|0||15e4;Indian/Reunion|RET|-40|0||84e4;Pacific/Majuro|MHT|-c0|0||28e3;MET|MET MEST|-10 -20|01010101010101010101010|1BWp0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00 11A0 1o00 11A0 1qM0 WM0 1qM0 WM0 1qM0 11A0 1o00 11A0 1o00;Pacific/Chatham|CHADT CHAST|-dJ -cJ|01010101010101010101010|1C120 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|600;Pacific/Apia|SST SDT WSDT WSST|b0 a0 -e0 -d0|01012323232323232323232|1Dbn0 1ff0 1a00 CI0 AQ0 1cM0 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1a00 1fA0 1cM0 1fA0 1a00 1fA0 1a00|37e3;Pacific/Bougainville|PGT BST|-a0 -b0|01|1NwE0|18e4;Pacific/Chuuk|CHUT|-a0|0||49e3;Pacific/Efate|VUT|-b0|0||66e3;Pacific/Enderbury|PHOT|-d0|0||1;Pacific/Fakaofo|TKT TKT|b0 -d0|01|1Gfn0|483;Pacific/Fiji|FJST FJT|-d0 -c0|01010101010101010101010|1BWe0 1o00 Rc0 1wo0 Ao0 1Nc0 Ao0 1Q00 xz0 1SN0 uM0 1SM0 uM0 1VA0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0|88e4;Pacific/Funafuti|TVT|-c0|0||45e2;Pacific/Galapagos|GALT|60|0||25e3;Pacific/Gambier|GAMT|90|0||125;Pacific/Guadalcanal|SBT|-b0|0||11e4;Pacific/Guam|ChST|-a0|0||17e4;Pacific/Kiritimati|LINT|-e0|0||51e2;Pacific/Kosrae|KOST|-b0|0||66e2;Pacific/Marquesas|MART|9u|0||86e2;Pacific/Pago_Pago|SST|b0|0||37e2;Pacific/Nauru|NRT|-c0|0||10e3;Pacific/Niue|NUT|b0|0||12e2;Pacific/Norfolk|NFT NFT|-bu -b0|01|1PoCu|25e4;Pacific/Noumea|NCT|-b0|0||98e3;Pacific/Palau|PWT|-90|0||21e3;Pacific/Pitcairn|PST|80|0||56;Pacific/Pohnpei|PONT|-b0|0||34e3;Pacific/Port_Moresby|PGT|-a0|0||25e4;Pacific/Rarotonga|CKT|a0|0||13e3;Pacific/Tahiti|TAHT|a0|0||18e4;Pacific/Tarawa|GILT|-c0|0||29e3;Pacific/Tongatapu|+13 +14|-d0 -e0|0101010101|1S4d0 s00 1VA0 uM0 1SM0 uM0 1SM0 uM0 1SM0|75e3;Pacific/Wake|WAKT|-c0|0||16e3;Pacific/Wallis|WFT|-c0|0||94".split(";"), links:"Africa/Abidjan|Africa/Accra Africa/Abidjan|Africa/Bamako Africa/Abidjan|Africa/Banjul Africa/Abidjan|Africa/Bissau Africa/Abidjan|Africa/Conakry Africa/Abidjan|Africa/Dakar Africa/Abidjan|Africa/Freetown Africa/Abidjan|Africa/Lome Africa/Abidjan|Africa/Monrovia Africa/Abidjan|Africa/Nouakchott Africa/Abidjan|Africa/Ouagadougou Africa/Abidjan|Africa/Sao_Tome Africa/Abidjan|Africa/Timbuktu Africa/Abidjan|America/Danmarkshavn Africa/Abidjan|Atlantic/Reykjavik Africa/Abidjan|Atlantic/St_Helena Africa/Abidjan|Etc/GMT Africa/Abidjan|Etc/GMT+0 Africa/Abidjan|Etc/GMT-0 Africa/Abidjan|Etc/GMT0 Africa/Abidjan|Etc/Greenwich Africa/Abidjan|GMT Africa/Abidjan|GMT+0 Africa/Abidjan|GMT-0 Africa/Abidjan|GMT0 Africa/Abidjan|Greenwich Africa/Abidjan|Iceland Africa/Algiers|Africa/Tunis Africa/Cairo|Egypt Africa/Casablanca|Africa/El_Aaiun Africa/Johannesburg|Africa/Maseru Africa/Johannesburg|Africa/Mbabane Africa/Khartoum|Africa/Addis_Ababa Africa/Khartoum|Africa/Asmara Africa/Khartoum|Africa/Asmera Africa/Khartoum|Africa/Dar_es_Salaam Africa/Khartoum|Africa/Djibouti Africa/Khartoum|Africa/Juba Africa/Khartoum|Africa/Kampala Africa/Khartoum|Africa/Mogadishu Africa/Khartoum|Africa/Nairobi Africa/Khartoum|Indian/Antananarivo Africa/Khartoum|Indian/Comoro Africa/Khartoum|Indian/Mayotte Africa/Lagos|Africa/Bangui Africa/Lagos|Africa/Brazzaville Africa/Lagos|Africa/Douala Africa/Lagos|Africa/Kinshasa Africa/Lagos|Africa/Libreville Africa/Lagos|Africa/Luanda Africa/Lagos|Africa/Malabo Africa/Lagos|Africa/Ndjamena Africa/Lagos|Africa/Niamey Africa/Lagos|Africa/Porto-Novo Africa/Maputo|Africa/Blantyre Africa/Maputo|Africa/Bujumbura Africa/Maputo|Africa/Gaborone Africa/Maputo|Africa/Harare Africa/Maputo|Africa/Kigali Africa/Maputo|Africa/Lubumbashi Africa/Maputo|Africa/Lusaka Africa/Tripoli|Libya America/Adak|America/Atka America/Adak|US/Aleutian America/Anchorage|America/Juneau America/Anchorage|America/Nome America/Anchorage|America/Sitka America/Anchorage|America/Yakutat America/Anchorage|US/Alaska America/Argentina/Buenos_Aires|America/Argentina/Catamarca America/Argentina/Buenos_Aires|America/Argentina/ComodRivadavia America/Argentina/Buenos_Aires|America/Argentina/Cordoba America/Argentina/Buenos_Aires|America/Argentina/Jujuy America/Argentina/Buenos_Aires|America/Argentina/La_Rioja America/Argentina/Buenos_Aires|America/Argentina/Mendoza America/Argentina/Buenos_Aires|America/Argentina/Rio_Gallegos America/Argentina/Buenos_Aires|America/Argentina/Salta America/Argentina/Buenos_Aires|America/Argentina/San_Juan America/Argentina/Buenos_Aires|America/Argentina/San_Luis America/Argentina/Buenos_Aires|America/Argentina/Tucuman America/Argentina/Buenos_Aires|America/Argentina/Ushuaia America/Argentina/Buenos_Aires|America/Buenos_Aires America/Argentina/Buenos_Aires|America/Catamarca America/Argentina/Buenos_Aires|America/Cordoba America/Argentina/Buenos_Aires|America/Jujuy America/Argentina/Buenos_Aires|America/Mendoza America/Argentina/Buenos_Aires|America/Rosario America/Campo_Grande|America/Cuiaba America/Chicago|America/Indiana/Knox America/Chicago|America/Indiana/Tell_City America/Chicago|America/Knox_IN America/Chicago|America/Matamoros America/Chicago|America/Menominee America/Chicago|America/North_Dakota/Center America/Chicago|America/North_Dakota/New_Salem America/Chicago|America/Rainy_River America/Chicago|America/Rankin_Inlet America/Chicago|America/Resolute America/Chicago|America/Winnipeg America/Chicago|CST6CDT America/Chicago|Canada/Central America/Chicago|US/Central America/Chicago|US/Indiana-Starke America/Chihuahua|America/Mazatlan America/Chihuahua|Mexico/BajaSur America/Denver|America/Boise America/Denver|America/Cambridge_Bay America/Denver|America/Edmonton America/Denver|America/Inuvik America/Denver|America/Ojinaga America/Denver|America/Shiprock America/Denver|America/Yellowknife America/Denver|Canada/Mountain America/Denver|MST7MDT America/Denver|Navajo America/Denver|US/Mountain America/Fortaleza|America/Belem America/Fortaleza|America/Maceio America/Fortaleza|America/Recife America/Fortaleza|America/Santarem America/Halifax|America/Glace_Bay America/Halifax|America/Moncton America/Halifax|America/Thule America/Halifax|Atlantic/Bermuda America/Halifax|Canada/Atlantic America/Havana|Cuba America/Los_Angeles|America/Dawson America/Los_Angeles|America/Ensenada America/Los_Angeles|America/Santa_Isabel America/Los_Angeles|America/Tijuana America/Los_Angeles|America/Vancouver America/Los_Angeles|America/Whitehorse America/Los_Angeles|Canada/Pacific America/Los_Angeles|Canada/Yukon America/Los_Angeles|Mexico/BajaNorte America/Los_Angeles|PST8PDT America/Los_Angeles|US/Pacific America/Los_Angeles|US/Pacific-New America/Managua|America/Belize America/Managua|America/Costa_Rica America/Managua|America/El_Salvador America/Managua|America/Guatemala America/Managua|America/Regina America/Managua|America/Swift_Current America/Managua|America/Tegucigalpa America/Managua|Canada/East-Saskatchewan America/Managua|Canada/Saskatchewan America/Manaus|America/Boa_Vista America/Manaus|America/Porto_Velho America/Manaus|Brazil/West America/Mexico_City|America/Merida America/Mexico_City|America/Monterrey America/Mexico_City|Mexico/General America/New_York|America/Detroit America/New_York|America/Fort_Wayne America/New_York|America/Indiana/Indianapolis America/New_York|America/Indiana/Marengo America/New_York|America/Indiana/Petersburg America/New_York|America/Indiana/Vevay America/New_York|America/Indiana/Vincennes America/New_York|America/Indiana/Winamac America/New_York|America/Indianapolis America/New_York|America/Iqaluit America/New_York|America/Kentucky/Louisville America/New_York|America/Kentucky/Monticello America/New_York|America/Louisville America/New_York|America/Montreal America/New_York|America/Nassau America/New_York|America/Nipigon America/New_York|America/Pangnirtung America/New_York|America/Thunder_Bay America/New_York|America/Toronto America/New_York|Canada/Eastern America/New_York|EST5EDT America/New_York|US/East-Indiana America/New_York|US/Eastern America/New_York|US/Michigan America/Noronha|Brazil/DeNoronha America/Panama|America/Atikokan America/Panama|America/Cayman America/Panama|America/Coral_Harbour America/Panama|America/Jamaica America/Panama|EST America/Panama|Jamaica America/Phoenix|America/Creston America/Phoenix|America/Dawson_Creek America/Phoenix|America/Hermosillo America/Phoenix|MST America/Phoenix|US/Arizona America/Rio_Branco|America/Eirunepe America/Rio_Branco|America/Porto_Acre America/Rio_Branco|Brazil/Acre America/Santiago|Antarctica/Palmer America/Santiago|Chile/Continental America/Santo_Domingo|America/Anguilla America/Santo_Domingo|America/Antigua America/Santo_Domingo|America/Aruba America/Santo_Domingo|America/Barbados America/Santo_Domingo|America/Blanc-Sablon America/Santo_Domingo|America/Curacao America/Santo_Domingo|America/Dominica America/Santo_Domingo|America/Grenada America/Santo_Domingo|America/Guadeloupe America/Santo_Domingo|America/Kralendijk America/Santo_Domingo|America/Lower_Princes America/Santo_Domingo|America/Marigot America/Santo_Domingo|America/Martinique America/Santo_Domingo|America/Montserrat America/Santo_Domingo|America/Port_of_Spain America/Santo_Domingo|America/Puerto_Rico America/Santo_Domingo|America/St_Barthelemy America/Santo_Domingo|America/St_Kitts America/Santo_Domingo|America/St_Lucia America/Santo_Domingo|America/St_Thomas America/Santo_Domingo|America/St_Vincent America/Santo_Domingo|America/Tortola America/Santo_Domingo|America/Virgin America/Sao_Paulo|Brazil/East America/St_Johns|Canada/Newfoundland Antarctica/DumontDUrville|Etc/GMT-10 Antarctica/Rothera|Etc/GMT+3 Antarctica/Syowa|Etc/GMT-3 Asia/Almaty|Antarctica/Vostok Asia/Almaty|Asia/Bishkek Asia/Almaty|Asia/Qyzylorda Asia/Almaty|Etc/GMT-6 Asia/Baghdad|Asia/Aden Asia/Baghdad|Asia/Bahrain Asia/Baghdad|Asia/Kuwait Asia/Baghdad|Asia/Qatar Asia/Baghdad|Asia/Riyadh Asia/Bangkok|Asia/Ho_Chi_Minh Asia/Bangkok|Asia/Phnom_Penh Asia/Bangkok|Asia/Saigon Asia/Bangkok|Asia/Vientiane Asia/Dhaka|Asia/Dacca Asia/Dubai|Asia/Muscat Asia/Hong_Kong|Hongkong Asia/Jakarta|Asia/Pontianak Asia/Jerusalem|Asia/Tel_Aviv Asia/Jerusalem|Israel Asia/Kamchatka|Asia/Anadyr Asia/Kathmandu|Asia/Katmandu Asia/Kolkata|Asia/Calcutta Asia/Kuala_Lumpur|Asia/Kuching Asia/Makassar|Asia/Ujung_Pandang Asia/Rangoon|Asia/Yangon Asia/Seoul|ROK Asia/Shanghai|Asia/Chongqing Asia/Shanghai|Asia/Chungking Asia/Shanghai|Asia/Harbin Asia/Shanghai|Asia/Macao Asia/Shanghai|Asia/Macau Asia/Shanghai|Asia/Taipei Asia/Shanghai|PRC Asia/Shanghai|ROC Asia/Singapore|Singapore Asia/Tashkent|Antarctica/Mawson Asia/Tashkent|Asia/Aqtau Asia/Tashkent|Asia/Aqtobe Asia/Tashkent|Asia/Ashgabat Asia/Tashkent|Asia/Ashkhabad Asia/Tashkent|Asia/Atyrau Asia/Tashkent|Asia/Dushanbe Asia/Tashkent|Asia/Oral Asia/Tashkent|Asia/Samarkand Asia/Tashkent|Etc/GMT-5 Asia/Tashkent|Indian/Kerguelen Asia/Tbilisi|Etc/GMT-4 Asia/Tehran|Iran Asia/Thimphu|Asia/Thimbu Asia/Tokyo|Japan Asia/Ulaanbaatar|Asia/Ulan_Bator Asia/Urumqi|Asia/Kashgar Australia/Adelaide|Australia/Broken_Hill Australia/Adelaide|Australia/South Australia/Adelaide|Australia/Yancowinna Australia/Brisbane|Australia/Lindeman Australia/Brisbane|Australia/Queensland Australia/Darwin|Australia/North Australia/Lord_Howe|Australia/LHI Australia/Perth|Australia/West Australia/Sydney|Australia/ACT Australia/Sydney|Australia/Canberra Australia/Sydney|Australia/Currie Australia/Sydney|Australia/Hobart Australia/Sydney|Australia/Melbourne Australia/Sydney|Australia/NSW Australia/Sydney|Australia/Tasmania Australia/Sydney|Australia/Victoria Etc/UCT|UCT Etc/UTC|Etc/Universal Etc/UTC|Etc/Zulu Etc/UTC|UTC Etc/UTC|Universal Etc/UTC|Zulu Europe/Astrakhan|Europe/Ulyanovsk Europe/Athens|Asia/Nicosia Europe/Athens|EET Europe/Athens|Europe/Bucharest Europe/Athens|Europe/Helsinki Europe/Athens|Europe/Kiev Europe/Athens|Europe/Mariehamn Europe/Athens|Europe/Nicosia Europe/Athens|Europe/Riga Europe/Athens|Europe/Sofia Europe/Athens|Europe/Tallinn Europe/Athens|Europe/Uzhgorod Europe/Athens|Europe/Vilnius Europe/Athens|Europe/Zaporozhye Europe/Chisinau|Europe/Tiraspol Europe/Dublin|Eire Europe/Istanbul|Asia/Istanbul Europe/Istanbul|Turkey Europe/Lisbon|Atlantic/Canary Europe/Lisbon|Atlantic/Faeroe Europe/Lisbon|Atlantic/Faroe Europe/Lisbon|Atlantic/Madeira Europe/Lisbon|Portugal Europe/Lisbon|WET Europe/London|Europe/Belfast Europe/London|Europe/Guernsey Europe/London|Europe/Isle_of_Man Europe/London|Europe/Jersey Europe/London|GB Europe/London|GB-Eire Europe/Moscow|W-SU Europe/Paris|Africa/Ceuta Europe/Paris|Arctic/Longyearbyen Europe/Paris|Atlantic/Jan_Mayen Europe/Paris|CET Europe/Paris|Europe/Amsterdam Europe/Paris|Europe/Andorra Europe/Paris|Europe/Belgrade Europe/Paris|Europe/Berlin Europe/Paris|Europe/Bratislava Europe/Paris|Europe/Brussels Europe/Paris|Europe/Budapest Europe/Paris|Europe/Busingen Europe/Paris|Europe/Copenhagen Europe/Paris|Europe/Gibraltar Europe/Paris|Europe/Ljubljana Europe/Paris|Europe/Luxembourg Europe/Paris|Europe/Madrid Europe/Paris|Europe/Malta Europe/Paris|Europe/Monaco Europe/Paris|Europe/Oslo Europe/Paris|Europe/Podgorica Europe/Paris|Europe/Prague Europe/Paris|Europe/Rome Europe/Paris|Europe/San_Marino Europe/Paris|Europe/Sarajevo Europe/Paris|Europe/Skopje Europe/Paris|Europe/Stockholm Europe/Paris|Europe/Tirane Europe/Paris|Europe/Vaduz Europe/Paris|Europe/Vatican Europe/Paris|Europe/Vienna Europe/Paris|Europe/Warsaw Europe/Paris|Europe/Zagreb Europe/Paris|Europe/Zurich Europe/Paris|Poland Europe/Volgograd|Europe/Kirov Pacific/Auckland|Antarctica/McMurdo Pacific/Auckland|Antarctica/South_Pole Pacific/Auckland|NZ Pacific/Chatham|NZ-CHAT Pacific/Chuuk|Pacific/Truk Pacific/Chuuk|Pacific/Yap Pacific/Easter|Chile/EasterIsland Pacific/Guam|Pacific/Saipan Pacific/Honolulu|HST Pacific/Honolulu|Pacific/Johnston Pacific/Honolulu|US/Hawaii Pacific/Majuro|Kwajalein Pacific/Majuro|Pacific/Kwajalein Pacific/Pago_Pago|Pacific/Midway Pacific/Pago_Pago|Pacific/Samoa Pacific/Pago_Pago|US/Samoa Pacific/Pohnpei|Pacific/Ponape".split(" ")}); -return e}); +return f}); diff --git a/public/vendor/js/moment.min.js b/public/vendor/js/moment.min.js index de1539f0..b73360e8 100644 --- a/public/vendor/js/moment.min.js +++ b/public/vendor/js/moment.min.js @@ -1,140 +1,135 @@ -var $jscomp={scope:{}};$jscomp.defineProperty="function"==typeof Object.defineProperties?Object.defineProperty:function(e,p,y){if(y.get||y.set)throw new TypeError("ES3 does not support getters and setters.");e!=Array.prototype&&e!=Object.prototype&&(e[p]=y.value)};$jscomp.getGlobal=function(e){return"undefined"!=typeof window&&window===e?e:"undefined"!=typeof global&&null!=global?global:e};$jscomp.global=$jscomp.getGlobal(this);$jscomp.SYMBOL_PREFIX="jscomp_symbol_"; -$jscomp.initSymbol=function(){$jscomp.initSymbol=function(){};$jscomp.global.Symbol||($jscomp.global.Symbol=$jscomp.Symbol)};$jscomp.symbolCounter_=0;$jscomp.Symbol=function(e){return $jscomp.SYMBOL_PREFIX+(e||"")+$jscomp.symbolCounter_++}; -$jscomp.initSymbolIterator=function(){$jscomp.initSymbol();var e=$jscomp.global.Symbol.iterator;e||(e=$jscomp.global.Symbol.iterator=$jscomp.global.Symbol("iterator"));"function"!=typeof Array.prototype[e]&&$jscomp.defineProperty(Array.prototype,e,{configurable:!0,writable:!0,value:function(){return $jscomp.arrayIterator(this)}});$jscomp.initSymbolIterator=function(){}};$jscomp.arrayIterator=function(e){var p=0;return $jscomp.iteratorPrototype(function(){return pb.overflow&&!b.empty&&!b.invalidMonth&&!b.invalidWeekday&&!b.nullInput&&!b.invalidFormat&&!b.userInvalidated&&(!b.meridiem||b.meridiem&&c);a._strict&&(c=c&&0===b.charsLeftOver&&0===b.unusedTokens.length&&void 0===b.bigHour);if(null!=Object.isFrozen&&Object.isFrozen(a))return c; -a._isValid=c}return a._isValid}function Za(a){var b=U(NaN);null!=a?ga(n(b),a):n(b).userInvalidated=!0;return b}function D(a){return void 0===a}function rb(a,b){var c,d,g;D(b._isAMomentObject)||(a._isAMomentObject=b._isAMomentObject);D(b._i)||(a._i=b._i);D(b._f)||(a._f=b._f);D(b._l)||(a._l=b._l);D(b._strict)||(a._strict=b._strict);D(b._tzm)||(a._tzm=b._tzm);D(b._isUTC)||(a._isUTC=b._isUTC);D(b._offset)||(a._offset=b._offset);D(b._pf)||(a._pf=n(b));D(b._locale)||(a._locale=b._locale);if(0a?Math.ceil(a)||0:Math.floor(a)}function l(a){a=+a;var b=0;0!==a&&isFinite(a)&&(b=E(a));return b}function dc(a,b,c){var d=Math.min(a.length,b.length),g=Math.abs(a.length-b.length),e=0,f;for(f=0;fg;g++)e= -U([2E3,g]),b.push(this.monthsShort(e,"")),c.push(this.months(e,"")),d.push(this.months(e,"")),d.push(this.monthsShort(e,""));b.sort(a);c.sort(a);d.sort(a);for(g=0;12>g;g++)b[g]=ra(b[g]),c[g]=ra(c[g]);for(g=0;24>g;g++)d[g]=ra(d[g]);this._monthsShortRegex=this._monthsRegex=new RegExp("^("+d.join("|")+")","i");this._monthsStrictRegex=new RegExp("^("+c.join("|")+")","i");this._monthsShortStrictRegex=new RegExp("^("+b.join("|")+")","i")}function Ba(a){return 0===a%4&&0!==a%100||0===a%400}function jd(a, -b,c,d,g,e,f){b=new Date(a,b,c,d,g,e,f);100>a&&0<=a&&isFinite(b.getFullYear())&&b.setFullYear(a);return b}function bb(a){var b=new Date(Date.UTC.apply(null,arguments));100>a&&0<=a&&isFinite(b.getUTCFullYear())&&b.setUTCFullYear(a);return b}function cb(a,b,c){c=7+b-c;return-((7+bb(a,0,c).getUTCDay()-b)%7)+c-1}function nc(a,b,c,d,g){c=(7+c-d)%7;d=cb(a,d,g);d=1+7*(b-1)+c+d;0>=d?(b=a-1,a=(Ba(b)?366:365)+d):d>(Ba(a)?366:365)?(b=a+1,a=d-(Ba(a)?366:365)):(b=a,a=d);return{year:b,dayOfYear:a}}function Oa(a, -b,c){var d=cb(a.year(),b,c),d=Math.floor((a.dayOfYear()-d-1)/7)+1;1>d?(a=a.year()-1,b=d+sa(a,b,c)):d>sa(a.year(),b,c)?(b=d-sa(a.year(),b,c),a=a.year()+1):(a=a.year(),b=d);return{week:b,year:a}}function sa(a,b,c){var d=cb(a,b,c);b=cb(a+1,b,c);return((Ba(a)?366:365)-d+b)/7}function kd(a,b,c){var d,g;a=a.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],d=0;7>d;++d)g=U([2E3,1]).day(d),this._minWeekdaysParse[d]=this.weekdaysMin(g, -"").toLocaleLowerCase(),this._shortWeekdaysParse[d]=this.weekdaysShort(g,"").toLocaleLowerCase(),this._weekdaysParse[d]=this.weekdays(g,"").toLocaleLowerCase();if(c)b="dddd"===b?z.call(this._weekdaysParse,a):"ddd"===b?z.call(this._shortWeekdaysParse,a):z.call(this._minWeekdaysParse,a);else if("dddd"===b){b=z.call(this._weekdaysParse,a);if(-1!==b)return b;b=z.call(this._shortWeekdaysParse,a);if(-1!==b)return b;b=z.call(this._minWeekdaysParse,a)}else if("ddd"===b){b=z.call(this._shortWeekdaysParse, -a);if(-1!==b)return b;b=z.call(this._weekdaysParse,a);if(-1!==b)return b;b=z.call(this._minWeekdaysParse,a)}else{b=z.call(this._minWeekdaysParse,a);if(-1!==b)return b;b=z.call(this._weekdaysParse,a);if(-1!==b)return b;b=z.call(this._shortWeekdaysParse,a)}return-1!==b?b:null}function Bb(){function a(a,b){return b.length-a.length}var b=[],c=[],d=[],g=[],e,f,h,k;for(e=0;7>e;e++)f=U([2E3,1]).day(e),h=this.weekdaysMin(f,""),k=this.weekdaysShort(f,""),f=this.weekdays(f,""),b.push(h),c.push(k),d.push(f), -g.push(h),g.push(k),g.push(f);b.sort(a);c.sort(a);d.sort(a);g.sort(a);for(e=0;7>e;e++)c[e]=ra(c[e]),d[e]=ra(d[e]),g[e]=ra(g[e]);this._weekdaysMinRegex=this._weekdaysShortRegex=this._weekdaysRegex=new RegExp("^("+g.join("|")+")","i");this._weekdaysStrictRegex=new RegExp("^("+d.join("|")+")","i");this._weekdaysShortStrictRegex=new RegExp("^("+c.join("|")+")","i");this._weekdaysMinStrictRegex=new RegExp("^("+b.join("|")+")","i")}function Cb(){return this.hours()%12||12}function oc(a,b){k(a,0,0,function(){return this.localeData().meridiem(this.hours(), -this.minutes(),b)})}function pc(a,b){return b._meridiemParse}function qc(a){return a?a.toLowerCase().replace("_","-"):a}function rc(a){var b=null;if(!w[a]&&"undefined"!==typeof module&&module&&module.exports)try{b=db._abbr,require("./locale/"+a),Ca(b)}catch(c){}return w[a]}function Ca(a,b){var c;a&&(c=D(b)?ia(a):Db(a,b))&&(db=c);return db._abbr}function Db(a,b){if(null!==b){var c=sc;b.abbr=a;if(null!=w[a])fc("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."), -c=w[a]._config;else if(null!=b.parentLocale)if(null!=w[b.parentLocale])c=w[b.parentLocale]._config;else return Pa[b.parentLocale]||(Pa[b.parentLocale]=[]),Pa[b.parentLocale].push({name:a,config:b}),null;w[a]=new ub(hc(c,b));Pa[a]&&Pa[a].forEach(function(a){Db(a.name,a.config)});Ca(a);return w[a]}delete w[a];return null}function ia(a){var b;a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr);if(!a)return db;if(!p(a)){if(b=rc(a))return b;a=[a]}a:{b=0;for(var c,d,g,e;b=c&&dc(e,d,!0)>=c-1)break;c--}b++}a=null}return a}function Eb(a){var b;(b=a._a)&&-2===n(a).overflow&&(b=0>b[aa]||11b[W]||b[W]>Ab(b[J],b[aa])?W:0>b[A]||24b[K]||59b[ba]||59b[ta]||999W)&&(b=W),n(a)._overflowWeeks&&-1===b&&(b=ld),n(a)._overflowWeekday&&-1=== -b&&(b=md),n(a).overflow=b);return a}function tc(a){var b,c;b=a._i;var d=nd.exec(b)||od.exec(b),e,f,h,k;if(d){n(a).iso=!0;b=0;for(c=eb.length;bk||7k||6g.e||6h||h>sa(f,l,m)?n(a)._overflowWeeks=!0:null!=b?n(a)._overflowWeekday=!0:(b=nc(f,h,k,l,m),a._a[J]=b.year,a._dayOfYear=b.dayOfYear)}a._dayOfYear&&(b=Da(a._a[J],d[J]),a._dayOfYear>(Ba(b)?366:365)&&(n(a)._overflowDayOfYear=!0),b=bb(b,0,a._dayOfYear),a._a[aa]=b.getUTCMonth(),a._a[W]=b.getUTCDate()); -for(b=0;3>b&&null==a._a[b];++b)a._a[b]=c[b]=d[b];for(;7>b;b++)a._a[b]=c[b]=null==a._a[b]?2===b?1:0:a._a[b];24===a._a[A]&&0===a._a[K]&&0===a._a[ba]&&0===a._a[ta]&&(a._nextDay=!0,a._a[A]=0);a._d=(a._useUTC?bb:jd).apply(null,c);null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm);a._nextDay&&(a._a[A]=24)}}function Gb(a){if(a._f===e.ISO_8601)tc(a);else{a._a=[];n(a).empty=!0;var b=""+a._i,c,d,g,f,h,k=b.length,l=0;g=jc(a._f,a._locale).match(ic)||[];for(c=0;c=a._a[A]&&!0===n(a).bigHour&&0g&&(g+=12),k||12!==g||(g=0)));b[c]=g;Hb(a);Eb(a)}}function sd(a){if(!a._d){var b=vb(a._i);a._a=bc([b.year,b.month,b.day||b.date,b.hour,b.minute,b.second,b.millisecond],function(a){return a&&parseInt(a,10)});Hb(a)}}function uc(a){var b=a._i,c=a._f;a._locale=a._locale||ia(a._l);if(null===b||void 0===c&&""===b)return Za({nullInput:!0});"string"===typeof b&&(a._i=b=a._locale.preparse(b));if(ha(b))return new Ka(Eb(b));if(I(b))a._d= -b;else if(p(c)){var d,e,f;if(0===a._f.length)n(a).invalidFormat=!0,a._d=new Date(NaN);else{for(b=0;ba?-1*Math.round(-1*a):Math.round(a)}function wc(a,b){k(a,0,0,function(){var a=this.utcOffset(), -d="+";0>a&&(a=-a,d="-");return d+Z(~~(a/60),2)+b+Z(~~a%60,2)})}function Kb(a,b){var c=(b||"").match(a);if(null===c)return null;var c=((c[c.length-1]||[])+"").match(ud)||["-",0,0],d=+(60*c[1])+l(c[2]);return 0===d?0:"+"===c[0]?d:-d}function Lb(a,b){var c,d;return b._isUTC?(c=b.clone(),d=(ha(a)||I(a)?a.valueOf():t(a).valueOf())-c.valueOf(),c._d.setTime(c._d.valueOf()+d),e.updateOffset(c,!1),c):t(a).local()}function xc(){return this.isValid()?this._isUTC&&0===this._offset:!1}function ja(a,b){var c=a, -d;Ib(a)?c={ms:a._milliseconds,d:a._days,M:a._months}:x(a)?(c={},b?c[b]=a:c.milliseconds=a):(d=vd.exec(a))?(c="-"===d[1]?-1:1,c={y:0,d:l(d[W])*c,h:l(d[A])*c,m:l(d[K])*c,s:l(d[ba])*c,ms:l(Jb(1E3*d[ta]))*c}):(d=wd.exec(a))?(c="-"===d[1]?-1:1,c={y:ua(d[2],c),M:ua(d[3],c),w:ua(d[4],c),d:ua(d[5],c),h:ua(d[6],c),m:ua(d[7],c),s:ua(d[8],c)}):null==c?c={}:"object"===typeof c&&("from"in c||"to"in c)&&(d=t(c.from),c=t(c.to),d.isValid()&&c.isValid()?(c=Lb(c,d),d.isBefore(c)?c=yc(d,c):(c=yc(c,d),c.milliseconds= --c.milliseconds,c.months=-c.months),d=c):d={milliseconds:0,months:0},c={},c.ms=d.milliseconds,c.M=d.months);c=new fb(c);Ib(a)&&v(a,"_locale")&&(c._locale=a._locale);return c}function ua(a,b){var c=a&&parseFloat(a.replace(",","."));return(isNaN(c)?0:c)*b}function yc(a,b){var c={milliseconds:0,months:0};c.months=b.month()-a.month()+12*(b.year()-a.year());a.clone().add(c.months,"M").isAfter(b)&&--c.months;c.milliseconds=+b-+a.clone().add(c.months,"M");return c}function zc(a,b){return function(c,d){var e; -null===d||isNaN(+d)||(fc(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info."),e=c,c=d,d=e);e=ja("string"===typeof c?+c:c,d);Ac(this,e,a);return this}}function Ac(a,b,c,d){var g=b._milliseconds,f=Jb(b._days);b=Jb(b._months);if(a.isValid()){d=null==d?!0:d;g&&a._d.setTime(a._d.valueOf()+g*c);if(f&&(g=$a(a,"Date")+f*c,a.isValid()))a._d["set"+(a._isUTC?"UTC":"")+"Date"](g);b&&kc(a,$a(a, -"Month")+b*c);d&&e.updateOffset(a,f||b)}}function Bc(a){if(void 0===a)return this._locale._abbr;a=ia(a);null!=a&&(this._locale=a);return this}function Cc(){return this._locale}function gb(a,b){k(0,[a,a.length],0,b)}function Dc(a,b,c,d,e){var g;if(null==a)return Oa(this,d,e).year;g=sa(a,d,e);b>g&&(b=g);a=nc(a,b,c,d,e);a=bb(a.year,0,a.dayOfYear);this.year(a.getUTCFullYear());this.month(a.getUTCMonth());this.date(a.getUTCDate());return this}function xd(a,b){b[ta]=l(1E3*("0."+a))}function Ec(a){return a} -function hb(a,b,c,d){var e=ia();b=U().set(d,b);return e[c](b,a)}function Fc(a,b,c){x(a)&&(b=a,a=void 0);a=a||"";if(null!=b)return hb(a,b,c,"month");var d=[];for(b=0;12>b;b++)d[b]=hb(a,b,c,"month");return d}function Mb(a,b,c,d){"boolean"!==typeof a&&(c=b=a,a=!1);x(b)&&(c=b,b=void 0);b=b||"";var e=ia();a=a?e._week.dow:0;if(null!=c)return hb(b,(c+a)%7,d,"day");e=[];for(c=0;7>c;c++)e[c]=hb(b,(c+a)%7,d,"day");return e}function Gc(a,b,c,d){b=ja(b,c);a._milliseconds+=d*b._milliseconds;a._days+=d*b._days; -a._months+=d*b._months;return a._bubble()}function Hc(a){return 0>a?Math.floor(a):Math.ceil(a)}function ka(a){return function(){return this.as(a)}}function va(a){return function(){return this._data[a]}}function yd(a,b,c,d,e){return e.relativeTime(b||1,!!c,a,d)}function ib(){var a=Nb(this._milliseconds)/1E3,b=Nb(this._days),c=Nb(this._months),d,e;d=E(a/60);e=E(d/60);a%=60;d%=60;var f=E(c/12),c=c%12,h=this.asSeconds();return h?(0>h?"-":"")+"P"+(f?f+"Y":"")+(c?c+"M":"")+(b?b+"D":"")+(e||d||a?"T":"")+ -(e?e+"H":"")+(d?d+"M":"")+(a?a+"S":""):"P0D"}function wa(a,b,c){if("m"===c)return b?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443";if("h"===c)return b?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443";var d=+a;b={mm:b?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d", +(function(e,B){"object"===typeof exports&&"undefined"!==typeof module?module.exports=B():"function"===typeof define&&define.amd?define(B):e.moment=B()})(this,function(){function e(){return cd.apply(null,arguments)}function B(a){return a instanceof Array||"[object Array]"===Object.prototype.toString.call(a)}function Xa(a){return null!=a&&"[object Object]"===Object.prototype.toString.call(a)}function xa(a){return"number"===typeof value||"[object Number]"===Object.prototype.toString.call(a)}function Ya(a){return a instanceof +Date||"[object Date]"===Object.prototype.toString.call(a)}function ac(a,b){var c=[],d;for(d=0;db.overflow&&!b.empty&&!b.invalidMonth&&!b.invalidWeekday&&!b.nullInput&&!b.invalidFormat&&!b.userInvalidated&&(!b.meridiem||b.meridiem&&c);a._strict&&(c=c&&0===b.charsLeftOver&&0===b.unusedTokens.length&&void 0===b.bigHour);if(null!=Object.isFrozen&&Object.isFrozen(a))return c; +a._isValid=c}return a._isValid}function Za(a){var b=R(NaN);null!=a?da(n(b),a):n(b).userInvalidated=!0;return b}function A(a){return void 0===a}function rb(a,b){var c;A(b._isAMomentObject)||(a._isAMomentObject=b._isAMomentObject);A(b._i)||(a._i=b._i);A(b._f)||(a._f=b._f);A(b._l)||(a._l=b._l);A(b._strict)||(a._strict=b._strict);A(b._tzm)||(a._tzm=b._tzm);A(b._isUTC)||(a._isUTC=b._isUTC);A(b._offset)||(a._offset=b._offset);A(b._pf)||(a._pf=n(b));A(b._locale)||(a._locale=b._locale);if(0a?Math.ceil(a)||0:Math.floor(a)}function m(a){a=+a;var b=0;0!==a&&isFinite(a)&&(b=C(a));return b}function cc(a,b,c){var d=Math.min(a.length,b.length),g=Math.abs(a.length-b.length),e=0,f;for(f=0;fg;g++){var e=R([2E3,g]);b.push(this.monthsShort(e,""));c.push(this.months(e,""));d.push(this.months(e,""));d.push(this.monthsShort(e,""))}b.sort(a);c.sort(a);d.sort(a);for(g=0;12>g;g++)b[g]=pa(b[g]),c[g]=pa(c[g]);for(g=0;24>g;g++)d[g]=pa(d[g]);this._monthsShortRegex=this._monthsRegex=new RegExp("^("+d.join("|")+")","i");this._monthsStrictRegex=new RegExp("^("+c.join("|")+")","i");this._monthsShortStrictRegex=new RegExp("^("+b.join("|")+")","i")}function Aa(a){return 0===a%4&&0!==a%100||0===a% +400}function jd(a,b,c,d,g,e,f){b=new Date(a,b,c,d,g,e,f);100>a&&0<=a&&isFinite(b.getFullYear())&&b.setFullYear(a);return b}function bb(a){var b=new Date(Date.UTC.apply(null,arguments));100>a&&0<=a&&isFinite(b.getUTCFullYear())&&b.setUTCFullYear(a);return b}function cb(a,b,c){c=7+b-c;return-((7+bb(a,0,c).getUTCDay()-b)%7)+c-1}function mc(a,b,c,d,g){c=(7+c-d)%7;d=cb(a,d,g);d=1+7*(b-1)+c+d;0>=d?(b=a-1,a=(Aa(b)?366:365)+d):d>(Aa(a)?366:365)?(b=a+1,a=d-(Aa(a)?366:365)):(b=a,a=d);return{year:b,dayOfYear:a}} +function Ma(a,b,c){var d=cb(a.year(),b,c);d=Math.floor((a.dayOfYear()-d-1)/7)+1;1>d?(a=a.year()-1,b=d+qa(a,b,c)):d>qa(a.year(),b,c)?(b=d-qa(a.year(),b,c),a=a.year()+1):(a=a.year(),b=d);return{week:b,year:a}}function qa(a,b,c){var d=cb(a,b,c);b=cb(a+1,b,c);return((Aa(a)?366:365)-d+b)/7}function kd(a,b,c){var d;a=a.toLocaleLowerCase();if(!this._weekdaysParse)for(this._weekdaysParse=[],this._shortWeekdaysParse=[],this._minWeekdaysParse=[],d=0;7>d;++d){var g=R([2E3,1]).day(d);this._minWeekdaysParse[d]= +this.weekdaysMin(g,"").toLocaleLowerCase();this._shortWeekdaysParse[d]=this.weekdaysShort(g,"").toLocaleLowerCase();this._weekdaysParse[d]=this.weekdays(g,"").toLocaleLowerCase()}if(c)b="dddd"===b?w.call(this._weekdaysParse,a):"ddd"===b?w.call(this._shortWeekdaysParse,a):w.call(this._minWeekdaysParse,a);else if("dddd"===b){b=w.call(this._weekdaysParse,a);if(-1!==b)return b;b=w.call(this._shortWeekdaysParse,a);if(-1!==b)return b;b=w.call(this._minWeekdaysParse,a)}else if("ddd"===b){b=w.call(this._shortWeekdaysParse, +a);if(-1!==b)return b;b=w.call(this._weekdaysParse,a);if(-1!==b)return b;b=w.call(this._minWeekdaysParse,a)}else{b=w.call(this._minWeekdaysParse,a);if(-1!==b)return b;b=w.call(this._weekdaysParse,a);if(-1!==b)return b;b=w.call(this._shortWeekdaysParse,a)}return-1!==b?b:null}function Bb(){function a(a,b){return b.length-a.length}var b=[],c=[],d=[],g=[],e;for(e=0;7>e;e++){var f=R([2E3,1]).day(e);var h=this.weekdaysMin(f,"");var l=this.weekdaysShort(f,"");f=this.weekdays(f,"");b.push(h);c.push(l);d.push(f); +g.push(h);g.push(l);g.push(f)}b.sort(a);c.sort(a);d.sort(a);g.sort(a);for(e=0;7>e;e++)c[e]=pa(c[e]),d[e]=pa(d[e]),g[e]=pa(g[e]);this._weekdaysMinRegex=this._weekdaysShortRegex=this._weekdaysRegex=new RegExp("^("+g.join("|")+")","i");this._weekdaysStrictRegex=new RegExp("^("+d.join("|")+")","i");this._weekdaysShortStrictRegex=new RegExp("^("+c.join("|")+")","i");this._weekdaysMinStrictRegex=new RegExp("^("+b.join("|")+")","i")}function Cb(){return this.hours()%12||12}function nc(a,b){l(a,0,0,function(){return this.localeData().meridiem(this.hours(), +this.minutes(),b)})}function oc(a,b){return b._meridiemParse}function pc(a){return a?a.toLowerCase().replace("_","-"):a}function qc(a){var b=null;if(!v[a]&&"undefined"!==typeof module&&module&&module.exports)try{b=db._abbr,require("./locale/"+a),Ba(b)}catch(c){}return v[a]}function Ba(a,b){a&&(a=A(b)?fa(a):Db(a,b))&&(db=a);return db._abbr}function Db(a,b){if(null!==b){var c=rc;b.abbr=a;if(null!=v[a])ec("defineLocaleOverride","use moment.updateLocale(localeName, config) to change an existing locale. moment.defineLocale(localeName, config) should only be used for creating a new locale See http://momentjs.com/guides/#/warnings/define-locale/ for more info."), +c=v[a]._config;else if(null!=b.parentLocale)if(null!=v[b.parentLocale])c=v[b.parentLocale]._config;else return Na[b.parentLocale]||(Na[b.parentLocale]=[]),Na[b.parentLocale].push({name:a,config:b}),null;v[a]=new ub(gc(c,b));Na[a]&&Na[a].forEach(function(a){Db(a.name,a.config)});Ba(a);return v[a]}delete v[a];return null}function fa(a){var b;a&&a._locale&&a._locale._abbr&&(a=a._locale._abbr);if(!a)return db;if(!B(a)){if(b=qc(a))return b;a=[a]}a:{b=0;for(var c,d,g,e;b=c&&cc(e,d,!0)>=c-1)break;c--}b++}a=null}return a}function Eb(a){var b;(b=a._a)&&-2===n(a).overflow&&(b=0>b[X]||11b[T]||b[T]>Ab(b[G],b[X])?T:0>b[x]||24b[H]||59b[Y]||59b[ra]||999T)&&(b=T),n(a)._overflowWeeks&&-1===b&&(b=ld),n(a)._overflowWeekday&&-1===b&&(b= +md),n(a).overflow=b);return a}function sc(a){var b;var c=a._i;var d=nd.exec(c)||od.exec(c);if(d){n(a).iso=!0;c=0;for(b=eb.length;cm||7m||6d.e||6l||l>qa(h,g,f)?n(a)._overflowWeeks=!0:null!=k?n(a)._overflowWeekday=!0:(k=mc(h,l,m,g,f),a._a[G]=k.year,a._dayOfYear=k.dayOfYear)}a._dayOfYear&&(k=Ca(a._a[G],c[G]),a._dayOfYear>(Aa(k)?366:365)&&(n(a)._overflowDayOfYear=!0),k=bb(k,0,a._dayOfYear),a._a[X]= +k.getUTCMonth(),a._a[T]=k.getUTCDate());for(k=0;3>k&&null==a._a[k];++k)a._a[k]=b[k]=c[k];for(;7>k;k++)a._a[k]=b[k]=null==a._a[k]?2===k?1:0:a._a[k];24===a._a[x]&&0===a._a[H]&&0===a._a[Y]&&0===a._a[ra]&&(a._nextDay=!0,a._a[x]=0);a._d=(a._useUTC?bb:jd).apply(null,b);null!=a._tzm&&a._d.setUTCMinutes(a._d.getUTCMinutes()-a._tzm);a._nextDay&&(a._a[x]=24)}}function Gb(a){if(a._f===e.ISO_8601)sc(a);else{a._a=[];n(a).empty=!0;var b=""+a._i,c,d,g=b.length,f=0;var h=ic(a._f,a._locale).match(hc)||[];for(c=0;c< +h.length;c++){var k=h[c];if(d=(b.match(hd(k,a))||[])[0]){var l=b.substr(0,b.indexOf(d));0=a._a[x]&&!0===n(a).bigHour&&0h&&(h+=12),g||12!==h||(h=0)));b[c]=h;Hb(a);Eb(a)}}function sd(a){if(!a._d){var b=vb(a._i);a._a=ac([b.year,b.month,b.day||b.date,b.hour,b.minute,b.second,b.millisecond],function(a){return a&&parseInt(a,10)});Hb(a)}}function tc(a){var b=a._i,c=a._f;a._locale=a._locale||fa(a._l);if(null===b||void 0===c&&""===b)return Za({nullInput:!0});"string"===typeof b&&(a._i=b=a._locale.preparse(b)); +if(ea(b))return new Ja(Eb(b));if(Ya(b))a._d=b;else if(B(c))if(0===a._f.length)n(a).invalidFormat=!0,a._d=new Date(NaN);else{for(b=0;ba?-1*Math.round(-1*a): +Math.round(a)}function vc(a,b){l(a,0,0,function(){var a=this.utcOffset(),d="+";0>a&&(a=-a,d="-");return d+W(~~(a/60),2)+b+W(~~a%60,2)})}function Kb(a,b){a=(b||"").match(a);if(null===a)return null;a=((a[a.length-1]||[])+"").match(ud)||["-",0,0];b=+(60*a[1])+m(a[2]);return 0===b?0:"+"===a[0]?b:-b}function Lb(a,b){return b._isUTC?(b=b.clone(),a=(ea(a)||Ya(a)?a.valueOf():r(a).valueOf())-b.valueOf(),b._d.setTime(b._d.valueOf()+a),e.updateOffset(b,!1),b):r(a).local()}function wc(){return this.isValid()? +this._isUTC&&0===this._offset:!1}function ha(a,b){var c=a;Ib(a)?c={ms:a._milliseconds,d:a._days,M:a._months}:xa(a)?(c={},b?c[b]=a:c.milliseconds=a):(b=vd.exec(a))?(c="-"===b[1]?-1:1,c={y:0,d:m(b[T])*c,h:m(b[x])*c,m:m(b[H])*c,s:m(b[Y])*c,ms:m(Jb(1E3*b[ra]))*c}):(b=wd.exec(a))?(c="-"===b[1]?-1:1,c={y:sa(b[2],c),M:sa(b[3],c),w:sa(b[4],c),d:sa(b[5],c),h:sa(b[6],c),m:sa(b[7],c),s:sa(b[8],c)}):null==c?c={}:"object"===typeof c&&("from"in c||"to"in c)&&(b=r(c.from),c=r(c.to),b.isValid()&&c.isValid()?(c=Lb(c, +b),b.isBefore(c)?c=xc(b,c):(c=xc(c,b),c.milliseconds=-c.milliseconds,c.months=-c.months),b=c):b={milliseconds:0,months:0},c={},c.ms=b.milliseconds,c.M=b.months);c=new fb(c);Ib(a)&&u(a,"_locale")&&(c._locale=a._locale);return c}function sa(a,b){a=a&&parseFloat(a.replace(",","."));return(isNaN(a)?0:a)*b}function xc(a,b){var c={milliseconds:0,months:0};c.months=b.month()-a.month()+12*(b.year()-a.year());a.clone().add(c.months,"M").isAfter(b)&&--c.months;c.milliseconds=+b-+a.clone().add(c.months,"M"); +return c}function yc(a,b){return function(c,d){if(null!==d&&!isNaN(+d)){ec(b,"moment()."+b+"(period, number) is deprecated. Please use moment()."+b+"(number, period). See http://momentjs.com/guides/#/warnings/add-inverted-param/ for more info.");var g=c;c=d;d=g}c=ha("string"===typeof c?+c:c,d);zc(this,c,a);return this}}function zc(a,b,c,d){var g=b._milliseconds,f=Jb(b._days);b=Jb(b._months);if(a.isValid()){d=null==d?!0:d;g&&a._d.setTime(a._d.valueOf()+g*c);if(f&&(g=$a(a,"Date")+f*c,a.isValid()))a._d["set"+ +(a._isUTC?"UTC":"")+"Date"](g);b&&jc(a,$a(a,"Month")+b*c);d&&e.updateOffset(a,f||b)}}function Ac(a){if(void 0===a)return this._locale._abbr;a=fa(a);null!=a&&(this._locale=a);return this}function Bc(){return this._locale}function gb(a,b){l(0,[a,a.length],0,b)}function Cc(a,b,c,d,g){if(null==a)return Ma(this,d,g).year;var e=qa(a,d,g);b>e&&(b=e);a=mc(a,b,c,d,g);a=bb(a.year,0,a.dayOfYear);this.year(a.getUTCFullYear());this.month(a.getUTCMonth());this.date(a.getUTCDate());return this}function xd(a,b){b[ra]= +m(1E3*("0."+a))}function Dc(a){return a}function hb(a,b,c,d){var g=fa();b=R().set(d,b);return g[c](b,a)}function Ec(a,b,c){xa(a)&&(b=a,a=void 0);a=a||"";if(null!=b)return hb(a,b,c,"month");var d=[];for(b=0;12>b;b++)d[b]=hb(a,b,c,"month");return d}function Mb(a,b,c,d){"boolean"!==typeof a&&(c=b=a,a=!1);xa(b)&&(c=b,b=void 0);b=b||"";var g=fa();a=a?g._week.dow:0;if(null!=c)return hb(b,(c+a)%7,d,"day");g=[];for(c=0;7>c;c++)g[c]=hb(b,(c+a)%7,d,"day");return g}function Fc(a,b,c,d){b=ha(b,c);a._milliseconds+= +d*b._milliseconds;a._days+=d*b._days;a._months+=d*b._months;return a._bubble()}function Gc(a){return 0>a?Math.floor(a):Math.ceil(a)}function ia(a){return function(){return this.as(a)}}function ta(a){return function(){return this._data[a]}}function yd(a,b,c,d,g){return g.relativeTime(b||1,!!c,a,d)}function ib(){var a=Nb(this._milliseconds)/1E3,b=Nb(this._days),c=Nb(this._months);var d=C(a/60);var g=C(d/60);a%=60;d%=60;var e=C(c/12);c%=12;var f=this.asSeconds();return f?(0>f?"-":"")+"P"+(e?e+"Y":"")+ +(c?c+"M":"")+(b?b+"D":"")+(g||d||a?"T":"")+(g?g+"H":"")+(d?d+"M":"")+(a?a+"S":""):"P0D"}function ua(a,b,c){if("m"===c)return b?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443";if("h"===c)return b?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443";var d=+a;b={mm:b?"\u0445\u0432\u0456\u043b\u0456\u043d\u0430_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d":"\u0445\u0432\u0456\u043b\u0456\u043d\u0443_\u0445\u0432\u0456\u043b\u0456\u043d\u044b_\u0445\u0432\u0456\u043b\u0456\u043d", hh:b?"\u0433\u0430\u0434\u0437\u0456\u043d\u0430_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d":"\u0433\u0430\u0434\u0437\u0456\u043d\u0443_\u0433\u0430\u0434\u0437\u0456\u043d\u044b_\u0433\u0430\u0434\u0437\u0456\u043d",dd:"\u0434\u0437\u0435\u043d\u044c_\u0434\u043d\u0456_\u0434\u0437\u0451\u043d",MM:"\u043c\u0435\u0441\u044f\u0446_\u043c\u0435\u0441\u044f\u0446\u044b_\u043c\u0435\u0441\u044f\u0446\u0430\u045e",yy:"\u0433\u043e\u0434_\u0433\u0430\u0434\u044b_\u0433\u0430\u0434\u043e\u045e"}[c].split("_"); -return a+" "+(1===d%10&&11!==d%100?b[0]:2<=d%10&&4>=d%10&&(10>d%100||20<=d%100)?b[1]:b[2])}function Ob(a,b,c){b={mm:"munutenn",MM:"miz",dd:"devezh"}[c];2===a&&(c={m:"v",b:"v",d:"z"},b=void 0===c[b.charAt(0)]?b:c[b.charAt(0)]+b.substring(1));return a+" "+b}function Ic(a){return 9a&&1!==~~(a/10)}function L(a,b,c,d){var e=a+" ";switch(c){case "s":return b||d?"p\u00e1r sekund":"p\u00e1r sekundami";case "m":return b?"minuta":d?"minutu":"minutou";case "mm":return b||d?e+(Qa(a)?"minuty":"minut"): -e+"minutami";case "h":return b?"hodina":d?"hodinu":"hodinou";case "hh":return b||d?e+(Qa(a)?"hodiny":"hodin"):e+"hodinami";case "d":return b||d?"den":"dnem";case "dd":return b||d?e+(Qa(a)?"dny":"dn\u00ed"):e+"dny";case "M":return b||d?"m\u011bs\u00edc":"m\u011bs\u00edcem";case "MM":return b||d?e+(Qa(a)?"m\u011bs\u00edce":"m\u011bs\u00edc\u016f"):e+"m\u011bs\u00edci";case "y":return b||d?"rok":"rokem";case "yy":return b||d?e+(Qa(a)?"roky":"let"):e+"lety"}}function la(a,b,c,d){a={m:["eine Minute","einer Minute"], -h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[a+" Tage",a+" Tagen"],M:["ein Monat","einem Monat"],MM:[a+" Monate",a+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[a+" Jahre",a+" Jahren"]};return b?a[c][0]:a[c][1]}function ma(a,b,c,d){a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[a+" Tage",a+" Tagen"],M:["ein Monat","einem Monat"],MM:[a+" Monate",a+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[a+" Jahre",a+" Jahren"]};return b?a[c][0]: -a[c][1]}function X(a,b,c,d){a={s:["m\u00f5ne sekundi","m\u00f5ni sekund","paar sekundit"],m:["\u00fche minuti","\u00fcks minut"],mm:[a+" minuti",a+" minutit"],h:["\u00fche tunni","tund aega","\u00fcks tund"],hh:[a+" tunni",a+" tundi"],d:["\u00fche p\u00e4eva","\u00fcks p\u00e4ev"],M:["kuu aja","kuu aega","\u00fcks kuu"],MM:[a+" kuu",a+" kuud"],y:["\u00fche aasta","aasta","\u00fcks aasta"],yy:[a+" aasta",a+" aastat"]};return b?a[c][2]?a[c][2]:a[c][1]:d?a[c][0]:a[c][1]}function M(a,b,c,d){b="";switch(c){case "s":return d? +return a+" "+(1===d%10&&11!==d%100?b[0]:2<=d%10&&4>=d%10&&(10>d%100||20<=d%100)?b[1]:b[2])}function Ob(a,b,c){b={mm:"munutenn",MM:"miz",dd:"devezh"}[c];2===a&&(c={m:"v",b:"v",d:"z"},b=void 0===c[b.charAt(0)]?b:c[b.charAt(0)]+b.substring(1));return a+" "+b}function Hc(a){return 9a&&1!==~~(a/10)}function I(a,b,c,d){var e=a+" ";switch(c){case "s":return b||d?"p\u00e1r sekund":"p\u00e1r sekundami";case "m":return b?"minuta":d?"minutu":"minutou";case "mm":return b||d?e+(Oa(a)?"minuty":"minut"): +e+"minutami";case "h":return b?"hodina":d?"hodinu":"hodinou";case "hh":return b||d?e+(Oa(a)?"hodiny":"hodin"):e+"hodinami";case "d":return b||d?"den":"dnem";case "dd":return b||d?e+(Oa(a)?"dny":"dn\u00ed"):e+"dny";case "M":return b||d?"m\u011bs\u00edc":"m\u011bs\u00edcem";case "MM":return b||d?e+(Oa(a)?"m\u011bs\u00edce":"m\u011bs\u00edc\u016f"):e+"m\u011bs\u00edci";case "y":return b||d?"rok":"rokem";case "yy":return b||d?e+(Oa(a)?"roky":"let"):e+"lety"}}function ja(a,b,c,d){a={m:["eine Minute","einer Minute"], +h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[a+" Tage",a+" Tagen"],M:["ein Monat","einem Monat"],MM:[a+" Monate",a+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[a+" Jahre",a+" Jahren"]};return b?a[c][0]:a[c][1]}function ka(a,b,c,d){a={m:["eine Minute","einer Minute"],h:["eine Stunde","einer Stunde"],d:["ein Tag","einem Tag"],dd:[a+" Tage",a+" Tagen"],M:["ein Monat","einem Monat"],MM:[a+" Monate",a+" Monaten"],y:["ein Jahr","einem Jahr"],yy:[a+" Jahre",a+" Jahren"]};return b?a[c][0]: +a[c][1]}function U(a,b,c,d){a={s:["m\u00f5ne sekundi","m\u00f5ni sekund","paar sekundit"],m:["\u00fche minuti","\u00fcks minut"],mm:[a+" minuti",a+" minutit"],h:["\u00fche tunni","tund aega","\u00fcks tund"],hh:[a+" tunni",a+" tundi"],d:["\u00fche p\u00e4eva","\u00fcks p\u00e4ev"],M:["kuu aja","kuu aega","\u00fcks kuu"],MM:[a+" kuu",a+" kuud"],y:["\u00fche aasta","aasta","\u00fcks aasta"],yy:[a+" aasta",a+" aastat"]};return b?a[c][2]?a[c][2]:a[c][1]:d?a[c][0]:a[c][1]}function J(a,b,c,d){b="";switch(c){case "s":return d? "muutaman sekunnin":"muutama sekunti";case "m":return d?"minuutin":"minuutti";case "mm":b=d?"minuutin":"minuuttia";break;case "h":return d?"tunnin":"tunti";case "hh":b=d?"tunnin":"tuntia";break;case "d":return d?"p\u00e4iv\u00e4n":"p\u00e4iv\u00e4";case "dd":b=d?"p\u00e4iv\u00e4n":"p\u00e4iv\u00e4\u00e4";break;case "M":return d?"kuukauden":"kuukausi";case "MM":b=d?"kuukauden":"kuukautta";break;case "y":return d?"vuoden":"vuosi";case "yy":b=d?"vuoden":"vuotta"}return b=(10>a?d?zd[a]:jb[a]:a)+" "+b} -function ya(a,b,c){var d=a+" ";switch(c){case "m":return b?"jedna minuta":"jedne minute";case "mm":return 1===a?d+"minuta":2===a||3===a||4===a?d+"minute":d+"minuta";case "h":return b?"jedan sat":"jednog sata";case "hh":return 1===a?d+"sat":2===a||3===a||4===a?d+"sata":d+"sati";case "dd":return 1===a?d+"dan":d+"dana";case "MM":return 1===a?d+"mjesec":2===a||3===a||4===a?d+"mjeseca":d+"mjeseci";case "yy":return 1===a?d+"godina":2===a||3===a||4===a?d+"godine":d+"godina"}}function N(a,b,c,d){switch(c){case "s":return d|| +function wa(a,b,c){var d=a+" ";switch(c){case "m":return b?"jedna minuta":"jedne minute";case "mm":return 1===a?d+"minuta":2===a||3===a||4===a?d+"minute":d+"minuta";case "h":return b?"jedan sat":"jednog sata";case "hh":return 1===a?d+"sat":2===a||3===a||4===a?d+"sata":d+"sati";case "dd":return 1===a?d+"dan":d+"dana";case "MM":return 1===a?d+"mjesec":2===a||3===a||4===a?d+"mjeseca":d+"mjeseci";case "yy":return 1===a?d+"godina":2===a||3===a||4===a?d+"godine":d+"godina"}}function K(a,b,c,d){switch(c){case "s":return d|| b?"n\u00e9h\u00e1ny m\u00e1sodperc":"n\u00e9h\u00e1ny m\u00e1sodperce";case "m":return"egy"+(d||b?" perc":" perce");case "mm":return a+(d||b?" perc":" perce");case "h":return"egy"+(d||b?" \u00f3ra":" \u00f3r\u00e1ja");case "hh":return a+(d||b?" \u00f3ra":" \u00f3r\u00e1ja");case "d":return"egy"+(d||b?" nap":" napja");case "dd":return a+(d||b?" nap":" napja");case "M":return"egy"+(d||b?" h\u00f3nap":" h\u00f3napja");case "MM":return a+(d||b?" h\u00f3nap":" h\u00f3napja");case "y":return"egy"+(d||b? -" \u00e9v":" \u00e9ve");case "yy":return a+(d||b?" \u00e9v":" \u00e9ve")}return""}function Ra(a){return 11!==a%100&&1===a%10?!1:!0}function Y(a,b,c,d){var e=a+" ";switch(c){case "s":return b||d?"nokkrar sek\u00fandur":"nokkrum sek\u00fandum";case "m":return b?"m\u00edn\u00fata":"m\u00edn\u00fatu";case "mm":return Ra(a)?e+(b||d?"m\u00edn\u00fatur":"m\u00edn\u00fatum"):b?e+"m\u00edn\u00fata":e+"m\u00edn\u00fatu";case "hh":return Ra(a)?e+(b||d?"klukkustundir":"klukkustundum"):e+"klukkustund";case "d":return b? -"dagur":d?"dag":"degi";case "dd":return Ra(a)?b?e+"dagar":e+(d?"daga":"d\u00f6gum"):b?e+"dagur":e+(d?"dag":"degi");case "M":return b?"m\u00e1nu\u00f0ur":d?"m\u00e1nu\u00f0":"m\u00e1nu\u00f0i";case "MM":return Ra(a)?b?e+"m\u00e1nu\u00f0ir":e+(d?"m\u00e1nu\u00f0i":"m\u00e1nu\u00f0um"):b?e+"m\u00e1nu\u00f0ur":e+(d?"m\u00e1nu\u00f0":"m\u00e1nu\u00f0i");case "y":return b||d?"\u00e1r":"\u00e1ri";case "yy":return Ra(a)?e+(b||d?"\u00e1r":"\u00e1rum"):e+(b||d?"\u00e1r":"\u00e1ri")}}function Sa(a,b,c,d){a= -{m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return b?a[c][0]:a[c][1]}function Ea(a){a=parseInt(a,10);if(isNaN(a))return!1;if(0>a)return!0;if(10>a)return 4<=a&&7>=a?!0:!1;if(100>a){var b=a%10;return 0===b?Ea(a/10):Ea(b)}if(1E4>a){for(;10<=a;)a/=10;return Ea(a)}return Ea(a/1E3)}function Fa(a,b,c,d){return b?na(c)[0]:d?na(c)[1]:na(c)[2]}function na(a){return Ad[a].split("_")}function Ta(a,b,c,d){var e= -a+" ";return 1===a?e+Fa(a,b,c[0],d):b?e+(0===a%10||10a?na(c)[1]:na(c)[0]):d?e+na(c)[1]:e+(0===a%10||10a?na(c)[1]:na(c)[2])}function Jc(a,b,c){return c?1===b%10&&11!==b%100?a[2]:a[3]:1===b%10&&11!==b%100?a[0]:a[1]}function Ua(a,b,c){return a+" "+Jc(Kc[c],a,b)}function Va(a,b,c){return Jc(Kc[c],a,b)}function O(a,b,c,d){d="";if(b)switch(c){case "s":d="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926";break;case "m":d="\u090f\u0915 \u092e\u093f\u0928\u093f\u091f";break;case "mm":d= +" \u00e9v":" \u00e9ve");case "yy":return a+(d||b?" \u00e9v":" \u00e9ve")}return""}function Pa(a){return 11!==a%100&&1===a%10?!1:!0}function V(a,b,c,d){var e=a+" ";switch(c){case "s":return b||d?"nokkrar sek\u00fandur":"nokkrum sek\u00fandum";case "m":return b?"m\u00edn\u00fata":"m\u00edn\u00fatu";case "mm":return Pa(a)?e+(b||d?"m\u00edn\u00fatur":"m\u00edn\u00fatum"):b?e+"m\u00edn\u00fata":e+"m\u00edn\u00fatu";case "hh":return Pa(a)?e+(b||d?"klukkustundir":"klukkustundum"):e+"klukkustund";case "d":return b? +"dagur":d?"dag":"degi";case "dd":return Pa(a)?b?e+"dagar":e+(d?"daga":"d\u00f6gum"):b?e+"dagur":e+(d?"dag":"degi");case "M":return b?"m\u00e1nu\u00f0ur":d?"m\u00e1nu\u00f0":"m\u00e1nu\u00f0i";case "MM":return Pa(a)?b?e+"m\u00e1nu\u00f0ir":e+(d?"m\u00e1nu\u00f0i":"m\u00e1nu\u00f0um"):b?e+"m\u00e1nu\u00f0ur":e+(d?"m\u00e1nu\u00f0":"m\u00e1nu\u00f0i");case "y":return b||d?"\u00e1r":"\u00e1ri";case "yy":return Pa(a)?e+(b||d?"\u00e1r":"\u00e1rum"):e+(b||d?"\u00e1r":"\u00e1ri")}}function Qa(a,b,c,d){a= +{m:["eng Minutt","enger Minutt"],h:["eng Stonn","enger Stonn"],d:["een Dag","engem Dag"],M:["ee Mount","engem Mount"],y:["ee Joer","engem Joer"]};return b?a[c][0]:a[c][1]}function Da(a){a=parseInt(a,10);if(isNaN(a))return!1;if(0>a)return!0;if(10>a)return 4<=a&&7>=a?!0:!1;if(100>a){var b=a%10;return 0===b?Da(a/10):Da(b)}if(1E4>a){for(;10<=a;)a/=10;return Da(a)}return Da(a/1E3)}function Ea(a,b,c,d){return b?la(c)[0]:d?la(c)[1]:la(c)[2]}function la(a){return Ad[a].split("_")}function Ra(a,b,c,d){var e= +a+" ";return 1===a?e+Ea(a,b,c[0],d):b?e+(0===a%10||10a?la(c)[1]:la(c)[0]):d?e+la(c)[1]:e+(0===a%10||10a?la(c)[1]:la(c)[2])}function Ic(a,b,c){return c?1===b%10&&11!==b%100?a[2]:a[3]:1===b%10&&11!==b%100?a[0]:a[1]}function Sa(a,b,c){return a+" "+Ic(Jc[c],a,b)}function Ta(a,b,c){return Ic(Jc[c],a,b)}function L(a,b,c,d){d="";if(b)switch(c){case "s":d="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926";break;case "m":d="\u090f\u0915 \u092e\u093f\u0928\u093f\u091f";break;case "mm":d= "%d \u092e\u093f\u0928\u093f\u091f\u0947";break;case "h":d="\u090f\u0915 \u0924\u093e\u0938";break;case "hh":d="%d \u0924\u093e\u0938";break;case "d":d="\u090f\u0915 \u0926\u093f\u0935\u0938";break;case "dd":d="%d \u0926\u093f\u0935\u0938";break;case "M":d="\u090f\u0915 \u092e\u0939\u093f\u0928\u093e";break;case "MM":d="%d \u092e\u0939\u093f\u0928\u0947";break;case "y":d="\u090f\u0915 \u0935\u0930\u094d\u0937";break;case "yy":d="%d \u0935\u0930\u094d\u0937\u0947"}else switch(c){case "s":d="\u0915\u093e\u0939\u0940 \u0938\u0947\u0915\u0902\u0926\u093e\u0902"; break;case "m":d="\u090f\u0915\u093e \u092e\u093f\u0928\u093f\u091f\u093e";break;case "mm":d="%d \u092e\u093f\u0928\u093f\u091f\u093e\u0902";break;case "h":d="\u090f\u0915\u093e \u0924\u093e\u0938\u093e";break;case "hh":d="%d \u0924\u093e\u0938\u093e\u0902";break;case "d":d="\u090f\u0915\u093e \u0926\u093f\u0935\u0938\u093e";break;case "dd":d="%d \u0926\u093f\u0935\u0938\u093e\u0902";break;case "M":d="\u090f\u0915\u093e \u092e\u0939\u093f\u0928\u094d\u092f\u093e";break;case "MM":d="%d \u092e\u0939\u093f\u0928\u094d\u092f\u093e\u0902"; -break;case "y":d="\u090f\u0915\u093e \u0935\u0930\u094d\u0937\u093e";break;case "yy":d="%d \u0935\u0930\u094d\u0937\u093e\u0902"}return d.replace(/%d/i,a)}function kb(a){return 5>a%10&&1=d%10&&(10>d%100||20<=d%100)?b[1]:b[2])}function P(a,b,c,d){var e=a+" ";switch(c){case "s":return b|| +break;case "y":d="\u090f\u0915\u093e \u0935\u0930\u094d\u0937\u093e";break;case "yy":d="%d \u0935\u0930\u094d\u0937\u093e\u0902"}return d.replace(/%d/i,a)}function kb(a){return 5>a%10&&1=d%10&&(10>d%100||20<=d%100)?b[1]:b[2])}function M(a,b,c,d){var e=a+" ";switch(c){case "s":return b|| d?"p\u00e1r sek\u00fand":"p\u00e1r sekundami";case "m":return b?"min\u00fata":d?"min\u00fatu":"min\u00fatou";case "mm":return b||d?e+(1a?"min\u00faty":"min\u00fat"):e+"min\u00fatami";case "h":return b?"hodina":d?"hodinu":"hodinou";case "hh":return b||d?e+(1a?"hodiny":"hod\u00edn"):e+"hodinami";case "d":return b||d?"de\u0148":"d\u0148om";case "dd":return b||d?e+(1a?"dni":"dn\u00ed"):e+"d\u0148ami";case "M":return b||d?"mesiac":"mesiacom";case "MM":return b||d?e+(1a?"mesiace": -"mesiacov"):e+"mesiacmi";case "y":return b||d?"rok":"rokom";case "yy":return b||d?e+(1a?"roky":"rokov"):e+"rokmi"}}function Q(a,b,c,d){var e=a+" ";switch(c){case "s":return b||d?"nekaj sekund":"nekaj sekundami";case "m":return b?"ena minuta":"eno minuto";case "mm":return 1===a?e+(b?"minuta":"minuto"):2===a?e+(b||d?"minuti":"minutama"):5>a?e+(b||d?"minute":"minutami"):e+(b||d?"minut":"minutami");case "h":return b?"ena ura":"eno uro";case "hh":return 1===a?e+(b?"ura":"uro"):2===a?e+(b||d?"uri": +"mesiacov"):e+"mesiacmi";case "y":return b||d?"rok":"rokom";case "yy":return b||d?e+(1a?"roky":"rokov"):e+"rokmi"}}function N(a,b,c,d){var e=a+" ";switch(c){case "s":return b||d?"nekaj sekund":"nekaj sekundami";case "m":return b?"ena minuta":"eno minuto";case "mm":return 1===a?e+(b?"minuta":"minuto"):2===a?e+(b||d?"minuti":"minutama"):5>a?e+(b||d?"minute":"minutami"):e+(b||d?"minut":"minutami");case "h":return b?"ena ura":"eno uro";case "hh":return 1===a?e+(b?"ura":"uro"):2===a?e+(b||d?"uri": "urama"):5>a?e+(b||d?"ure":"urami"):e+(b||d?"ur":"urami");case "d":return b||d?"en dan":"enim dnem";case "dd":return 1===a?e+(b||d?"dan":"dnem"):2===a?e+(b||d?"dni":"dnevoma"):e+(b||d?"dni":"dnevi");case "M":return b||d?"en mesec":"enim mesecem";case "MM":return 1===a?e+(b||d?"mesec":"mesecem"):2===a?e+(b||d?"meseca":"mesecema"):5>a?e+(b||d?"mesece":"meseci"):e+(b||d?"mesecev":"meseci");case "y":return b||d?"eno leto":"enim letom";case "yy":return 1===a?e+(b||d?"leto":"letom"):2===a?e+(b||d?"leti": -"letoma"):5>a?e+(b||d?"leta":"leti"):e+(b||d?"let":"leti")}}function Xa(a,b,c,d){b=Math.floor(a%1E3/100);d=Math.floor(a%100/10);a%=10;var e="";0a?e+(b||d?"leta":"leti"):e+(b||d?"let":"leti")}}function Va(a,b,c,d){b=Math.floor(a%1E3/100);d=Math.floor(a%100/10);a%=10;var e="";0=d%10&&(10>d%100||20<=d%100)?b[1]:b[2])}function Ja(a){return function(){return a+"\u043e"+(11===this.hours()?"\u0431":"")+"] LT"}}var ac,dd=Array.prototype.some?Array.prototype.some:function(a){for(var b=Object(this),c=b.length>>>0, -d=0;d=a?""+a:"+"+a});k(0,["YY",2],0,function(){return this.year()%100});k(0,["YYYY",4],0,"year");k(0,["YYYYY",5],0,"year");k(0,["YYYYYY",6,!0],0,"year");C("year","y");B.year=1;h("Y",ob);h("YY",u,H);h("YYYY",Rb,Qb);h("YYYYY",nb,lb);h("YYYYYY",nb,lb);r(["YYYYY","YYYYYY"],J);r("YYYY",function(a,b){b[J]=2===a.length?e.parseTwoDigitYear(a):l(a)});r("YY",function(a,b){b[J]=e.parseTwoDigitYear(a)});r("Y",function(a, -b){b[J]=parseInt(a,10)});e.parseTwoDigitYear=function(a){return l(a)+(68this?this:a:Za()});wc("Z",":");wc("ZZ","");h("Z",pb);h("ZZ",pb);r(["Z","ZZ"],function(a,b,c){c._useUTC=!0;c._tzm=Kb(pb,a)});var ud=/([\+\-]|\d\d)/gi;e.updateOffset=function(){};var vd=/^(\-)?(?:(\d*)[. ])?(\d+)\:(\d+)(?:\:(\d+)(\.\d*)?)?$/, -wd=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;ja.fn=fb.prototype;var Hd=zc(1,"add"),Id=zc(-1,"subtract");e.defaultFormat="YYYY-MM-DDTHH:mm:ssZ";e.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Rc=F("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(a){return void 0===a?this.localeData():this.locale(a)}); -k(0,["gg",2],0,function(){return this.weekYear()%100});k(0,["GG",2],0,function(){return this.isoWeekYear()%100});gb("gggg","weekYear");gb("ggggg","weekYear");gb("GGGG","isoWeekYear");gb("GGGGG","isoWeekYear");C("weekYear","gg");C("isoWeekYear","GG");B.weekYear=1;B.isoWeekYear=1;h("G",ob);h("g",ob);h("GG",u,H);h("gg",u,H);h("GGGG",Rb,Qb);h("gggg",Rb,Qb);h("GGGGG",nb,lb);h("ggggg",nb,lb);Na(["gggg","ggggg","GGGG","GGGGG"],function(a,b,c,d){b[d.substr(0,2)]=l(a)});Na(["gg","GG"],function(a,b,c,d){b[d]= -e.parseTwoDigitYear(a)});k("Q",0,"Qo","quarter");C("quarter","Q");B.quarter=7;h("Q",Lc);r("Q",function(a,b){b[aa]=3*(l(a)-1)});k("D",["DD",2],"Do","date");C("date","D");B.date=9;h("D",u);h("DD",u,H);h("Do",function(a,b){return a?b._ordinalParse:b._ordinalParseLenient});r(["D","DD"],W);r("Do",function(a,b){b[W]=l(a.match(u)[0],10)});var Sc=za("Date",!0);k("DDD",["DDDD",3],"DDDo","dayOfYear");C("dayOfYear","DDD");B.dayOfYear=4;h("DDD",mb);h("DDDD",Mc);r(["DDD","DDDD"],function(a,b,c){c._dayOfYear=l(a)}); -k("m",["mm",2],0,"minute");C("minute","m");B.minute=14;h("m",u);h("mm",u,H);r(["m","mm"],K);var Jd=za("Minutes",!1);k("s",["ss",2],0,"second");C("second","s");B.second=15;h("s",u);h("ss",u,H);r(["s","ss"],ba);var Kd=za("Seconds",!1);k("S",0,0,function(){return~~(this.millisecond()/100)});k(0,["SS",2],0,function(){return~~(this.millisecond()/10)});k(0,["SSS",3],0,"millisecond");k(0,["SSSS",4],0,function(){return 10*this.millisecond()});k(0,["SSSSS",5],0,function(){return 100*this.millisecond()});k(0, -["SSSSSS",6],0,function(){return 1E3*this.millisecond()});k(0,["SSSSSSS",7],0,function(){return 1E4*this.millisecond()});k(0,["SSSSSSSS",8],0,function(){return 1E5*this.millisecond()});k(0,["SSSSSSSSS",9],0,function(){return 1E6*this.millisecond()});C("millisecond","ms");B.millisecond=16;h("S",mb,Lc);h("SS",mb,H);h("SSS",mb,Mc);var oa;for(oa="SSSS";9>=oa.length;oa+="S")h(oa,Cd);for(oa="S";9>=oa.length;oa+="S")r(oa,xd);var Ld=za("Milliseconds",!1);k("z",0,0,"zoneAbbr");k("zz",0,0,"zoneName");var f= -Ka.prototype;f.add=Hd;f.calendar=function(a,b){var c=a||t(),d=Lb(c,this).startOf("day"),d=e.calendarFormat(this,d)||"sameElse",g=b&&(V(b[d])?b[d].call(this,c):b[d]);return this.format(g||this.localeData().calendar(d,this,t(c)))};f.clone=function(){return new Ka(this)};f.diff=function(a,b,c){var d;if(!this.isValid())return NaN;a=Lb(a,this);if(!a.isValid())return NaN;d=6E4*(a.utcOffset()-this.utcOffset());b=G(b);if("year"===b||"month"===b||"quarter"===b){d=12*(a.year()-this.year())+(a.month()-this.month()); -var e=this.clone().add(d,"months"),f;0>a-e?(f=this.clone().add(d-1,"months"),a=(a-e)/(e-f)):(f=this.clone().add(d+1,"months"),a=(a-e)/(f-e));a=-(d+a)||0;"quarter"===b?a/=3:"year"===b&&(a/=12)}else a=this-a,a="second"===b?a/1E3:"minute"===b?a/6E4:"hour"===b?a/36E5:"day"===b?(a-d)/864E5:"week"===b?(a-d)/6048E5:a;return c?a:E(a)};f.endOf=function(a){a=G(a);if(void 0===a||"millisecond"===a)return this;"date"===a&&(a="day");return this.startOf(a).add(1,"isoWeek"===a?"week":a).subtract(1,"ms")};f.format= -function(a){a||(a=this.isUtc()?e.defaultFormatUtc:e.defaultFormat);a=wb(this,a);return this.localeData().postformat(a)};f.from=function(a,b){return this.isValid()&&(ha(a)&&a.isValid()||t(a).isValid())?ja({to:this,from:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()};f.fromNow=function(a){return this.from(t(),a)};f.to=function(a,b){return this.isValid()&&(ha(a)&&a.isValid()||t(a).isValid())?ja({from:this,to:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}; -f.toNow=function(a){return this.to(t(),a)};f.get=function(a){a=G(a);return V(this[a])?this[a]():this};f.invalidAt=function(){return n(this).overflow};f.isAfter=function(a,b){var c=ha(a)?a:t(a);if(!this.isValid()||!c.isValid())return!1;b=G(D(b)?"millisecond":b);return"millisecond"===b?this.valueOf()>c.valueOf():c.valueOf()=d%10&&(10>d%100||20<=d%100)?b[1]:b[2])}function Ia(a){return function(){return a+"\u043e"+(11===this.hours()?"\u0431":"")+"] LT"}}var dd=Array.prototype.some?Array.prototype.some:function(a){for(var b=Object(this),c=b.length>>>0,d=0;d< +c;d++)if(d in b&&a.call(this,b[d],d,b))return!0;return!1},sb=e.momentProperties=[],tb=!1,fc={};e.suppressDeprecationWarnings=!1;e.deprecationHandler=null;var Bd=Object.keys?Object.keys:function(a){var b,c=[];for(b in a)u(a,b)&&c.push(b);return c},Ka={},y={},hc=/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|YYYYYY|YYYYY|YYYY|YY|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,ab=/(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,xb={},za= +{},Kc=/\d/,F=/\d\d/,Lc=/\d{3}/,Qb=/\d{4}/,lb=/[+-]?\d{6}/,t=/\d\d?/,Mc=/\d\d\d\d?/,Nc=/\d\d\d\d\d\d?/,mb=/\d{1,3}/,Rb=/\d{1,4}/,nb=/[+-]?\d{1,6}/,Cd=/\d+/,ob=/[+-]?\d+/,Dd=/Z|[+-]\d\d:?\d\d/gi,pb=/Z|[+-]\d\d(?::?\d\d)?/gi,Wa=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,yb={},zb={},G=0,X=1,T=2,x=3,H=4,Y=5,ra=6,ld=7,md=8,w=Array.prototype.indexOf?Array.prototype.indexOf:function(a){var b;for(b=0;b=a?""+a:"+"+a});l(0,["YY",2],0,function(){return this.year()%100});l(0,["YYYY",4],0,"year");l(0,["YYYYY",5],0,"year");l(0,["YYYYYY",6,!0],0,"year");z("year","y");y.year=1;h("Y",ob);h("YY",t,F);h("YYYY",Rb,Qb);h("YYYYY",nb,lb);h("YYYYYY",nb,lb);q(["YYYYY","YYYYYY"],G);q("YYYY",function(a,b){b[G]=2===a.length?e.parseTwoDigitYear(a):m(a)});q("YY",function(a,b){b[G]=e.parseTwoDigitYear(a)});q("Y",function(a,b){b[G]= +parseInt(a,10)});e.parseTwoDigitYear=function(a){return m(a)+(68this?this:a:Za()});vc("Z",":");vc("ZZ","");h("Z",pb);h("ZZ",pb);q(["Z","ZZ"],function(a,b,c){c._useUTC=!0;c._tzm=Kb(pb,a)});var ud=/([\+\-]|\d\d)/gi;e.updateOffset=function(){};var vd=/^(\-)?(?:(\d*)[. ])?(\d+):(\d+)(?::(\d+)(\.\d*)?)?$/, +wd=/^(-)?P(?:(-?[0-9,.]*)Y)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)W)?(?:(-?[0-9,.]*)D)?(?:T(?:(-?[0-9,.]*)H)?(?:(-?[0-9,.]*)M)?(?:(-?[0-9,.]*)S)?)?$/;ha.fn=fb.prototype;var Hd=yc(1,"add"),Id=yc(-1,"subtract");e.defaultFormat="YYYY-MM-DDTHH:mm:ssZ";e.defaultFormatUtc="YYYY-MM-DDTHH:mm:ss[Z]";var Qc=D("moment().lang() is deprecated. Instead, use moment().localeData() to get the language configuration. Use moment().locale() to change languages.",function(a){return void 0===a?this.localeData():this.locale(a)}); +l(0,["gg",2],0,function(){return this.weekYear()%100});l(0,["GG",2],0,function(){return this.isoWeekYear()%100});gb("gggg","weekYear");gb("ggggg","weekYear");gb("GGGG","isoWeekYear");gb("GGGGG","isoWeekYear");z("weekYear","gg");z("isoWeekYear","GG");y.weekYear=1;y.isoWeekYear=1;h("G",ob);h("g",ob);h("GG",t,F);h("gg",t,F);h("GGGG",Rb,Qb);h("gggg",Rb,Qb);h("GGGGG",nb,lb);h("ggggg",nb,lb);La(["gggg","ggggg","GGGG","GGGGG"],function(a,b,c,d){b[d.substr(0,2)]=m(a)});La(["gg","GG"],function(a,b,c,d){b[d]= +e.parseTwoDigitYear(a)});l("Q",0,"Qo","quarter");z("quarter","Q");y.quarter=7;h("Q",Kc);q("Q",function(a,b){b[X]=3*(m(a)-1)});l("D",["DD",2],"Do","date");z("date","D");y.date=9;h("D",t);h("DD",t,F);h("Do",function(a,b){return a?b._ordinalParse:b._ordinalParseLenient});q(["D","DD"],T);q("Do",function(a,b){b[T]=m(a.match(t)[0],10)});var Rc=ya("Date",!0);l("DDD",["DDDD",3],"DDDo","dayOfYear");z("dayOfYear","DDD");y.dayOfYear=4;h("DDD",mb);h("DDDD",Lc);q(["DDD","DDDD"],function(a,b,c){c._dayOfYear=m(a)}); +l("m",["mm",2],0,"minute");z("minute","m");y.minute=14;h("m",t);h("mm",t,F);q(["m","mm"],H);var Jd=ya("Minutes",!1);l("s",["ss",2],0,"second");z("second","s");y.second=15;h("s",t);h("ss",t,F);q(["s","ss"],Y);var Kd=ya("Seconds",!1);l("S",0,0,function(){return~~(this.millisecond()/100)});l(0,["SS",2],0,function(){return~~(this.millisecond()/10)});l(0,["SSS",3],0,"millisecond");l(0,["SSSS",4],0,function(){return 10*this.millisecond()});l(0,["SSSSS",5],0,function(){return 100*this.millisecond()});l(0, +["SSSSSS",6],0,function(){return 1E3*this.millisecond()});l(0,["SSSSSSS",7],0,function(){return 1E4*this.millisecond()});l(0,["SSSSSSSS",8],0,function(){return 1E5*this.millisecond()});l(0,["SSSSSSSSS",9],0,function(){return 1E6*this.millisecond()});z("millisecond","ms");y.millisecond=16;h("S",mb,Kc);h("SS",mb,F);h("SSS",mb,Lc);var ma;for(ma="SSSS";9>=ma.length;ma+="S")h(ma,Cd);for(ma="S";9>=ma.length;ma+="S")q(ma,xd);var Ld=ya("Milliseconds",!1);l("z",0,0,"zoneAbbr");l("zz",0,0,"zoneName");var f= +Ja.prototype;f.add=Hd;f.calendar=function(a,b){a=a||r();var c=Lb(a,this).startOf("day");c=e.calendarFormat(this,c)||"sameElse";b=b&&(S(b[c])?b[c].call(this,a):b[c]);return this.format(b||this.localeData().calendar(c,this,r(a)))};f.clone=function(){return new Ja(this)};f.diff=function(a,b,c){if(!this.isValid())return NaN;a=Lb(a,this);if(!a.isValid())return NaN;var d=6E4*(a.utcOffset()-this.utcOffset());b=E(b);if("year"===b||"month"===b||"quarter"===b){d=12*(a.year()-this.year())+(a.month()-this.month()); +var e=this.clone().add(d,"months");if(0>a-e){var f=this.clone().add(d-1,"months");a=(a-e)/(e-f)}else f=this.clone().add(d+1,"months"),a=(a-e)/(f-e);a=-(d+a)||0;"quarter"===b?a/=3:"year"===b&&(a/=12)}else a=this-a,a="second"===b?a/1E3:"minute"===b?a/6E4:"hour"===b?a/36E5:"day"===b?(a-d)/864E5:"week"===b?(a-d)/6048E5:a;return c?a:C(a)};f.endOf=function(a){a=E(a);if(void 0===a||"millisecond"===a)return this;"date"===a&&(a="day");return this.startOf(a).add(1,"isoWeek"===a?"week":a).subtract(1,"ms")}; +f.format=function(a){a||(a=this.isUtc()?e.defaultFormatUtc:e.defaultFormat);a=wb(this,a);return this.localeData().postformat(a)};f.from=function(a,b){return this.isValid()&&(ea(a)&&a.isValid()||r(a).isValid())?ha({to:this,from:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()};f.fromNow=function(a){return this.from(r(),a)};f.to=function(a,b){return this.isValid()&&(ea(a)&&a.isValid()||r(a).isValid())?ha({from:this,to:a}).locale(this.locale()).humanize(!b):this.localeData().invalidDate()}; +f.toNow=function(a){return this.to(r(),a)};f.get=function(a){a=E(a);return S(this[a])?this[a]():this};f.invalidAt=function(){return n(this).overflow};f.isAfter=function(a,b){a=ea(a)?a:r(a);if(!this.isValid()||!a.isValid())return!1;b=E(A(b)?"millisecond":b);return"millisecond"===b?this.valueOf()>a.valueOf():a.valueOf()=a.year()?V(Date.prototype.toISOString)?this.toDate().toISOString():wb(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):wb(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")};f.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var a="moment",b="";this.isLocal()||(a=0===this.utcOffset()? -"moment.utc":"moment.parseZone",b="Z");var a="["+a+'("]',c=0=this.year()?"YYYY":"YYYYYY";return this.format(a+c+"-MM-DD[T]HH:mm:ss.SSS"+(b+'[")]'))};f.toJSON=function(){return this.isValid()?this.toISOString():null};f.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")};f.unix=function(){return Math.floor(this.valueOf()/1E3)};f.valueOf=function(){return this._d.valueOf()-6E4*(this._offset||0)};f.creationData=function(){return{input:this._i, -format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}};f.year=Qc;f.isLeapYear=function(){return Ba(this.year())};f.weekYear=function(a){return Dc.call(this,a,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)};f.isoWeekYear=function(a){return Dc.call(this,a,this.isoWeek(),this.isoWeekday(),1,4)};f.quarter=f.quarters=function(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)};f.month=lc;f.daysInMonth=function(){return Ab(this.year(), -this.month())};f.week=f.weeks=function(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")};f.isoWeek=f.isoWeeks=function(a){var b=Oa(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")};f.weeksInYear=function(){var a=this.localeData()._week;return sa(this.year(),a.dow,a.doy)};f.isoWeeksInYear=function(){return sa(this.year(),1,4)};f.date=Sc;f.day=f.days=function(a){if(!this.isValid())return null!=a?this:NaN;var b=this._isUTC?this._d.getUTCDay():this._d.getDay();if(null!= +hours:this.hours(),minutes:this.minutes(),seconds:this.seconds(),milliseconds:this.milliseconds()}};f.toDate=function(){return new Date(this.valueOf())};f.toISOString=function(){var a=this.clone().utc();return 0=a.year()?S(Date.prototype.toISOString)?this.toDate().toISOString():wb(a,"YYYY-MM-DD[T]HH:mm:ss.SSS[Z]"):wb(a,"YYYYYY-MM-DD[T]HH:mm:ss.SSS[Z]")};f.inspect=function(){if(!this.isValid())return"moment.invalid(/* "+this._i+" */)";var a="moment",b="";this.isLocal()||(a=0===this.utcOffset()? +"moment.utc":"moment.parseZone",b="Z");a="["+a+'("]';var c=0=this.year()?"YYYY":"YYYYYY";return this.format(a+c+"-MM-DD[T]HH:mm:ss.SSS"+(b+'[")]'))};f.toJSON=function(){return this.isValid()?this.toISOString():null};f.toString=function(){return this.clone().locale("en").format("ddd MMM DD YYYY HH:mm:ss [GMT]ZZ")};f.unix=function(){return Math.floor(this.valueOf()/1E3)};f.valueOf=function(){return this._d.valueOf()-6E4*(this._offset||0)};f.creationData=function(){return{input:this._i, +format:this._f,locale:this._locale,isUTC:this._isUTC,strict:this._strict}};f.year=Pc;f.isLeapYear=function(){return Aa(this.year())};f.weekYear=function(a){return Cc.call(this,a,this.week(),this.weekday(),this.localeData()._week.dow,this.localeData()._week.doy)};f.isoWeekYear=function(a){return Cc.call(this,a,this.isoWeek(),this.isoWeekday(),1,4)};f.quarter=f.quarters=function(a){return null==a?Math.ceil((this.month()+1)/3):this.month(3*(a-1)+this.month()%3)};f.month=kc;f.daysInMonth=function(){return Ab(this.year(), +this.month())};f.week=f.weeks=function(a){var b=this.localeData().week(this);return null==a?b:this.add(7*(a-b),"d")};f.isoWeek=f.isoWeeks=function(a){var b=Ma(this,1,4).week;return null==a?b:this.add(7*(a-b),"d")};f.weeksInYear=function(){var a=this.localeData()._week;return qa(this.year(),a.dow,a.doy)};f.isoWeeksInYear=function(){return qa(this.year(),1,4)};f.date=Rc;f.day=f.days=function(a){if(!this.isValid())return null!=a?this:NaN;var b=this._isUTC?this._d.getUTCDay():this._d.getDay();if(null!= a){var c=this.localeData();"string"===typeof a&&(isNaN(a)?(a=c.weekdaysParse(a),a="number"===typeof a?a:null):a=parseInt(a,10));return this.add(a-b,"d")}return b};f.weekday=function(a){if(!this.isValid())return null!=a?this:NaN;var b=(this.day()+7-this.localeData()._week.dow)%7;return null==a?b:this.add(a-b,"d")};f.isoWeekday=function(a){if(!this.isValid())return null!=a?this:NaN;if(null!=a){var b=this.localeData();a="string"===typeof a?b.weekdaysParse(a)%7||7:isNaN(a)?null:a;return this.day(this.day()% 7?a:a-7)}return this.day()||7};f.dayOfYear=function(a){var b=Math.round((this.clone().startOf("day")-this.clone().startOf("year"))/864E5)+1;return null==a?b:this.add(a-b,"d")};f.hour=f.hours=Ed;f.minute=f.minutes=Jd;f.second=f.seconds=Kd;f.millisecond=f.milliseconds=Ld;f.utcOffset=function(a,b){var c=this._offset||0,d;if(!this.isValid())return null!=a?this:NaN;if(null!=a){if("string"===typeof a){if(a=Kb(pb,a),null===a)return this}else 16>Math.abs(a)&&(a*=60);!this._isUTC&&b&&(d=15*-Math.round(this._d.getTimezoneOffset()/ -15));this._offset=a;this._isUTC=!0;null!=d&&this.add(d,"m");c!==a&&(!b||this._changeInProgress?Ac(this,ja(a-c,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,e.updateOffset(this,!0),this._changeInProgress=null));return this}return this._isUTC?c:15*-Math.round(this._d.getTimezoneOffset()/15)};f.utc=function(a){return this.utcOffset(0,a)};f.local=function(a){this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(15*-Math.round(this._d.getTimezoneOffset()/15),"m"));return this}; -f.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm);else if("string"===typeof this._i){var a=Kb(Dd,this._i);null!=a?this.utcOffset(a):this.utcOffset(0,!0)}return this};f.hasAlignedHourOffset=function(a){if(!this.isValid())return!1;a=a?t(a).utcOffset():0;return 0===(this.utcOffset()-a)%60};f.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()};f.isLocal=function(){return this.isValid()?!this._isUTC:!1};f.isUtcOffset= -function(){return this.isValid()?this._isUTC:!1};f.isUtc=xc;f.isUTC=xc;f.zoneAbbr=function(){return this._isUTC?"UTC":""};f.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""};f.dates=F("dates accessor is deprecated. Use date instead.",Sc);f.months=F("months accessor is deprecated. Use month instead",lc);f.years=F("years accessor is deprecated. Use year instead",Qc);f.zone=F("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/", -function(a,b){return null!=a?("string"!==typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()});f.isDSTShifted=F("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!D(this._isDSTShifted))return this._isDSTShifted;var a={};rb(a,this);a=uc(a);if(a._a){var b=a._isUTC?U(a._a):t(a._a);this._isDSTShifted=this.isValid()&&0d;++d)e=U([2E3,d]),this._shortMonthsParse[d]=this.monthsShort(e,"").toLocaleLowerCase(),this._longMonthsParse[d]=this.months(e, -"").toLocaleLowerCase();if(c)b="MMM"===b?z.call(this._shortMonthsParse,a):z.call(this._longMonthsParse,a);else if("MMM"===b){b=z.call(this._shortMonthsParse,a);if(-1!==b)break a;b=z.call(this._longMonthsParse,a)}else{b=z.call(this._longMonthsParse,a);if(-1!==b)break a;b=z.call(this._shortMonthsParse,a)}b=-1!==b?b:null}return b}this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]);for(d=0;12>d;d++)if(e=U([2E3,d]),c&&!this._longMonthsParse[d]&&(this._longMonthsParse[d]= -new RegExp("^"+this.months(e,"").replace(".","")+"$","i"),this._shortMonthsParse[d]=new RegExp("^"+this.monthsShort(e,"").replace(".","")+"$","i")),c||this._monthsParse[d]||(e="^"+this.months(e,"")+"|^"+this.monthsShort(e,""),this._monthsParse[d]=new RegExp(e.replace(".",""),"i")),c&&"MMMM"===b&&this._longMonthsParse[d].test(a)||c&&"MMM"===b&&this._shortMonthsParse[d].test(a)||!c&&this._monthsParse[d].test(a))return d};q.monthsRegex=function(a){if(this._monthsParseExact)return v(this,"_monthsRegex")|| -mc.call(this),a?this._monthsStrictRegex:this._monthsRegex;v(this,"_monthsRegex")||(this._monthsRegex=Ya);return this._monthsStrictRegex&&a?this._monthsStrictRegex:this._monthsRegex};q.monthsShortRegex=function(a){if(this._monthsParseExact)return v(this,"_monthsRegex")||mc.call(this),a?this._monthsShortStrictRegex:this._monthsShortRegex;v(this,"_monthsShortRegex")||(this._monthsShortRegex=Ya);return this._monthsShortStrictRegex&&a?this._monthsShortStrictRegex:this._monthsShortRegex};q.week=function(a){return Oa(a, -this._week.dow,this._week.doy).week};q.firstDayOfYear=function(){return this._week.doy};q.firstDayOfWeek=function(){return this._week.dow};q.weekdays=function(a,b){return a?p(this._weekdays)?this._weekdays[a.day()]:this._weekdays[this._weekdays.isFormat.test(b)?"format":"standalone"][a.day()]:this._weekdays};q.weekdaysMin=function(a){return a?this._weekdaysMin[a.day()]:this._weekdaysMin};q.weekdaysShort=function(a){return a?this._weekdaysShort[a.day()]:this._weekdaysShort};q.weekdaysParse=function(a, -b,c){var d,e;if(this._weekdaysParseExact)return kd.call(this,a,b,c);this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]);for(d=0;7>d;d++)if(e=U([2E3,1]).day(d),c&&!this._fullWeekdaysParse[d]&&(this._fullWeekdaysParse[d]=new RegExp("^"+this.weekdays(e,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[d]=new RegExp("^"+this.weekdaysShort(e,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[d]=new RegExp("^"+this.weekdaysMin(e, -"").replace(".",".?")+"$","i")),this._weekdaysParse[d]||(e="^"+this.weekdays(e,"")+"|^"+this.weekdaysShort(e,"")+"|^"+this.weekdaysMin(e,""),this._weekdaysParse[d]=new RegExp(e.replace(".",""),"i")),c&&"dddd"===b&&this._fullWeekdaysParse[d].test(a)||c&&"ddd"===b&&this._shortWeekdaysParse[d].test(a)||c&&"dd"===b&&this._minWeekdaysParse[d].test(a)||!c&&this._weekdaysParse[d].test(a))return d};q.weekdaysRegex=function(a){if(this._weekdaysParseExact)return v(this,"_weekdaysRegex")||Bb.call(this),a?this._weekdaysStrictRegex: -this._weekdaysRegex;v(this,"_weekdaysRegex")||(this._weekdaysRegex=Ya);return this._weekdaysStrictRegex&&a?this._weekdaysStrictRegex:this._weekdaysRegex};q.weekdaysShortRegex=function(a){if(this._weekdaysParseExact)return v(this,"_weekdaysRegex")||Bb.call(this),a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex;v(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Ya);return this._weekdaysShortStrictRegex&&a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex};q.weekdaysMinRegex=function(a){if(this._weekdaysParseExact)return v(this, -"_weekdaysRegex")||Bb.call(this),a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex;v(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Ya);return this._weekdaysMinStrictRegex&&a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex};q.isPM=function(a){return"p"===(a+"").toLowerCase().charAt(0)};q.meridiem=function(a,b,c){return 11=a&&0>=b&&0>=c||(a+=864E5*Hc(146097*c/4800+b),c=b=0);d.milliseconds=a%1E3;a=E(a/1E3);d.seconds=a%60;a=E(a/60);d.minutes=a%60;a=E(a/60);d.hours=a%24;b+=E(a/24);a=E(4800*b/146097);c+=a;b-=Hc(146097*a/4800);a=E(c/12);d.days=b;d.months=c%12;d.years=a;return this};m.get=function(a){a=G(a);return this[a+"s"]()};m.milliseconds=Ud;m.seconds=Vd;m.minutes=Wd;m.hours=Xd;m.days=Yd;m.weeks=function(){return E(this.days()/ -7)};m.months=Zd;m.years=$d;m.humanize=function(a){var b=this.localeData(),c;c=!a;var d=ja(this).abs(),e=pa(d.as("s")),f=pa(d.as("m")),h=pa(d.as("h")),k=pa(d.as("d")),l=pa(d.as("M")),d=pa(d.as("y")),e=e=f&&["m"]||f=h&&["h"]||h=k&&["d"]||k=l&&["M"]||l=d&&["y"]||["yy",d];e[2]=c;e[3]=0<+this;e[4]=b;c=yd.apply(null,e);a&&(c=b.pastFuture(+this,c));return b.postformat(c)};m.toISOString=ib;m.toString=ib;m.toJSON= -ib;m.locale=Bc;m.localeData=Cc;m.toIsoString=F("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ib);m.lang=Rc;k("X",0,0,"unix");k("x",0,0,"valueOf");h("x",ob);h("X",/[+-]?\d+(\.\d{1,3})?/);r("X",function(a,b,c){c._d=new Date(1E3*parseFloat(a,10))});r("x",function(a,b,c){c._d=new Date(l(a))});e.version="2.16.0";ac=t;e.fn=f;e.min=function(){var a=[].slice.call(arguments,0);return vc("isBefore",a)};e.max=function(){var a=[].slice.call(arguments,0);return vc("isAfter", -a)};e.now=function(){return Date.now?Date.now():+new Date};e.utc=U;e.unix=function(a){return t(1E3*a)};e.months=function(a,b){return Fc(a,b,"months")};e.isDate=I;e.locale=Ca;e.invalid=Za;e.duration=ja;e.isMoment=ha;e.weekdays=function(a,b,c){return Mb(a,b,c,"weekdays")};e.parseZone=function(){return t.apply(null,arguments).parseZone()};e.localeData=ia;e.isDuration=Ib;e.monthsShort=function(a,b){return Fc(a,b,"monthsShort")};e.weekdaysMin=function(a,b,c){return Mb(a,b,c,"weekdaysMin")};e.defineLocale= -Db;e.updateLocale=function(a,b){if(null!=b){var c;c=sc;null!=w[a]&&(c=w[a]._config);b=hc(c,b);c=new ub(b);c.parentLocale=w[a];w[a]=c;Ca(a)}else null!=w[a]&&(null!=w[a].parentLocale?w[a]=w[a].parentLocale:null!=w[a]&&delete w[a]);return w[a]};e.locales=function(){return Bd(w)};e.weekdaysShort=function(a,b,c){return Mb(a,b,c,"weekdaysShort")};e.normalizeUnits=G;e.relativeTimeRounding=function(a){return void 0===a?pa:"function"===typeof a?(pa=a,!0):!1};e.relativeTimeThreshold=function(a,b){if(void 0=== -qa[a])return!1;if(void 0===b)return qa[a];qa[a]=b;return!0};e.calendarFormat=function(a,b){var c=a.diff(b,"days",!0);return-6>c?"sameElse":-1>c?"lastWeek":0>c?"lastDay":1>c?"sameDay":2>c?"nextDay":7>c?"nextWeek":"sameElse"};e.prototype=f;e.defineLocale("af",{months:"Januarie Februarie Maart April Mei Junie Julie Augustus September Oktober November Desember".split(" "),monthsShort:"Jan Feb Mrt Apr Mei Jun Jul Aug Sep Okt Nov Des".split(" "),weekdays:"Sondag Maandag Dinsdag Woensdag Donderdag Vrydag Saterdag".split(" "), -weekdaysShort:"Son Maa Din Woe Don Vry Sat".split(" "),weekdaysMin:"So Ma Di Wo Do Vr Sa".split(" "),meridiemParse:/vm|nm/i,isPM:function(a){return/^nm$/i.test(a)},meridiem:function(a,b,c){return 12>a?c?"vm":"VM":c?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[M\u00f4re om] LT",nextWeek:"dddd [om] LT",lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"}, -relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(a){return a+(1===a||8===a||20<=a?"ste":"de")},week:{dow:1,doy:4}});e.defineLocale("ar-dz",{months:"\u062c\u0627\u0646\u0641\u064a \u0641\u064a\u0641\u0631\u064a \u0645\u0627\u0631\u0633 \u0623\u0641\u0631\u064a\u0644 \u0645\u0627\u064a \u062c\u0648\u0627\u0646 \u062c\u0648\u064a\u0644\u064a\u0629 \u0623\u0648\u062a \u0633\u0628\u062a\u0645\u0628\u0631 \u0623\u0643\u062a\u0648\u0628\u0631 \u0646\u0648\u0641\u0645\u0628\u0631 \u062f\u064a\u0633\u0645\u0628\u0631".split(" "), +15));this._offset=a;this._isUTC=!0;null!=d&&this.add(d,"m");c!==a&&(!b||this._changeInProgress?zc(this,ha(a-c,"m"),1,!1):this._changeInProgress||(this._changeInProgress=!0,e.updateOffset(this,!0),this._changeInProgress=null));return this}return this._isUTC?c:15*-Math.round(this._d.getTimezoneOffset()/15)};f.utc=function(a){return this.utcOffset(0,a)};f.local=function(a){this._isUTC&&(this.utcOffset(0,a),this._isUTC=!1,a&&this.subtract(15*-Math.round(this._d.getTimezoneOffset()/15),"m"));return this}; +f.parseZone=function(){if(null!=this._tzm)this.utcOffset(this._tzm);else if("string"===typeof this._i){var a=Kb(Dd,this._i);null!=a?this.utcOffset(a):this.utcOffset(0,!0)}return this};f.hasAlignedHourOffset=function(a){if(!this.isValid())return!1;a=a?r(a).utcOffset():0;return 0===(this.utcOffset()-a)%60};f.isDST=function(){return this.utcOffset()>this.clone().month(0).utcOffset()||this.utcOffset()>this.clone().month(5).utcOffset()};f.isLocal=function(){return this.isValid()?!this._isUTC:!1};f.isUtcOffset= +function(){return this.isValid()?this._isUTC:!1};f.isUtc=wc;f.isUTC=wc;f.zoneAbbr=function(){return this._isUTC?"UTC":""};f.zoneName=function(){return this._isUTC?"Coordinated Universal Time":""};f.dates=D("dates accessor is deprecated. Use date instead.",Rc);f.months=D("months accessor is deprecated. Use month instead",kc);f.years=D("years accessor is deprecated. Use year instead",Pc);f.zone=D("moment().zone is deprecated, use moment().utcOffset instead. http://momentjs.com/guides/#/warnings/zone/", +function(a,b){return null!=a?("string"!==typeof a&&(a=-a),this.utcOffset(a,b),this):-this.utcOffset()});f.isDSTShifted=D("isDSTShifted is deprecated. See http://momentjs.com/guides/#/warnings/dst-shifted/ for more information",function(){if(!A(this._isDSTShifted))return this._isDSTShifted;var a={};rb(a,this);a=tc(a);if(a._a){var b=a._isUTC?R(a._a):r(a._a);this._isDSTShifted=this.isValid()&&0d;++d){var e=R([2E3,d]);this._shortMonthsParse[d]=this.monthsShort(e,"").toLocaleLowerCase();this._longMonthsParse[d]=this.months(e, +"").toLocaleLowerCase()}if(c)b="MMM"===b?w.call(this._shortMonthsParse,a):w.call(this._longMonthsParse,a);else if("MMM"===b){b=w.call(this._shortMonthsParse,a);if(-1!==b)break a;b=w.call(this._longMonthsParse,a)}else{b=w.call(this._longMonthsParse,a);if(-1!==b)break a;b=w.call(this._shortMonthsParse,a)}b=-1!==b?b:null}return b}this._monthsParse||(this._monthsParse=[],this._longMonthsParse=[],this._shortMonthsParse=[]);for(d=0;12>d;d++)if(e=R([2E3,d]),c&&!this._longMonthsParse[d]&&(this._longMonthsParse[d]= +new RegExp("^"+this.months(e,"").replace(".","")+"$","i"),this._shortMonthsParse[d]=new RegExp("^"+this.monthsShort(e,"").replace(".","")+"$","i")),c||this._monthsParse[d]||(e="^"+this.months(e,"")+"|^"+this.monthsShort(e,""),this._monthsParse[d]=new RegExp(e.replace(".",""),"i")),c&&"MMMM"===b&&this._longMonthsParse[d].test(a)||c&&"MMM"===b&&this._shortMonthsParse[d].test(a)||!c&&this._monthsParse[d].test(a))return d};p.monthsRegex=function(a){if(this._monthsParseExact)return u(this,"_monthsRegex")|| +lc.call(this),a?this._monthsStrictRegex:this._monthsRegex;u(this,"_monthsRegex")||(this._monthsRegex=Wa);return this._monthsStrictRegex&&a?this._monthsStrictRegex:this._monthsRegex};p.monthsShortRegex=function(a){if(this._monthsParseExact)return u(this,"_monthsRegex")||lc.call(this),a?this._monthsShortStrictRegex:this._monthsShortRegex;u(this,"_monthsShortRegex")||(this._monthsShortRegex=Wa);return this._monthsShortStrictRegex&&a?this._monthsShortStrictRegex:this._monthsShortRegex};p.week=function(a){return Ma(a, +this._week.dow,this._week.doy).week};p.firstDayOfYear=function(){return this._week.doy};p.firstDayOfWeek=function(){return this._week.dow};p.weekdays=function(a,b){return a?B(this._weekdays)?this._weekdays[a.day()]:this._weekdays[this._weekdays.isFormat.test(b)?"format":"standalone"][a.day()]:this._weekdays};p.weekdaysMin=function(a){return a?this._weekdaysMin[a.day()]:this._weekdaysMin};p.weekdaysShort=function(a){return a?this._weekdaysShort[a.day()]:this._weekdaysShort};p.weekdaysParse=function(a, +b,c){var d;if(this._weekdaysParseExact)return kd.call(this,a,b,c);this._weekdaysParse||(this._weekdaysParse=[],this._minWeekdaysParse=[],this._shortWeekdaysParse=[],this._fullWeekdaysParse=[]);for(d=0;7>d;d++){var e=R([2E3,1]).day(d);c&&!this._fullWeekdaysParse[d]&&(this._fullWeekdaysParse[d]=new RegExp("^"+this.weekdays(e,"").replace(".",".?")+"$","i"),this._shortWeekdaysParse[d]=new RegExp("^"+this.weekdaysShort(e,"").replace(".",".?")+"$","i"),this._minWeekdaysParse[d]=new RegExp("^"+this.weekdaysMin(e, +"").replace(".",".?")+"$","i"));this._weekdaysParse[d]||(e="^"+this.weekdays(e,"")+"|^"+this.weekdaysShort(e,"")+"|^"+this.weekdaysMin(e,""),this._weekdaysParse[d]=new RegExp(e.replace(".",""),"i"));if(c&&"dddd"===b&&this._fullWeekdaysParse[d].test(a)||c&&"ddd"===b&&this._shortWeekdaysParse[d].test(a)||c&&"dd"===b&&this._minWeekdaysParse[d].test(a)||!c&&this._weekdaysParse[d].test(a))return d}};p.weekdaysRegex=function(a){if(this._weekdaysParseExact)return u(this,"_weekdaysRegex")||Bb.call(this), +a?this._weekdaysStrictRegex:this._weekdaysRegex;u(this,"_weekdaysRegex")||(this._weekdaysRegex=Wa);return this._weekdaysStrictRegex&&a?this._weekdaysStrictRegex:this._weekdaysRegex};p.weekdaysShortRegex=function(a){if(this._weekdaysParseExact)return u(this,"_weekdaysRegex")||Bb.call(this),a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex;u(this,"_weekdaysShortRegex")||(this._weekdaysShortRegex=Wa);return this._weekdaysShortStrictRegex&&a?this._weekdaysShortStrictRegex:this._weekdaysShortRegex}; +p.weekdaysMinRegex=function(a){if(this._weekdaysParseExact)return u(this,"_weekdaysRegex")||Bb.call(this),a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex;u(this,"_weekdaysMinRegex")||(this._weekdaysMinRegex=Wa);return this._weekdaysMinStrictRegex&&a?this._weekdaysMinStrictRegex:this._weekdaysMinRegex};p.isPM=function(a){return"p"===(a+"").toLowerCase().charAt(0)};p.meridiem=function(a,b,c){return 11=a&&0>=b&&0>=c||(a+=864E5*Gc(146097*c/4800+b),c=b=0);d.milliseconds=a%1E3;a=C(a/1E3);d.seconds=a%60;a=C(a/60);d.minutes=a%60;a=C(a/60);d.hours=a%24;b+=C(a/24);a=C(4800*b/146097);c+=a;b-=Gc(146097*a/4800);a=C(c/12);d.days=b;d.months=c%12;d.years=a;return this};k.get=function(a){a=E(a);return this[a+"s"]()};k.milliseconds=Ud;k.seconds= +Vd;k.minutes=Wd;k.hours=Xd;k.days=Yd;k.weeks=function(){return C(this.days()/7)};k.months=Zd;k.years=$d;k.humanize=function(a){var b=this.localeData();var c=!a;var d=ha(this).abs(),e=na(d.as("s")),f=na(d.as("m")),h=na(d.as("h")),k=na(d.as("d")),l=na(d.as("M"));d=na(d.as("y"));e=e=f&&["m"]||f=h&&["h"]||h=k&&["d"]||k=l&&["M"]||l=d&&["y"]||["yy",d];e[2]=c;e[3]=0<+this;e[4]=b;c=yd.apply(null,e);a&&(c=b.pastFuture(+this, +c));return b.postformat(c)};k.toISOString=ib;k.toString=ib;k.toJSON=ib;k.locale=Ac;k.localeData=Bc;k.toIsoString=D("toIsoString() is deprecated. Please use toISOString() instead (notice the capitals)",ib);k.lang=Qc;l("X",0,0,"unix");l("x",0,0,"valueOf");h("x",ob);h("X",/[+-]?\d+(\.\d{1,3})?/);q("X",function(a,b,c){c._d=new Date(1E3*parseFloat(a,10))});q("x",function(a,b,c){c._d=new Date(m(a))});e.version="2.16.0";var cd=r;e.fn=f;e.min=function(){var a=[].slice.call(arguments,0);return uc("isBefore", +a)};e.max=function(){var a=[].slice.call(arguments,0);return uc("isAfter",a)};e.now=function(){return Date.now?Date.now():+new Date};e.utc=R;e.unix=function(a){return r(1E3*a)};e.months=function(a,b){return Ec(a,b,"months")};e.isDate=Ya;e.locale=Ba;e.invalid=Za;e.duration=ha;e.isMoment=ea;e.weekdays=function(a,b,c){return Mb(a,b,c,"weekdays")};e.parseZone=function(){return r.apply(null,arguments).parseZone()};e.localeData=fa;e.isDuration=Ib;e.monthsShort=function(a,b){return Ec(a,b,"monthsShort")}; +e.weekdaysMin=function(a,b,c){return Mb(a,b,c,"weekdaysMin")};e.defineLocale=Db;e.updateLocale=function(a,b){if(null!=b){var c=rc;null!=v[a]&&(c=v[a]._config);b=gc(c,b);b=new ub(b);b.parentLocale=v[a];v[a]=b;Ba(a)}else null!=v[a]&&(null!=v[a].parentLocale?v[a]=v[a].parentLocale:null!=v[a]&&delete v[a]);return v[a]};e.locales=function(){return Bd(v)};e.weekdaysShort=function(a,b,c){return Mb(a,b,c,"weekdaysShort")};e.normalizeUnits=E;e.relativeTimeRounding=function(a){return void 0===a?na:"function"=== +typeof a?(na=a,!0):!1};e.relativeTimeThreshold=function(a,b){if(void 0===oa[a])return!1;if(void 0===b)return oa[a];oa[a]=b;return!0};e.calendarFormat=function(a,b){a=a.diff(b,"days",!0);return-6>a?"sameElse":-1>a?"lastWeek":0>a?"lastDay":1>a?"sameDay":2>a?"nextDay":7>a?"nextWeek":"sameElse"};e.prototype=f;e.defineLocale("af",{months:"Januarie Februarie Maart April Mei Junie Julie Augustus September Oktober November Desember".split(" "),monthsShort:"Jan Feb Mrt Apr Mei Jun Jul Aug Sep Okt Nov Des".split(" "), +weekdays:"Sondag Maandag Dinsdag Woensdag Donderdag Vrydag Saterdag".split(" "),weekdaysShort:"Son Maa Din Woe Don Vry Sat".split(" "),weekdaysMin:"So Ma Di Wo Do Vr Sa".split(" "),meridiemParse:/vm|nm/i,isPM:function(a){return/^nm$/i.test(a)},meridiem:function(a,b,c){return 12>a?c?"vm":"VM":c?"nm":"NM"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Vandag om] LT",nextDay:"[M\u00f4re om] LT",nextWeek:"dddd [om] LT", +lastDay:"[Gister om] LT",lastWeek:"[Laas] dddd [om] LT",sameElse:"L"},relativeTime:{future:"oor %s",past:"%s gelede",s:"'n paar sekondes",m:"'n minuut",mm:"%d minute",h:"'n uur",hh:"%d ure",d:"'n dag",dd:"%d dae",M:"'n maand",MM:"%d maande",y:"'n jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(a){return a+(1===a||8===a||20<=a?"ste":"de")},week:{dow:1,doy:4}});e.defineLocale("ar-dz",{months:"\u062c\u0627\u0646\u0641\u064a \u0641\u064a\u0641\u0631\u064a \u0645\u0627\u0631\u0633 \u0623\u0641\u0631\u064a\u0644 \u0645\u0627\u064a \u062c\u0648\u0627\u0646 \u062c\u0648\u064a\u0644\u064a\u0629 \u0623\u0648\u062a \u0633\u0628\u062a\u0645\u0628\u0631 \u0623\u0643\u062a\u0648\u0628\u0631 \u0646\u0648\u0641\u0645\u0628\u0631 \u062f\u064a\u0633\u0645\u0628\u0631".split(" "), monthsShort:"\u062c\u0627\u0646\u0641\u064a \u0641\u064a\u0641\u0631\u064a \u0645\u0627\u0631\u0633 \u0623\u0641\u0631\u064a\u0644 \u0645\u0627\u064a \u062c\u0648\u0627\u0646 \u062c\u0648\u064a\u0644\u064a\u0629 \u0623\u0648\u062a \u0633\u0628\u062a\u0645\u0628\u0631 \u0623\u0643\u062a\u0648\u0628\u0631 \u0646\u0648\u0641\u0645\u0628\u0631 \u062f\u064a\u0633\u0645\u0628\u0631".split(" "),weekdays:"\u0627\u0644\u0623\u062d\u062f \u0627\u0644\u0625\u062b\u0646\u064a\u0646 \u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621 \u0627\u0644\u062e\u0645\u064a\u0633 \u0627\u0644\u062c\u0645\u0639\u0629 \u0627\u0644\u0633\u0628\u062a".split(" "), weekdaysShort:"\u0627\u062d\u062f \u0627\u062b\u0646\u064a\u0646 \u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0631\u0628\u0639\u0627\u0621 \u062e\u0645\u064a\u0633 \u062c\u0645\u0639\u0629 \u0633\u0628\u062a".split(" "),weekdaysMin:"\u0623\u062d \u0625\u062b \u062b\u0644\u0627 \u0623\u0631 \u062e\u0645 \u062c\u0645 \u0633\u0628".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT", nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642", -h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:0,doy:4}});var ae={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},Tc=function(a){return 0===a?0:1===a?1:2===a?2:3<=a%100&&10>=a%100?3:11<=a%100?4:5},be={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629", +h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:0,doy:4}});var ae={1:"1",2:"2",3:"3",4:"4",5:"5",6:"6",7:"7",8:"8",9:"9",0:"0"},Sc=function(a){return 0===a?0:1===a?1:2===a?2:3<=a%100&&10>=a%100?3:11<=a%100?4:5},be={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629", ["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062f\u0642\u064a\u0642\u062a\u0627\u0646","\u062f\u0642\u064a\u0642\u062a\u064a\u0646"],"%d \u062f\u0642\u0627\u0626\u0642","%d \u062f\u0642\u064a\u0642\u0629","%d \u062f\u0642\u064a\u0642\u0629"], h:["\u0623\u0642\u0644 \u0645\u0646 \u0633\u0627\u0639\u0629","\u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629",["\u0633\u0627\u0639\u062a\u0627\u0646","\u0633\u0627\u0639\u062a\u064a\u0646"],"%d \u0633\u0627\u0639\u0627\u062a","%d \u0633\u0627\u0639\u0629","%d \u0633\u0627\u0639\u0629"],d:["\u0623\u0642\u0644 \u0645\u0646 \u064a\u0648\u0645","\u064a\u0648\u0645 \u0648\u0627\u062d\u062f",["\u064a\u0648\u0645\u0627\u0646","\u064a\u0648\u0645\u064a\u0646"],"%d \u0623\u064a\u0627\u0645","%d \u064a\u0648\u0645\u064b\u0627", "%d \u064a\u0648\u0645"],M:["\u0623\u0642\u0644 \u0645\u0646 \u0634\u0647\u0631","\u0634\u0647\u0631 \u0648\u0627\u062d\u062f",["\u0634\u0647\u0631\u0627\u0646","\u0634\u0647\u0631\u064a\u0646"],"%d \u0623\u0634\u0647\u0631","%d \u0634\u0647\u0631\u0627","%d \u0634\u0647\u0631"],y:["\u0623\u0642\u0644 \u0645\u0646 \u0639\u0627\u0645","\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627", -"%d \u0639\u0627\u0645"]},S=function(a){return function(b,c,d,e){d=Tc(b);e=be[a][Tc(b)];2===d&&(e=e[c?0:1]);return e.replace(/%d/i,b)}},Uc="\u064a\u0646\u0627\u064a\u0631 \u0641\u0628\u0631\u0627\u064a\u0631 \u0645\u0627\u0631\u0633 \u0623\u0628\u0631\u064a\u0644 \u0645\u0627\u064a\u0648 \u064a\u0648\u0646\u064a\u0648 \u064a\u0648\u0644\u064a\u0648 \u0623\u063a\u0633\u0637\u0633 \u0633\u0628\u062a\u0645\u0628\u0631 \u0623\u0643\u062a\u0648\u0628\u0631 \u0646\u0648\u0641\u0645\u0628\u0631 \u062f\u064a\u0633\u0645\u0628\u0631".split(" "); -e.defineLocale("ar-ly",{months:Uc,monthsShort:Uc,weekdays:"\u0627\u0644\u0623\u062d\u062f \u0627\u0644\u0625\u062b\u0646\u064a\u0646 \u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621 \u0627\u0644\u062e\u0645\u064a\u0633 \u0627\u0644\u062c\u0645\u0639\u0629 \u0627\u0644\u0633\u0628\u062a".split(" "),weekdaysShort:"\u0623\u062d\u062f \u0625\u062b\u0646\u064a\u0646 \u062b\u0644\u0627\u062b\u0627\u0621 \u0623\u0631\u0628\u0639\u0627\u0621 \u062e\u0645\u064a\u0633 \u062c\u0645\u0639\u0629 \u0633\u0628\u062a".split(" "), +"%d \u0639\u0627\u0645"]},P=function(a){return function(b,c,d,e){d=Sc(b);e=be[a][Sc(b)];2===d&&(e=e[c?0:1]);return e.replace(/%d/i,b)}},Tc="\u064a\u0646\u0627\u064a\u0631 \u0641\u0628\u0631\u0627\u064a\u0631 \u0645\u0627\u0631\u0633 \u0623\u0628\u0631\u064a\u0644 \u0645\u0627\u064a\u0648 \u064a\u0648\u0646\u064a\u0648 \u064a\u0648\u0644\u064a\u0648 \u0623\u063a\u0633\u0637\u0633 \u0633\u0628\u062a\u0645\u0628\u0631 \u0623\u0643\u062a\u0648\u0628\u0631 \u0646\u0648\u0641\u0645\u0628\u0631 \u062f\u064a\u0633\u0645\u0628\u0631".split(" "); +e.defineLocale("ar-ly",{months:Tc,monthsShort:Tc,weekdays:"\u0627\u0644\u0623\u062d\u062f \u0627\u0644\u0625\u062b\u0646\u064a\u0646 \u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621 \u0627\u0644\u062e\u0645\u064a\u0633 \u0627\u0644\u062c\u0645\u0639\u0629 \u0627\u0644\u0633\u0628\u062a".split(" "),weekdaysShort:"\u0623\u062d\u062f \u0625\u062b\u0646\u064a\u0646 \u062b\u0644\u0627\u062b\u0627\u0621 \u0623\u0631\u0628\u0639\u0627\u0621 \u062e\u0645\u064a\u0633 \u062c\u0645\u0639\u0629 \u0633\u0628\u062a".split(" "), weekdaysMin:"\u062d\u0646\u062b\u0631\u062e\u062c\u0633".split(""),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200fM/\u200fYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(a){return"\u0645"===a},meridiem:function(a,b,c){return 12>a?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u064b\u0627 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT", -nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:S("s"),m:S("m"),mm:S("m"),h:S("h"),hh:S("h"),d:S("d"),dd:S("d"),M:S("M"),MM:S("M"),y:S("y"),yy:S("y")},preparse:function(a){return a.replace(/\u200f/g,"").replace(/\u060c/g, +nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:P("s"),m:P("m"),mm:P("m"),h:P("h"),hh:P("h"),d:P("d"),dd:P("d"),M:P("M"),MM:P("M"),y:P("y"),yy:P("y")},preparse:function(a){return a.replace(/\u200f/g,"").replace(/\u060c/g, ",")},postformat:function(a){return a.replace(/\d/g,function(a){return ae[a]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}});e.defineLocale("ar-ma",{months:"\u064a\u0646\u0627\u064a\u0631 \u0641\u0628\u0631\u0627\u064a\u0631 \u0645\u0627\u0631\u0633 \u0623\u0628\u0631\u064a\u0644 \u0645\u0627\u064a \u064a\u0648\u0646\u064a\u0648 \u064a\u0648\u0644\u064a\u0648\u0632 \u063a\u0634\u062a \u0634\u062a\u0646\u0628\u0631 \u0623\u0643\u062a\u0648\u0628\u0631 \u0646\u0648\u0646\u0628\u0631 \u062f\u062c\u0646\u0628\u0631".split(" "), monthsShort:"\u064a\u0646\u0627\u064a\u0631 \u0641\u0628\u0631\u0627\u064a\u0631 \u0645\u0627\u0631\u0633 \u0623\u0628\u0631\u064a\u0644 \u0645\u0627\u064a \u064a\u0648\u0646\u064a\u0648 \u064a\u0648\u0644\u064a\u0648\u0632 \u063a\u0634\u062a \u0634\u062a\u0646\u0628\u0631 \u0623\u0643\u062a\u0648\u0628\u0631 \u0646\u0648\u0646\u0628\u0631 \u062f\u062c\u0646\u0628\u0631".split(" "),weekdays:"\u0627\u0644\u0623\u062d\u062f \u0627\u0644\u0625\u062a\u0646\u064a\u0646 \u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621 \u0627\u0644\u062e\u0645\u064a\u0633 \u0627\u0644\u062c\u0645\u0639\u0629 \u0627\u0644\u0633\u0628\u062a".split(" "), weekdaysShort:"\u0627\u062d\u062f \u0627\u062a\u0646\u064a\u0646 \u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0631\u0628\u0639\u0627\u0621 \u062e\u0645\u064a\u0633 \u062c\u0645\u0639\u0629 \u0633\u0628\u062a".split(" "),weekdaysMin:"\u062d\u0646\u062b\u0631\u062e\u062c\u0633".split(""),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT", @@ -149,13 +144,13 @@ monthsShort:"\u062c\u0627\u0646\u0641\u064a \u0641\u064a\u0641\u0631\u064a \u064 weekdaysShort:"\u0623\u062d\u062f \u0625\u062b\u0646\u064a\u0646 \u062b\u0644\u0627\u062b\u0627\u0621 \u0623\u0631\u0628\u0639\u0627\u0621 \u062e\u0645\u064a\u0633 \u062c\u0645\u0639\u0629 \u0633\u0628\u062a".split(" "),weekdaysMin:"\u062d\u0646\u062b\u0631\u062e\u062c\u0633".split(""),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT", nextDay:"[\u063a\u062f\u0627 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0644\u0649 \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0641\u064a %s",past:"\u0645\u0646\u0630 %s",s:"\u062b\u0648\u0627\u0646",m:"\u062f\u0642\u064a\u0642\u0629",mm:"%d \u062f\u0642\u0627\u0626\u0642", h:"\u0633\u0627\u0639\u0629",hh:"%d \u0633\u0627\u0639\u0627\u062a",d:"\u064a\u0648\u0645",dd:"%d \u0623\u064a\u0627\u0645",M:"\u0634\u0647\u0631",MM:"%d \u0623\u0634\u0647\u0631",y:"\u0633\u0646\u0629",yy:"%d \u0633\u0646\u0648\u0627\u062a"},week:{dow:1,doy:4}});var ee={1:"\u0661",2:"\u0662",3:"\u0663",4:"\u0664",5:"\u0665",6:"\u0666",7:"\u0667",8:"\u0668",9:"\u0669",0:"\u0660"},fe={"\u0661":"1","\u0662":"2","\u0663":"3","\u0664":"4","\u0665":"5","\u0666":"6","\u0667":"7","\u0668":"8","\u0669":"9", -"\u0660":"0"},Vc=function(a){return 0===a?0:1===a?1:2===a?2:3<=a%100&&10>=a%100?3:11<=a%100?4:5},ge={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629", +"\u0660":"0"},Uc=function(a){return 0===a?0:1===a?1:2===a?2:3<=a%100&&10>=a%100?3:11<=a%100?4:5},ge={s:["\u0623\u0642\u0644 \u0645\u0646 \u062b\u0627\u0646\u064a\u0629","\u062b\u0627\u0646\u064a\u0629 \u0648\u0627\u062d\u062f\u0629",["\u062b\u0627\u0646\u064a\u062a\u0627\u0646","\u062b\u0627\u0646\u064a\u062a\u064a\u0646"],"%d \u062b\u0648\u0627\u0646","%d \u062b\u0627\u0646\u064a\u0629","%d \u062b\u0627\u0646\u064a\u0629"],m:["\u0623\u0642\u0644 \u0645\u0646 \u062f\u0642\u064a\u0642\u0629","\u062f\u0642\u064a\u0642\u0629 \u0648\u0627\u062d\u062f\u0629", ["\u062f\u0642\u064a\u0642\u062a\u0627\u0646","\u062f\u0642\u064a\u0642\u062a\u064a\u0646"],"%d \u062f\u0642\u0627\u0626\u0642","%d \u062f\u0642\u064a\u0642\u0629","%d \u062f\u0642\u064a\u0642\u0629"],h:["\u0623\u0642\u0644 \u0645\u0646 \u0633\u0627\u0639\u0629","\u0633\u0627\u0639\u0629 \u0648\u0627\u062d\u062f\u0629",["\u0633\u0627\u0639\u062a\u0627\u0646","\u0633\u0627\u0639\u062a\u064a\u0646"],"%d \u0633\u0627\u0639\u0627\u062a","%d \u0633\u0627\u0639\u0629","%d \u0633\u0627\u0639\u0629"],d:["\u0623\u0642\u0644 \u0645\u0646 \u064a\u0648\u0645", "\u064a\u0648\u0645 \u0648\u0627\u062d\u062f",["\u064a\u0648\u0645\u0627\u0646","\u064a\u0648\u0645\u064a\u0646"],"%d \u0623\u064a\u0627\u0645","%d \u064a\u0648\u0645\u064b\u0627","%d \u064a\u0648\u0645"],M:["\u0623\u0642\u0644 \u0645\u0646 \u0634\u0647\u0631","\u0634\u0647\u0631 \u0648\u0627\u062d\u062f",["\u0634\u0647\u0631\u0627\u0646","\u0634\u0647\u0631\u064a\u0646"],"%d \u0623\u0634\u0647\u0631","%d \u0634\u0647\u0631\u0627","%d \u0634\u0647\u0631"],y:["\u0623\u0642\u0644 \u0645\u0646 \u0639\u0627\u0645", -"\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627","%d \u0639\u0627\u0645"]},T=function(a){return function(b,c,d,e){d=Vc(b);e=ge[a][Vc(b)];2===d&&(e=e[c?0:1]);return e.replace(/%d/i,b)}},Wc="\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a \u064a\u0646\u0627\u064a\u0631;\u0634\u0628\u0627\u0637 \u0641\u0628\u0631\u0627\u064a\u0631;\u0622\u0630\u0627\u0631 \u0645\u0627\u0631\u0633;\u0646\u064a\u0633\u0627\u0646 \u0623\u0628\u0631\u064a\u0644;\u0623\u064a\u0627\u0631 \u0645\u0627\u064a\u0648;\u062d\u0632\u064a\u0631\u0627\u0646 \u064a\u0648\u0646\u064a\u0648;\u062a\u0645\u0648\u0632 \u064a\u0648\u0644\u064a\u0648;\u0622\u0628 \u0623\u063a\u0633\u0637\u0633;\u0623\u064a\u0644\u0648\u0644 \u0633\u0628\u062a\u0645\u0628\u0631;\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644 \u0623\u0643\u062a\u0648\u0628\u0631;\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a \u0646\u0648\u0641\u0645\u0628\u0631;\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644 \u062f\u064a\u0633\u0645\u0628\u0631".split(";"); -e.defineLocale("ar",{months:Wc,monthsShort:Wc,weekdays:"\u0627\u0644\u0623\u062d\u062f \u0627\u0644\u0625\u062b\u0646\u064a\u0646 \u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621 \u0627\u0644\u062e\u0645\u064a\u0633 \u0627\u0644\u062c\u0645\u0639\u0629 \u0627\u0644\u0633\u0628\u062a".split(" "),weekdaysShort:"\u0623\u062d\u062f \u0625\u062b\u0646\u064a\u0646 \u062b\u0644\u0627\u062b\u0627\u0621 \u0623\u0631\u0628\u0639\u0627\u0621 \u062e\u0645\u064a\u0633 \u062c\u0645\u0639\u0629 \u0633\u0628\u062a".split(" "), +"\u0639\u0627\u0645 \u0648\u0627\u062d\u062f",["\u0639\u0627\u0645\u0627\u0646","\u0639\u0627\u0645\u064a\u0646"],"%d \u0623\u0639\u0648\u0627\u0645","%d \u0639\u0627\u0645\u064b\u0627","%d \u0639\u0627\u0645"]},Q=function(a){return function(b,c,d,e){d=Uc(b);e=ge[a][Uc(b)];2===d&&(e=e[c?0:1]);return e.replace(/%d/i,b)}},Vc="\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a \u064a\u0646\u0627\u064a\u0631;\u0634\u0628\u0627\u0637 \u0641\u0628\u0631\u0627\u064a\u0631;\u0622\u0630\u0627\u0631 \u0645\u0627\u0631\u0633;\u0646\u064a\u0633\u0627\u0646 \u0623\u0628\u0631\u064a\u0644;\u0623\u064a\u0627\u0631 \u0645\u0627\u064a\u0648;\u062d\u0632\u064a\u0631\u0627\u0646 \u064a\u0648\u0646\u064a\u0648;\u062a\u0645\u0648\u0632 \u064a\u0648\u0644\u064a\u0648;\u0622\u0628 \u0623\u063a\u0633\u0637\u0633;\u0623\u064a\u0644\u0648\u0644 \u0633\u0628\u062a\u0645\u0628\u0631;\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644 \u0623\u0643\u062a\u0648\u0628\u0631;\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a \u0646\u0648\u0641\u0645\u0628\u0631;\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644 \u062f\u064a\u0633\u0645\u0628\u0631".split(";"); +e.defineLocale("ar",{months:Vc,monthsShort:Vc,weekdays:"\u0627\u0644\u0623\u062d\u062f \u0627\u0644\u0625\u062b\u0646\u064a\u0646 \u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621 \u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621 \u0627\u0644\u062e\u0645\u064a\u0633 \u0627\u0644\u062c\u0645\u0639\u0629 \u0627\u0644\u0633\u0628\u062a".split(" "),weekdaysShort:"\u0623\u062d\u062f \u0625\u062b\u0646\u064a\u0646 \u062b\u0644\u0627\u062b\u0627\u0621 \u0623\u0631\u0628\u0639\u0627\u0621 \u062e\u0645\u064a\u0633 \u062c\u0645\u0639\u0629 \u0633\u0628\u062a".split(" "), weekdaysMin:"\u062d\u0646\u062b\u0631\u062e\u062c\u0633".split(""),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/\u200fM/\u200fYYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0635|\u0645/,isPM:function(a){return"\u0645"===a},meridiem:function(a,b,c){return 12>a?"\u0635":"\u0645"},calendar:{sameDay:"[\u0627\u0644\u064a\u0648\u0645 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",nextDay:"[\u063a\u062f\u064b\u0627 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT", -nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:T("s"),m:T("m"),mm:T("m"),h:T("h"),hh:T("h"),d:T("d"),dd:T("d"),M:T("M"),MM:T("M"),y:T("y"),yy:T("y")},preparse:function(a){return a.replace(/\u200f/g,"").replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g, +nextWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastDay:"[\u0623\u0645\u0633 \u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",lastWeek:"dddd [\u0639\u0646\u062f \u0627\u0644\u0633\u0627\u0639\u0629] LT",sameElse:"L"},relativeTime:{future:"\u0628\u0639\u062f %s",past:"\u0645\u0646\u0630 %s",s:Q("s"),m:Q("m"),mm:Q("m"),h:Q("h"),hh:Q("h"),d:Q("d"),dd:Q("d"),M:Q("M"),MM:Q("M"),y:Q("y"),yy:Q("y")},preparse:function(a){return a.replace(/\u200f/g,"").replace(/[\u0661\u0662\u0663\u0664\u0665\u0666\u0667\u0668\u0669\u0660]/g, function(a){return fe[a]}).replace(/\u060c/g,",")},postformat:function(a){return a.replace(/\d/g,function(a){return ee[a]}).replace(/,/g,"\u060c")},week:{dow:6,doy:12}});var Sb={1:"-inci",5:"-inci",8:"-inci",70:"-inci",80:"-inci",2:"-nci",7:"-nci",20:"-nci",50:"-nci",3:"-\u00fcnc\u00fc",4:"-\u00fcnc\u00fc",100:"-\u00fcnc\u00fc",6:"-nc\u0131",9:"-uncu",10:"-uncu",30:"-uncu",60:"-\u0131nc\u0131",90:"-\u0131nc\u0131"};e.defineLocale("az",{months:"yanvar fevral mart aprel may iyun iyul avqust sentyabr oktyabr noyabr dekabr".split(" "), monthsShort:"yan fev mar apr may iyn iyl avq sen okt noy dek".split(" "),weekdays:"Bazar;Bazar ert\u0259si;\u00c7\u0259r\u015f\u0259nb\u0259 ax\u015fam\u0131;\u00c7\u0259r\u015f\u0259nb\u0259;C\u00fcm\u0259 ax\u015fam\u0131;C\u00fcm\u0259;\u015e\u0259nb\u0259".split(";"),weekdaysShort:"Baz BzE \u00c7Ax \u00c7\u0259r CAx C\u00fcm \u015e\u0259n".split(" "),weekdaysMin:"Bz BE \u00c7A \u00c7\u0259 CA C\u00fc \u015e\u0259".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY", LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bug\u00fcn saat] LT",nextDay:"[sabah saat] LT",nextWeek:"[g\u0259l\u0259n h\u0259ft\u0259] dddd [saat] LT",lastDay:"[d\u00fcn\u0259n] LT",lastWeek:"[ke\u00e7\u0259n h\u0259ft\u0259] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s \u0259vv\u0259l",s:"birne\u00e7\u0259 saniyy\u0259",m:"bir d\u0259qiq\u0259",mm:"%d d\u0259qiq\u0259",h:"bir saat",hh:"%d saat",d:"bir g\u00fcn",dd:"%d g\u00fcn", @@ -165,8 +160,8 @@ standalone:"\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c \u043b\u044e\u0442\ monthsShort:"\u0441\u0442\u0443\u0434 \u043b\u044e\u0442 \u0441\u0430\u043a \u043a\u0440\u0430\u0441 \u0442\u0440\u0430\u0432 \u0447\u044d\u0440\u0432 \u043b\u0456\u043f \u0436\u043d\u0456\u0432 \u0432\u0435\u0440 \u043a\u0430\u0441\u0442 \u043b\u0456\u0441\u0442 \u0441\u043d\u0435\u0436".split(" "),weekdays:{format:"\u043d\u044f\u0434\u0437\u0435\u043b\u044e \u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a \u0430\u045e\u0442\u043e\u0440\u0430\u043a \u0441\u0435\u0440\u0430\u0434\u0443 \u0447\u0430\u0446\u0432\u0435\u0440 \u043f\u044f\u0442\u043d\u0456\u0446\u0443 \u0441\u0443\u0431\u043e\u0442\u0443".split(" "), standalone:"\u043d\u044f\u0434\u0437\u0435\u043b\u044f \u043f\u0430\u043d\u044f\u0434\u0437\u0435\u043b\u0430\u043a \u0430\u045e\u0442\u043e\u0440\u0430\u043a \u0441\u0435\u0440\u0430\u0434\u0430 \u0447\u0430\u0446\u0432\u0435\u0440 \u043f\u044f\u0442\u043d\u0456\u0446\u0430 \u0441\u0443\u0431\u043e\u0442\u0430".split(" "),isFormat:/\[ ?[\u0412\u0432] ?(?:\u043c\u0456\u043d\u0443\u043b\u0443\u044e|\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0443\u044e)? ?\] ?dddd/},weekdaysShort:"\u043d\u0434 \u043f\u043d \u0430\u0442 \u0441\u0440 \u0447\u0446 \u043f\u0442 \u0441\u0431".split(" "), weekdaysMin:"\u043d\u0434 \u043f\u043d \u0430\u0442 \u0441\u0440 \u0447\u0446 \u043f\u0442 \u0441\u0431".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., HH:mm",LLLL:"dddd, D MMMM YYYY \u0433., HH:mm"},calendar:{sameDay:"[\u0421\u0451\u043d\u043d\u044f \u045e] LT",nextDay:"[\u0417\u0430\u045e\u0442\u0440\u0430 \u045e] LT",lastDay:"[\u0423\u0447\u043e\u0440\u0430 \u045e] LT",nextWeek:function(){return"[\u0423] dddd [\u045e] LT"}, -lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u0443\u044e] dddd [\u045e] LT";case 1:case 2:case 4:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u044b] dddd [\u045e] LT"}},sameElse:"L"},relativeTime:{future:"\u043f\u0440\u0430\u0437 %s",past:"%s \u0442\u0430\u043c\u0443",s:"\u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456 \u0441\u0435\u043a\u0443\u043d\u0434",m:wa,mm:wa,h:wa,hh:wa,d:"\u0434\u0437\u0435\u043d\u044c",dd:wa,M:"\u043c\u0435\u0441\u044f\u0446", -MM:wa,y:"\u0433\u043e\u0434",yy:wa},meridiemParse:/\u043d\u043e\u0447\u044b|\u0440\u0430\u043d\u0456\u0446\u044b|\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430/,isPM:function(a){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430)$/.test(a)},meridiem:function(a,b,c){return 4>a?"\u043d\u043e\u0447\u044b":12>a?"\u0440\u0430\u043d\u0456\u0446\u044b":17>a?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0430\u0440\u0430"},ordinalParse:/\d{1,2}-(\u0456|\u044b|\u0433\u0430)/,ordinal:function(a, +lastWeek:function(){switch(this.day()){case 0:case 3:case 5:case 6:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u0443\u044e] dddd [\u045e] LT";case 1:case 2:case 4:return"[\u0423 \u043c\u0456\u043d\u0443\u043b\u044b] dddd [\u045e] LT"}},sameElse:"L"},relativeTime:{future:"\u043f\u0440\u0430\u0437 %s",past:"%s \u0442\u0430\u043c\u0443",s:"\u043d\u0435\u043a\u0430\u043b\u044c\u043a\u0456 \u0441\u0435\u043a\u0443\u043d\u0434",m:ua,mm:ua,h:ua,hh:ua,d:"\u0434\u0437\u0435\u043d\u044c",dd:ua,M:"\u043c\u0435\u0441\u044f\u0446", +MM:ua,y:"\u0433\u043e\u0434",yy:ua},meridiemParse:/\u043d\u043e\u0447\u044b|\u0440\u0430\u043d\u0456\u0446\u044b|\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430/,isPM:function(a){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0430\u0440\u0430)$/.test(a)},meridiem:function(a,b,c){return 4>a?"\u043d\u043e\u0447\u044b":12>a?"\u0440\u0430\u043d\u0456\u0446\u044b":17>a?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0430\u0440\u0430"},ordinalParse:/\d{1,2}-(\u0456|\u044b|\u0433\u0430)/,ordinal:function(a, b){switch(b){case "M":case "d":case "DDD":case "w":case "W":return 2!==a%10&&3!==a%10||12===a%100||13===a%100?a+"-\u044b":a+"-\u0456";case "D":return a+"-\u0433\u0430";default:return a}},week:{dow:1,doy:7}});e.defineLocale("bg-x",{parentLocale:"bg"});e.defineLocale("bg",{months:"\u044f\u043d\u0443\u0430\u0440\u0438 \u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438 \u043c\u0430\u0440\u0442 \u0430\u043f\u0440\u0438\u043b \u043c\u0430\u0439 \u044e\u043d\u0438 \u044e\u043b\u0438 \u0430\u0432\u0433\u0443\u0441\u0442 \u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438 \u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438 \u043d\u043e\u0435\u043c\u0432\u0440\u0438 \u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438".split(" "), monthsShort:"\u044f\u043d\u0440 \u0444\u0435\u0432 \u043c\u0430\u0440 \u0430\u043f\u0440 \u043c\u0430\u0439 \u044e\u043d\u0438 \u044e\u043b\u0438 \u0430\u0432\u0433 \u0441\u0435\u043f \u043e\u043a\u0442 \u043d\u043e\u0435 \u0434\u0435\u043a".split(" "),weekdays:"\u043d\u0435\u0434\u0435\u043b\u044f \u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a \u0432\u0442\u043e\u0440\u043d\u0438\u043a \u0441\u0440\u044f\u0434\u0430 \u0447\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a \u043f\u0435\u0442\u044a\u043a \u0441\u044a\u0431\u043e\u0442\u0430".split(" "), weekdaysShort:"\u043d\u0435\u0434 \u043f\u043e\u043d \u0432\u0442\u043e \u0441\u0440\u044f \u0447\u0435\u0442 \u043f\u0435\u0442 \u0441\u044a\u0431".split(" "),weekdaysMin:"\u043d\u0434 \u043f\u043d \u0432\u0442 \u0441\u0440 \u0447\u0442 \u043f\u0442 \u0441\u0431".split(" "),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"D.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[\u0414\u043d\u0435\u0441 \u0432] LT",nextDay:"[\u0423\u0442\u0440\u0435 \u0432] LT", @@ -186,16 +181,16 @@ nextWeek:"[\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f55\u0fb2\u0f42\u0f0b\u0f62\u0f97\u0 hh:"%d \u0f46\u0f74\u0f0b\u0f5a\u0f7c\u0f51",d:"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f45\u0f72\u0f42",dd:"%d \u0f49\u0f72\u0f53\u0f0b",M:"\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f45\u0f72\u0f42",MM:"%d \u0f5f\u0fb3\u0f0b\u0f56",y:"\u0f63\u0f7c\u0f0b\u0f42\u0f45\u0f72\u0f42",yy:"%d \u0f63\u0f7c"},preparse:function(a){return a.replace(/[\u0f21\u0f22\u0f23\u0f24\u0f25\u0f26\u0f27\u0f28\u0f29\u0f20]/g,function(a){return ke[a]})},postformat:function(a){return a.replace(/\d/g,function(a){return je[a]})},meridiemParse:/\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c|\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66|\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44|\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42|\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c/, meridiemHour:function(a,b){12===a&&(a=0);return"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"===b&&4<=a||"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44"===b&&5>a||"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42"===b?a+12:a},meridiem:function(a,b,c){return 4>a?"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c":10>a?"\u0f5e\u0f7c\u0f42\u0f66\u0f0b\u0f40\u0f66":17>a?"\u0f49\u0f72\u0f53\u0f0b\u0f42\u0f74\u0f44":20>a?"\u0f51\u0f42\u0f7c\u0f44\u0f0b\u0f51\u0f42":"\u0f58\u0f5a\u0f53\u0f0b\u0f58\u0f7c"},week:{dow:0,doy:6}});e.defineLocale("br", {months:"Genver C'hwevrer Meurzh Ebrel Mae Mezheven Gouere Eost Gwengolo Here Du Kerzu".split(" "),monthsShort:"Gen C'hwe Meu Ebr Mae Eve Gou Eos Gwe Her Du Ker".split(" "),weekdays:"Sul Lun Meurzh Merc'her Yaou Gwener Sadorn".split(" "),weekdaysShort:"Sul Lun Meu Mer Yao Gwe Sad".split(" "),weekdaysMin:"Su Lu Me Mer Ya Gw Sa".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"h[e]mm A",LTS:"h[e]mm:ss A",L:"DD/MM/YYYY",LL:"D [a viz] MMMM YYYY",LLL:"D [a viz] MMMM YYYY h[e]mm A",LLLL:"dddd, D [a viz] MMMM YYYY h[e]mm A"}, -calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondenno\u00f9",m:"ur vunutenn",mm:Ob,h:"un eur",hh:"%d eur",d:"un devezh",dd:Ob,M:"ur miz",MM:Ob,y:"ur bloaz",yy:function(a){switch(Ic(a)){case 1:case 3:case 4:case 5:case 9:return a+" bloaz";default:return a+" vloaz"}}},ordinalParse:/\d{1,2}(a\u00f1|vet)/,ordinal:function(a){return a+ +calendar:{sameDay:"[Hiziv da] LT",nextDay:"[Warc'hoazh da] LT",nextWeek:"dddd [da] LT",lastDay:"[Dec'h da] LT",lastWeek:"dddd [paset da] LT",sameElse:"L"},relativeTime:{future:"a-benn %s",past:"%s 'zo",s:"un nebeud segondenno\u00f9",m:"ur vunutenn",mm:Ob,h:"un eur",hh:"%d eur",d:"un devezh",dd:Ob,M:"ur miz",MM:Ob,y:"ur bloaz",yy:function(a){switch(Hc(a)){case 1:case 3:case 4:case 5:case 9:return a+" bloaz";default:return a+" vloaz"}}},ordinalParse:/\d{1,2}(a\u00f1|vet)/,ordinal:function(a){return a+ (1===a?"a\u00f1":"vet")},week:{dow:1,doy:4}});e.defineLocale("bs",{months:"januar februar mart april maj juni juli august septembar oktobar novembar decembar".split(" "),monthsShort:"jan. feb. mar. apr. maj. jun. jul. aug. sep. okt. nov. dec.".split(" "),monthsParseExact:!0,weekdays:"nedjelja ponedjeljak utorak srijeda \u010detvrtak petak subota".split(" "),weekdaysShort:"ned. pon. uto. sri. \u010det. pet. sub.".split(" "),weekdaysMin:"ne po ut sr \u010de pe su".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm", LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010der u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[pro\u0161lu] dddd [u] LT";case 6:return"[pro\u0161le] [subote] [u] LT"; -case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:xa,mm:xa,h:xa,hh:xa,d:"dan",dd:xa,M:"mjesec",MM:xa,y:"godinu",yy:xa},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});e.defineLocale("ca",{months:"gener febrer mar\u00e7 abril maig juny juliol agost setembre octubre novembre desembre".split(" "),monthsShort:"gen. febr. mar. abr. mai. jun. jul. ag. set. oct. nov. des.".split(" "),monthsParseExact:!0, +case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:va,mm:va,h:va,hh:va,d:"dan",dd:va,M:"mjesec",MM:va,y:"godinu",yy:va},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});e.defineLocale("ca",{months:"gener febrer mar\u00e7 abril maig juny juliol agost setembre octubre novembre desembre".split(" "),monthsShort:"gen. febr. mar. abr. mai. jun. jul. ag. set. oct. nov. des.".split(" "),monthsParseExact:!0, weekdays:"diumenge dilluns dimarts dimecres dijous divendres dissabte".split(" "),weekdaysShort:"dg. dl. dt. dc. dj. dv. ds.".split(" "),weekdaysMin:"Dg Dl Dt Dc Dj Dv Ds".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd D MMMM YYYY H:mm"},calendar:{sameDay:function(){return"[avui a "+(1!==this.hours()?"les":"la")+"] LT"},nextDay:function(){return"[dem\u00e0 a "+(1!==this.hours()?"les":"la")+"] LT"},nextWeek:function(){return"dddd [a "+ (1!==this.hours()?"les":"la")+"] LT"},lastDay:function(){return"[ahir a "+(1!==this.hours()?"les":"la")+"] LT"},lastWeek:function(){return"[el] dddd [passat a "+(1!==this.hours()?"les":"la")+"] LT"},sameElse:"L"},relativeTime:{future:"en %s",past:"fa %s",s:"uns segons",m:"un minut",mm:"%d minuts",h:"una hora",hh:"%d hores",d:"un dia",dd:"%d dies",M:"un mes",MM:"%d mesos",y:"un any",yy:"%d anys"},ordinalParse:/\d{1,2}(r|n|t|\u00e8|a)/,ordinal:function(a,b){var c=1===a?"r":2===a?"n":3===a?"r":4===a? "t":"\u00e8";if("w"===b||"W"===b)c="a";return a+c},week:{dow:1,doy:4}});var Tb="leden \u00fanor b\u0159ezen duben kv\u011bten \u010derven \u010dervenec srpen z\u00e1\u0159\u00ed \u0159\u00edjen listopad prosinec".split(" "),Ub="led \u00fano b\u0159e dub kv\u011b \u010dvn \u010dvc srp z\u00e1\u0159 \u0159\u00edj lis pro".split(" ");e.defineLocale("cs",{months:Tb,monthsShort:Ub,monthsParse:function(a,b){var c,d=[];for(c=0;12>c;c++)d[c]=new RegExp("^"+a[c]+"$|^"+b[c]+"$","i");return d}(Tb,Ub),shortMonthsParse:function(a){var b, c=[];for(b=0;12>b;b++)c[b]=new RegExp("^"+a[b]+"$","i");return c}(Ub),longMonthsParse:function(a){var b,c=[];for(b=0;12>b;b++)c[b]=new RegExp("^"+a[b]+"$","i");return c}(Tb),weekdays:"ned\u011ble pond\u011bl\u00ed \u00fater\u00fd st\u0159eda \u010dtvrtek p\u00e1tek sobota".split(" "),weekdaysShort:"ne po \u00fat st \u010dt p\u00e1 so".split(" "),weekdaysMin:"ne po \u00fat st \u010dt p\u00e1 so".split(" "),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm", LLLL:"dddd D. MMMM YYYY H:mm",l:"D. M. YYYY"},calendar:{sameDay:"[dnes v] LT",nextDay:"[z\u00edtra v] LT",nextWeek:function(){switch(this.day()){case 0:return"[v ned\u011bli v] LT";case 1:case 2:return"[v] dddd [v] LT";case 3:return"[ve st\u0159edu v] LT";case 4:return"[ve \u010dtvrtek v] LT";case 5:return"[v p\u00e1tek v] LT";case 6:return"[v sobotu v] LT"}},lastDay:"[v\u010dera v] LT",lastWeek:function(){switch(this.day()){case 0:return"[minulou ned\u011bli v] LT";case 1:case 2:return"[minul\u00e9] dddd [v] LT"; -case 3:return"[minulou st\u0159edu v] LT";case 4:case 5:return"[minul\u00fd] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"p\u0159ed %s",s:L,m:L,mm:L,h:L,hh:L,d:L,dd:L,M:L,MM:L,y:L,yy:L},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("cv",{months:"\u043a\u04d1\u0440\u043b\u0430\u0447 \u043d\u0430\u0440\u04d1\u0441 \u043f\u0443\u0448 \u0430\u043a\u0430 \u043c\u0430\u0439 \u04ab\u04d7\u0440\u0442\u043c\u0435 \u0443\u0442\u04d1 \u04ab\u0443\u0440\u043b\u0430 \u0430\u0432\u04d1\u043d \u044e\u043f\u0430 \u0447\u04f3\u043a \u0440\u0430\u0448\u0442\u0430\u0432".split(" "), +case 3:return"[minulou st\u0159edu v] LT";case 4:case 5:return"[minul\u00fd] dddd [v] LT";case 6:return"[minulou sobotu v] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"p\u0159ed %s",s:I,m:I,mm:I,h:I,hh:I,d:I,dd:I,M:I,MM:I,y:I,yy:I},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("cv",{months:"\u043a\u04d1\u0440\u043b\u0430\u0447 \u043d\u0430\u0440\u04d1\u0441 \u043f\u0443\u0448 \u0430\u043a\u0430 \u043c\u0430\u0439 \u04ab\u04d7\u0440\u0442\u043c\u0435 \u0443\u0442\u04d1 \u04ab\u0443\u0440\u043b\u0430 \u0430\u0432\u04d1\u043d \u044e\u043f\u0430 \u0447\u04f3\u043a \u0440\u0430\u0448\u0442\u0430\u0432".split(" "), monthsShort:"\u043a\u04d1\u0440 \u043d\u0430\u0440 \u043f\u0443\u0448 \u0430\u043a\u0430 \u043c\u0430\u0439 \u04ab\u04d7\u0440 \u0443\u0442\u04d1 \u04ab\u0443\u0440 \u0430\u0432\u043d \u044e\u043f\u0430 \u0447\u04f3\u043a \u0440\u0430\u0448".split(" "),weekdays:"\u0432\u044b\u0440\u0441\u0430\u0440\u043d\u0438\u043a\u0443\u043d \u0442\u0443\u043d\u0442\u0438\u043a\u0443\u043d \u044b\u0442\u043b\u0430\u0440\u0438\u043a\u0443\u043d \u044e\u043d\u043a\u0443\u043d \u043a\u04d7\u04ab\u043d\u0435\u0440\u043d\u0438\u043a\u0443\u043d \u044d\u0440\u043d\u0435\u043a\u0443\u043d \u0448\u04d1\u043c\u0430\u0442\u043a\u0443\u043d".split(" "), weekdaysShort:"\u0432\u044b\u0440 \u0442\u0443\u043d \u044b\u0442\u043b \u044e\u043d \u043a\u04d7\u04ab \u044d\u0440\u043d \u0448\u04d1\u043c".split(" "),weekdaysMin:"\u0432\u0440 \u0442\u043d \u044b\u0442 \u044e\u043d \u043a\u04ab \u044d\u0440 \u0448\u043c".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7]",LLL:"YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7], HH:mm", LLLL:"dddd, YYYY [\u04ab\u0443\u043b\u0445\u0438] MMMM [\u0443\u0439\u04d1\u0445\u04d7\u043d] D[-\u043c\u04d7\u0448\u04d7], HH:mm"},calendar:{sameDay:"[\u041f\u0430\u044f\u043d] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",nextDay:"[\u042b\u0440\u0430\u043d] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",lastDay:"[\u04d6\u043d\u0435\u0440] LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",nextWeek:"[\u04aa\u0438\u0442\u0435\u0441] dddd LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]",lastWeek:"[\u0418\u0440\u0442\u043d\u04d7] dddd LT [\u0441\u0435\u0445\u0435\u0442\u0440\u0435]", @@ -206,10 +201,10 @@ relativeTime:{future:"mewn %s",past:"%s yn \u00f4l",s:"ychydig eiliadau",m:"munu monthsShort:"jan feb mar apr maj jun jul aug sep okt nov dec".split(" "),weekdays:"s\u00f8ndag mandag tirsdag onsdag torsdag fredag l\u00f8rdag".split(" "),weekdaysShort:"s\u00f8n man tir ons tor fre l\u00f8r".split(" "),weekdaysMin:"s\u00f8 ma ti on to fr l\u00f8".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd [d.] D. MMMM YYYY HH:mm"},calendar:{sameDay:"[I dag kl.] LT",nextDay:"[I morgen kl.] LT",nextWeek:"dddd [kl.] LT", lastDay:"[I g\u00e5r kl.] LT",lastWeek:"[sidste] dddd [kl] LT",sameElse:"L"},relativeTime:{future:"om %s",past:"%s siden",s:"f\u00e5 sekunder",m:"et minut",mm:"%d minutter",h:"en time",hh:"%d timer",d:"en dag",dd:"%d dage",M:"en m\u00e5ned",MM:"%d m\u00e5neder",y:"et \u00e5r",yy:"%d \u00e5r"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("de-at",{months:"J\u00e4nner Februar M\u00e4rz April Mai Juni Juli August September Oktober November Dezember".split(" "),monthsShort:"J\u00e4n. Febr. Mrz. Apr. Mai Jun. Jul. Aug. Sept. Okt. Nov. Dez.".split(" "), monthsParseExact:!0,weekdays:"Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag".split(" "),weekdaysShort:"So. Mo. Di. Mi. Do. Fr. Sa.".split(" "),weekdaysMin:"So Mo Di Mi Do Fr Sa".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]", -lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:la,mm:"%d Minuten",h:la,hh:"%d Stunden",d:la,dd:la,M:la,MM:la,y:la,yy:la},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("de",{months:"Januar Februar M\u00e4rz April Mai Juni Juli August September Oktober November Dezember".split(" "),monthsShort:"Jan. Febr. Mrz. Apr. Mai Jun. Jul. Aug. Sept. Okt. Nov. Dez.".split(" "),monthsParseExact:!0,weekdays:"Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag".split(" "), +lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden",m:ja,mm:"%d Minuten",h:ja,hh:"%d Stunden",d:ja,dd:ja,M:ja,MM:ja,y:ja,yy:ja},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("de",{months:"Januar Februar M\u00e4rz April Mai Juni Juli August September Oktober November Dezember".split(" "),monthsShort:"Jan. Febr. Mrz. Apr. Mai Jun. Jul. Aug. Sept. Okt. Nov. Dez.".split(" "),monthsParseExact:!0,weekdays:"Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag".split(" "), weekdaysShort:"So. Mo. Di. Mi. Do. Fr. Sa.".split(" "),weekdaysMin:"So Mo Di Mi Do Fr Sa".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY HH:mm",LLLL:"dddd, D. MMMM YYYY HH:mm"},calendar:{sameDay:"[heute um] LT [Uhr]",sameElse:"L",nextDay:"[morgen um] LT [Uhr]",nextWeek:"dddd [um] LT [Uhr]",lastDay:"[gestern um] LT [Uhr]",lastWeek:"[letzten] dddd [um] LT [Uhr]"},relativeTime:{future:"in %s",past:"vor %s",s:"ein paar Sekunden", -m:ma,mm:"%d Minuten",h:ma,hh:"%d Stunden",d:ma,dd:ma,M:ma,MM:ma,y:ma,yy:ma},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var Xc="\u0796\u07ac\u0782\u07aa\u0787\u07a6\u0783\u07a9 \u078a\u07ac\u0784\u07b0\u0783\u07aa\u0787\u07a6\u0783\u07a9 \u0789\u07a7\u0783\u07a8\u0797\u07aa \u0787\u07ad\u0795\u07b0\u0783\u07a9\u078d\u07aa \u0789\u07ad \u0796\u07ab\u0782\u07b0 \u0796\u07aa\u078d\u07a6\u0787\u07a8 \u0787\u07af\u078e\u07a6\u0790\u07b0\u0793\u07aa \u0790\u07ac\u0795\u07b0\u0793\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa \u0787\u07ae\u0786\u07b0\u0793\u07af\u0784\u07a6\u0783\u07aa \u0782\u07ae\u0788\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa \u0791\u07a8\u0790\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa".split(" "), -Yc="\u0787\u07a7\u078b\u07a8\u0787\u07b0\u078c\u07a6 \u0780\u07af\u0789\u07a6 \u0787\u07a6\u0782\u07b0\u078e\u07a7\u0783\u07a6 \u0784\u07aa\u078b\u07a6 \u0784\u07aa\u0783\u07a7\u0790\u07b0\u078a\u07a6\u078c\u07a8 \u0780\u07aa\u0786\u07aa\u0783\u07aa \u0780\u07ae\u0782\u07a8\u0780\u07a8\u0783\u07aa".split(" ");e.defineLocale("dv",{months:Xc,monthsShort:Xc,weekdays:Yc,weekdaysShort:Yc,weekdaysMin:"\u0787\u07a7\u078b\u07a8 \u0780\u07af\u0789\u07a6 \u0787\u07a6\u0782\u07b0 \u0784\u07aa\u078b\u07a6 \u0784\u07aa\u0783\u07a7 \u0780\u07aa\u0786\u07aa \u0780\u07ae\u0782\u07a8".split(" "), +m:ka,mm:"%d Minuten",h:ka,hh:"%d Stunden",d:ka,dd:ka,M:ka,MM:ka,y:ka,yy:ka},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var Wc="\u0796\u07ac\u0782\u07aa\u0787\u07a6\u0783\u07a9 \u078a\u07ac\u0784\u07b0\u0783\u07aa\u0787\u07a6\u0783\u07a9 \u0789\u07a7\u0783\u07a8\u0797\u07aa \u0787\u07ad\u0795\u07b0\u0783\u07a9\u078d\u07aa \u0789\u07ad \u0796\u07ab\u0782\u07b0 \u0796\u07aa\u078d\u07a6\u0787\u07a8 \u0787\u07af\u078e\u07a6\u0790\u07b0\u0793\u07aa \u0790\u07ac\u0795\u07b0\u0793\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa \u0787\u07ae\u0786\u07b0\u0793\u07af\u0784\u07a6\u0783\u07aa \u0782\u07ae\u0788\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa \u0791\u07a8\u0790\u07ac\u0789\u07b0\u0784\u07a6\u0783\u07aa".split(" "), +Xc="\u0787\u07a7\u078b\u07a8\u0787\u07b0\u078c\u07a6 \u0780\u07af\u0789\u07a6 \u0787\u07a6\u0782\u07b0\u078e\u07a7\u0783\u07a6 \u0784\u07aa\u078b\u07a6 \u0784\u07aa\u0783\u07a7\u0790\u07b0\u078a\u07a6\u078c\u07a8 \u0780\u07aa\u0786\u07aa\u0783\u07aa \u0780\u07ae\u0782\u07a8\u0780\u07a8\u0783\u07aa".split(" ");e.defineLocale("dv",{months:Wc,monthsShort:Wc,weekdays:Xc,weekdaysShort:Xc,weekdaysMin:"\u0787\u07a7\u078b\u07a8 \u0780\u07af\u0789\u07a6 \u0787\u07a6\u0782\u07b0 \u0784\u07aa\u078b\u07a6 \u0784\u07aa\u0783\u07a7 \u0780\u07aa\u0786\u07aa \u0780\u07ae\u0782\u07a8".split(" "), longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"D/M/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0789\u0786|\u0789\u078a/,isPM:function(a){return"\u0789\u078a"===a},meridiem:function(a,b,c){return 12>a?"\u0789\u0786":"\u0789\u078a"},calendar:{sameDay:"[\u0789\u07a8\u0787\u07a6\u078b\u07aa] LT",nextDay:"[\u0789\u07a7\u078b\u07a6\u0789\u07a7] LT",nextWeek:"dddd LT",lastDay:"[\u0787\u07a8\u0787\u07b0\u0794\u07ac] LT",lastWeek:"[\u078a\u07a7\u0787\u07a8\u078c\u07aa\u0788\u07a8] dddd LT", sameElse:"L"},relativeTime:{future:"\u078c\u07ac\u0783\u07ad\u078e\u07a6\u0787\u07a8 %s",past:"\u0786\u07aa\u0783\u07a8\u0782\u07b0 %s",s:"\u0790\u07a8\u0786\u07aa\u0782\u07b0\u078c\u07aa\u0786\u07ae\u0785\u07ac\u0787\u07b0",m:"\u0789\u07a8\u0782\u07a8\u0793\u07ac\u0787\u07b0",mm:"\u0789\u07a8\u0782\u07a8\u0793\u07aa %d",h:"\u078e\u07a6\u0791\u07a8\u0787\u07a8\u0783\u07ac\u0787\u07b0",hh:"\u078e\u07a6\u0791\u07a8\u0787\u07a8\u0783\u07aa %d",d:"\u078b\u07aa\u0788\u07a6\u0780\u07ac\u0787\u07b0",dd:"\u078b\u07aa\u0788\u07a6\u0790\u07b0 %d", M:"\u0789\u07a6\u0780\u07ac\u0787\u07b0",MM:"\u0789\u07a6\u0790\u07b0 %d",y:"\u0787\u07a6\u0780\u07a6\u0783\u07ac\u0787\u07b0",yy:"\u0787\u07a6\u0780\u07a6\u0783\u07aa %d"},preparse:function(a){return a.replace(/\u060c/g,",")},postformat:function(a){return a.replace(/,/g,"\u060c")},week:{dow:7,doy:12}});e.defineLocale("el",{monthsNominativeEl:"\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2 \u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2 \u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2 \u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2 \u039c\u03ac\u03b9\u03bf\u03c2 \u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2 \u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2 \u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2 \u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2 \u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2 \u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2 \u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2".split(" "), @@ -217,7 +212,7 @@ monthsGenitiveEl:"\u0399\u03b1\u03bd\u03bf\u03c5\u03b1\u03c1\u03af\u03bf\u03c5 \ months:function(a,b){return/D/.test(b.substring(0,b.indexOf("MMMM")))?this._monthsGenitiveEl[a.month()]:this._monthsNominativeEl[a.month()]},monthsShort:"\u0399\u03b1\u03bd \u03a6\u03b5\u03b2 \u039c\u03b1\u03c1 \u0391\u03c0\u03c1 \u039c\u03b1\u03ca \u0399\u03bf\u03c5\u03bd \u0399\u03bf\u03c5\u03bb \u0391\u03c5\u03b3 \u03a3\u03b5\u03c0 \u039f\u03ba\u03c4 \u039d\u03bf\u03b5 \u0394\u03b5\u03ba".split(" "),weekdays:"\u039a\u03c5\u03c1\u03b9\u03b1\u03ba\u03ae \u0394\u03b5\u03c5\u03c4\u03ad\u03c1\u03b1 \u03a4\u03c1\u03af\u03c4\u03b7 \u03a4\u03b5\u03c4\u03ac\u03c1\u03c4\u03b7 \u03a0\u03ad\u03bc\u03c0\u03c4\u03b7 \u03a0\u03b1\u03c1\u03b1\u03c3\u03ba\u03b5\u03c5\u03ae \u03a3\u03ac\u03b2\u03b2\u03b1\u03c4\u03bf".split(" "), weekdaysShort:"\u039a\u03c5\u03c1 \u0394\u03b5\u03c5 \u03a4\u03c1\u03b9 \u03a4\u03b5\u03c4 \u03a0\u03b5\u03bc \u03a0\u03b1\u03c1 \u03a3\u03b1\u03b2".split(" "),weekdaysMin:"\u039a\u03c5 \u0394\u03b5 \u03a4\u03c1 \u03a4\u03b5 \u03a0\u03b5 \u03a0\u03b1 \u03a3\u03b1".split(" "),meridiem:function(a,b,c){return 11a?"\u0930\u093e\u0924":10>a?"\u0938\u0941\u092c\u0939":17>a?"\u0926\u094b\u092a\u0939\u0930":20>a?"\u0936\u093e\u092e":"\u0930\u093e\u0924"},week:{dow:0,doy:6}});e.defineLocale("hr",{months:{format:"sije\u010dnja velja\u010de o\u017eujka travnja svibnja lipnja srpnja kolovoza rujna listopada studenoga prosinca".split(" "), standalone:"sije\u010danj velja\u010da o\u017eujak travanj svibanj lipanj srpanj kolovoz rujan listopad studeni prosinac".split(" ")},monthsShort:"sij. velj. o\u017eu. tra. svi. lip. srp. kol. ruj. lis. stu. pro.".split(" "),monthsParseExact:!0,weekdays:"nedjelja ponedjeljak utorak srijeda \u010detvrtak petak subota".split(" "),weekdaysShort:"ned. pon. uto. sri. \u010det. pet. sub.".split(" "),weekdaysMin:"ne po ut sr \u010de pe su".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss", L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010der u] LT",lastWeek:function(){switch(this.day()){case 0:case 3:return"[pro\u0161lu] dddd [u] LT";case 6:return"[pro\u0161le] [subote] [u] LT"; -case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:ya,mm:ya,h:ya,hh:ya,d:"dan",dd:ya,M:"mjesec",MM:ya,y:"godinu",yy:ya},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});var Zc="vas\u00e1rnap h\u00e9tf\u0151n kedden szerd\u00e1n cs\u00fct\u00f6rt\u00f6k\u00f6n p\u00e9nteken szombaton".split(" ");e.defineLocale("hu",{months:"janu\u00e1r febru\u00e1r m\u00e1rcius \u00e1prilis m\u00e1jus j\u00fanius j\u00falius augusztus szeptember okt\u00f3ber november december".split(" "), +case 1:case 2:case 4:case 5:return"[pro\u0161li] dddd [u] LT"}},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"par sekundi",m:wa,mm:wa,h:wa,hh:wa,d:"dan",dd:wa,M:"mjesec",MM:wa,y:"godinu",yy:wa},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});var Yc="vas\u00e1rnap h\u00e9tf\u0151n kedden szerd\u00e1n cs\u00fct\u00f6rt\u00f6k\u00f6n p\u00e9nteken szombaton".split(" ");e.defineLocale("hu",{months:"janu\u00e1r febru\u00e1r m\u00e1rcius \u00e1prilis m\u00e1jus j\u00fanius j\u00falius augusztus szeptember okt\u00f3ber november december".split(" "), monthsShort:"jan feb m\u00e1rc \u00e1pr m\u00e1j j\u00fan j\u00fal aug szept okt nov dec".split(" "),weekdays:"vas\u00e1rnap h\u00e9tf\u0151 kedd szerda cs\u00fct\u00f6rt\u00f6k p\u00e9ntek szombat".split(" "),weekdaysShort:"vas h\u00e9t kedd sze cs\u00fct p\u00e9n szo".split(" "),weekdaysMin:"v h k sze cs p szo".split(" "),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"YYYY.MM.DD.",LL:"YYYY. MMMM D.",LLL:"YYYY. MMMM D. H:mm",LLLL:"YYYY. MMMM D., dddd H:mm"},meridiemParse:/de|du/i,isPM:function(a){return"u"=== -a.charAt(1).toLowerCase()},meridiem:function(a,b,c){return 12>a?!0===c?"de":"DE":!0===c?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return"["+Zc[this.day()]+"] LT[-kor]"},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return"[m\u00falt] ["+Zc[this.day()]+"] LT[-kor]"},sameElse:"L"},relativeTime:{future:"%s m\u00falva",past:"%s",s:N,m:N,mm:N,h:N,hh:N,d:N,dd:N,M:N,MM:N,y:N,yy:N},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("hy-am", +a.charAt(1).toLowerCase()},meridiem:function(a,b,c){return 12>a?!0===c?"de":"DE":!0===c?"du":"DU"},calendar:{sameDay:"[ma] LT[-kor]",nextDay:"[holnap] LT[-kor]",nextWeek:function(){return"["+Yc[this.day()]+"] LT[-kor]"},lastDay:"[tegnap] LT[-kor]",lastWeek:function(){return"[m\u00falt] ["+Yc[this.day()]+"] LT[-kor]"},sameElse:"L"},relativeTime:{future:"%s m\u00falva",past:"%s",s:K,m:K,mm:K,h:K,hh:K,d:K,dd:K,M:K,MM:K,y:K,yy:K},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("hy-am", {months:{format:"\u0570\u0578\u0582\u0576\u057e\u0561\u0580\u056b \u0583\u0565\u057f\u0580\u057e\u0561\u0580\u056b \u0574\u0561\u0580\u057f\u056b \u0561\u057a\u0580\u056b\u056c\u056b \u0574\u0561\u0575\u056b\u057d\u056b \u0570\u0578\u0582\u0576\u056b\u057d\u056b \u0570\u0578\u0582\u056c\u056b\u057d\u056b \u0585\u0563\u0578\u057d\u057f\u0578\u057d\u056b \u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580\u056b \u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b \u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580\u056b \u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580\u056b".split(" "), standalone:"\u0570\u0578\u0582\u0576\u057e\u0561\u0580 \u0583\u0565\u057f\u0580\u057e\u0561\u0580 \u0574\u0561\u0580\u057f \u0561\u057a\u0580\u056b\u056c \u0574\u0561\u0575\u056b\u057d \u0570\u0578\u0582\u0576\u056b\u057d \u0570\u0578\u0582\u056c\u056b\u057d \u0585\u0563\u0578\u057d\u057f\u0578\u057d \u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580 \u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580 \u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580 \u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580".split(" ")}, monthsShort:"\u0570\u0576\u057e \u0583\u057f\u0580 \u0574\u0580\u057f \u0561\u057a\u0580 \u0574\u0575\u057d \u0570\u0576\u057d \u0570\u056c\u057d \u0585\u0563\u057d \u057d\u057a\u057f \u0570\u056f\u057f \u0576\u0574\u0562 \u0564\u056f\u057f".split(" "),weekdays:"\u056f\u056b\u0580\u0561\u056f\u056b \u0565\u0580\u056f\u0578\u0582\u0577\u0561\u0562\u0569\u056b \u0565\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b \u0579\u0578\u0580\u0565\u0584\u0577\u0561\u0562\u0569\u056b \u0570\u056b\u0576\u0563\u0577\u0561\u0562\u0569\u056b \u0578\u0582\u0580\u0562\u0561\u0569 \u0577\u0561\u0562\u0561\u0569".split(" "), @@ -290,7 +285,7 @@ meridiem:function(a){return 4>a?"\u0563\u056b\u0577\u0565\u0580\u057e\u0561":12> monthsShort:"Jan Feb Mar Apr Mei Jun Jul Ags Sep Okt Nov Des".split(" "),weekdays:"Minggu Senin Selasa Rabu Kamis Jumat Sabtu".split(" "),weekdaysShort:"Min Sen Sel Rab Kam Jum Sab".split(" "),weekdaysMin:"Mg Sn Sl Rb Km Jm Sb".split(" "),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|siang|sore|malam/,meridiemHour:function(a,b){12===a&&(a=0);if("pagi"===b)return a;if("siang"===b)return 11<= a?a:a+12;if("sore"===b||"malam"===b)return a+12},meridiem:function(a,b,c){return 11>a?"pagi":15>a?"siang":19>a?"sore":"malam"},calendar:{sameDay:"[Hari ini pukul] LT",nextDay:"[Besok pukul] LT",nextWeek:"dddd [pukul] LT",lastDay:"[Kemarin pukul] LT",lastWeek:"dddd [lalu pukul] LT",sameElse:"L"},relativeTime:{future:"dalam %s",past:"%s yang lalu",s:"beberapa detik",m:"semenit",mm:"%d menit",h:"sejam",hh:"%d jam",d:"sehari",dd:"%d hari",M:"sebulan",MM:"%d bulan",y:"setahun",yy:"%d tahun"},week:{dow:1, doy:7}});e.defineLocale("is",{months:"jan\u00faar febr\u00faar mars apr\u00edl ma\u00ed j\u00fan\u00ed j\u00fal\u00ed \u00e1g\u00fast september okt\u00f3ber n\u00f3vember desember".split(" "),monthsShort:"jan feb mar apr ma\u00ed j\u00fan j\u00fal \u00e1g\u00fa sep okt n\u00f3v des".split(" "),weekdays:"sunnudagur m\u00e1nudagur \u00feri\u00f0judagur mi\u00f0vikudagur fimmtudagur f\u00f6studagur laugardagur".split(" "),weekdaysShort:"sun m\u00e1n \u00feri mi\u00f0 fim f\u00f6s lau".split(" "),weekdaysMin:"Su M\u00e1 \u00der Mi Fi F\u00f6 La".split(" "), -longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[\u00ed dag kl.] LT",nextDay:"[\u00e1 morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[\u00ed g\u00e6r kl.] LT",lastWeek:"[s\u00ed\u00f0asta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s s\u00ed\u00f0an",s:Y,m:Y,mm:Y,h:"klukkustund",hh:Y,d:Y,dd:Y,M:Y,MM:Y,y:Y,yy:Y},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1, +longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY [kl.] H:mm",LLLL:"dddd, D. MMMM YYYY [kl.] H:mm"},calendar:{sameDay:"[\u00ed dag kl.] LT",nextDay:"[\u00e1 morgun kl.] LT",nextWeek:"dddd [kl.] LT",lastDay:"[\u00ed g\u00e6r kl.] LT",lastWeek:"[s\u00ed\u00f0asta] dddd [kl.] LT",sameElse:"L"},relativeTime:{future:"eftir %s",past:"fyrir %s s\u00ed\u00f0an",s:V,m:V,mm:V,h:"klukkustund",hh:V,d:V,dd:V,M:V,MM:V,y:V,yy:V},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1, doy:4}});e.defineLocale("it",{months:"gennaio febbraio marzo aprile maggio giugno luglio agosto settembre ottobre novembre dicembre".split(" "),monthsShort:"gen feb mar apr mag giu lug ago set ott nov dic".split(" "),weekdays:"Domenica Luned\u00ec Marted\u00ec Mercoled\u00ec Gioved\u00ec Venerd\u00ec Sabato".split(" "),weekdaysShort:"Dom Lun Mar Mer Gio Ven Sab".split(" "),weekdaysMin:"Do Lu Ma Me Gi Ve Sa".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm", LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Oggi alle] LT",nextDay:"[Domani alle] LT",nextWeek:"dddd [alle] LT",lastDay:"[Ieri alle] LT",lastWeek:function(){switch(this.day()){case 0:return"[la scorsa] dddd [alle] LT";default:return"[lo scorso] dddd [alle] LT"}},sameElse:"L"},relativeTime:{future:function(a){return(/^[0-9].+$/.test(a)?"tra":"in")+" "+a},past:"%s fa",s:"alcuni secondi",m:"un minuto",mm:"%d minuti",h:"un'ora",hh:"%d ore",d:"un giorno",dd:"%d giorni",M:"un mese",MM:"%d mesi", y:"un anno",yy:"%d anni"},ordinalParse:/\d{1,2}\u00ba/,ordinal:"%d\u00ba",week:{dow:1,doy:4}});e.defineLocale("ja",{months:"1\u6708 2\u6708 3\u6708 4\u6708 5\u6708 6\u6708 7\u6708 8\u6708 9\u6708 10\u6708 11\u6708 12\u6708".split(" "),monthsShort:"1\u6708 2\u6708 3\u6708 4\u6708 5\u6708 6\u6708 7\u6708 8\u6708 9\u6708 10\u6708 11\u6708 12\u6708".split(" "),weekdays:"\u65e5\u66dc\u65e5 \u6708\u66dc\u65e5 \u706b\u66dc\u65e5 \u6c34\u66dc\u65e5 \u6728\u66dc\u65e5 \u91d1\u66dc\u65e5 \u571f\u66dc\u65e5".split(" "), @@ -324,8 +319,8 @@ weekdaysShort:"\u0416\u0435\u043a \u0414\u04af\u0439 \u0428\u0435\u0439 \u0428\u nextWeek:"dddd [\u0441\u0430\u0430\u0442] LT",lastDay:"[\u041a\u0435\u0447\u0435 \u0441\u0430\u0430\u0442] LT",lastWeek:"[\u04e8\u0442\u043a\u0435\u043d \u0430\u043f\u0442\u0430\u043d\u044b\u043d] dddd [\u043a\u04af\u043d\u04af] [\u0441\u0430\u0430\u0442] LT",sameElse:"L"},relativeTime:{future:"%s \u0438\u0447\u0438\u043d\u0434\u0435",past:"%s \u043c\u0443\u0440\u0443\u043d",s:"\u0431\u0438\u0440\u043d\u0435\u0447\u0435 \u0441\u0435\u043a\u0443\u043d\u0434",m:"\u0431\u0438\u0440 \u043c\u04af\u043d\u04e9\u0442", mm:"%d \u043c\u04af\u043d\u04e9\u0442",h:"\u0431\u0438\u0440 \u0441\u0430\u0430\u0442",hh:"%d \u0441\u0430\u0430\u0442",d:"\u0431\u0438\u0440 \u043a\u04af\u043d",dd:"%d \u043a\u04af\u043d",M:"\u0431\u0438\u0440 \u0430\u0439",MM:"%d \u0430\u0439",y:"\u0431\u0438\u0440 \u0436\u044b\u043b",yy:"%d \u0436\u044b\u043b"},ordinalParse:/\d{1,2}-(\u0447\u0438|\u0447\u044b|\u0447\u04af|\u0447\u0443)/,ordinal:function(a){return a+(Wb[a]||Wb[a%10]||Wb[100<=a?100:null])},week:{dow:1,doy:7}});e.defineLocale("lb", {months:"Januar Februar M\u00e4erz Abr\u00ebll Mee Juni Juli August September Oktober November Dezember".split(" "),monthsShort:"Jan. Febr. Mrz. Abr. Mee Jun. Jul. Aug. Sept. Okt. Nov. Dez.".split(" "),monthsParseExact:!0,weekdays:"Sonndeg M\u00e9indeg D\u00ebnschdeg M\u00ebttwoch Donneschdeg Freideg Samschdeg".split(" "),weekdaysShort:"So. M\u00e9. D\u00eb. M\u00eb. Do. Fr. Sa.".split(" "),weekdaysMin:"So M\u00e9 D\u00eb M\u00eb Do Fr Sa".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm [Auer]", -LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[G\u00ebschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:function(a){var b=a.substr(0,a.indexOf(" "));return Ea(b)?"a "+a:"an "+a},past:function(a){var b=a.substr(0, -a.indexOf(" "));return Ea(b)?"viru "+a:"virun "+a},s:"e puer Sekonnen",m:Sa,mm:"%d Minutten",h:Sa,hh:"%d Stonnen",d:Sa,dd:"%d Deeg",M:Sa,MM:"%d M\u00e9int",y:Sa,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("lo",{months:"\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99 \u0e81\u0eb8\u0ea1\u0e9e\u0eb2 \u0ea1\u0eb5\u0e99\u0eb2 \u0ec0\u0ea1\u0eaa\u0eb2 \u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2 \u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2 \u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94 \u0eaa\u0eb4\u0e87\u0eab\u0eb2 \u0e81\u0eb1\u0e99\u0e8d\u0eb2 \u0e95\u0eb8\u0ea5\u0eb2 \u0e9e\u0eb0\u0e88\u0eb4\u0e81 \u0e97\u0eb1\u0e99\u0ea7\u0eb2".split(" "), +LTS:"H:mm:ss [Auer]",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm [Auer]",LLLL:"dddd, D. MMMM YYYY H:mm [Auer]"},calendar:{sameDay:"[Haut um] LT",sameElse:"L",nextDay:"[Muer um] LT",nextWeek:"dddd [um] LT",lastDay:"[G\u00ebschter um] LT",lastWeek:function(){switch(this.day()){case 2:case 4:return"[Leschten] dddd [um] LT";default:return"[Leschte] dddd [um] LT"}}},relativeTime:{future:function(a){var b=a.substr(0,a.indexOf(" "));return Da(b)?"a "+a:"an "+a},past:function(a){var b=a.substr(0, +a.indexOf(" "));return Da(b)?"viru "+a:"virun "+a},s:"e puer Sekonnen",m:Qa,mm:"%d Minutten",h:Qa,hh:"%d Stonnen",d:Qa,dd:"%d Deeg",M:Qa,MM:"%d M\u00e9int",y:Qa,yy:"%d Joer"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("lo",{months:"\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99 \u0e81\u0eb8\u0ea1\u0e9e\u0eb2 \u0ea1\u0eb5\u0e99\u0eb2 \u0ec0\u0ea1\u0eaa\u0eb2 \u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2 \u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2 \u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94 \u0eaa\u0eb4\u0e87\u0eab\u0eb2 \u0e81\u0eb1\u0e99\u0e8d\u0eb2 \u0e95\u0eb8\u0ea5\u0eb2 \u0e9e\u0eb0\u0e88\u0eb4\u0e81 \u0e97\u0eb1\u0e99\u0ea7\u0eb2".split(" "), monthsShort:"\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99 \u0e81\u0eb8\u0ea1\u0e9e\u0eb2 \u0ea1\u0eb5\u0e99\u0eb2 \u0ec0\u0ea1\u0eaa\u0eb2 \u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2 \u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2 \u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94 \u0eaa\u0eb4\u0e87\u0eab\u0eb2 \u0e81\u0eb1\u0e99\u0e8d\u0eb2 \u0e95\u0eb8\u0ea5\u0eb2 \u0e9e\u0eb0\u0e88\u0eb4\u0e81 \u0e97\u0eb1\u0e99\u0ea7\u0eb2".split(" "),weekdays:"\u0ead\u0eb2\u0e97\u0eb4\u0e94 \u0e88\u0eb1\u0e99 \u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99 \u0e9e\u0eb8\u0e94 \u0e9e\u0eb0\u0eab\u0eb1\u0e94 \u0eaa\u0eb8\u0e81 \u0ec0\u0eaa\u0ebb\u0eb2".split(" "), weekdaysShort:"\u0e97\u0eb4\u0e94 \u0e88\u0eb1\u0e99 \u0ead\u0eb1\u0e87\u0e84\u0eb2\u0e99 \u0e9e\u0eb8\u0e94 \u0e9e\u0eb0\u0eab\u0eb1\u0e94 \u0eaa\u0eb8\u0e81 \u0ec0\u0eaa\u0ebb\u0eb2".split(" "),weekdaysMin:"\u0e97 \u0e88 \u0ead\u0e84 \u0e9e \u0e9e\u0eab \u0eaa\u0e81 \u0eaa".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"\u0ea7\u0eb1\u0e99dddd D MMMM YYYY HH:mm"},meridiemParse:/\u0e95\u0ead\u0e99\u0ec0\u0e8a\u0ebb\u0ec9\u0eb2|\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87/, isPM:function(a){return"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"===a},meridiem:function(a,b,c){return 12>a?"\u0e95\u0ead\u0e99\u0ec0\u0e8a\u0ebb\u0ec9\u0eb2":"\u0e95\u0ead\u0e99\u0ec1\u0ea5\u0e87"},calendar:{sameDay:"[\u0ea1\u0eb7\u0ec9\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT",nextDay:"[\u0ea1\u0eb7\u0ec9\u0ead\u0eb7\u0ec8\u0e99\u0ec0\u0ea7\u0ea5\u0eb2] LT",nextWeek:"[\u0ea7\u0eb1\u0e99]dddd[\u0edc\u0ec9\u0eb2\u0ec0\u0ea7\u0ea5\u0eb2] LT",lastDay:"[\u0ea1\u0eb7\u0ec9\u0ea7\u0eb2\u0e99\u0e99\u0eb5\u0ec9\u0ec0\u0ea7\u0ea5\u0eb2] LT", @@ -334,14 +329,14 @@ dd:"%d \u0ea1\u0eb7\u0ec9",M:"1 \u0ec0\u0e94\u0eb7\u0ead\u0e99",MM:"%d \u0ec0\u0 MM:"m\u0117nesiai_m\u0117nesi\u0173_m\u0117nesius",y:"metai_met\u0173_metus",yy:"metai_met\u0173_metus"};e.defineLocale("lt",{months:{format:"sausio vasario kovo baland\u017eio gegu\u017e\u0117s bir\u017eelio liepos rugpj\u016b\u010dio rugs\u0117jo spalio lapkri\u010dio gruod\u017eio".split(" "),standalone:"sausis vasaris kovas balandis gegu\u017e\u0117 bir\u017eelis liepa rugpj\u016btis rugs\u0117jis spalis lapkritis gruodis".split(" "),isFormat:/D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/}, monthsShort:"sau vas kov bal geg bir lie rgp rgs spa lap grd".split(" "),weekdays:{format:"sekmadien\u012f pirmadien\u012f antradien\u012f tre\u010diadien\u012f ketvirtadien\u012f penktadien\u012f \u0161e\u0161tadien\u012f".split(" "),standalone:"sekmadienis pirmadienis antradienis tre\u010diadienis ketvirtadienis penktadienis \u0161e\u0161tadienis".split(" "),isFormat:/dddd HH:mm/},weekdaysShort:"Sek Pir Ant Tre Ket Pen \u0160e\u0161".split(" "),weekdaysMin:"S P A T K Pn \u0160".split(" "),weekdaysParseExact:!0, longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"YYYY [m.] MMMM D [d.]",LLL:"YYYY [m.] MMMM D [d.], HH:mm [val.]",LLLL:"YYYY [m.] MMMM D [d.], dddd, HH:mm [val.]",l:"YYYY-MM-DD",ll:"YYYY [m.] MMMM D [d.]",lll:"YYYY [m.] MMMM D [d.], HH:mm [val.]",llll:"YYYY [m.] MMMM D [d.], ddd, HH:mm [val.]"},calendar:{sameDay:"[\u0160iandien] LT",nextDay:"[Rytoj] LT",nextWeek:"dddd LT",lastDay:"[Vakar] LT",lastWeek:"[Pra\u0117jus\u012f] dddd LT",sameElse:"L"},relativeTime:{future:"po %s",past:"prie\u0161 %s", -s:function(a,b,c,d){return b?"kelios sekund\u0117s":d?"keli\u0173 sekund\u017ei\u0173":"kelias sekundes"},m:Fa,mm:Ta,h:Fa,hh:Ta,d:Fa,dd:Ta,M:Fa,MM:Ta,y:Fa,yy:Ta},ordinalParse:/\d{1,2}-oji/,ordinal:function(a){return a+"-oji"},week:{dow:1,doy:4}});var Kc={m:["min\u016btes","min\u016bt\u0113m","min\u016bte","min\u016btes"],mm:["min\u016btes","min\u016bt\u0113m","min\u016bte","min\u016btes"],h:["stundas","stund\u0101m","stunda","stundas"],hh:["stundas","stund\u0101m","stunda","stundas"],d:["dienas", +s:function(a,b,c,d){return b?"kelios sekund\u0117s":d?"keli\u0173 sekund\u017ei\u0173":"kelias sekundes"},m:Ea,mm:Ra,h:Ea,hh:Ra,d:Ea,dd:Ra,M:Ea,MM:Ra,y:Ea,yy:Ra},ordinalParse:/\d{1,2}-oji/,ordinal:function(a){return a+"-oji"},week:{dow:1,doy:4}});var Jc={m:["min\u016btes","min\u016bt\u0113m","min\u016bte","min\u016btes"],mm:["min\u016btes","min\u016bt\u0113m","min\u016bte","min\u016btes"],h:["stundas","stund\u0101m","stunda","stundas"],hh:["stundas","stund\u0101m","stunda","stundas"],d:["dienas", "dien\u0101m","diena","dienas"],dd:["dienas","dien\u0101m","diena","dienas"],M:["m\u0113ne\u0161a","m\u0113ne\u0161iem","m\u0113nesis","m\u0113ne\u0161i"],MM:["m\u0113ne\u0161a","m\u0113ne\u0161iem","m\u0113nesis","m\u0113ne\u0161i"],y:["gada","gadiem","gads","gadi"],yy:["gada","gadiem","gads","gadi"]};e.defineLocale("lv",{months:"janv\u0101ris febru\u0101ris marts apr\u012blis maijs j\u016bnijs j\u016blijs augusts septembris oktobris novembris decembris".split(" "),monthsShort:"jan feb mar apr mai j\u016bn j\u016bl aug sep okt nov dec".split(" "), weekdays:"sv\u0113tdiena pirmdiena otrdiena tre\u0161diena ceturtdiena piektdiena sestdiena".split(" "),weekdaysShort:"Sv P O T C Pk S".split(" "),weekdaysMin:"Sv P O T C Pk S".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY.",LL:"YYYY. [gada] D. MMMM",LLL:"YYYY. [gada] D. MMMM, HH:mm",LLLL:"YYYY. [gada] D. MMMM, dddd, HH:mm"},calendar:{sameDay:"[\u0160odien pulksten] LT",nextDay:"[R\u012bt pulksten] LT",nextWeek:"dddd [pulksten] LT",lastDay:"[Vakar pulksten] LT", -lastWeek:"[Pag\u0101ju\u0161\u0101] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"p\u0113c %s",past:"pirms %s",s:function(a,b){return b?"da\u017eas sekundes":"da\u017e\u0101m sekund\u0113m"},m:Va,mm:Ua,h:Va,hh:Ua,d:Va,dd:Ua,M:Va,MM:Ua,y:Va,yy:Ua},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var da={words:{m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"], -yy:["godina","godine","godina"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:2<=a&&4>=a?b[1]:b[2]},translate:function(a,b,c){var d=da.words[c];return 1===c.length?b?d[0]:d[1]:a+" "+da.correctGrammaticalCase(a,d)}};e.defineLocale("me",{months:"januar februar mart april maj jun jul avgust septembar oktobar novembar decembar".split(" "),monthsShort:"jan. feb. mar. apr. maj jun jul avg. sep. okt. nov. dec.".split(" "),monthsParseExact:!0,weekdays:"nedjelja ponedjeljak utorak srijeda \u010detvrtak petak subota".split(" "), +lastWeek:"[Pag\u0101ju\u0161\u0101] dddd [pulksten] LT",sameElse:"L"},relativeTime:{future:"p\u0113c %s",past:"pirms %s",s:function(a,b){return b?"da\u017eas sekundes":"da\u017e\u0101m sekund\u0113m"},m:Ta,mm:Sa,h:Ta,hh:Sa,d:Ta,dd:Sa,M:Ta,MM:Sa,y:Ta,yy:Sa},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var aa={words:{m:["jedan minut","jednog minuta"],mm:["minut","minuta","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mjesec","mjeseca","mjeseci"], +yy:["godina","godine","godina"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:2<=a&&4>=a?b[1]:b[2]},translate:function(a,b,c){var d=aa.words[c];return 1===c.length?b?d[0]:d[1]:a+" "+aa.correctGrammaticalCase(a,d)}};e.defineLocale("me",{months:"januar februar mart april maj jun jul avgust septembar oktobar novembar decembar".split(" "),monthsShort:"jan. feb. mar. apr. maj jun jul avg. sep. okt. nov. dec.".split(" "),monthsParseExact:!0,weekdays:"nedjelja ponedjeljak utorak srijeda \u010detvrtak petak subota".split(" "), weekdaysShort:"ned. pon. uto. sri. \u010det. pet. sub.".split(" "),weekdaysMin:"ne po ut sr \u010de pe su".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sjutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedjelju] [u] LT";case 3:return"[u] [srijedu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}}, -lastDay:"[ju\u010de u] LT",lastWeek:function(){return"[pro\u0161le] [nedjelje] [u] LT;[pro\u0161log] [ponedjeljka] [u] LT;[pro\u0161log] [utorka] [u] LT;[pro\u0161le] [srijede] [u] LT;[pro\u0161log] [\u010detvrtka] [u] LT;[pro\u0161log] [petka] [u] LT;[pro\u0161le] [subote] [u] LT".split(";")[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",m:da.translate,mm:da.translate,h:da.translate,hh:da.translate,d:"dan",dd:da.translate,M:"mjesec",MM:da.translate,y:"godinu", -yy:da.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});e.defineLocale("mi",{months:"Kohi-t\u0101te Hui-tanguru Pout\u016b-te-rangi Paenga-wh\u0101wh\u0101 Haratua Pipiri H\u014dngoingoi Here-turi-k\u014dk\u0101 Mahuru Whiringa-\u0101-nuku Whiringa-\u0101-rangi Hakihea".split(" "),monthsShort:"Kohi Hui Pou Pae Hara Pipi H\u014dngoi Here Mahu Whi-nu Whi-ra Haki".split(" "),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, +lastDay:"[ju\u010de u] LT",lastWeek:function(){return"[pro\u0161le] [nedjelje] [u] LT;[pro\u0161log] [ponedjeljka] [u] LT;[pro\u0161log] [utorka] [u] LT;[pro\u0161le] [srijede] [u] LT;[pro\u0161log] [\u010detvrtka] [u] LT;[pro\u0161log] [petka] [u] LT;[pro\u0161le] [subote] [u] LT".split(";")[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"prije %s",s:"nekoliko sekundi",m:aa.translate,mm:aa.translate,h:aa.translate,hh:aa.translate,d:"dan",dd:aa.translate,M:"mjesec",MM:aa.translate,y:"godinu", +yy:aa.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});e.defineLocale("mi",{months:"Kohi-t\u0101te Hui-tanguru Pout\u016b-te-rangi Paenga-wh\u0101wh\u0101 Haratua Pipiri H\u014dngoingoi Here-turi-k\u014dk\u0101 Mahuru Whiringa-\u0101-nuku Whiringa-\u0101-rangi Hakihea".split(" "),monthsShort:"Kohi Hui Pou Pae Hara Pipi H\u014dngoi Here Mahu Whi-nu Whi-ra Haki".split(" "),monthsRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i, monthsShortRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,monthsShortStrictRegex:/(?:['a-z\u0101\u014D\u016B]+\-?){1,2}/i,weekdays:"R\u0101tapu Mane T\u016brei Wenerei T\u0101ite Paraire H\u0101tarei".split(" "),weekdaysShort:"Ta Ma T\u016b We T\u0101i Pa H\u0101".split(" "),weekdaysMin:"Ta Ma T\u016b We T\u0101i Pa H\u0101".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [i] HH:mm",LLLL:"dddd, D MMMM YYYY [i] HH:mm"},calendar:{sameDay:"[i teie mahana, i] LT", nextDay:"[apopo i] LT",nextWeek:"dddd [i] LT",lastDay:"[inanahi i] LT",lastWeek:"dddd [whakamutunga i] LT",sameElse:"L"},relativeTime:{future:"i roto i %s",past:"%s i mua",s:"te h\u0113kona ruarua",m:"he meneti",mm:"%d meneti",h:"te haora",hh:"%d haora",d:"he ra",dd:"%d ra",M:"he marama",MM:"%d marama",y:"he tau",yy:"%d tau"},ordinalParse:/\d{1,2}\u00ba/,ordinal:"%d\u00ba",week:{dow:1,doy:4}});e.defineLocale("mk",{months:"\u0458\u0430\u043d\u0443\u0430\u0440\u0438 \u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438 \u043c\u0430\u0440\u0442 \u0430\u043f\u0440\u0438\u043b \u043c\u0430\u0458 \u0458\u0443\u043d\u0438 \u0458\u0443\u043b\u0438 \u0430\u0432\u0433\u0443\u0441\u0442 \u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438 \u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438 \u043d\u043e\u0435\u043c\u0432\u0440\u0438 \u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438".split(" "), monthsShort:"\u0458\u0430\u043d \u0444\u0435\u0432 \u043c\u0430\u0440 \u0430\u043f\u0440 \u043c\u0430\u0458 \u0458\u0443\u043d \u0458\u0443\u043b \u0430\u0432\u0433 \u0441\u0435\u043f \u043e\u043a\u0442 \u043d\u043e\u0435 \u0434\u0435\u043a".split(" "),weekdays:"\u043d\u0435\u0434\u0435\u043b\u0430 \u043f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a \u0432\u0442\u043e\u0440\u043d\u0438\u043a \u0441\u0440\u0435\u0434\u0430 \u0447\u0435\u0442\u0432\u0440\u0442\u043e\u043a \u043f\u0435\u0442\u043e\u043a \u0441\u0430\u0431\u043e\u0442\u0430".split(" "), @@ -357,7 +352,7 @@ meridiemHour:function(a,b){12===a&&(a=0);return"\u0d30\u0d3e\u0d24\u0d4d\u0d30\u "\u0d30\u0d3e\u0d24\u0d4d\u0d30\u0d3f"}});var ve={1:"\u0967",2:"\u0968",3:"\u0969",4:"\u096a",5:"\u096b",6:"\u096c",7:"\u096d",8:"\u096e",9:"\u096f",0:"\u0966"},we={"\u0967":"1","\u0968":"2","\u0969":"3","\u096a":"4","\u096b":"5","\u096c":"6","\u096d":"7","\u096e":"8","\u096f":"9","\u0966":"0"};e.defineLocale("mr",{months:"\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940 \u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940 \u092e\u093e\u0930\u094d\u091a \u090f\u092a\u094d\u0930\u093f\u0932 \u092e\u0947 \u091c\u0942\u0928 \u091c\u0941\u0932\u0948 \u0911\u0917\u0938\u094d\u091f \u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930 \u0911\u0915\u094d\u091f\u094b\u092c\u0930 \u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930 \u0921\u093f\u0938\u0947\u0902\u092c\u0930".split(" "), monthsShort:"\u091c\u093e\u0928\u0947. \u092b\u0947\u092c\u094d\u0930\u0941. \u092e\u093e\u0930\u094d\u091a. \u090f\u092a\u094d\u0930\u093f. \u092e\u0947. \u091c\u0942\u0928. \u091c\u0941\u0932\u0948. \u0911\u0917. \u0938\u092a\u094d\u091f\u0947\u0902. \u0911\u0915\u094d\u091f\u094b. \u0928\u094b\u0935\u094d\u0939\u0947\u0902. \u0921\u093f\u0938\u0947\u0902.".split(" "),monthsParseExact:!0,weekdays:"\u0930\u0935\u093f\u0935\u093e\u0930 \u0938\u094b\u092e\u0935\u093e\u0930 \u092e\u0902\u0917\u0933\u0935\u093e\u0930 \u092c\u0941\u0927\u0935\u093e\u0930 \u0917\u0941\u0930\u0942\u0935\u093e\u0930 \u0936\u0941\u0915\u094d\u0930\u0935\u093e\u0930 \u0936\u0928\u093f\u0935\u093e\u0930".split(" "), weekdaysShort:"\u0930\u0935\u093f \u0938\u094b\u092e \u092e\u0902\u0917\u0933 \u092c\u0941\u0927 \u0917\u0941\u0930\u0942 \u0936\u0941\u0915\u094d\u0930 \u0936\u0928\u093f".split(" "),weekdaysMin:"\u0930 \u0938\u094b \u092e\u0902 \u092c\u0941 \u0917\u0941 \u0936\u0941 \u0936".split(" "),longDateFormat:{LT:"A h:mm \u0935\u093e\u091c\u0924\u093e",LTS:"A h:mm:ss \u0935\u093e\u091c\u0924\u093e",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e",LLLL:"dddd, D MMMM YYYY, A h:mm \u0935\u093e\u091c\u0924\u093e"}, -calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u0909\u0926\u094d\u092f\u093e] LT",nextWeek:"dddd, LT",lastDay:"[\u0915\u093e\u0932] LT",lastWeek:"[\u092e\u093e\u0917\u0940\u0932] dddd, LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u0927\u094d\u092f\u0947",past:"%s\u092a\u0942\u0930\u094d\u0935\u0940",s:O,m:O,mm:O,h:O,hh:O,d:O,dd:O,M:O,MM:O,y:O,yy:O},preparse:function(a){return a.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(a){return we[a]})},postformat:function(a){return a.replace(/\d/g, +calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u0909\u0926\u094d\u092f\u093e] LT",nextWeek:"dddd, LT",lastDay:"[\u0915\u093e\u0932] LT",lastWeek:"[\u092e\u093e\u0917\u0940\u0932] dddd, LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u0927\u094d\u092f\u0947",past:"%s\u092a\u0942\u0930\u094d\u0935\u0940",s:L,m:L,mm:L,h:L,hh:L,d:L,dd:L,M:L,MM:L,y:L,yy:L},preparse:function(a){return a.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(a){return we[a]})},postformat:function(a){return a.replace(/\d/g, function(a){return ve[a]})},meridiemParse:/\u0930\u093e\u0924\u094d\u0930\u0940|\u0938\u0915\u093e\u0933\u0940|\u0926\u0941\u092a\u093e\u0930\u0940|\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940/,meridiemHour:function(a,b){12===a&&(a=0);if("\u0930\u093e\u0924\u094d\u0930\u0940"===b)return 4>a?a:a+12;if("\u0938\u0915\u093e\u0933\u0940"===b)return a;if("\u0926\u0941\u092a\u093e\u0930\u0940"===b)return 10<=a?a:a+12;if("\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940"===b)return a+12},meridiem:function(a, b,c){return 4>a?"\u0930\u093e\u0924\u094d\u0930\u0940":10>a?"\u0938\u0915\u093e\u0933\u0940":17>a?"\u0926\u0941\u092a\u093e\u0930\u0940":20>a?"\u0938\u093e\u092f\u0902\u0915\u093e\u0933\u0940":"\u0930\u093e\u0924\u094d\u0930\u0940"},week:{dow:0,doy:6}});e.defineLocale("ms-my",{months:"Januari Februari Mac April Mei Jun Julai Ogos September Oktober November Disember".split(" "),monthsShort:"Jan Feb Mac Apr Mei Jun Jul Ogs Sep Okt Nov Dis".split(" "),weekdays:"Ahad Isnin Selasa Rabu Khamis Jumaat Sabtu".split(" "), weekdaysShort:"Ahd Isn Sel Rab Kha Jum Sab".split(" "),weekdaysMin:"Ah Is Sl Rb Km Jm Sb".split(" "),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [pukul] HH.mm",LLLL:"dddd, D MMMM YYYY [pukul] HH.mm"},meridiemParse:/pagi|tengahari|petang|malam/,meridiemHour:function(a,b){12===a&&(a=0);if("pagi"===b)return a;if("tengahari"===b)return 11<=a?a:a+12;if("petang"===b||"malam"===b)return a+12},meridiem:function(a,b,c){return 11>a?"pagi":15>a?"tengahari":19>a? @@ -377,11 +372,11 @@ weekdaysShort:"\u0906\u0907\u0924. \u0938\u094b\u092e. \u092e\u0919\u094d\u0917\ LLLL:"dddd, D MMMM YYYY, A\u0915\u094b h:mm \u092c\u091c\u0947"},preparse:function(a){return a.replace(/[\u0967\u0968\u0969\u096a\u096b\u096c\u096d\u096e\u096f\u0966]/g,function(a){return Ae[a]})},postformat:function(a){return a.replace(/\d/g,function(a){return ze[a]})},meridiemParse:/\u0930\u093e\u0924\u093f|\u092c\u093f\u0939\u093e\u0928|\u0926\u093f\u0909\u0901\u0938\u094b|\u0938\u093e\u0901\u091d/,meridiemHour:function(a,b){12===a&&(a=0);if("\u0930\u093e\u0924\u093f"===b)return 4>a?a:a+12;if("\u092c\u093f\u0939\u093e\u0928"=== b)return a;if("\u0926\u093f\u0909\u0901\u0938\u094b"===b)return 10<=a?a:a+12;if("\u0938\u093e\u0901\u091d"===b)return a+12},meridiem:function(a,b,c){return 3>a?"\u0930\u093e\u0924\u093f":12>a?"\u092c\u093f\u0939\u093e\u0928":16>a?"\u0926\u093f\u0909\u0901\u0938\u094b":20>a?"\u0938\u093e\u0901\u091d":"\u0930\u093e\u0924\u093f"},calendar:{sameDay:"[\u0906\u091c] LT",nextDay:"[\u092d\u094b\u0932\u093f] LT",nextWeek:"[\u0906\u0909\u0901\u0926\u094b] dddd[,] LT",lastDay:"[\u0939\u093f\u091c\u094b] LT", lastWeek:"[\u0917\u090f\u0915\u094b] dddd[,] LT",sameElse:"L"},relativeTime:{future:"%s\u092e\u093e",past:"%s \u0905\u0917\u093e\u0921\u093f",s:"\u0915\u0947\u0939\u0940 \u0915\u094d\u0937\u0923",m:"\u090f\u0915 \u092e\u093f\u0928\u0947\u091f",mm:"%d \u092e\u093f\u0928\u0947\u091f",h:"\u090f\u0915 \u0918\u0923\u094d\u091f\u093e",hh:"%d \u0918\u0923\u094d\u091f\u093e",d:"\u090f\u0915 \u0926\u093f\u0928",dd:"%d \u0926\u093f\u0928",M:"\u090f\u0915 \u092e\u0939\u093f\u0928\u093e",MM:"%d \u092e\u0939\u093f\u0928\u093e", -y:"\u090f\u0915 \u092c\u0930\u094d\u0937",yy:"%d \u092c\u0930\u094d\u0937"},week:{dow:0,doy:6}});var Be="jan. feb. mrt. apr. mei jun. jul. aug. sep. okt. nov. dec.".split(" "),Ce="jan feb mrt apr mei jun jul aug sep okt nov dec".split(" "),Xb=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],$c=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i; -e.defineLocale("nl-be",{months:"januari februari maart april mei juni juli augustus september oktober november december".split(" "),monthsShort:function(a,b){return/-MMM-/.test(b)?Ce[a.month()]:Be[a.month()]},monthsRegex:$c,monthsShortRegex:$c,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:Xb,longMonthsParse:Xb,shortMonthsParse:Xb, +y:"\u090f\u0915 \u092c\u0930\u094d\u0937",yy:"%d \u092c\u0930\u094d\u0937"},week:{dow:0,doy:6}});var Be="jan. feb. mrt. apr. mei jun. jul. aug. sep. okt. nov. dec.".split(" "),Ce="jan feb mrt apr mei jun jul aug sep okt nov dec".split(" "),Xb=[/^jan/i,/^feb/i,/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],Zc=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i; +e.defineLocale("nl-be",{months:"januari februari maart april mei juni juli augustus september oktober november december".split(" "),monthsShort:function(a,b){return/-MMM-/.test(b)?Ce[a.month()]:Be[a.month()]},monthsRegex:Zc,monthsShortRegex:Zc,monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:Xb,longMonthsParse:Xb,shortMonthsParse:Xb, weekdays:"zondag maandag dinsdag woensdag donderdag vrijdag zaterdag".split(" "),weekdaysShort:"zo. ma. di. wo. do. vr. za.".split(" "),weekdaysMin:"Zo Ma Di Wo Do Vr Za".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s", past:"%s geleden",s:"een paar seconden",m:"\u00e9\u00e9n minuut",mm:"%d minuten",h:"\u00e9\u00e9n uur",hh:"%d uur",d:"\u00e9\u00e9n dag",dd:"%d dagen",M:"\u00e9\u00e9n maand",MM:"%d maanden",y:"\u00e9\u00e9n jaar",yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(a){return a+(1===a||8===a||20<=a?"ste":"de")},week:{dow:1,doy:4}});var De="jan. feb. mrt. apr. mei jun. jul. aug. sep. okt. nov. dec.".split(" "),Ee="jan feb mrt apr mei jun jul aug sep okt nov dec".split(" "),Yb=[/^jan/i,/^feb/i, -/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],ad=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;e.defineLocale("nl",{months:"januari februari maart april mei juni juli augustus september oktober november december".split(" "),monthsShort:function(a,b){return/-MMM-/.test(b)?Ee[a.month()]:De[a.month()]},monthsRegex:ad,monthsShortRegex:ad, +/^maart|mrt.?$/i,/^apr/i,/^mei$/i,/^jun[i.]?$/i,/^jul[i.]?$/i,/^aug/i,/^sep/i,/^okt/i,/^nov/i,/^dec/i],$c=/^(januari|februari|maart|april|mei|april|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;e.defineLocale("nl",{months:"januari februari maart april mei juni juli augustus september oktober november december".split(" "),monthsShort:function(a,b){return/-MMM-/.test(b)?Ee[a.month()]:De[a.month()]},monthsRegex:$c,monthsShortRegex:$c, monthsStrictRegex:/^(januari|februari|maart|mei|ju[nl]i|april|augustus|september|oktober|november|december)/i,monthsShortStrictRegex:/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,monthsParse:Yb,longMonthsParse:Yb,shortMonthsParse:Yb,weekdays:"zondag maandag dinsdag woensdag donderdag vrijdag zaterdag".split(" "),weekdaysShort:"zo. ma. di. wo. do. vr. za.".split(" "),weekdaysMin:"Zo Ma Di Wo Do Vr Za".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm", LTS:"HH:mm:ss",L:"DD-MM-YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd D MMMM YYYY HH:mm"},calendar:{sameDay:"[vandaag om] LT",nextDay:"[morgen om] LT",nextWeek:"dddd [om] LT",lastDay:"[gisteren om] LT",lastWeek:"[afgelopen] dddd [om] LT",sameElse:"L"},relativeTime:{future:"over %s",past:"%s geleden",s:"een paar seconden",m:"\u00e9\u00e9n minuut",mm:"%d minuten",h:"\u00e9\u00e9n uur",hh:"%d uur",d:"\u00e9\u00e9n dag",dd:"%d dagen",M:"\u00e9\u00e9n maand",MM:"%d maanden",y:"\u00e9\u00e9n jaar", yy:"%d jaar"},ordinalParse:/\d{1,2}(ste|de)/,ordinal:function(a){return a+(1===a||8===a||20<=a?"ste":"de")},week:{dow:1,doy:4}});e.defineLocale("nn",{months:"januar februar mars april mai juni juli august september oktober november desember".split(" "),monthsShort:"jan feb mar apr mai jun jul aug sep okt nov des".split(" "),weekdays:"sundag m\u00e5ndag tysdag onsdag torsdag fredag laurdag".split(" "),weekdaysShort:"sun m\u00e5n tys ons tor fre lau".split(" "),weekdaysMin:"su m\u00e5 ty on to fr l\u00f8".split(" "), @@ -391,16 +386,16 @@ monthsShort:"\u0a1c\u0a28\u0a35\u0a30\u0a40 \u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40 weekdaysShort:"\u0a10\u0a24 \u0a38\u0a4b\u0a2e \u0a2e\u0a70\u0a17\u0a32 \u0a2c\u0a41\u0a27 \u0a35\u0a40\u0a30 \u0a38\u0a3c\u0a41\u0a15\u0a30 \u0a38\u0a3c\u0a28\u0a40".split(" "),weekdaysMin:"\u0a10\u0a24 \u0a38\u0a4b\u0a2e \u0a2e\u0a70\u0a17\u0a32 \u0a2c\u0a41\u0a27 \u0a35\u0a40\u0a30 \u0a38\u0a3c\u0a41\u0a15\u0a30 \u0a38\u0a3c\u0a28\u0a40".split(" "),longDateFormat:{LT:"A h:mm \u0a35\u0a1c\u0a47",LTS:"A h:mm:ss \u0a35\u0a1c\u0a47",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY, A h:mm \u0a35\u0a1c\u0a47", LLLL:"dddd, D MMMM YYYY, A h:mm \u0a35\u0a1c\u0a47"},calendar:{sameDay:"[\u0a05\u0a1c] LT",nextDay:"[\u0a15\u0a32] LT",nextWeek:"dddd, LT",lastDay:"[\u0a15\u0a32] LT",lastWeek:"[\u0a2a\u0a3f\u0a1b\u0a32\u0a47] dddd, LT",sameElse:"L"},relativeTime:{future:"%s \u0a35\u0a3f\u0a71\u0a1a",past:"%s \u0a2a\u0a3f\u0a1b\u0a32\u0a47",s:"\u0a15\u0a41\u0a1d \u0a38\u0a15\u0a3f\u0a70\u0a1f",m:"\u0a07\u0a15 \u0a2e\u0a3f\u0a70\u0a1f",mm:"%d \u0a2e\u0a3f\u0a70\u0a1f",h:"\u0a07\u0a71\u0a15 \u0a18\u0a70\u0a1f\u0a3e", hh:"%d \u0a18\u0a70\u0a1f\u0a47",d:"\u0a07\u0a71\u0a15 \u0a26\u0a3f\u0a28",dd:"%d \u0a26\u0a3f\u0a28",M:"\u0a07\u0a71\u0a15 \u0a2e\u0a39\u0a40\u0a28\u0a3e",MM:"%d \u0a2e\u0a39\u0a40\u0a28\u0a47",y:"\u0a07\u0a71\u0a15 \u0a38\u0a3e\u0a32",yy:"%d \u0a38\u0a3e\u0a32"},preparse:function(a){return a.replace(/[\u0a67\u0a68\u0a69\u0a6a\u0a6b\u0a6c\u0a6d\u0a6e\u0a6f\u0a66]/g,function(a){return Ge[a]})},postformat:function(a){return a.replace(/\d/g,function(a){return Fe[a]})},meridiemParse:/\u0a30\u0a3e\u0a24|\u0a38\u0a35\u0a47\u0a30|\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30|\u0a38\u0a3c\u0a3e\u0a2e/, -meridiemHour:function(a,b){12===a&&(a=0);if("\u0a30\u0a3e\u0a24"===b)return 4>a?a:a+12;if("\u0a38\u0a35\u0a47\u0a30"===b)return a;if("\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30"===b)return 10<=a?a:a+12;if("\u0a38\u0a3c\u0a3e\u0a2e"===b)return a+12},meridiem:function(a,b,c){return 4>a?"\u0a30\u0a3e\u0a24":10>a?"\u0a38\u0a35\u0a47\u0a30":17>a?"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30":20>a?"\u0a38\u0a3c\u0a3e\u0a2e":"\u0a30\u0a3e\u0a24"},week:{dow:0,doy:6}});var bd="stycze\u0144 luty marzec kwiecie\u0144 maj czerwiec lipiec sierpie\u0144 wrzesie\u0144 pa\u017adziernik listopad grudzie\u0144".split(" "), -cd="stycznia lutego marca kwietnia maja czerwca lipca sierpnia wrze\u015bnia pa\u017adziernika listopada grudnia".split(" ");e.defineLocale("pl",{months:function(a,b){return""===b?"("+cd[a.month()]+"|"+bd[a.month()]+")":/D MMMM/.test(b)?cd[a.month()]:bd[a.month()]},monthsShort:"sty lut mar kwi maj cze lip sie wrz pa\u017a lis gru".split(" "),weekdays:"niedziela poniedzia\u0142ek wtorek \u015broda czwartek pi\u0105tek sobota".split(" "),weekdaysShort:"ndz pon wt \u015br czw pt sob".split(" "),weekdaysMin:"Nd Pn Wt \u015ar Cz Pt So".split(" "), +meridiemHour:function(a,b){12===a&&(a=0);if("\u0a30\u0a3e\u0a24"===b)return 4>a?a:a+12;if("\u0a38\u0a35\u0a47\u0a30"===b)return a;if("\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30"===b)return 10<=a?a:a+12;if("\u0a38\u0a3c\u0a3e\u0a2e"===b)return a+12},meridiem:function(a,b,c){return 4>a?"\u0a30\u0a3e\u0a24":10>a?"\u0a38\u0a35\u0a47\u0a30":17>a?"\u0a26\u0a41\u0a2a\u0a39\u0a3f\u0a30":20>a?"\u0a38\u0a3c\u0a3e\u0a2e":"\u0a30\u0a3e\u0a24"},week:{dow:0,doy:6}});var ad="stycze\u0144 luty marzec kwiecie\u0144 maj czerwiec lipiec sierpie\u0144 wrzesie\u0144 pa\u017adziernik listopad grudzie\u0144".split(" "), +bd="stycznia lutego marca kwietnia maja czerwca lipca sierpnia wrze\u015bnia pa\u017adziernika listopada grudnia".split(" ");e.defineLocale("pl",{months:function(a,b){return""===b?"("+bd[a.month()]+"|"+ad[a.month()]+")":/D MMMM/.test(b)?bd[a.month()]:ad[a.month()]},monthsShort:"sty lut mar kwi maj cze lip sie wrz pa\u017a lis gru".split(" "),weekdays:"niedziela poniedzia\u0142ek wtorek \u015broda czwartek pi\u0105tek sobota".split(" "),weekdaysShort:"ndz pon wt \u015br czw pt sob".split(" "),weekdaysMin:"Nd Pn Wt \u015ar Cz Pt So".split(" "), longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Dzi\u015b o] LT",nextDay:"[Jutro o] LT",nextWeek:"[W] dddd [o] LT",lastDay:"[Wczoraj o] LT",lastWeek:function(){switch(this.day()){case 0:return"[W zesz\u0142\u0105 niedziel\u0119 o] LT";case 3:return"[W zesz\u0142\u0105 \u015brod\u0119 o] LT";case 6:return"[W zesz\u0142\u0105 sobot\u0119 o] LT";default:return"[W zesz\u0142y] dddd [o] LT"}},sameElse:"L"}, -relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:Ga,mm:Ga,h:Ga,hh:Ga,d:"1 dzie\u0144",dd:"%d dni",M:"miesi\u0105c",MM:Ga,y:"rok",yy:Ga},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("pt-br",{months:"Janeiro Fevereiro Mar\u00e7o Abril Maio Junho Julho Agosto Setembro Outubro Novembro Dezembro".split(" "),monthsShort:"Jan Fev Mar Abr Mai Jun Jul Ago Set Out Nov Dez".split(" "),weekdays:"Domingo Segunda-feira Ter\u00e7a-feira Quarta-feira Quinta-feira Sexta-feira S\u00e1bado".split(" "), +relativeTime:{future:"za %s",past:"%s temu",s:"kilka sekund",m:Fa,mm:Fa,h:Fa,hh:Fa,d:"1 dzie\u0144",dd:"%d dni",M:"miesi\u0105c",MM:Fa,y:"rok",yy:Fa},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("pt-br",{months:"Janeiro Fevereiro Mar\u00e7o Abril Maio Junho Julho Agosto Setembro Outubro Novembro Dezembro".split(" "),monthsShort:"Jan Fev Mar Abr Mai Jun Jul Ago Set Out Nov Dez".split(" "),weekdays:"Domingo Segunda-feira Ter\u00e7a-feira Quarta-feira Quinta-feira Sexta-feira S\u00e1bado".split(" "), weekdaysShort:"Dom Seg Ter Qua Qui Sex S\u00e1b".split(" "),weekdaysMin:"Dom 2\u00aa 3\u00aa 4\u00aa 5\u00aa 6\u00aa S\u00e1b".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY [\u00e0s] HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY [\u00e0s] HH:mm"},calendar:{sameDay:"[Hoje \u00e0s] LT",nextDay:"[Amanh\u00e3 \u00e0s] LT",nextWeek:"dddd [\u00e0s] LT",lastDay:"[Ontem \u00e0s] LT",lastWeek:function(){return 0=== this.day()||6===this.day()?"[\u00daltimo] dddd [\u00e0s] LT":"[\u00daltima] dddd [\u00e0s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"%s atr\u00e1s",s:"poucos segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\u00eas",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}\u00ba/,ordinal:"%d\u00ba"});e.defineLocale("pt",{months:"Janeiro Fevereiro Mar\u00e7o Abril Maio Junho Julho Agosto Setembro Outubro Novembro Dezembro".split(" "), monthsShort:"Jan Fev Mar Abr Mai Jun Jul Ago Set Out Nov Dez".split(" "),weekdays:"Domingo Segunda-Feira Ter\u00e7a-Feira Quarta-Feira Quinta-Feira Sexta-Feira S\u00e1bado".split(" "),weekdaysShort:"Dom Seg Ter Qua Qui Sex S\u00e1b".split(" "),weekdaysMin:"Dom 2\u00aa 3\u00aa 4\u00aa 5\u00aa 6\u00aa S\u00e1b".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D [de] MMMM [de] YYYY",LLL:"D [de] MMMM [de] YYYY HH:mm",LLLL:"dddd, D [de] MMMM [de] YYYY HH:mm"}, calendar:{sameDay:"[Hoje \u00e0s] LT",nextDay:"[Amanh\u00e3 \u00e0s] LT",nextWeek:"dddd [\u00e0s] LT",lastDay:"[Ontem \u00e0s] LT",lastWeek:function(){return 0===this.day()||6===this.day()?"[\u00daltimo] dddd [\u00e0s] LT":"[\u00daltima] dddd [\u00e0s] LT"},sameElse:"L"},relativeTime:{future:"em %s",past:"h\u00e1 %s",s:"segundos",m:"um minuto",mm:"%d minutos",h:"uma hora",hh:"%d horas",d:"um dia",dd:"%d dias",M:"um m\u00eas",MM:"%d meses",y:"um ano",yy:"%d anos"},ordinalParse:/\d{1,2}\u00ba/,ordinal:"%d\u00ba", week:{dow:1,doy:4}});e.defineLocale("ro",{months:"ianuarie februarie martie aprilie mai iunie iulie august septembrie octombrie noiembrie decembrie".split(" "),monthsShort:"ian. febr. mart. apr. mai iun. iul. aug. sept. oct. nov. dec.".split(" "),monthsParseExact:!0,weekdays:"duminic\u0103 luni mar\u021bi miercuri joi vineri s\u00e2mb\u0103t\u0103".split(" "),weekdaysShort:"Dum Lun Mar Mie Joi Vin S\u00e2m".split(" "),weekdaysMin:"Du Lu Ma Mi Jo Vi S\u00e2".split(" "),longDateFormat:{LT:"H:mm",LTS:"H:mm:ss", -L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[m\u00e2ine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s \u00een urm\u0103",s:"c\u00e2teva secunde",m:"un minut",mm:Wa,h:"o or\u0103",hh:Wa,d:"o zi",dd:Wa,M:"o lun\u0103",MM:Wa,y:"un an",yy:Wa},week:{dow:1,doy:7}});var Zb=[/^\u044f\u043d\u0432/i,/^\u0444\u0435\u0432/i,/^\u043c\u0430\u0440/i, +L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY H:mm",LLLL:"dddd, D MMMM YYYY H:mm"},calendar:{sameDay:"[azi la] LT",nextDay:"[m\u00e2ine la] LT",nextWeek:"dddd [la] LT",lastDay:"[ieri la] LT",lastWeek:"[fosta] dddd [la] LT",sameElse:"L"},relativeTime:{future:"peste %s",past:"%s \u00een urm\u0103",s:"c\u00e2teva secunde",m:"un minut",mm:Ua,h:"o or\u0103",hh:Ua,d:"o zi",dd:Ua,M:"o lun\u0103",MM:Ua,y:"un an",yy:Ua},week:{dow:1,doy:7}});var Zb=[/^\u044f\u043d\u0432/i,/^\u0444\u0435\u0432/i,/^\u043c\u0430\u0440/i, /^\u0430\u043f\u0440/i,/^\u043c\u0430[\u0439\u044f]/i,/^\u0438\u044e\u043d/i,/^\u0438\u044e\u043b/i,/^\u0430\u0432\u0433/i,/^\u0441\u0435\u043d/i,/^\u043e\u043a\u0442/i,/^\u043d\u043e\u044f/i,/^\u0434\u0435\u043a/i];e.defineLocale("ru",{months:{format:"\u044f\u043d\u0432\u0430\u0440\u044f \u0444\u0435\u0432\u0440\u0430\u043b\u044f \u043c\u0430\u0440\u0442\u0430 \u0430\u043f\u0440\u0435\u043b\u044f \u043c\u0430\u044f \u0438\u044e\u043d\u044f \u0438\u044e\u043b\u044f \u0430\u0432\u0433\u0443\u0441\u0442\u0430 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044f \u043e\u043a\u0442\u044f\u0431\u0440\u044f \u043d\u043e\u044f\u0431\u0440\u044f \u0434\u0435\u043a\u0430\u0431\u0440\u044f".split(" "), standalone:"\u044f\u043d\u0432\u0430\u0440\u044c \u0444\u0435\u0432\u0440\u0430\u043b\u044c \u043c\u0430\u0440\u0442 \u0430\u043f\u0440\u0435\u043b\u044c \u043c\u0430\u0439 \u0438\u044e\u043d\u044c \u0438\u044e\u043b\u044c \u0430\u0432\u0433\u0443\u0441\u0442 \u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c \u043e\u043a\u0442\u044f\u0431\u0440\u044c \u043d\u043e\u044f\u0431\u0440\u044c \u0434\u0435\u043a\u0430\u0431\u0440\u044c".split(" ")},monthsShort:{format:"\u044f\u043d\u0432. \u0444\u0435\u0432\u0440. \u043c\u0430\u0440. \u0430\u043f\u0440. \u043c\u0430\u044f \u0438\u044e\u043d\u044f \u0438\u044e\u043b\u044f \u0430\u0432\u0433. \u0441\u0435\u043d\u0442. \u043e\u043a\u0442. \u043d\u043e\u044f\u0431. \u0434\u0435\u043a.".split(" "), standalone:"\u044f\u043d\u0432. \u0444\u0435\u0432\u0440. \u043c\u0430\u0440\u0442 \u0430\u043f\u0440. \u043c\u0430\u0439 \u0438\u044e\u043d\u044c \u0438\u044e\u043b\u044c \u0430\u0432\u0433. \u0441\u0435\u043d\u0442. \u043e\u043a\u0442. \u043d\u043e\u044f\u0431. \u0434\u0435\u043a.".split(" ")},weekdays:{standalone:"\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435 \u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a \u0432\u0442\u043e\u0440\u043d\u0438\u043a \u0441\u0440\u0435\u0434\u0430 \u0447\u0435\u0442\u0432\u0435\u0440\u0433 \u043f\u044f\u0442\u043d\u0438\u0446\u0430 \u0441\u0443\u0431\u0431\u043e\u0442\u0430".split(" "), @@ -411,7 +406,7 @@ monthsStrictRegex:/^(\u044f\u043d\u0432\u0430\u0440[\u044f\u044c]|\u0444\u0435\u monthsShortStrictRegex:/^(\u044f\u043d\u0432\.|\u0444\u0435\u0432\u0440?\.|\u043c\u0430\u0440[\u0442.]|\u0430\u043f\u0440\.|\u043c\u0430[\u044f\u0439]|\u0438\u044e\u043d[\u044c\u044f.]|\u0438\u044e\u043b[\u044c\u044f.]|\u0430\u0432\u0433\.|\u0441\u0435\u043d\u0442?\.|\u043e\u043a\u0442\.|\u043d\u043e\u044f\u0431?\.|\u0434\u0435\u043a\.)/i,longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY \u0433.",LLL:"D MMMM YYYY \u0433., HH:mm",LLLL:"dddd, D MMMM YYYY \u0433., HH:mm"},calendar:{sameDay:"[\u0421\u0435\u0433\u043e\u0434\u043d\u044f \u0432] LT", nextDay:"[\u0417\u0430\u0432\u0442\u0440\u0430 \u0432] LT",lastDay:"[\u0412\u0447\u0435\u0440\u0430 \u0432] LT",nextWeek:function(a){if(a.week()!==this.week())switch(this.day()){case 0:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435] dddd [\u0432] LT";case 1:case 2:case 4:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439] dddd [\u0432] LT";case 3:case 5:case 6:return"[\u0412 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0443\u044e] dddd [\u0432] LT"}else return 2=== this.day()?"[\u0412\u043e] dddd [\u0432] LT":"[\u0412] dddd [\u0432] LT"},lastWeek:function(a){if(a.week()!==this.week())switch(this.day()){case 0:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u043e\u0435] dddd [\u0432] LT";case 1:case 2:case 4:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u044b\u0439] dddd [\u0432] LT";case 3:case 5:case 6:return"[\u0412 \u043f\u0440\u043e\u0448\u043b\u0443\u044e] dddd [\u0432] LT"}else return 2===this.day()?"[\u0412\u043e] dddd [\u0432] LT":"[\u0412] dddd [\u0432] LT"}, -sameElse:"L"},relativeTime:{future:"\u0447\u0435\u0440\u0435\u0437 %s",past:"%s \u043d\u0430\u0437\u0430\u0434",s:"\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434",m:Ha,mm:Ha,h:"\u0447\u0430\u0441",hh:Ha,d:"\u0434\u0435\u043d\u044c",dd:Ha,M:"\u043c\u0435\u0441\u044f\u0446",MM:Ha,y:"\u0433\u043e\u0434",yy:Ha},meridiemParse:/\u043d\u043e\u0447\u0438|\u0443\u0442\u0440\u0430|\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430/i,isPM:function(a){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430)$/.test(a)}, +sameElse:"L"},relativeTime:{future:"\u0447\u0435\u0440\u0435\u0437 %s",past:"%s \u043d\u0430\u0437\u0430\u0434",s:"\u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434",m:Ga,mm:Ga,h:"\u0447\u0430\u0441",hh:Ga,d:"\u0434\u0435\u043d\u044c",dd:Ga,M:"\u043c\u0435\u0441\u044f\u0446",MM:Ga,y:"\u0433\u043e\u0434",yy:Ga},meridiemParse:/\u043d\u043e\u0447\u0438|\u0443\u0442\u0440\u0430|\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430/i,isPM:function(a){return/^(\u0434\u043d\u044f|\u0432\u0435\u0447\u0435\u0440\u0430)$/.test(a)}, meridiem:function(a,b,c){return 4>a?"\u043d\u043e\u0447\u0438":12>a?"\u0443\u0442\u0440\u0430":17>a?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u0435\u0440\u0430"},ordinalParse:/\d{1,2}-(\u0439|\u0433\u043e|\u044f)/,ordinal:function(a,b){switch(b){case "M":case "d":case "DDD":return a+"-\u0439";case "D":return a+"-\u0433\u043e";case "w":case "W":return a+"-\u044f";default:return a}},week:{dow:1,doy:7}});e.defineLocale("se",{months:"o\u0111\u0111ajagem\u00e1nnu guovvam\u00e1nnu njuk\u010dam\u00e1nnu cuo\u014bom\u00e1nnu miessem\u00e1nnu geassem\u00e1nnu suoidnem\u00e1nnu borgem\u00e1nnu \u010dak\u010dam\u00e1nnu golggotm\u00e1nnu sk\u00e1bmam\u00e1nnu juovlam\u00e1nnu".split(" "), monthsShort:"o\u0111\u0111j guov njuk cuo mies geas suoi borg \u010dak\u010d golg sk\u00e1b juov".split(" "),weekdays:"sotnabeaivi vuoss\u00e1rga ma\u014b\u014beb\u00e1rga gaskavahkku duorastat bearjadat l\u00e1vvardat".split(" "),weekdaysShort:"sotn vuos ma\u014b gask duor bear l\u00e1v".split(" "),weekdaysMin:"svmgdbL".split(""),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"MMMM D. [b.] YYYY",LLL:"MMMM D. [b.] YYYY [ti.] HH:mm",LLLL:"dddd, MMMM D. [b.] YYYY [ti.] HH:mm"},calendar:{sameDay:"[otne ti] LT", nextDay:"[ihttin ti] LT",nextWeek:"dddd [ti] LT",lastDay:"[ikte ti] LT",lastWeek:"[ovddit] dddd [ti] LT",sameElse:"L"},relativeTime:{future:"%s gea\u017ees",past:"ma\u014bit %s",s:"moadde sekunddat",m:"okta minuhta",mm:"%d minuhtat",h:"okta diimmu",hh:"%d diimmut",d:"okta beaivi",dd:"%d beaivvit",M:"okta m\u00e1nnu",MM:"%d m\u00e1nut",y:"okta jahki",yy:"%d jagit"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});e.defineLocale("si",{months:"\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2 \u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2 \u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4 \u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca \u0db8\u0dd0\u0dba\u0dd2 \u0da2\u0dd6\u0db1\u0dd2 \u0da2\u0dd6\u0dbd\u0dd2 \u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4 \u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca \u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca \u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca \u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca".split(" "), @@ -421,22 +416,22 @@ nextDay:"[\u0dc4\u0dd9\u0da7] LT[\u0da7]",nextWeek:"dddd LT[\u0da7]",lastDay:"[\ d:"\u0daf\u0dd2\u0db1\u0dba",dd:"\u0daf\u0dd2\u0db1 %d",M:"\u0db8\u0dcf\u0dc3\u0dba",MM:"\u0db8\u0dcf\u0dc3 %d",y:"\u0dc0\u0dc3\u0dbb",yy:"\u0dc0\u0dc3\u0dbb %d"},ordinalParse:/\d{1,2} \u0dc0\u0dd0\u0db1\u0dd2/,ordinal:function(a){return a+" \u0dc0\u0dd0\u0db1\u0dd2"},meridiemParse:/\u0db4\u0dd9\u0dbb \u0dc0\u0dbb\u0dd4|\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4|\u0db4\u0dd9.\u0dc0|\u0db4.\u0dc0./,isPM:function(a){return"\u0db4.\u0dc0."===a||"\u0db4\u0dc3\u0dca \u0dc0\u0dbb\u0dd4"===a},meridiem:function(a, b,c){return 11a?"PD":"MD"},longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[Sot n\u00eb] LT",nextDay:"[Nes\u00ebr n\u00eb] LT",nextWeek:"dddd [n\u00eb] LT",lastDay:"[Dje n\u00eb] LT",lastWeek:"dddd [e kaluar n\u00eb] LT",sameElse:"L"},relativeTime:{future:"n\u00eb %s", -past:"%s m\u00eb par\u00eb",s:"disa sekonda",m:"nj\u00eb minut\u00eb",mm:"%d minuta",h:"nj\u00eb or\u00eb",hh:"%d or\u00eb",d:"nj\u00eb dit\u00eb",dd:"%d dit\u00eb",M:"nj\u00eb muaj",MM:"%d muaj",y:"nj\u00eb vit",yy:"%d vite"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var ea={words:{m:["\u0458\u0435\u0434\u0430\u043d \u043c\u0438\u043d\u0443\u0442","\u0458\u0435\u0434\u043d\u0435 \u043c\u0438\u043d\u0443\u0442\u0435"],mm:["\u043c\u0438\u043d\u0443\u0442","\u043c\u0438\u043d\u0443\u0442\u0435", +past:"%s m\u00eb par\u00eb",s:"disa sekonda",m:"nj\u00eb minut\u00eb",mm:"%d minuta",h:"nj\u00eb or\u00eb",hh:"%d or\u00eb",d:"nj\u00eb dit\u00eb",dd:"%d dit\u00eb",M:"nj\u00eb muaj",MM:"%d muaj",y:"nj\u00eb vit",yy:"%d vite"},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var ba={words:{m:["\u0458\u0435\u0434\u0430\u043d \u043c\u0438\u043d\u0443\u0442","\u0458\u0435\u0434\u043d\u0435 \u043c\u0438\u043d\u0443\u0442\u0435"],mm:["\u043c\u0438\u043d\u0443\u0442","\u043c\u0438\u043d\u0443\u0442\u0435", "\u043c\u0438\u043d\u0443\u0442\u0430"],h:["\u0458\u0435\u0434\u0430\u043d \u0441\u0430\u0442","\u0458\u0435\u0434\u043d\u043e\u0433 \u0441\u0430\u0442\u0430"],hh:["\u0441\u0430\u0442","\u0441\u0430\u0442\u0430","\u0441\u0430\u0442\u0438"],dd:["\u0434\u0430\u043d","\u0434\u0430\u043d\u0430","\u0434\u0430\u043d\u0430"],MM:["\u043c\u0435\u0441\u0435\u0446","\u043c\u0435\u0441\u0435\u0446\u0430","\u043c\u0435\u0441\u0435\u0446\u0438"],yy:["\u0433\u043e\u0434\u0438\u043d\u0430","\u0433\u043e\u0434\u0438\u043d\u0435", -"\u0433\u043e\u0434\u0438\u043d\u0430"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:2<=a&&4>=a?b[1]:b[2]},translate:function(a,b,c){var d=ea.words[c];return 1===c.length?b?d[0]:d[1]:a+" "+ea.correctGrammaticalCase(a,d)}};e.defineLocale("sr-cyrl",{months:"\u0458\u0430\u043d\u0443\u0430\u0440 \u0444\u0435\u0431\u0440\u0443\u0430\u0440 \u043c\u0430\u0440\u0442 \u0430\u043f\u0440\u0438\u043b \u043c\u0430\u0458 \u0458\u0443\u043d \u0458\u0443\u043b \u0430\u0432\u0433\u0443\u0441\u0442 \u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440 \u043e\u043a\u0442\u043e\u0431\u0430\u0440 \u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440 \u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440".split(" "), +"\u0433\u043e\u0434\u0438\u043d\u0430"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:2<=a&&4>=a?b[1]:b[2]},translate:function(a,b,c){var d=ba.words[c];return 1===c.length?b?d[0]:d[1]:a+" "+ba.correctGrammaticalCase(a,d)}};e.defineLocale("sr-cyrl",{months:"\u0458\u0430\u043d\u0443\u0430\u0440 \u0444\u0435\u0431\u0440\u0443\u0430\u0440 \u043c\u0430\u0440\u0442 \u0430\u043f\u0440\u0438\u043b \u043c\u0430\u0458 \u0458\u0443\u043d \u0458\u0443\u043b \u0430\u0432\u0433\u0443\u0441\u0442 \u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440 \u043e\u043a\u0442\u043e\u0431\u0430\u0440 \u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440 \u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440".split(" "), monthsShort:"\u0458\u0430\u043d. \u0444\u0435\u0431. \u043c\u0430\u0440. \u0430\u043f\u0440. \u043c\u0430\u0458 \u0458\u0443\u043d \u0458\u0443\u043b \u0430\u0432\u0433. \u0441\u0435\u043f. \u043e\u043a\u0442. \u043d\u043e\u0432. \u0434\u0435\u0446.".split(" "),monthsParseExact:!0,weekdays:"\u043d\u0435\u0434\u0435\u0459\u0430 \u043f\u043e\u043d\u0435\u0434\u0435\u0459\u0430\u043a \u0443\u0442\u043e\u0440\u0430\u043a \u0441\u0440\u0435\u0434\u0430 \u0447\u0435\u0442\u0432\u0440\u0442\u0430\u043a \u043f\u0435\u0442\u0430\u043a \u0441\u0443\u0431\u043e\u0442\u0430".split(" "), weekdaysShort:"\u043d\u0435\u0434. \u043f\u043e\u043d. \u0443\u0442\u043e. \u0441\u0440\u0435. \u0447\u0435\u0442. \u043f\u0435\u0442. \u0441\u0443\u0431.".split(" "),weekdaysMin:"\u043d\u0435 \u043f\u043e \u0443\u0442 \u0441\u0440 \u0447\u0435 \u043f\u0435 \u0441\u0443".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[\u0434\u0430\u043d\u0430\u0441 \u0443] LT",nextDay:"[\u0441\u0443\u0442\u0440\u0430 \u0443] LT", nextWeek:function(){switch(this.day()){case 0:return"[\u0443] [\u043d\u0435\u0434\u0435\u0459\u0443] [\u0443] LT";case 3:return"[\u0443] [\u0441\u0440\u0435\u0434\u0443] [\u0443] LT";case 6:return"[\u0443] [\u0441\u0443\u0431\u043e\u0442\u0443] [\u0443] LT";case 1:case 2:case 4:case 5:return"[\u0443] dddd [\u0443] LT"}},lastDay:"[\u0458\u0443\u0447\u0435 \u0443] LT",lastWeek:function(){return"[\u043f\u0440\u043e\u0448\u043b\u0435] [\u043d\u0435\u0434\u0435\u0459\u0435] [\u0443] LT;[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u043f\u043e\u043d\u0435\u0434\u0435\u0459\u043a\u0430] [\u0443] LT;[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u0443\u0442\u043e\u0440\u043a\u0430] [\u0443] LT;[\u043f\u0440\u043e\u0448\u043b\u0435] [\u0441\u0440\u0435\u0434\u0435] [\u0443] LT;[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u0447\u0435\u0442\u0432\u0440\u0442\u043a\u0430] [\u0443] LT;[\u043f\u0440\u043e\u0448\u043b\u043e\u0433] [\u043f\u0435\u0442\u043a\u0430] [\u0443] LT;[\u043f\u0440\u043e\u0448\u043b\u0435] [\u0441\u0443\u0431\u043e\u0442\u0435] [\u0443] LT".split(";")[this.day()]}, -sameElse:"L"},relativeTime:{future:"\u0437\u0430 %s",past:"\u043f\u0440\u0435 %s",s:"\u043d\u0435\u043a\u043e\u043b\u0438\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434\u0438",m:ea.translate,mm:ea.translate,h:ea.translate,hh:ea.translate,d:"\u0434\u0430\u043d",dd:ea.translate,M:"\u043c\u0435\u0441\u0435\u0446",MM:ea.translate,y:"\u0433\u043e\u0434\u0438\u043d\u0443",yy:ea.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});var fa={words:{m:["jedan minut","jedne minute"],mm:["minut", -"minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:2<=a&&4>=a?b[1]:b[2]},translate:function(a,b,c){var d=fa.words[c];return 1===c.length?b?d[0]:d[1]:a+" "+fa.correctGrammaticalCase(a,d)}};e.defineLocale("sr",{months:"januar februar mart april maj jun jul avgust septembar oktobar novembar decembar".split(" "),monthsShort:"jan. feb. mar. apr. maj jun jul avg. sep. okt. nov. dec.".split(" "), +sameElse:"L"},relativeTime:{future:"\u0437\u0430 %s",past:"\u043f\u0440\u0435 %s",s:"\u043d\u0435\u043a\u043e\u043b\u0438\u043a\u043e \u0441\u0435\u043a\u0443\u043d\u0434\u0438",m:ba.translate,mm:ba.translate,h:ba.translate,hh:ba.translate,d:"\u0434\u0430\u043d",dd:ba.translate,M:"\u043c\u0435\u0441\u0435\u0446",MM:ba.translate,y:"\u0433\u043e\u0434\u0438\u043d\u0443",yy:ba.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});var ca={words:{m:["jedan minut","jedne minute"],mm:["minut", +"minute","minuta"],h:["jedan sat","jednog sata"],hh:["sat","sata","sati"],dd:["dan","dana","dana"],MM:["mesec","meseca","meseci"],yy:["godina","godine","godina"]},correctGrammaticalCase:function(a,b){return 1===a?b[0]:2<=a&&4>=a?b[1]:b[2]},translate:function(a,b,c){var d=ca.words[c];return 1===c.length?b?d[0]:d[1]:a+" "+ca.correctGrammaticalCase(a,d)}};e.defineLocale("sr",{months:"januar februar mart april maj jun jul avgust septembar oktobar novembar decembar".split(" "),monthsShort:"jan. feb. mar. apr. maj jun jul avg. sep. okt. nov. dec.".split(" "), monthsParseExact:!0,weekdays:"nedelja ponedeljak utorak sreda \u010detvrtak petak subota".split(" "),weekdaysShort:"ned. pon. uto. sre. \u010det. pet. sub.".split(" "),weekdaysMin:"ne po ut sr \u010de pe su".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"H:mm",LTS:"H:mm:ss",L:"DD.MM.YYYY",LL:"D. MMMM YYYY",LLL:"D. MMMM YYYY H:mm",LLLL:"dddd, D. MMMM YYYY H:mm"},calendar:{sameDay:"[danas u] LT",nextDay:"[sutra u] LT",nextWeek:function(){switch(this.day()){case 0:return"[u] [nedelju] [u] LT"; case 3:return"[u] [sredu] [u] LT";case 6:return"[u] [subotu] [u] LT";case 1:case 2:case 4:case 5:return"[u] dddd [u] LT"}},lastDay:"[ju\u010de u] LT",lastWeek:function(){return"[pro\u0161le] [nedelje] [u] LT;[pro\u0161log] [ponedeljka] [u] LT;[pro\u0161log] [utorka] [u] LT;[pro\u0161le] [srede] [u] LT;[pro\u0161log] [\u010detvrtka] [u] LT;[pro\u0161log] [petka] [u] LT;[pro\u0161le] [subote] [u] LT".split(";")[this.day()]},sameElse:"L"},relativeTime:{future:"za %s",past:"pre %s",s:"nekoliko sekundi", -m:fa.translate,mm:fa.translate,h:fa.translate,hh:fa.translate,d:"dan",dd:fa.translate,M:"mesec",MM:fa.translate,y:"godinu",yy:fa.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});e.defineLocale("ss",{months:"Bhimbidvwane Indlovana Indlov'lenkhulu Mabasa Inkhwekhweti Inhlaba Kholwane Ingci Inyoni Imphala Lweti Ingongoni".split(" "),monthsShort:"Bhi Ina Inu Mab Ink Inh Kho Igc Iny Imp Lwe Igo".split(" "),weekdays:"Lisontfo Umsombuluko Lesibili Lesitsatfu Lesine Lesihlanu Umgcibelo".split(" "), +m:ca.translate,mm:ca.translate,h:ca.translate,hh:ca.translate,d:"dan",dd:ca.translate,M:"mesec",MM:ca.translate,y:"godinu",yy:ca.translate},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:7}});e.defineLocale("ss",{months:"Bhimbidvwane Indlovana Indlov'lenkhulu Mabasa Inkhwekhweti Inhlaba Kholwane Ingci Inyoni Imphala Lweti Ingongoni".split(" "),monthsShort:"Bhi Ina Inu Mab Ink Inh Kho Igc Iny Imp Lwe Igo".split(" "),weekdays:"Lisontfo Umsombuluko Lesibili Lesitsatfu Lesine Lesihlanu Umgcibelo".split(" "), weekdaysShort:"Lis Umb Lsb Les Lsi Lsh Umg".split(" "),weekdaysMin:"Li Us Lb Lt Ls Lh Ug".split(" "),weekdaysParseExact:!0,longDateFormat:{LT:"h:mm A",LTS:"h:mm:ss A",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY h:mm A",LLLL:"dddd, D MMMM YYYY h:mm A"},calendar:{sameDay:"[Namuhla nga] LT",nextDay:"[Kusasa nga] LT",nextWeek:"dddd [nga] LT",lastDay:"[Itolo nga] LT",lastWeek:"dddd [leliphelile] [nga] LT",sameElse:"L"},relativeTime:{future:"nga %s",past:"wenteka nga %s",s:"emizuzwana lomcane",m:"umzuzu", mm:"%d emizuzu",h:"lihora",hh:"%d emahora",d:"lilanga",dd:"%d emalanga",M:"inyanga",MM:"%d tinyanga",y:"umnyaka",yy:"%d iminyaka"},meridiemParse:/ekuseni|emini|entsambama|ebusuku/,meridiem:function(a,b,c){return 11>a?"ekuseni":15>a?"emini":19>a?"entsambama":"ebusuku"},meridiemHour:function(a,b){12===a&&(a=0);if("ekuseni"===b)return a;if("emini"===b)return 11<=a?a:a+12;if("entsambama"===b||"ebusuku"===b)return 0===a?0:a+12},ordinalParse:/\d{1,2}/,ordinal:"%d",week:{dow:1,doy:4}});e.defineLocale("sv", {months:"januari februari mars april maj juni juli augusti september oktober november december".split(" "),monthsShort:"jan feb mar apr maj jun jul aug sep okt nov dec".split(" "),weekdays:"s\u00f6ndag m\u00e5ndag tisdag onsdag torsdag fredag l\u00f6rdag".split(" "),weekdaysShort:"s\u00f6n m\u00e5n tis ons tor fre l\u00f6r".split(" "),weekdaysMin:"s\u00f6 m\u00e5 ti on to fr l\u00f6".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"YYYY-MM-DD",LL:"D MMMM YYYY",LLL:"D MMMM YYYY [kl.] HH:mm", @@ -468,12 +463,12 @@ weekdays:"Linggo Lunes Martes Miyerkules Huwebes Biyernes Sabado".split(" "),wee past:"%s ang nakalipas",s:"ilang segundo",m:"isang minuto",mm:"%d minuto",h:"isang oras",hh:"%d oras",d:"isang araw",dd:"%d araw",M:"isang buwan",MM:"%d buwan",y:"isang taon",yy:"%d taon"},ordinalParse:/\d{1,2}/,ordinal:function(a){return a},week:{dow:1,doy:4}});var Pb="pagh wa\u2019 cha\u2019 wej loS vagh jav Soch chorgh Hut".split(" ");e.defineLocale("tlh",{months:"tera\u2019 jar wa\u2019;tera\u2019 jar cha\u2019;tera\u2019 jar wej;tera\u2019 jar loS;tera\u2019 jar vagh;tera\u2019 jar jav;tera\u2019 jar Soch;tera\u2019 jar chorgh;tera\u2019 jar Hut;tera\u2019 jar wa\u2019maH;tera\u2019 jar wa\u2019maH wa\u2019;tera\u2019 jar wa\u2019maH cha\u2019".split(";"), monthsShort:"jar wa\u2019;jar cha\u2019;jar wej;jar loS;jar vagh;jar jav;jar Soch;jar chorgh;jar Hut;jar wa\u2019maH;jar wa\u2019maH wa\u2019;jar wa\u2019maH cha\u2019".split(";"),monthsParseExact:!0,weekdays:"lojmItjaj DaSjaj povjaj ghItlhjaj loghjaj buqjaj ghInjaj".split(" "),weekdaysShort:"lojmItjaj DaSjaj povjaj ghItlhjaj loghjaj buqjaj ghInjaj".split(" "),weekdaysMin:"lojmItjaj DaSjaj povjaj ghItlhjaj loghjaj buqjaj ghInjaj".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY", LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[DaHjaj] LT",nextDay:"[wa\u2019leS] LT",nextWeek:"LLL",lastDay:"[wa\u2019Hu\u2019] LT",lastWeek:"LLL",sameElse:"L"},relativeTime:{future:function(a){var b=a;return b=-1!==a.indexOf("jaj")?b.slice(0,-3)+"leS":-1!==a.indexOf("jar")?b.slice(0,-3)+"waQ":-1!==a.indexOf("DIS")?b.slice(0,-3)+"nem":b+" pIq"},past:function(a){var b=a;return b=-1!==a.indexOf("jaj")?b.slice(0,-3)+"Hu\u2019":-1!==a.indexOf("jar")?b.slice(0, --3)+"wen":-1!==a.indexOf("DIS")?b.slice(0,-3)+"ben":b+" ret"},s:"puS lup",m:"wa\u2019 tup",mm:Xa,h:"wa\u2019 rep",hh:Xa,d:"wa\u2019 jaj",dd:Xa,M:"wa\u2019 jar",MM:Xa,y:"wa\u2019 DIS",yy:Xa},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var $b={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'\u00fcnc\u00fc",4:"'\u00fcnc\u00fc",100:"'\u00fcnc\u00fc",6:"'nc\u0131",9:"'uncu",10:"'uncu",30:"'uncu",60:"'\u0131nc\u0131",90:"'\u0131nc\u0131"};e.defineLocale("tr", +-3)+"wen":-1!==a.indexOf("DIS")?b.slice(0,-3)+"ben":b+" ret"},s:"puS lup",m:"wa\u2019 tup",mm:Va,h:"wa\u2019 rep",hh:Va,d:"wa\u2019 jaj",dd:Va,M:"wa\u2019 jar",MM:Va,y:"wa\u2019 DIS",yy:Va},ordinalParse:/\d{1,2}\./,ordinal:"%d.",week:{dow:1,doy:4}});var $b={1:"'inci",5:"'inci",8:"'inci",70:"'inci",80:"'inci",2:"'nci",7:"'nci",20:"'nci",50:"'nci",3:"'\u00fcnc\u00fc",4:"'\u00fcnc\u00fc",100:"'\u00fcnc\u00fc",6:"'nc\u0131",9:"'uncu",10:"'uncu",30:"'uncu",60:"'\u0131nc\u0131",90:"'\u0131nc\u0131"};e.defineLocale("tr", {months:"Ocak \u015eubat Mart Nisan May\u0131s Haziran Temmuz A\u011fustos Eyl\u00fcl Ekim Kas\u0131m Aral\u0131k".split(" "),monthsShort:"Oca \u015eub Mar Nis May Haz Tem A\u011fu Eyl Eki Kas Ara".split(" "),weekdays:"Pazar Pazartesi Sal\u0131 \u00c7ar\u015famba Per\u015fembe Cuma Cumartesi".split(" "),weekdaysShort:"Paz Pts Sal \u00c7ar Per Cum Cts".split(" "),weekdaysMin:"Pz Pt Sa \u00c7a Pe Cu Ct".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD.MM.YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm", LLLL:"dddd, D MMMM YYYY HH:mm"},calendar:{sameDay:"[bug\u00fcn saat] LT",nextDay:"[yar\u0131n saat] LT",nextWeek:"[haftaya] dddd [saat] LT",lastDay:"[d\u00fcn] LT",lastWeek:"[ge\u00e7en hafta] dddd [saat] LT",sameElse:"L"},relativeTime:{future:"%s sonra",past:"%s \u00f6nce",s:"birka\u00e7 saniye",m:"bir dakika",mm:"%d dakika",h:"bir saat",hh:"%d saat",d:"bir g\u00fcn",dd:"%d g\u00fcn",M:"bir ay",MM:"%d ay",y:"bir y\u0131l",yy:"%d y\u0131l"},ordinalParse:/\d{1,2}'(inci|nci|\u00fcnc\u00fc|nc\u0131|uncu|\u0131nc\u0131)/, ordinal:function(a){if(0===a)return a+"'\u0131nc\u0131";var b=a%10;return a+($b[b]||$b[a%100-b]||$b[100<=a?100:null])},week:{dow:1,doy:7}});e.defineLocale("tzl",{months:"Januar Fevraglh Mar\u00e7 Avr\u00efu Mai G\u00fcn Julia Guscht Setemvar Listop\u00e4ts Noemvar Zecemvar".split(" "),monthsShort:"Jan Fev Mar Avr Mai G\u00fcn Jul Gus Set Lis Noe Zec".split(" "),weekdays:"S\u00faladi L\u00fane\u00e7i Maitzi M\u00e1rcuri Xh\u00faadi Vi\u00e9ner\u00e7i S\u00e1turi".split(" "),weekdaysShort:"S\u00fal L\u00fan Mai M\u00e1r Xh\u00fa Vi\u00e9 S\u00e1t".split(" "), -weekdaysMin:"S\u00fa L\u00fa Ma M\u00e1 Xh Vi S\u00e1".split(" "),longDateFormat:{LT:"HH.mm",LTS:"HH.mm.ss",L:"DD.MM.YYYY",LL:"D. MMMM [dallas] YYYY",LLL:"D. MMMM [dallas] YYYY HH.mm",LLLL:"dddd, [li] D. MMMM [dallas] YYYY HH.mm"},meridiemParse:/d\'o|d\'a/i,isPM:function(a){return"d'o"===a.toLowerCase()},meridiem:function(a,b,c){return 11a?"\u043d\u043e\u0447\u0456":12>a?"\u0440\u0430\u043d\u043a\u0443":17>a?"\u0434\u043d\u044f":"\u0432\u0435\u0447\u043e\u0440\u0430"},ordinalParse:/\d{1,2}-(\u0439|\u0433\u043e)/,ordinal:function(a,b){switch(b){case "M":case "d":case "DDD":case "w":case "W":return a+"-\u0439";case "D":return a+"-\u0433\u043e";default:return a}},week:{dow:1,doy:7}});e.defineLocale("uz",{months:"\u044f\u043d\u0432\u0430\u0440 \u0444\u0435\u0432\u0440\u0430\u043b \u043c\u0430\u0440\u0442 \u0430\u043f\u0440\u0435\u043b \u043c\u0430\u0439 \u0438\u044e\u043d \u0438\u044e\u043b \u0430\u0432\u0433\u0443\u0441\u0442 \u0441\u0435\u043d\u0442\u044f\u0431\u0440 \u043e\u043a\u0442\u044f\u0431\u0440 \u043d\u043e\u044f\u0431\u0440 \u0434\u0435\u043a\u0430\u0431\u0440".split(" "), monthsShort:"\u044f\u043d\u0432 \u0444\u0435\u0432 \u043c\u0430\u0440 \u0430\u043f\u0440 \u043c\u0430\u0439 \u0438\u044e\u043d \u0438\u044e\u043b \u0430\u0432\u0433 \u0441\u0435\u043d \u043e\u043a\u0442 \u043d\u043e\u044f \u0434\u0435\u043a".split(" "),weekdays:"\u042f\u043a\u0448\u0430\u043d\u0431\u0430 \u0414\u0443\u0448\u0430\u043d\u0431\u0430 \u0421\u0435\u0448\u0430\u043d\u0431\u0430 \u0427\u043e\u0440\u0448\u0430\u043d\u0431\u0430 \u041f\u0430\u0439\u0448\u0430\u043d\u0431\u0430 \u0416\u0443\u043c\u0430 \u0428\u0430\u043d\u0431\u0430".split(" "), weekdaysShort:"\u042f\u043a\u0448 \u0414\u0443\u0448 \u0421\u0435\u0448 \u0427\u043e\u0440 \u041f\u0430\u0439 \u0416\u0443\u043c \u0428\u0430\u043d".split(" "),weekdaysMin:"\u042f\u043a \u0414\u0443 \u0421\u0435 \u0427\u043e \u041f\u0430 \u0416\u0443 \u0428\u0430".split(" "),longDateFormat:{LT:"HH:mm",LTS:"HH:mm:ss",L:"DD/MM/YYYY",LL:"D MMMM YYYY",LLL:"D MMMM YYYY HH:mm",LLLL:"D MMMM YYYY, dddd HH:mm"},calendar:{sameDay:"[\u0411\u0443\u0433\u0443\u043d \u0441\u043e\u0430\u0442] LT [\u0434\u0430]", @@ -500,7 +495,7 @@ past:"%s \u00e1~g\u00f3",s:"\u00e1 ~f\u00e9w ~s\u00e9c\u00f3~\u00f1ds",m:"\u00e1 b?"rd":"th")},week:{dow:1,doy:4}});e.defineLocale("zh-cn",{months:"\u4e00\u6708 \u4e8c\u6708 \u4e09\u6708 \u56db\u6708 \u4e94\u6708 \u516d\u6708 \u4e03\u6708 \u516b\u6708 \u4e5d\u6708 \u5341\u6708 \u5341\u4e00\u6708 \u5341\u4e8c\u6708".split(" "),monthsShort:"1\u6708 2\u6708 3\u6708 4\u6708 5\u6708 6\u6708 7\u6708 8\u6708 9\u6708 10\u6708 11\u6708 12\u6708".split(" "),weekdays:"\u661f\u671f\u65e5 \u661f\u671f\u4e00 \u661f\u671f\u4e8c \u661f\u671f\u4e09 \u661f\u671f\u56db \u661f\u671f\u4e94 \u661f\u671f\u516d".split(" "), weekdaysShort:"\u5468\u65e5 \u5468\u4e00 \u5468\u4e8c \u5468\u4e09 \u5468\u56db \u5468\u4e94 \u5468\u516d".split(" "),weekdaysMin:"\u65e5\u4e00\u4e8c\u4e09\u56db\u4e94\u516d".split(""),longDateFormat:{LT:"Ah\u70b9mm\u5206",LTS:"Ah\u70b9m\u5206s\u79d2",L:"YYYY-MM-DD",LL:"YYYY\u5e74MMMD\u65e5",LLL:"YYYY\u5e74MMMD\u65e5Ah\u70b9mm\u5206",LLLL:"YYYY\u5e74MMMD\u65e5ddddAh\u70b9mm\u5206",l:"YYYY-MM-DD",ll:"YYYY\u5e74MMMD\u65e5",lll:"YYYY\u5e74MMMD\u65e5Ah\u70b9mm\u5206",llll:"YYYY\u5e74MMMD\u65e5ddddAh\u70b9mm\u5206"}, meridiemParse:/\u51cc\u6668|\u65e9\u4e0a|\u4e0a\u5348|\u4e2d\u5348|\u4e0b\u5348|\u665a\u4e0a/,meridiemHour:function(a,b){12===a&&(a=0);return"\u51cc\u6668"===b||"\u65e9\u4e0a"===b||"\u4e0a\u5348"===b?a:"\u4e0b\u5348"===b||"\u665a\u4e0a"===b?a+12:11<=a?a:a+12},meridiem:function(a,b,c){a=100*a+b;return 600>a?"\u51cc\u6668":900>a?"\u65e9\u4e0a":1130>a?"\u4e0a\u5348":1230>a?"\u4e2d\u5348":1800>a?"\u4e0b\u5348":"\u665a\u4e0a"},calendar:{sameDay:function(){return 0===this.minutes()?"[\u4eca\u5929]Ah[\u70b9\u6574]": -"[\u4eca\u5929]LT"},nextDay:function(){return 0===this.minutes()?"[\u660e\u5929]Ah[\u70b9\u6574]":"[\u660e\u5929]LT"},lastDay:function(){return 0===this.minutes()?"[\u6628\u5929]Ah[\u70b9\u6574]":"[\u6628\u5929]LT"},nextWeek:function(){var a;a=e().startOf("week");a=7<=this.diff(a,"days")?"[\u4e0b]":"[\u672c]";return 0===this.minutes()?a+"dddAh\u70b9\u6574":a+"dddAh\u70b9mm"},lastWeek:function(){var a;a=e().startOf("week");a=this.unix()=f)return 0;r+=f}return r/k}:function(c){for(var f=0,d=0;fd?1:cd?1:d>c?-1:0},d=function(c,d){var f,k,h,p;f=1;for(k=arguments.length;f=h)return 0;u+=h}return u/f}:function(c){for(var h=0,n=0;hh?1:ch?1:h>c?-1:0},k=function(c,h){var k,f,m;var n=1;for(k=arguments.length;n/g,">").replace(/"/g,""")}, -G={before:function(a,b,e){var c=a[b];a[b]=function(){e.apply(a,arguments);return c.apply(a,arguments)}},after:function(a,b,e){var c=a[b];a[b]=function(){var b=c.apply(a,arguments);e.apply(a,arguments);return b}}},I=function(a){var b=!1;return function(){b||(b=!0,a.apply(this,arguments))}},J=function(a,b){var e;return function(){var c=this,n=arguments;window.clearTimeout(e);e=window.setTimeout(function(){a.apply(c,n)},b)}},D=function(a,b,e){var c,n=a.trigger,C={};a.trigger=function(){var e=arguments[0]; -if(-1!==b.indexOf(e))C[e]=arguments;else return n.apply(a,arguments)};e.apply(a,[]);a.trigger=n;for(c in C)C.hasOwnProperty(c)&&n.apply(a,C[c])},F=function(a,b,e,c){a.on(b,e,function(b){for(var e=b.target;e&&e.parentNode!==a[0];)e=e.parentNode;b.currentTarget=e;return c.apply(this,[b])})},A=function(a){var b={};if("selectionStart"in a)b.start=a.selectionStart,b.length=a.selectionEnd-b.start;else if(document.selection){a.focus();var e=document.selection.createRange(),c=document.selection.createRange().text.length; -e.moveStart("character",-a.value.length);b.start=e.text.length-c;b.length=c}return b},B=function(a){var b=null,e=function(e,n){var g,d,f;e=e||window.event||{};n=n||{};if(!e.metaKey&&!e.altKey&&(n.force||!1!==a.data("grow"))){g=a.val();e.type&&"keydown"===e.type.toLowerCase()&&(d=e.keyCode,f=97<=d&&122>=d||65<=d&&90>=d||48<=d&&57>=d||32===d,46===d||8===d?(f=A(a[0]),f.length?g=g.substring(0,f.start)+g.substring(f.start+f.length):8===d&&f.start?g=g.substring(0,f.start-1)+g.substring(f.start+1):46=== -d&&"undefined"!==typeof f.start&&(g=g.substring(0,f.start)+g.substring(f.start+1))):f&&(d=e.shiftKey,f=String.fromCharCode(e.keyCode),f=d?f.toUpperCase():f.toLowerCase(),g+=f));d=a.attr("placeholder");!g&&d&&(g=d);if(g){g=c("").css({position:"absolute",top:-99999,left:-99999,width:"auto",padding:0,whiteSpace:"pre"}).text(g).appendTo("body");d=["letterSpacing","fontSize","fontFamily","fontWeight","textTransform"];var h,k={};if(d)for(f=0,h=d.length;f").addClass(b.wrapperClass).addClass(v).addClass(x);h=c("
").addClass(b.inputClass).addClass("items").appendTo(f);l=c('').appendTo(h).attr("tabindex", -d.is(":disabled")?"-1":a.tabIndex);p=c(b.dropdownParent||f);p=c("
").addClass(b.dropdownClass).addClass(x).hide().appendTo(p);x=c("
").addClass(b.dropdownContentClass).appendTo(p);if(z=d.attr("id"))l.attr("id",z+"-selectized"),c("label[for='"+z+"']").attr("for",z+"-selectized");a.settings.copyClassesToDropdown&&p.addClass(v);f.css({width:d[0].style.width});a.plugins.names.length&&(v="plugin-"+a.plugins.names.join(" plugin-"),f.addClass(v),p.addClass(v));(null===b.maxItems||1'+a.html+"
"},optgroup_header:function(a,c){return'
'+c(a[b])+"
"},option:function(b,c){return'
'+c(b[a])+"
"},item:function(b,c){return'
'+c(b[a])+"
"},option_create:function(a,b){return'
Add '+b(a.input)+"
"}},this.settings.render)},setupCallbacks:function(){var a,b,e={initialize:"onInitialize", -change:"onChange",item_add:"onItemAdd",item_remove:"onItemRemove",clear:"onClear",option_add:"onOptionAdd",option_remove:"onOptionRemove",option_clear:"onOptionClear",optgroup_add:"onOptionGroupAdd",optgroup_remove:"onOptionGroupRemove",optgroup_clear:"onOptionGroupClear",dropdown_open:"onDropdownOpen",dropdown_close:"onDropdownClose",type:"onType",load:"onLoad",focus:"onFocus",blur:"onBlur"};for(a in e)if(e.hasOwnProperty(a)&&(b=this.settings[e[a]]))this.on(a,b)},onClick:function(a){this.isFocused|| -(this.focus(),a.preventDefault())},onMouseDown:function(a){var b=this,e=a.isDefaultPrevented();c(a.target);if(b.isFocused){if(a.target!==b.$control_input[0])return"single"===b.settings.mode?b.isOpen?b.close():b.open():e||b.setActiveItem(null),!1}else e||window.setTimeout(function(){b.focus()},0)},onChange:function(){this.$input.trigger("change")},onPaste:function(a){var b=this;b.isFull()||b.isInputHidden||b.isLocked?a.preventDefault():b.settings.splitOn&&setTimeout(function(){var a=b.$control_input.val(); -if(a.match(b.settings.splitOn))for(var a=c.trim(a).split(b.settings.splitOn),g=0,d=a.length;g/g,">").replace(/"/g,""")}, +I={before:function(a,b,d){var c=a[b];a[b]=function(){d.apply(a,arguments);return c.apply(a,arguments)}},after:function(a,b,c){var d=a[b];a[b]=function(){var b=d.apply(a,arguments);c.apply(a,arguments);return b}}},J=function(a){var b=!1;return function(){b||(b=!0,a.apply(this,arguments))}},A=function(a,b){var c;return function(){var d=this,e=arguments;window.clearTimeout(c);c=window.setTimeout(function(){a.apply(d,e)},b)}},q=function(a,b,c){var d,e=a.trigger,x={};a.trigger=function(){var c=arguments[0]; +if(-1!==b.indexOf(c))x[c]=arguments;else return e.apply(a,arguments)};c.apply(a,[]);a.trigger=e;for(d in x)x.hasOwnProperty(d)&&e.apply(a,x[d])},r=function(a,b,c,g){a.on(b,c,function(b){for(var c=b.target;c&&c.parentNode!==a[0];)c=c.parentNode;b.currentTarget=c;return g.apply(this,[b])})},C=function(a){var b={};if("selectionStart"in a)b.start=a.selectionStart,b.length=a.selectionEnd-b.start;else if(document.selection){a.focus();var c=document.selection.createRange(),g=document.selection.createRange().text.length; +c.moveStart("character",-a.value.length);b.start=c.text.length-g;b.length=g}return b},K=function(a){var b=null,d=function(d,e){d=d||window.event||{};e=e||{};if(!d.metaKey&&!d.altKey&&(e.force||!1!==a.data("grow"))){e=a.val();if(d.type&&"keydown"===d.type.toLowerCase()){var g=d.keyCode;var h=97<=g&&122>=g||65<=g&&90>=g||48<=g&&57>=g||32===g;46===g||8===g?(d=C(a[0]),d.length?e=e.substring(0,d.start)+e.substring(d.start+d.length):8===g&&d.start?e=e.substring(0,d.start-1)+e.substring(d.start+1):46=== +g&&"undefined"!==typeof d.start&&(e=e.substring(0,d.start)+e.substring(d.start+1))):h&&(g=d.shiftKey,d=String.fromCharCode(d.keyCode),d=g?d.toUpperCase():d.toLowerCase(),e+=d)}d=a.attr("placeholder");!e&&d&&(e=d);if(e){e=c("").css({position:"absolute",top:-99999,left:-99999,width:"auto",padding:0,whiteSpace:"pre"}).text(e).appendTo("body");d=["letterSpacing","fontSize","fontFamily","fontWeight","textTransform"];var f={};if(d)for(g=0,h=d.length;g").addClass(b.wrapperClass).addClass(E).addClass(l);var G=c("
").addClass(b.inputClass).addClass("items").appendTo(F);var w=c('').appendTo(G).attr("tabindex", +f.is(":disabled")?"-1":a.tabIndex);var p=c(b.dropdownParent||F);p=c("
").addClass(b.dropdownClass).addClass(l).hide().appendTo(p);l=c("
").addClass(b.dropdownContentClass).appendTo(p);if(k=f.attr("id"))w.attr("id",k+"-selectized"),c("label[for='"+k+"']").attr("for",k+"-selectized");a.settings.copyClassesToDropdown&&p.addClass(E);F.css({width:f[0].style.width});a.plugins.names.length&&(E="plugin-"+a.plugins.names.join(" plugin-"),F.addClass(E),p.addClass(E));(null===b.maxItems||1'+a.html+"
"},optgroup_header:function(a,c){return'
'+c(a[b])+"
"},option:function(b,c){return'
'+c(b[a])+"
"},item:function(b,c){return'
'+c(b[a])+"
"},option_create:function(a,b){return'
Add '+b(a.input)+"
"}},this.settings.render)},setupCallbacks:function(){var a,b,c={initialize:"onInitialize", +change:"onChange",item_add:"onItemAdd",item_remove:"onItemRemove",clear:"onClear",option_add:"onOptionAdd",option_remove:"onOptionRemove",option_clear:"onOptionClear",optgroup_add:"onOptionGroupAdd",optgroup_remove:"onOptionGroupRemove",optgroup_clear:"onOptionGroupClear",dropdown_open:"onDropdownOpen",dropdown_close:"onDropdownClose",type:"onType",load:"onLoad",focus:"onFocus",blur:"onBlur"};for(a in c)if(c.hasOwnProperty(a)&&(b=this.settings[c[a]]))this.on(a,b)},onClick:function(a){this.isFocused|| +(this.focus(),a.preventDefault())},onMouseDown:function(a){var b=this,d=a.isDefaultPrevented();c(a.target);if(b.isFocused){if(a.target!==b.$control_input[0])return"single"===b.settings.mode?b.isOpen?b.close():b.open():d||b.setActiveItem(null),!1}else d||window.setTimeout(function(){b.focus()},0)},onChange:function(){this.$input.trigger("change")},onPaste:function(a){var b=this;b.isFull()||b.isInputHidden||b.isLocked?a.preventDefault():b.settings.splitOn&&setTimeout(function(){var a=b.$control_input.val(); +if(a.match(b.settings.splitOn)){a=c.trim(a).split(b.settings.splitOn);for(var g=0,e=a.length;ge&&(d=g,g=e,e=d);for(;g<=e;g++)d=this.$control[0].childNodes[g],-1===this.$activeItems.indexOf(d)&&(c(d).addClass("active"),this.$activeItems.push(d));b.preventDefault()}else"mousedown"=== -e&&this.isCtrlDown||"keydown"===e&&this.isShiftDown?a.hasClass("active")?(e=this.$activeItems.indexOf(a[0]),this.$activeItems.splice(e,1),a.removeClass("active")):this.$activeItems.push(a.addClass("active")[0]):(c(this.$activeItems).removeClass("active"),this.$activeItems=[a.addClass("active")[0]]);this.hideInput();this.isFocused||this.focus()}else c(this.$activeItems).removeClass("active"),this.$activeItems=[],this.isFocused&&this.showInput()},setActiveOption:function(a,b,e){var g,d,f;this.$activeOption&& -this.$activeOption.removeClass("active");this.$activeOption=null;a=c(a);a.length&&(this.$activeOption=a.addClass("active"),b||"undefined"===typeof b)&&(a=this.$dropdown_content.height(),g=this.$activeOption.outerHeight(!0),b=this.$dropdown_content.scrollTop()||0,d=this.$activeOption.offset().top-this.$dropdown_content.offset().top+b,f=d-a+g,d+g>a+b?this.$dropdown_content.stop().animate({scrollTop:f},e?this.settings.scrollDuration:0):d=this.settings.maxItems},updateOriginalInput:function(a){var b,c,d,f;a=a||{};if(1===this.tagType){d=[];b=0;for(c=this.items.length;b'+t(f)+"");d.length||this.$input.attr("multiple")||d.push('');this.$input.html(d.join(""))}else this.$input.val(this.getValue()),this.$input.attr("value",this.$input.val());this.isSetup&&(a.silent||this.trigger("change",this.$input.val()))},updatePlaceholder:function(){if(this.settings.placeholder){var a=this.$control_input;this.items.length?a.removeAttr("placeholder"):a.attr("placeholder", -this.settings.placeholder);a.triggerHandler("update",{force:!0})}},open:function(){this.isLocked||this.isOpen||"multi"===this.settings.mode&&this.isFull()||(this.focus(),this.isOpen=!0,this.refreshState(),this.$dropdown.css({visibility:"hidden",display:"block"}),this.positionDropdown(),this.$dropdown.css({visibility:"visible"}),this.trigger("dropdown_open",this.$dropdown))},close:function(){var a=this.isOpen;"single"===this.settings.mode&&this.items.length&&(this.hideInput(),this.$control_input.blur()); -this.isOpen=!1;this.$dropdown.hide();this.setActiveOption(null);this.refreshState();a&&this.trigger("dropdown_close",this.$dropdown)},positionDropdown:function(){var a=this.$control,b="body"===this.settings.dropdownParent?a.offset():a.position();b.top+=a.outerHeight(!0);this.$dropdown.css({width:a.outerWidth(),top:b.top,left:b.left})},clear:function(a){this.items.length&&(this.$control.children(":not(input)").remove(),this.items=[],this.lastQuery=null,this.setCaret(0),this.setActiveItem(null),this.updatePlaceholder(), -this.updateOriginalInput({silent:a}),this.refreshState(),this.showInput(),this.trigger("clear"))},insertAtCaret:function(a){var b=Math.min(this.caretPos,this.items.length);0===b?this.$control.prepend(a):c(this.$control[0].childNodes[b]).before(a);this.setCaret(b+1)},deleteSelection:function(a){var b,e,d,f,h;b=a&&8===a.keyCode?-1:1;e=A(this.$control_input[0]);this.$activeOption&&!this.settings.hideSelected&&(h=this.getAdjacentOption(this.$activeOption,-1).attr("data-value"));d=[];if(this.$activeItems.length){f= -this.$control.children(".active:"+(0b&&0===e.start&&0===e.length?d.push(this.items[this.caretPos-1]):0a?0===d.start&& -0===d.length:d.start===c)&&!c&&this.advanceCaret(a,b)):(d=this.$control.children(".active:"+c),d.length&&(d=this.$control.children(":not(input)").index(d),this.setActiveItem(null),this.setCaret(0
'+a.title+'×
'}}, -a);b.setup=function(){var e=b.setup;return function(){e.apply(b,arguments);b.$dropdown_header=c(a.html(a));b.$dropdown.prepend(b.$dropdown_header)}}()});w.define("optgroup_columns",function(a){var b=this;a=c.extend({equalizeWidth:!0,equalizeHeight:!0},a);this.getAdjacentOption=function(a,b){var e=a.closest("[data-group]").find("[data-selectable]"),d=e.index(a)+b;return 0<=d&&d
', -a=a.firstChild,c.body.appendChild(a),b=e.width=a.offsetWidth-a.clientWidth,c.body.removeChild(a));return b},d=function(){var d,g,f,h;h=c("[data-group]",b.$dropdown_content);if((g=h.length)&&b.$dropdown_content.width()){if(a.equalizeHeight){for(d=f=0;d'+b.label+"";a.setup=function(){var e=a.setup;return function(){if(b.append){var f=c(a.$input[0]).attr("id");c("#"+f);var g=a.settings.render.item;a.settings.render.item=function(b){return g.apply(a,arguments)+ -d}}e.apply(a,arguments);a.$control.on("click","."+b.className,function(b){b.preventDefault();a.isLocked||a.clear()})}}()},d=function(a,b){var d=''+b.label+"";a.setup=function(){var e=a.setup;return function(){if(b.append){var f=a.settings.render.item;a.settings.render.item=function(b){var c=f.apply(a,arguments),e=c.search(/(<\/[^>]+>\s*)$/);return c.substring(0,e)+d+c.substring(e)}}e.apply(a,arguments);a.$control.on("click", -"."+b.className,function(b){b.preventDefault();a.isLocked||(b=c(b.currentTarget).parent(),a.setActiveItem(b),a.deleteSelection()&&a.setCaret(a.items.length))})}}()};"single"===this.settings.mode?b(this,a):d(this,a)});w.define("restore_on_backspace",function(a){var b=this;a.text=a.text||function(a){return a[this.settings.labelField]};this.onKeyDown=function(){var c=b.onKeyDown;return function(b){var d;if(8===b.keyCode&&""===this.$control_input.val()&&!this.$activeItems.length&&(d=this.caretPos-1,0<= -d&&da){var g=d;d=a;a=g}for(;d<=a;d++)g=this.$control[0].childNodes[d],-1===this.$activeItems.indexOf(g)&&(c(g).addClass("active"),this.$activeItems.push(g));b.preventDefault()}else"mousedown"=== +d&&this.isCtrlDown||"keydown"===d&&this.isShiftDown?a.hasClass("active")?(b=this.$activeItems.indexOf(a[0]),this.$activeItems.splice(b,1),a.removeClass("active")):this.$activeItems.push(a.addClass("active")[0]):(c(this.$activeItems).removeClass("active"),this.$activeItems=[a.addClass("active")[0]]);this.hideInput();this.isFocused||this.focus()}else c(this.$activeItems).removeClass("active"),this.$activeItems=[],this.isFocused&&this.showInput()},setActiveOption:function(a,b,d){this.$activeOption&& +this.$activeOption.removeClass("active");this.$activeOption=null;a=c(a);if(a.length&&(this.$activeOption=a.addClass("active"),b||"undefined"===typeof b)){a=this.$dropdown_content.height();var g=this.$activeOption.outerHeight(!0);b=this.$dropdown_content.scrollTop()||0;var e=this.$activeOption.offset().top-this.$dropdown_content.offset().top+b;var f=e-a+g;e+g>a+b?this.$dropdown_content.stop().animate({scrollTop:f},d?this.settings.scrollDuration:0):e=this.settings.maxItems},updateOriginalInput:function(a){var b;a=a||{};if(1===this.tagType){var c=[];var g=0;for(b=this.items.length;g'+z(e)+"")}c.length||this.$input.attr("multiple")||c.push('');this.$input.html(c.join(""))}else this.$input.val(this.getValue()),this.$input.attr("value",this.$input.val());this.isSetup&&(a.silent||this.trigger("change",this.$input.val()))},updatePlaceholder:function(){if(this.settings.placeholder){var a=this.$control_input; +this.items.length?a.removeAttr("placeholder"):a.attr("placeholder",this.settings.placeholder);a.triggerHandler("update",{force:!0})}},open:function(){this.isLocked||this.isOpen||"multi"===this.settings.mode&&this.isFull()||(this.focus(),this.isOpen=!0,this.refreshState(),this.$dropdown.css({visibility:"hidden",display:"block"}),this.positionDropdown(),this.$dropdown.css({visibility:"visible"}),this.trigger("dropdown_open",this.$dropdown))},close:function(){var a=this.isOpen;"single"===this.settings.mode&& +this.items.length&&(this.hideInput(),this.$control_input.blur());this.isOpen=!1;this.$dropdown.hide();this.setActiveOption(null);this.refreshState();a&&this.trigger("dropdown_close",this.$dropdown)},positionDropdown:function(){var a=this.$control,b="body"===this.settings.dropdownParent?a.offset():a.position();b.top+=a.outerHeight(!0);this.$dropdown.css({width:a.outerWidth(),top:b.top,left:b.left})},clear:function(a){this.items.length&&(this.$control.children(":not(input)").remove(),this.items=[], +this.lastQuery=null,this.setCaret(0),this.setActiveItem(null),this.updatePlaceholder(),this.updateOriginalInput({silent:a}),this.refreshState(),this.showInput(),this.trigger("clear"))},insertAtCaret:function(a){var b=Math.min(this.caretPos,this.items.length);0===b?this.$control.prepend(a):c(this.$control[0].childNodes[b]).before(a);this.setCaret(b+1)},deleteSelection:function(a){var b;var d=a&&8===a.keyCode?-1:1;var g=C(this.$control_input[0]);this.$activeOption&&!this.settings.hideSelected&&(b=this.getAdjacentOption(this.$activeOption, +-1).attr("data-value"));var e=[];if(this.$activeItems.length){var f=this.$control.children(".active:"+(0d&&0===g.start&&0===g.length?e.push(this.items[this.caretPos-1]):0a?0===g.start&&0===g.length:g.start===c)&&!c&&this.advanceCaret(a,b)):(b=this.$control.children(".active:"+c),b.length&&(b=this.$control.children(":not(input)").index(b),this.setActiveItem(null),this.setCaret(0
'+a.title+'×
'}},a);b.setup=function(){var d=b.setup;return function(){d.apply(b,arguments);b.$dropdown_header=c(a.html(a));b.$dropdown.prepend(b.$dropdown_header)}}()});v.define("optgroup_columns",function(a){var b=this;a=c.extend({equalizeWidth:!0,equalizeHeight:!0},a);this.getAdjacentOption=function(a,b){var d=a.closest("[data-group]").find("[data-selectable]"); +a=d.index(a)+b;return 0<=a&&a
';c=c.firstChild;b.body.appendChild(c);a=d.width=c.offsetWidth-c.clientWidth;b.body.removeChild(c)}return a},g=function(){var e,g,f;var h=c("[data-group]",b.$dropdown_content);if((g=h.length)&&b.$dropdown_content.width()){if(a.equalizeHeight){for(e=f=0;e'+b.label+"";a.setup=function(){var e=a.setup;return function(){if(b.append){var g=c(a.$input[0]).attr("id");c("#"+g);var f=a.settings.render.item;a.settings.render.item=function(b){return f.apply(a,arguments)+d}}e.apply(a,arguments);a.$control.on("click","."+b.className,function(b){b.preventDefault();a.isLocked||a.clear()})}}()},d=function(a,b){var d=''+b.label+"";a.setup=function(){var e= +a.setup;return function(){if(b.append){var f=a.settings.render.item;a.settings.render.item=function(b){var c=f.apply(a,arguments),e=c.search(/(<\/[^>]+>\s*)$/);return c.substring(0,e)+d+c.substring(e)}}e.apply(a,arguments);a.$control.on("click","."+b.className,function(b){b.preventDefault();a.isLocked||(b=c(b.currentTarget).parent(),a.setActiveItem(b),a.deleteSelection()&&a.setCaret(a.items.length))})}}()};"single"===this.settings.mode?b(this,a):d(this,a)});v.define("restore_on_backspace",function(a){var b= +this;a.text=a.text||function(a){return a[this.settings.labelField]};this.onKeyDown=function(){var c=b.onKeyDown;return function(b){if(8===b.keyCode&&""===this.$control_input.val()&&!this.$activeItems.length){var d=this.caretPos-1;if(0<=d&&d>>32-e,a)}function k(f,c,a,b,e,d,g){return h(c&a|~c&b,f,c,e,d,g)}function l(f,c,a,b,e,d,g){return h(c&b|a&~b,f,c,e,d,g)}function m(f,c,a,b,e,d,g){return h(a^(c|~b),f,c,e,d,g)}function n(f,c){var a=f[0],b=f[1],e=f[2],d=f[3],a=k(a,b,e,d,c[0],7,-680876936), -d=k(d,a,b,e,c[1],12,-389564586),e=k(e,d,a,b,c[2],17,606105819),b=k(b,e,d,a,c[3],22,-1044525330),a=k(a,b,e,d,c[4],7,-176418897),d=k(d,a,b,e,c[5],12,1200080426),e=k(e,d,a,b,c[6],17,-1473231341),b=k(b,e,d,a,c[7],22,-45705983),a=k(a,b,e,d,c[8],7,1770035416),d=k(d,a,b,e,c[9],12,-1958414417),e=k(e,d,a,b,c[10],17,-42063),b=k(b,e,d,a,c[11],22,-1990404162),a=k(a,b,e,d,c[12],7,1804603682),d=k(d,a,b,e,c[13],12,-40341101),e=k(e,d,a,b,c[14],17,-1502002290),b=k(b,e,d,a,c[15],22,1236535329),a=l(a,b,e,d,c[1],5,-165796510), -d=l(d,a,b,e,c[6],9,-1069501632),e=l(e,d,a,b,c[11],14,643717713),b=l(b,e,d,a,c[0],20,-373897302),a=l(a,b,e,d,c[5],5,-701558691),d=l(d,a,b,e,c[10],9,38016083),e=l(e,d,a,b,c[15],14,-660478335),b=l(b,e,d,a,c[4],20,-405537848),a=l(a,b,e,d,c[9],5,568446438),d=l(d,a,b,e,c[14],9,-1019803690),e=l(e,d,a,b,c[3],14,-187363961),b=l(b,e,d,a,c[8],20,1163531501),a=l(a,b,e,d,c[13],5,-1444681467),d=l(d,a,b,e,c[2],9,-51403784),e=l(e,d,a,b,c[7],14,1735328473),b=l(b,e,d,a,c[12],20,-1926607734),a=h(b^e^d,a,b,c[5],4,-378558), -d=h(a^b^e,d,a,c[8],11,-2022574463),e=h(d^a^b,e,d,c[11],16,1839030562),b=h(e^d^a,b,e,c[14],23,-35309556),a=h(b^e^d,a,b,c[1],4,-1530992060),d=h(a^b^e,d,a,c[4],11,1272893353),e=h(d^a^b,e,d,c[7],16,-155497632),b=h(e^d^a,b,e,c[10],23,-1094730640),a=h(b^e^d,a,b,c[13],4,681279174),d=h(a^b^e,d,a,c[0],11,-358537222),e=h(d^a^b,e,d,c[3],16,-722521979),b=h(e^d^a,b,e,c[6],23,76029189),a=h(b^e^d,a,b,c[9],4,-640364487),d=h(a^b^e,d,a,c[12],11,-421815835),e=h(d^a^b,e,d,c[15],16,530742520),b=h(e^d^a,b,e,c[2],23,-995338651), -a=m(a,b,e,d,c[0],6,-198630844),d=m(d,a,b,e,c[7],10,1126891415),e=m(e,d,a,b,c[14],15,-1416354905),b=m(b,e,d,a,c[5],21,-57434055),a=m(a,b,e,d,c[12],6,1700485571),d=m(d,a,b,e,c[3],10,-1894986606),e=m(e,d,a,b,c[10],15,-1051523),b=m(b,e,d,a,c[1],21,-2054922799),a=m(a,b,e,d,c[8],6,1873313359),d=m(d,a,b,e,c[15],10,-30611744),e=m(e,d,a,b,c[6],15,-1560198380),b=m(b,e,d,a,c[13],21,1309151649),a=m(a,b,e,d,c[4],6,-145523070),d=m(d,a,b,e,c[11],10,-1120210379),e=m(e,d,a,b,c[2],15,718787259),b=m(b,e,d,a,c[9],21, --343485551);f[0]=p(a,f[0]);f[1]=p(b,f[1]);f[2]=p(e,f[2]);f[3]=p(d,f[3])}function u(f){var c=[],a;for(a=0;64>a;a+=4)c[a>>2]=f.charCodeAt(a)+(f.charCodeAt(a+1)<<8)+(f.charCodeAt(a+2)<<16)+(f.charCodeAt(a+3)<<24);return c}function v(f){var c=[],a;for(a=0;64>a;a+=4)c[a>>2]=f[a]+(f[a+1]<<8)+(f[a+2]<<16)+(f[a+3]<<24);return c}function w(f){var c=f.length,a=[1732584193,-271733879,-1732584194,271733878],b,e,d;for(b=64;b<=c;b+=64)n(a,u(f.substring(b-64,b)));f=f.substring(b-64);e=f.length;d=[0,0,0,0,0,0,0, -0,0,0,0,0,0,0,0,0];for(b=0;b>2]|=f.charCodeAt(b)<<(b%4<<3);d[b>>2]|=128<<(b%4<<3);if(55b;b+=1)d[b]=0;c=(8*c).toString(16).match(/(.*?)(.{0,8})$/);f=parseInt(c[2],16);c=parseInt(c[1],16)||0;d[14]=f;d[15]=c;n(a,d);return a}function r(f){var c;for(c=0;cd;d+=1)e+=x[b>>8*d+4&15]+x[b>>8*d&15];f[a]=e}return f.join("")}function y(f){/[\u0080-\uFFFF]/.test(f)&&(f=unescape(encodeURIComponent(f)));return f}function t(f){var c=[], -a=f.length,b;for(b=0;b>16)+(c>>16)+(a>>16)<<16|a&65535});"undefined"===typeof ArrayBuffer||ArrayBuffer.prototype.slice||function(){function f(c,a){c=c|0||0;return 0>c?Math.max(c+a,0):Math.min(c,a)}ArrayBuffer.prototype.slice= -function(c,a){var b=this.byteLength,e=f(c,b),d=b,g;a!==q&&(d=f(a,b));if(e>d)return new ArrayBuffer(0);g=d-e;b=new ArrayBuffer(g);d=new Uint8Array(b);e=new Uint8Array(this,e,g);d.set(e);return b}}();g.prototype.append=function(f){this.appendBinary(y(f));return this};g.prototype.appendBinary=function(f){this._buff+=f;this._length+=f.length;f=this._buff.length;var c;for(c=64;c<=f;c+=64)n(this._hash,u(this._buff.substring(c-64,c)));this._buff=this._buff.substring(c-64);return this};g.prototype.end=function(f){var c= -this._buff,a=c.length,b,e=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];for(b=0;b>2]|=c.charCodeAt(b)<<(b%4<<3);this._finish(e,a);c=r(this._hash);f&&(c=t(c));this.reset();return c};g.prototype.reset=function(){this._buff="";this._length=0;this._hash=[1732584193,-271733879,-1732584194,271733878];return this};g.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash}};g.prototype.setState=function(f){this._buff=f.buff;this._length=f.length;this._hash=f.hash;return this}; -g.prototype.destroy=function(){delete this._hash;delete this._buff;delete this._length};g.prototype._finish=function(f,c){var a=c,b;f[a>>2]|=128<<(a%4<<3);if(55a;a+=1)f[a]=0;b=8*this._length;b=b.toString(16).match(/(.*?)(.{0,8})$/);a=parseInt(b[2],16);b=parseInt(b[1],16)||0;f[14]=a;f[15]=b;n(this._hash,f)};g.hash=function(f,c){return g.hashBinary(y(f),c)};g.hashBinary=function(f,c){var a=w(f),a=r(a);return c?t(a):a};g.ArrayBuffer=function(){this.reset()};g.ArrayBuffer.prototype.append= -function(f){var c=this._buff.buffer,a=new Uint8Array(c.byteLength+f.byteLength);a.set(new Uint8Array(c));a.set(new Uint8Array(f),c.byteLength);c=a.length;this._length+=f.byteLength;for(f=64;f<=c;f+=64)n(this._hash,v(a.subarray(f-64,f)));this._buff=f-64>2]|=c[e]<<(e%4<<3);this._finish(b,a);c=r(this._hash); -f&&(c=t(c));this.reset();return c};g.ArrayBuffer.prototype.reset=function(){this._buff=new Uint8Array(0);this._length=0;this._hash=[1732584193,-271733879,-1732584194,271733878];return this};g.ArrayBuffer.prototype.getState=function(){var f=g.prototype.getState.call(this);f.buff=String.fromCharCode.apply(null,new Uint8Array(f.buff));return f};g.ArrayBuffer.prototype.setState=function(f){var c=f.buff,a=c.length,b=new ArrayBuffer(a),b=new Uint8Array(b),e;for(e=0;e>2]|=a[d]<<(d%4<<3);h[d>>2]|=128<<(d%4<<3);if(55d;d+= -1)h[d]=0;b=(8*b).toString(16).match(/(.*?)(.{0,8})$/);a=parseInt(b[2],16);b=parseInt(b[1],16)||0;h[14]=a;h[15]=b;n(e,h);e=r(e);return c?t(e):e};return g}); +(function(q){if("object"===typeof exports)module.exports=q();else if("function"===typeof define&&define.amd)define(q);else{try{var h=window}catch(k){h=self}h.SparkMD5=q()}})(function(q){function h(e,a,b,c,d,f){a=p(p(a,e),p(c,f));return p(a<>>32-d,b)}function k(e,a,b,c,d,f,g){return h(a&b|~a&c,e,a,d,f,g)}function l(e,a,b,c,d,f,g){return h(a&c|b&~c,e,a,d,f,g)}function m(e,a,b,c,d,f,g){return h(b^(a|~c),e,a,d,f,g)}function n(e,a){var b=e[0],c=e[1],d=e[2],f=e[3];b=k(b,c,d,f,a[0],7,-680876936);f= +k(f,b,c,d,a[1],12,-389564586);d=k(d,f,b,c,a[2],17,606105819);c=k(c,d,f,b,a[3],22,-1044525330);b=k(b,c,d,f,a[4],7,-176418897);f=k(f,b,c,d,a[5],12,1200080426);d=k(d,f,b,c,a[6],17,-1473231341);c=k(c,d,f,b,a[7],22,-45705983);b=k(b,c,d,f,a[8],7,1770035416);f=k(f,b,c,d,a[9],12,-1958414417);d=k(d,f,b,c,a[10],17,-42063);c=k(c,d,f,b,a[11],22,-1990404162);b=k(b,c,d,f,a[12],7,1804603682);f=k(f,b,c,d,a[13],12,-40341101);d=k(d,f,b,c,a[14],17,-1502002290);c=k(c,d,f,b,a[15],22,1236535329);b=l(b,c,d,f,a[1],5,-165796510); +f=l(f,b,c,d,a[6],9,-1069501632);d=l(d,f,b,c,a[11],14,643717713);c=l(c,d,f,b,a[0],20,-373897302);b=l(b,c,d,f,a[5],5,-701558691);f=l(f,b,c,d,a[10],9,38016083);d=l(d,f,b,c,a[15],14,-660478335);c=l(c,d,f,b,a[4],20,-405537848);b=l(b,c,d,f,a[9],5,568446438);f=l(f,b,c,d,a[14],9,-1019803690);d=l(d,f,b,c,a[3],14,-187363961);c=l(c,d,f,b,a[8],20,1163531501);b=l(b,c,d,f,a[13],5,-1444681467);f=l(f,b,c,d,a[2],9,-51403784);d=l(d,f,b,c,a[7],14,1735328473);c=l(c,d,f,b,a[12],20,-1926607734);b=h(c^d^f,b,c,a[5],4,-378558); +f=h(b^c^d,f,b,a[8],11,-2022574463);d=h(f^b^c,d,f,a[11],16,1839030562);c=h(d^f^b,c,d,a[14],23,-35309556);b=h(c^d^f,b,c,a[1],4,-1530992060);f=h(b^c^d,f,b,a[4],11,1272893353);d=h(f^b^c,d,f,a[7],16,-155497632);c=h(d^f^b,c,d,a[10],23,-1094730640);b=h(c^d^f,b,c,a[13],4,681279174);f=h(b^c^d,f,b,a[0],11,-358537222);d=h(f^b^c,d,f,a[3],16,-722521979);c=h(d^f^b,c,d,a[6],23,76029189);b=h(c^d^f,b,c,a[9],4,-640364487);f=h(b^c^d,f,b,a[12],11,-421815835);d=h(f^b^c,d,f,a[15],16,530742520);c=h(d^f^b,c,d,a[2],23,-995338651); +b=m(b,c,d,f,a[0],6,-198630844);f=m(f,b,c,d,a[7],10,1126891415);d=m(d,f,b,c,a[14],15,-1416354905);c=m(c,d,f,b,a[5],21,-57434055);b=m(b,c,d,f,a[12],6,1700485571);f=m(f,b,c,d,a[3],10,-1894986606);d=m(d,f,b,c,a[10],15,-1051523);c=m(c,d,f,b,a[1],21,-2054922799);b=m(b,c,d,f,a[8],6,1873313359);f=m(f,b,c,d,a[15],10,-30611744);d=m(d,f,b,c,a[6],15,-1560198380);c=m(c,d,f,b,a[13],21,1309151649);b=m(b,c,d,f,a[4],6,-145523070);f=m(f,b,c,d,a[11],10,-1120210379);d=m(d,f,b,c,a[2],15,718787259);c=m(c,d,f,b,a[9],21, +-343485551);e[0]=p(b,e[0]);e[1]=p(c,e[1]);e[2]=p(d,e[2]);e[3]=p(f,e[3])}function u(e){var a=[],b;for(b=0;64>b;b+=4)a[b>>2]=e.charCodeAt(b)+(e.charCodeAt(b+1)<<8)+(e.charCodeAt(b+2)<<16)+(e.charCodeAt(b+3)<<24);return a}function v(e){var a=[],b;for(b=0;64>b;b+=4)a[b>>2]=e[b]+(e[b+1]<<8)+(e[b+2]<<16)+(e[b+3]<<24);return a}function w(e){var a=e.length,b=[1732584193,-271733879,-1732584194,271733878],c;for(c=64;c<=a;c+=64)n(b,u(e.substring(c-64,c)));e=e.substring(c-64);var d=e.length;var f=[0,0,0,0,0, +0,0,0,0,0,0,0,0,0,0,0];for(c=0;c>2]|=e.charCodeAt(c)<<(c%4<<3);f[c>>2]|=128<<(c%4<<3);if(55c;c+=1)f[c]=0;a=(8*a).toString(16).match(/(.*?)(.{0,8})$/);e=parseInt(a[2],16);a=parseInt(a[1],16)||0;f[14]=e;f[15]=a;n(b,f);return b}function r(e){var a;for(a=0;ac;c+=1)f+=x[d>>8*c+4&15]+x[d>>8*c&15];e[b]=f}return e.join("")}function y(e){/[\u0080-\uFFFF]/.test(e)&&(e=unescape(encodeURIComponent(e)));return e}function t(e){var a= +[],b=e.length,c;for(c=0;c>16)+(a>>16)+(b>>16)<<16|b&65535});"undefined"===typeof ArrayBuffer||ArrayBuffer.prototype.slice||function(){function e(a,b){a=a|0||0;return 0>a?Math.max(a+b,0):Math.min(a,b)}ArrayBuffer.prototype.slice= +function(a,b){var c=this.byteLength;a=e(a,c);var d=c;b!==q&&(d=e(b,c));if(a>d)return new ArrayBuffer(0);d-=a;b=new ArrayBuffer(d);c=new Uint8Array(b);a=new Uint8Array(this,a,d);c.set(a);return b}}();g.prototype.append=function(e){this.appendBinary(y(e));return this};g.prototype.appendBinary=function(e){this._buff+=e;this._length+=e.length;e=this._buff.length;var a;for(a=64;a<=e;a+=64)n(this._hash,u(this._buff.substring(a-64,a)));this._buff=this._buff.substring(a-64);return this};g.prototype.end=function(e){var a= +this._buff,b=a.length,c,d=[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0];for(c=0;c>2]|=a.charCodeAt(c)<<(c%4<<3);this._finish(d,b);a=r(this._hash);e&&(a=t(a));this.reset();return a};g.prototype.reset=function(){this._buff="";this._length=0;this._hash=[1732584193,-271733879,-1732584194,271733878];return this};g.prototype.getState=function(){return{buff:this._buff,length:this._length,hash:this._hash}};g.prototype.setState=function(e){this._buff=e.buff;this._length=e.length;this._hash=e.hash;return this}; +g.prototype.destroy=function(){delete this._hash;delete this._buff;delete this._length};g.prototype._finish=function(e,a){e[a>>2]|=128<<(a%4<<3);if(55a;a+=1)e[a]=0;var b=8*this._length;b=b.toString(16).match(/(.*?)(.{0,8})$/);a=parseInt(b[2],16);b=parseInt(b[1],16)||0;e[14]=a;e[15]=b;n(this._hash,e)};g.hash=function(e,a){return g.hashBinary(y(e),a)};g.hashBinary=function(e,a){e=w(e);e=r(e);return a?t(e):e};g.ArrayBuffer=function(){this.reset()};g.ArrayBuffer.prototype.append= +function(e){var a=this._buff.buffer,b=new Uint8Array(a.byteLength+e.byteLength);b.set(new Uint8Array(a));b.set(new Uint8Array(e),a.byteLength);a=b.length;this._length+=e.byteLength;for(e=64;e<=a;e+=64)n(this._hash,v(b.subarray(e-64,e)));this._buff=e-64>2]|=a[d]<<(d%4<<3);this._finish(c,b);a=r(this._hash); +e&&(a=t(a));this.reset();return a};g.ArrayBuffer.prototype.reset=function(){this._buff=new Uint8Array(0);this._length=0;this._hash=[1732584193,-271733879,-1732584194,271733878];return this};g.ArrayBuffer.prototype.getState=function(){var e=g.prototype.getState.call(this);e.buff=String.fromCharCode.apply(null,new Uint8Array(e.buff));return e};g.ArrayBuffer.prototype.setState=function(e){var a=e.buff,b=a.length,c=new ArrayBuffer(b);c=new Uint8Array(c);var d;for(d=0;d>2]|=b[d]<<(d%4<<3);g[d>>2]|=128<<(d%4<<3);if(55d;d+=1)g[d]=0;c=(8*c).toString(16).match(/(.*?)(.{0,8})$/);b=parseInt(c[2],16);c=parseInt(c[1],16)||0;g[14]=b;g[15]=c;n(e,g);e=r(e);return a?t(e):e};return g}); diff --git a/public/vendor/js/toastr.min.js b/public/vendor/js/toastr.min.js index b1b43713..1220bf46 100644 --- a/public/vendor/js/toastr.min.js +++ b/public/vendor/js/toastr.min.js @@ -1,10 +1,10 @@ -(function(n){n(["jquery"],function(g){return function(){function q(b,d){b||(b=m());f=g("#"+b.containerId);if(f.length)return f;if(d){var c=b;f=g("
").attr("id",c.containerId).addClass(c.positionClass);f.appendTo(g(c.target))}return f}function n(b,d,c){c=c&&c.force?c.force:!1;return b&&(c||0===g(":focus",b).length)?(b[d.hideMethod]({duration:d.hideDuration,easing:d.hideEasing,complete:function(){v(b)}}),!0):!1}function k(b){function d(a){null==a&&(a="");return a.replace(/&/g,"&").replace(/"/g, -""").replace(/'/g,"'").replace(//g,">")}function c(b){var c=b&&!1!==a.closeMethod?a.closeMethod:a.hideMethod,d=b&&!1!==a.closeDuration?a.closeDuration:a.hideDuration,C=b&&!1!==a.closeEasing?a.closeEasing:a.hideEasing;if(!g(":focus",e).length||b)return clearTimeout(h.intervalId),e[c]({duration:d,easing:C,complete:function(){v(e);clearTimeout(t);if(a.onHidden&&"hidden"!==p.state)a.onHidden();p.state="hidden";p.endTime=new Date;l&&l(p)}})}function n(){if(0"),r=g("
"),B=g("
"),w=g("
"),u=g(a.closeHtml),h={intervalId:null,hideEta:null,maxHideTime:null},p={toastId:A,state:"visible",startTime:new Date,options:a,map:b};b.iconClass&&e.addClass(a.toastClass).addClass(x);(function(){if(b.title){var c=b.title;a.escapeHtml&&(c=d(b.title));r.append(c).addClass(a.titleClass);e.append(r)}})();(function(){if(b.message){var c=b.message;a.escapeHtml&&(c=d(b.message));B.append(c).addClass(a.messageClass); -e.append(B)}})();a.closeButton&&(u.addClass(a.closeClass).attr("role","button"),e.prepend(u));a.progressBar&&(w.addClass(a.progressClass),e.prepend(w));a.rtl&&e.addClass("rtl");a.newestOnTop?f.prepend(e):f.append(e);(function(){var a;switch(b.iconClass){case "toast-success":case "toast-info":a="polite";break;default:a="assertive"}e.attr("aria-live",a)})();e.hide();e[a.showMethod]({duration:a.showDuration,easing:a.showEasing,complete:a.onShown});0×',closeClass:"toast-close-button",newestOnTop:!0,preventDuplicates:!1,progressBar:!1,progressClass:"toast-progress",rtl:!1},r.options)}function v(b){f||(f=q());b.is(":visible")||(b.remove(),0===f.children().length&&(f.remove(),z=void 0))}var f,l,A=0,r={clear:function(b,d){var c=m();f||q(c);if(!n(b,c,d))for(var k=f.children(),l=k.length-1;0<=l;l--)n(g(k[l]),c)},remove:function(b){var d=m();f||q(d);b&&0===g(":focus",b).length? -v(b):f.children().length&&f.remove()},error:function(b,d,c){return k({type:"error",iconClass:m().iconClasses.error,message:b,optionsOverride:c,title:d})},getContainer:q,info:function(b,d,c){return k({type:"info",iconClass:m().iconClasses.info,message:b,optionsOverride:c,title:d})},options:{},subscribe:function(b){l=b},success:function(b,d,c){return k({type:"success",iconClass:m().iconClasses.success,message:b,optionsOverride:c,title:d})},version:"2.1.3",warning:function(b,d,c){return k({type:"warning", -iconClass:m().iconClasses.warning,message:b,optionsOverride:c,title:d})}},z;return r}()})})("function"===typeof define&&define.amd?define:function(n,g){"undefined"!==typeof module&&module.exports?module.exports=g(require("jquery")):window.toastr=g(window.jQuery)}); +(function(l){l(["jquery"],function(g){return function(){function p(a,d){a||(a=k());f=g("#"+a.containerId);if(f.length)return f;d&&(f=g("
").attr("id",a.containerId).addClass(a.positionClass),f.appendTo(g(a.target)));return f}function l(a,d,c){c=c&&c.force?c.force:!1;return a&&(c||0===g(":focus",a).length)?(a[d.hideMethod]({duration:d.hideDuration,easing:d.hideEasing,complete:function(){v(a)}}),!0):!1}function m(a){function d(b){null==b&&(b="");return b.replace(/&/g,"&").replace(/"/g,""").replace(/'/g, +"'").replace(//g,">")}function c(a){var d=a&&!1!==b.closeMethod?b.closeMethod:b.hideMethod,c=a&&!1!==b.closeDuration?b.closeDuration:b.hideDuration,D=a&&!1!==b.closeEasing?b.closeEasing:b.hideEasing;if(!g(":focus",e).length||a)return clearTimeout(h.intervalId),e[d]({duration:c,easing:D,complete:function(){v(e);clearTimeout(r);if(b.onHidden&&"hidden"!==n.state)b.onHidden();n.state="hidden";n.endTime=new Date;q&&q(n)}})}function l(){if(0"),B=g("
"),C=g("
"),w=g("
"),t=g(b.closeHtml),h={intervalId:null,hideEta:null,maxHideTime:null},n={toastId:A,state:"visible",startTime:new Date,options:b,map:a};a.iconClass&&e.addClass(b.toastClass).addClass(x);(function(){if(a.title){var c=a.title;b.escapeHtml&&(c=d(a.title));B.append(c).addClass(b.titleClass);e.append(B)}})();(function(){if(a.message){var c=a.message;b.escapeHtml&&(c=d(a.message)); +C.append(c).addClass(b.messageClass);e.append(C)}})();b.closeButton&&(t.addClass(b.closeClass).attr("role","button"),e.prepend(t));b.progressBar&&(w.addClass(b.progressClass),e.prepend(w));b.rtl&&e.addClass("rtl");b.newestOnTop?f.prepend(e):f.append(e);(function(){switch(a.iconClass){case "toast-success":case "toast-info":var b="polite";break;default:b="assertive"}e.attr("aria-live",b)})();e.hide();e[b.showMethod]({duration:b.showDuration,easing:b.showEasing,complete:b.onShown});0×',closeClass:"toast-close-button",newestOnTop:!0,preventDuplicates:!1,progressBar:!1,progressClass:"toast-progress",rtl:!1},u.options)}function v(a){f||(f=p());a.is(":visible")||(a.remove(),0===f.children().length&&(f.remove(),y=void 0))}var f,q,A=0,u={clear:function(a,d){var c=k();f||p(c);if(!l(a,c,d))for(a=f.children(),d=a.length-1;0<=d;d--)l(g(a[d]),c)},remove:function(a){var d= +k();f||p(d);a&&0===g(":focus",a).length?v(a):f.children().length&&f.remove()},error:function(a,d,c){return m({type:"error",iconClass:k().iconClasses.error,message:a,optionsOverride:c,title:d})},getContainer:p,info:function(a,d,c){return m({type:"info",iconClass:k().iconClasses.info,message:a,optionsOverride:c,title:d})},options:{},subscribe:function(a){q=a},success:function(a,d,c){return m({type:"success",iconClass:k().iconClasses.success,message:a,optionsOverride:c,title:d})},version:"2.1.3",warning:function(a, +d,c){return m({type:"warning",iconClass:k().iconClasses.warning,message:a,optionsOverride:c,title:d})}},y;return u}()})})("function"===typeof define&&define.amd?define:function(l,g){"undefined"!==typeof module&&module.exports?module.exports=g(require("jquery")):window.toastr=g(window.jQuery)}); diff --git a/public/vendor/js/zxcvbn-async.min.js b/public/vendor/js/zxcvbn-async.min.js index 68d615d5..3483c018 100644 --- a/public/vendor/js/zxcvbn-async.min.js +++ b/public/vendor/js/zxcvbn-async.min.js @@ -1 +1 @@ -(function(){window.addEventListener("load",function(){var b,a;a=document.createElement("script");a.src="public/vendor/js/zxcvbn.min.js";a.type="text/javascript";a.async=!0;b=document.getElementsByTagName("script")[0];return b.parentNode.insertBefore(a,b)},!1)}).call(this); +(function(){window.addEventListener("load",function(){var a=document.createElement("script");a.src="public/vendor/js/zxcvbn.min.js";a.type="text/javascript";a.async=!0;var b=document.getElementsByTagName("script")[0];return b.parentNode.insertBefore(a,b)},!1)}).call(this); From f3e01eee9d101d15d07fe99ff5872f701a6549ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 7 Mar 2020 17:49:15 +0100 Subject: [PATCH 02/36] * [MOD] Enforce LDAP schema in ldap_connect function. Skip ldap_connect signature using port because it's deprecated * [ADD] LDAP params tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- composer.json | 3 +- composer.lock | 1218 ++++++++++++----- lib/SP/Providers/Auth/Ldap/LdapConnection.php | 27 +- .../Auth/Ldap/LdapConnectionTest.php | 150 ++ 4 files changed, 1027 insertions(+), 371 deletions(-) create mode 100644 tests/SP/Providers/Auth/Ldap/LdapConnectionTest.php diff --git a/composer.json b/composer.json index 629a9cb6..accd64f0 100644 --- a/composer.json +++ b/composer.json @@ -47,7 +47,8 @@ "fabpot/goutte": "~v3.2", "syspass/extension-installer-plugin": "dev-master", "syspass/plugin-authenticator": "^2.1-dev", - "nikic/php-parser": " ~v4.1" + "nikic/php-parser": "~v4.1", + "php-mock/php-mock-phpunit": "~2.6" }, "suggest": { "syspass/plugin-authenticator": "^2.1", diff --git a/composer.lock b/composer.lock index a64a7de0..e35c5664 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "91dab3bfbcce096704aa0735ad728ad5", + "content-hash": "e8a01f253d74b3fa7f840a2a995c3b95", "packages": [ { "name": "ademarre/binary-to-text-php", @@ -116,30 +116,30 @@ }, { "name": "doctrine/annotations", - "version": "v1.4.0", + "version": "v1.8.0", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/904dca4eb10715b92569fbcd79e201d5c349b6bc", + "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc", "shasum": "" }, "require": { "doctrine/lexer": "1.*", - "php": "^5.6 || ^7.0" + "php": "^7.1" }, "require-dev": { "doctrine/cache": "1.*", - "phpunit/phpunit": "^5.7" + "phpunit/phpunit": "^7.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.7.x-dev" } }, "autoload": { @@ -152,6 +152,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -160,10 +164,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -180,37 +180,42 @@ "docblock", "parser" ], - "time": "2017-02-24T16:22:25+00:00" + "time": "2019-10-01T18:55:10+00:00" }, { "name": "doctrine/cache", - "version": "v1.6.2", + "version": "1.10.0", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" + "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", + "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62", + "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62", "shasum": "" }, "require": { - "php": "~5.5|~7.0" + "php": "~7.1" }, "conflict": { "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "phpunit/phpunit": "~4.8|~5.0", - "predis/predis": "~1.0", - "satooshi/php-coveralls": "~0.6" + "alcaeus/mongo-php-adapter": "^1.1", + "doctrine/coding-standard": "^6.0", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^7.0", + "predis/predis": "~1.0" + }, + "suggest": { + "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.9.x-dev" } }, "autoload": { @@ -223,6 +228,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -231,10 +240,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -244,44 +249,53 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Caching library offering an object-oriented API for many cache backends", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", + "homepage": "https://www.doctrine-project.org/projects/cache.html", "keywords": [ + "abstraction", + "apcu", "cache", - "caching" + "caching", + "couchdb", + "memcached", + "php", + "redis", + "xcache" ], - "time": "2017-07-22T12:49:21+00:00" + "time": "2019-11-29T15:36:20+00:00" }, { "name": "doctrine/collections", - "version": "v1.4.0", + "version": "1.6.4", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", + "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1.3" }, "require-dev": { - "doctrine/coding-standard": "~0.1@dev", - "phpunit/phpunit": "^5.7" + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "phpunit/phpunit": "^7.0", + "vimeo/psalm": "^3.2.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.6.x-dev" } }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Collections\\": "lib/" + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } }, "notification-url": "https://packagist.org/downloads/", @@ -289,6 +303,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -297,10 +315,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -310,44 +324,53 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Collections Abstraction library", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", "keywords": [ "array", "collections", - "iterator" + "iterators", + "php" ], - "time": "2017-01-03T10:49:41+00:00" + "time": "2019-11-13T13:07:11+00:00" }, { "name": "doctrine/common", - "version": "v2.7.3", + "version": "2.12.0", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" + "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", - "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", + "url": "https://api.github.com/repos/doctrine/common/zipball/2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", + "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", "shasum": "" }, "require": { - "doctrine/annotations": "1.*", - "doctrine/cache": "1.*", - "doctrine/collections": "1.*", - "doctrine/inflector": "1.*", - "doctrine/lexer": "1.*", - "php": "~5.6|~7.0" + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/inflector": "^1.0", + "doctrine/lexer": "^1.0", + "doctrine/persistence": "^1.1", + "doctrine/reflection": "^1.0", + "php": "^7.1" }, "require-dev": { - "phpunit/phpunit": "^5.4.6" + "doctrine/coding-standard": "^1.0", + "phpstan/phpstan": "^0.11", + "phpstan/phpstan-phpunit": "^0.11", + "phpunit/phpunit": "^7.0", + "squizlabs/php_codesniffer": "^3.0", + "symfony/phpunit-bridge": "^4.0.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.7.x-dev" + "dev-master": "2.11.x-dev" } }, "autoload": { @@ -360,6 +383,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -368,10 +395,80 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.", + "homepage": "https://www.doctrine-project.org/projects/common.html", + "keywords": [ + "common", + "doctrine", + "php" + ], + "time": "2020-01-10T15:49:25+00:00" + }, + { + "name": "doctrine/event-manager", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/event-manager.git", + "reference": "629572819973f13486371cb611386eb17851e85c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c", + "reference": "629572819973f13486371cb611386eb17851e85c", + "shasum": "" + }, + "require": { + "php": "^7.1" + }, + "conflict": { + "doctrine/common": "<2.9@dev" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -379,35 +476,39 @@ { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" } ], - "description": "Common Library for Doctrine projects", - "homepage": "http://www.doctrine-project.org", + "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", + "homepage": "https://www.doctrine-project.org/projects/event-manager.html", "keywords": [ - "annotations", - "collections", - "eventmanager", - "persistence", - "spl" + "event", + "event dispatcher", + "event manager", + "event system", + "events" ], - "time": "2017-07-22T08:35:12+00:00" + "time": "2019-11-10T09:48:07+00:00" }, { "name": "doctrine/inflector", - "version": "v1.2.0", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", "shasum": "" }, "require": { - "php": "^7.0" + "php": "^7.1" }, "require-dev": { "phpunit/phpunit": "^6.2" @@ -415,7 +516,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.3.x-dev" } }, "autoload": { @@ -428,6 +529,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -436,10 +541,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -457,32 +558,34 @@ "singularize", "string" ], - "time": "2017-07-22T12:18:28+00:00" + "time": "2019-10-30T19:59:35+00:00" }, { "name": "doctrine/lexer", - "version": "1.0.2", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", + "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": "^7.2" }, "require-dev": { - "phpunit/phpunit": "^4.5" + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -495,14 +598,14 @@ "MIT" ], "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -517,48 +620,211 @@ "parser", "php" ], - "time": "2019-06-08T11:03:04+00:00" + "time": "2019-10-30T14:39:59+00:00" }, { - "name": "guzzlehttp/guzzle", - "version": "6.3.3", + "name": "doctrine/persistence", + "version": "1.3.6", "source": { "type": "git", - "url": "https://github.com/guzzle/guzzle.git", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" + "url": "https://github.com/doctrine/persistence.git", + "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "url": "https://api.github.com/repos/doctrine/persistence/zipball/5dd3ac5eebef2d0b074daa4440bb18f93132dee4", + "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4", "shasum": "" }, "require": { + "doctrine/annotations": "^1.0", + "doctrine/cache": "^1.0", + "doctrine/collections": "^1.0", + "doctrine/event-manager": "^1.0", + "doctrine/reflection": "^1.1", + "php": "^7.1" + }, + "conflict": { + "doctrine/common": "<2.10@dev" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common", + "Doctrine\\Persistence\\": "lib/Doctrine/Persistence" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", + "homepage": "https://doctrine-project.org/projects/persistence.html", + "keywords": [ + "mapper", + "object", + "odm", + "orm", + "persistence" + ], + "time": "2020-01-16T22:06:23+00:00" + }, + { + "name": "doctrine/reflection", + "version": "v1.1.0", + "source": { + "type": "git", + "url": "https://github.com/doctrine/reflection.git", + "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/doctrine/reflection/zipball/bc420ead87fdfe08c03ecc3549db603a45b06d4c", + "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c", + "shasum": "" + }, + "require": { + "doctrine/annotations": "^1.0", + "ext-tokenizer": "*", + "php": "^7.1" + }, + "conflict": { + "doctrine/common": "<2.9" + }, + "require-dev": { + "doctrine/coding-standard": "^5.0", + "doctrine/common": "^2.10", + "phpstan/phpstan": "^0.11.0", + "phpstan/phpstan-phpunit": "^0.11.0", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "Doctrine\\Common\\": "lib/Doctrine/Common" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, + { + "name": "Benjamin Eberlei", + "email": "kontakt@beberlei.de" + }, + { + "name": "Jonathan Wage", + "email": "jonwage@gmail.com" + }, + { + "name": "Johannes Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com" + } + ], + "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", + "homepage": "https://www.doctrine-project.org/projects/reflection.html", + "keywords": [ + "reflection", + "static" + ], + "time": "2020-01-08T19:53:19+00:00" + }, + { + "name": "guzzlehttp/guzzle", + "version": "6.5.2", + "source": { + "type": "git", + "url": "https://github.com/guzzle/guzzle.git", + "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", + "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", + "shasum": "" + }, + "require": { + "ext-json": "*", "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.4", + "guzzlehttp/psr7": "^1.6.1", "php": ">=5.5" }, "require-dev": { "ext-curl": "*", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.0" + "psr/log": "^1.1" }, "suggest": { + "ext-intl": "Required for Internationalized Domain Name (IDN) support", "psr/log": "Required for using the Log middleware" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.3-dev" + "dev-master": "6.5-dev" } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\": "src/" - } + }, + "files": [ + "src/functions_include.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -582,7 +848,7 @@ "rest", "web service" ], - "time": "2018-04-22T15:46:56+00:00" + "time": "2019-12-23T11:57:10+00:00" }, { "name": "guzzlehttp/promises", @@ -822,16 +1088,16 @@ }, { "name": "monolog/monolog", - "version": "1.24.0", + "version": "1.25.3", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266" + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", - "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1", + "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1", "shasum": "" }, "require": { @@ -896,20 +1162,20 @@ "logging", "psr-3" ], - "time": "2018-11-05T09:00:11+00:00" + "time": "2019-12-20T14:15:16+00:00" }, { "name": "nikic/php-parser", - "version": "v4.2.3", + "version": "v4.3.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "e612609022e935f3d0337c1295176505b41188c8" + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e612609022e935f3d0337c1295176505b41188c8", - "reference": "e612609022e935f3d0337c1295176505b41188c8", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", + "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", "shasum": "" }, "require": { @@ -917,6 +1183,7 @@ "php": ">=7.0" }, "require-dev": { + "ircmaxell/php-yacc": "0.0.5", "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" }, "bin": [ @@ -925,7 +1192,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -947,7 +1214,7 @@ "parser", "php" ], - "time": "2019-08-12T20:17:41+00:00" + "time": "2019-11-08T13:50:10+00:00" }, { "name": "paragonie/random_compat", @@ -1039,16 +1306,16 @@ }, { "name": "php-di/php-di", - "version": "6.0.9", + "version": "6.0.11", "source": { "type": "git", "url": "https://github.com/PHP-DI/PHP-DI.git", - "reference": "00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1" + "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1", - "reference": "00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1", + "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", + "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", "shasum": "" }, "require": { @@ -1098,20 +1365,20 @@ "ioc", "psr11" ], - "time": "2019-07-08T07:24:22+00:00" + "time": "2019-12-12T07:58:02+00:00" }, { "name": "php-di/phpdoc-reader", - "version": "2.1.0", + "version": "2.1.1", "source": { "type": "git", "url": "https://github.com/PHP-DI/PhpDocReader.git", - "reference": "7d0de60b9341933c8afd172a6255cd7557601e0e" + "reference": "15678f7451c020226807f520efb867ad26fbbfcf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/7d0de60b9341933c8afd172a6255cd7557601e0e", - "reference": "7d0de60b9341933c8afd172a6255cd7557601e0e", + "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/15678f7451c020226807f520efb867ad26fbbfcf", + "reference": "15678f7451c020226807f520efb867ad26fbbfcf", "shasum": "" }, "require": { @@ -1135,20 +1402,20 @@ "phpdoc", "reflection" ], - "time": "2018-02-18T17:39:01+00:00" + "time": "2019-09-26T11:24:58+00:00" }, { "name": "phpmailer/phpmailer", - "version": "v6.0.7", + "version": "v6.1.4", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59" + "reference": "c5e61d0729507049cec9673aa1a679f9adefd683" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/0c41a36d4508d470e376498c1c0c527aa36a2d59", - "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/c5e61d0729507049cec9673aa1a679f9adefd683", + "reference": "c5e61d0729507049cec9673aa1a679f9adefd683", "shasum": "" }, "require": { @@ -1157,13 +1424,9 @@ "php": ">=5.5.0" }, "require-dev": { - "doctrine/annotations": "1.2.*", + "doctrine/annotations": "^1.2", "friendsofphp/php-cs-fixer": "^2.2", - "phpdocumentor/phpdocumentor": "2.*", - "phpunit/phpunit": "^4.8 || ^5.7", - "zendframework/zend-eventmanager": "3.0.*", - "zendframework/zend-i18n": "2.7.3", - "zendframework/zend-serializer": "2.7.*" + "phpunit/phpunit": "^4.8 || ^5.7" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset", @@ -1181,17 +1444,17 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "LGPL-2.1-only" ], "authors": [ - { - "name": "Jim Jagielski", - "email": "jimjag@gmail.com" - }, { "name": "Marcus Bointon", "email": "phpmailer@synchromedia.co.uk" }, + { + "name": "Jim Jagielski", + "email": "jimjag@gmail.com" + }, { "name": "Andy Prevost", "email": "codeworxtech@users.sourceforge.net" @@ -1201,20 +1464,20 @@ } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", - "time": "2019-02-01T15:04:28+00:00" + "time": "2019-12-10T11:17:38+00:00" }, { "name": "phpseclib/phpseclib", - "version": "2.0.21", + "version": "2.0.25", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "9f1287e68b3f283339a9f98f67515dd619e5bf9d" + "reference": "c18159618ed7cd7ff721ac1a8fec7860a475d2f0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/9f1287e68b3f283339a9f98f67515dd619e5bf9d", - "reference": "9f1287e68b3f283339a9f98f67515dd619e5bf9d", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c18159618ed7cd7ff721ac1a8fec7860a475d2f0", + "reference": "c18159618ed7cd7ff721ac1a8fec7860a475d2f0", "shasum": "" }, "require": { @@ -1248,28 +1511,28 @@ "authors": [ { "name": "Jim Wigginton", - "role": "Lead Developer", - "email": "terrafrost@php.net" + "email": "terrafrost@php.net", + "role": "Lead Developer" }, { "name": "Patrick Monnerat", - "role": "Developer", - "email": "pm@datasphere.ch" + "email": "pm@datasphere.ch", + "role": "Developer" }, { "name": "Andreas Fischer", - "role": "Developer", - "email": "bantu@phpbb.com" + "email": "bantu@phpbb.com", + "role": "Developer" }, { "name": "Hans-Jürgen Petrich", - "role": "Developer", - "email": "petrich@tronic-media.com" + "email": "petrich@tronic-media.com", + "role": "Developer" }, { "name": "Graham Campbell", - "role": "Developer", - "email": "graham@alt-three.com" + "email": "graham@alt-three.com", + "role": "Developer" } ], "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", @@ -1293,7 +1556,7 @@ "x.509", "x509" ], - "time": "2019-07-12T12:53:49+00:00" + "time": "2020-02-25T04:16:50+00:00" }, { "name": "psr/container", @@ -1396,16 +1659,16 @@ }, { "name": "psr/log", - "version": "1.1.0", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", + "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", "shasum": "" }, "require": { @@ -1414,7 +1677,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -1439,7 +1702,7 @@ "psr", "psr-3" ], - "time": "2018-11-20T15:27:04+00:00" + "time": "2019-11-01T11:05:21+00:00" }, { "name": "ralouphie/getallheaders", @@ -1487,12 +1750,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "ea693fa060702164985511acc3ceb5389c9ac761" + "reference": "f0eca1ac3194cc94726f0bb366672f38629272b4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/ea693fa060702164985511acc3ceb5389c9ac761", - "reference": "ea693fa060702164985511acc3ceb5389c9ac761", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/f0eca1ac3194cc94726f0bb366672f38629272b4", + "reference": "f0eca1ac3194cc94726f0bb366672f38629272b4", "shasum": "" }, "conflict": { @@ -1504,18 +1767,23 @@ "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6", "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99", "aws/aws-sdk-php": ">=3,<3.2.1", + "bagisto/bagisto": "<0.1.5", + "bolt/bolt": "<3.6.10", "brightlocal/phpwhois": "<=4.2.5", + "buddypress/buddypress": "<5.1.2", "bugsnag/bugsnag-laravel": ">=2,<2.0.2", "cakephp/cakephp": ">=1.3,<1.3.18|>=2,<2.4.99|>=2.5,<2.5.99|>=2.6,<2.6.12|>=2.7,<2.7.6|>=3,<3.5.18|>=3.6,<3.6.15|>=3.7,<3.7.7", "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4", "cartalyst/sentry": "<=2.1.6", + "centreon/centreon": "<18.10.8|>=19,<19.4.5", + "cesnet/simplesamlphp-module-proxystatistics": "<3.1", "codeigniter/framework": "<=3.0.6", "composer/composer": "<=1-alpha.11", "contao-components/mediaelement": ">=2.14.2,<2.21.1", "contao/core": ">=2,<3.5.39", - "contao/core-bundle": ">=4,<4.4.39|>=4.5,<4.7.5", + "contao/core-bundle": ">=4,<4.4.46|>=4.5,<4.8.6", "contao/listing-bundle": ">=4,<4.4.8", - "contao/newsletter-bundle": ">=4,<4.1", + "datadog/dd-trace": ">=0.30,<0.30.2", "david-garcia/phpwhois": "<=4.3.1", "doctrine/annotations": ">=1,<1.2.7", "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", @@ -1526,13 +1794,20 @@ "doctrine/mongodb-odm": ">=1,<1.0.2", "doctrine/mongodb-odm-bundle": ">=2,<3.0.1", "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1", + "dolibarr/dolibarr": "<=10.0.6", "dompdf/dompdf": ">=0.6,<0.6.2", - "drupal/core": ">=7,<7.67|>=8,<8.6.16|>=8.7,<8.7.1|>8.7.3,<8.7.5", - "drupal/drupal": ">=7,<7.67|>=8,<8.6.16|>=8.7,<8.7.1|>8.7.3,<8.7.5", + "drupal/core": ">=7,<7.69|>=8,<8.7.11|>=8.8,<8.8.1", + "drupal/drupal": ">=7,<7.69|>=8,<8.7.11|>=8.8,<8.8.1", + "endroid/qr-code-bundle": "<3.4.2", + "enshrined/svg-sanitize": "<0.13.1", "erusev/parsedown": "<1.7.2", - "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.4", - "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.13.1|>=6,<6.7.9.1|>=6.8,<6.13.5.1|>=7,<7.2.4.1|>=7.3,<7.3.2.1", - "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.12.3|>=2011,<2017.12.4.3|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3", + "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1", + "ezsystems/ezplatform": ">=1.7,<1.7.9.1|>=1.13,<1.13.5.1|>=2.5,<2.5.4", + "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6", + "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2", + "ezsystems/ezplatform-user": ">=1,<1.0.1", + "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.14.1|>=6,<6.7.9.1|>=6.8,<6.13.6.2|>=7,<7.2.4.1|>=7.3,<7.3.2.1|>=7.5,<7.5.6.2", + "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.14.1|>=2011,<2017.12.7.2|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3|>=2019.3,<2019.3.4.2", "ezsystems/repository-forms": ">=2.3,<2.3.2.1", "ezyang/htmlpurifier": "<4.1.1", "firebase/php-jwt": "<2", @@ -1541,6 +1816,7 @@ "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2", "friendsofsymfony/user-bundle": ">=1.2,<1.3.5", "fuel/core": "<1.8.1", + "getgrav/grav": "<1.7-beta.8", "gree/jose": "<=2.2", "gregwar/rst": "<1.0.3", "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1", @@ -1558,12 +1834,15 @@ "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.42|>=5.6,<5.6.30", "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10", "league/commonmark": "<0.18.3", - "magento/magento1ce": "<1.9.4.1", - "magento/magento1ee": ">=1.9,<1.14.4.1", - "magento/product-community-edition": ">=2,<2.2.8|>=2.3,<2.3.1", + "librenms/librenms": "<1.53", + "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3", + "magento/magento1ce": "<1.9.4.3", + "magento/magento1ee": ">=1,<1.14.4.3", + "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2", "monolog/monolog": ">=1.8,<1.12", "namshi/jose": "<2.2", "onelogin/php-saml": "<2.10.4", + "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5", "openid/php-openid": "<2.3", "oro/crm": ">=1.7,<1.7.4", "oro/platform": ">=1.7,<1.7.4", @@ -1572,49 +1851,68 @@ "paragonie/random_compat": "<2", "paypal/merchant-sdk-php": "<3.12", "pear/archive_tar": "<1.4.4", + "phpfastcache/phpfastcache": ">=5,<5.0.13", "phpmailer/phpmailer": ">=5,<5.2.27|>=6,<6.0.6", - "phpoffice/phpexcel": "<=1.8.1", - "phpoffice/phpspreadsheet": "<=1.5", + "phpmyadmin/phpmyadmin": "<4.9.2", + "phpoffice/phpexcel": "<1.8.2", + "phpoffice/phpspreadsheet": "<1.8", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", + "pimcore/pimcore": "<6.3", + "prestashop/autoupgrade": ">=4,<4.10.1", + "prestashop/gamification": "<2.3.2", + "prestashop/ps_facetedsearch": "<3.4.1", + "privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2", "propel/propel": ">=2-alpha.1,<=2-alpha.7", "propel/propel1": ">=1,<=1.7.1", "pusher/pusher-php-server": "<2.2.1", - "robrichards/xmlseclibs": ">=1,<3.0.2", + "robrichards/xmlseclibs": "<3.0.4", "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9", + "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11", "sensiolabs/connect": "<4.2.3", "serluck/phpwhois": "<=4.2.6", "shopware/shopware": "<5.3.7", - "silverstripe/cms": ">=3,<=3.0.11|>=3.1,<3.1.11", + "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1", + "silverstripe/assets": ">=1,<1.3.5|>=1.4,<1.4.4", + "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4", + "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", - "silverstripe/framework": ">=3,<3.6.7|>=3.7,<3.7.3|>=4,<4.4", + "silverstripe/framework": "<4.4.5|>=4.5,<4.5.2", "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4", + "silverstripe/subsites": ">=2,<2.1.1", + "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1", "silverstripe/userforms": "<3", "simple-updates/phpwhois": "<=1", "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4", - "simplesamlphp/simplesamlphp": "<1.17.3", + "simplesamlphp/simplesamlphp": "<1.18.4", "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", + "simplito/elliptic-php": "<1.0.6", "slim/slim": "<2.6", "smarty/smarty": "<3.1.33", "socalnick/scn-social-auth": "<1.15.2", "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", "stormpath/sdk": ">=0,<9.9.99", + "studio-42/elfinder": "<2.1.49", "swiftmailer/swiftmailer": ">=4,<5.4.5", "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", "sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", - "sylius/sylius": ">=1,<1.1.18|>=1.2,<1.2.17|>=1.3,<1.3.12|>=1.4,<1.4.4", - "symfony/cache": ">=3.1,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "sylius/resource-bundle": "<1.3.13|>=1.4,<1.4.6|>=1.5,<1.5.1|>=1.6,<1.6.3", + "sylius/sylius": "<1.3.16|>=1.4,<1.4.12|>=1.5,<1.5.9|>=1.6,<1.6.5", + "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99", + "symbiote/silverstripe-versionedfiles": "<=2.0.3", + "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1", "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", - "symfony/http-foundation": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", - "symfony/http-kernel": ">=2,<2.3.29|>=2.4,<2.5.12|>=2.6,<2.6.8", + "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", + "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13", + "symfony/mime": ">=4.3,<4.3.8", "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/polyfill": ">=1,<1.10", "symfony/polyfill-php55": ">=1,<1.10", @@ -1625,11 +1923,12 @@ "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<2.8.37|>=3,<3.3.17|>=3.4,<3.4.7|>=4,<4.0.7", "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", "symfony/security-guard": ">=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", - "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8", "symfony/serializer": ">=2,<2.0.11", - "symfony/symfony": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/symfony": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", "symfony/translation": ">=2,<2.0.17", "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3", + "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8", "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7", "tecnickcom/tcpdf": "<6.2.22", @@ -1639,14 +1938,17 @@ "titon/framework": ">=0,<9.9.99", "truckersmp/phpwhois": "<=4.3.1", "twig/twig": "<1.38|>=2,<2.7", - "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.27|>=9,<9.5.8", - "typo3/cms-core": ">=8,<8.7.27|>=9,<9.5.8", + "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.30|>=9,<9.5.12|>=10,<10.2.1", + "typo3/cms-core": ">=8,<8.7.30|>=9,<9.5.12|>=10,<10.2.1", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.10|>=3.1,<3.1.7|>=3.2,<3.2.7|>=3.3,<3.3.5", "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4", "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1", "ua-parser/uap-php": "<3.8", + "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", + "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4", "wallabag/tcpdf": "<6.2.22", "willdurand/js-translation-bundle": "<2.1.1", + "yii2mod/yii2-cms": "<1.9.2", "yiisoft/yii": ">=1.1.14,<1.1.15", "yiisoft/yii2": "<2.0.15", "yiisoft/yii2-bootstrap": "<2.0.4", @@ -1655,6 +1957,7 @@ "yiisoft/yii2-gii": "<2.0.4", "yiisoft/yii2-jui": "<2.0.4", "yiisoft/yii2-redis": "<2.0.8", + "yourls/yourls": "<1.7.4", "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2", "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2", @@ -1689,25 +1992,30 @@ "authors": [ { "name": "Marco Pivetta", - "role": "maintainer", - "email": "ocramius@gmail.com" + "email": "ocramius@gmail.com", + "role": "maintainer" + }, + { + "name": "Ilya Tribusean", + "email": "slash3b@gmail.com", + "role": "maintainer" } ], "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", - "time": "2019-07-18T15:17:58+00:00" + "time": "2020-03-03T17:52:54+00:00" }, { "name": "symfony/debug", - "version": "v3.4.30", + "version": "v3.4.38", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "bc977cb2681d75988ab2d53d14c4245c6c04f82f" + "reference": "a99278d50af8a9164219da38d61fb161a7f6e0a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/bc977cb2681d75988ab2d53d14c4245c6c04f82f", - "reference": "bc977cb2681d75988ab2d53d14c4245c6c04f82f", + "url": "https://api.github.com/repos/symfony/debug/zipball/a99278d50af8a9164219da38d61fb161a7f6e0a6", + "reference": "a99278d50af8a9164219da38d61fb161a7f6e0a6", "shasum": "" }, "require": { @@ -1750,20 +2058,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2019-07-23T08:39:19+00:00" + "time": "2020-02-03T15:10:40+00:00" }, { "name": "symfony/polyfill-php56", - "version": "v1.12.0", + "version": "v1.14.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "0e3b212e96a51338639d8ce175c046d7729c3403" + "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403", - "reference": "0e3b212e96a51338639d8ce175c046d7729c3403", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/16ec91cb06998b609501b55b7177b7d7c02badb3", + "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3", "shasum": "" }, "require": { @@ -1773,7 +2081,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.14-dev" } }, "autoload": { @@ -1806,20 +2114,20 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-01-13T11:15:53+00:00" }, { "name": "symfony/polyfill-util", - "version": "v1.12.0", + "version": "v1.14.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", - "reference": "4317de1386717b4c22caed7725350a8887ab205c" + "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c", - "reference": "4317de1386717b4c22caed7725350a8887ab205c", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ba3cfcea6d0192cae46c62041f61cbb704b526d3", + "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3", "shasum": "" }, "require": { @@ -1828,7 +2136,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.14-dev" } }, "autoload": { @@ -1858,7 +2166,7 @@ "polyfill", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-01-13T11:15:53+00:00" } ], "packages-dev": [ @@ -1910,32 +2218,34 @@ }, { "name": "doctrine/instantiator", - "version": "1.0.5", + "version": "1.3.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", + "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", "shasum": "" }, "require": { - "php": ">=5.3,<8.0-DEV" + "php": "^7.1" }, "require-dev": { - "athletic/athletic": "~0.1.8", + "doctrine/coding-standard": "^6.0", "ext-pdo": "*", "ext-phar": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~2.0" + "phpbench/phpbench": "^0.13", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-shim": "^0.11", + "phpunit/phpunit": "^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -1955,41 +2265,41 @@ } ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://github.com/doctrine/instantiator", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", "keywords": [ "constructor", "instantiate" ], - "time": "2015-06-14T21:17:01+00:00" + "time": "2019-10-21T16:45:58+00:00" }, { "name": "fabpot/goutte", - "version": "v3.2.3", + "version": "v3.3.0", "source": { "type": "git", "url": "https://github.com/FriendsOfPHP/Goutte.git", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8" + "reference": "4ab5199e3ec0ffde0ee0b5ecf568a4fb8398dbae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/4ab5199e3ec0ffde0ee0b5ecf568a4fb8398dbae", + "reference": "4ab5199e3ec0ffde0ee0b5ecf568a4fb8398dbae", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^6.0", - "php": ">=5.5.0", - "symfony/browser-kit": "~2.1|~3.0|~4.0", - "symfony/css-selector": "~2.1|~3.0|~4.0", - "symfony/dom-crawler": "~2.1|~3.0|~4.0" + "php": "^7.1.3", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0" }, "require-dev": { - "symfony/phpunit-bridge": "^3.3 || ^4" + "symfony/phpunit-bridge": "^5.0" }, "type": "application", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -2015,20 +2325,20 @@ "keywords": [ "scraper" ], - "time": "2018-06-29T15:13:57+00:00" + "time": "2019-12-06T13:11:18+00:00" }, { "name": "fzaninotto/faker", - "version": "v1.8.0", + "version": "v1.9.1", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de" + "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de", - "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f", + "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f", "shasum": "" }, "require": { @@ -2037,12 +2347,12 @@ "require-dev": { "ext-intl": "*", "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^1.5" + "squizlabs/php_codesniffer": "^2.9.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -2065,29 +2375,32 @@ "faker", "fixtures" ], - "time": "2018-07-12T10:23:15+00:00" + "time": "2019-12-12T13:22:17+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.7.0", + "version": "1.9.5", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" + "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef", + "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1" + }, + "replace": { + "myclabs/deep-copy": "self.version" }, "require-dev": { "doctrine/collections": "^1.0", "doctrine/common": "^2.6", - "phpunit/phpunit": "^4.1" + "phpunit/phpunit": "^7.1" }, "type": "library", "autoload": { @@ -2110,7 +2423,7 @@ "object", "object graph" ], - "time": "2017-10-19T19:58:43+00:00" + "time": "2020-01-17T21:11:47+00:00" }, { "name": "phar-io/manifest", @@ -2215,36 +2528,205 @@ "time": "2017-03-05T17:38:23+00:00" }, { - "name": "phpdocumentor/reflection-common", - "version": "1.0.1", + "name": "php-mock/php-mock", + "version": "2.2.1", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + "url": "https://github.com/php-mock/php-mock.git", + "reference": "8ca7205ad5e73fbbffa9bde9f6bc90daf5e49702" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "url": "https://api.github.com/repos/php-mock/php-mock/zipball/8ca7205ad5e73fbbffa9bde9f6bc90daf5e49702", + "reference": "8ca7205ad5e73fbbffa9bde9f6bc90daf5e49702", "shasum": "" }, "require": { - "php": ">=5.5" + "php": "^5.6 || ^7.0", + "phpunit/php-text-template": "^1 || ^2" + }, + "replace": { + "malkusch/php-mock": "*" }, "require-dev": { - "phpunit/phpunit": "^4.6" + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0 || ^9.0" + }, + "suggest": { + "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock." + }, + "type": "library", + "autoload": { + "files": [ + "autoload.php" + ], + "psr-4": { + "phpmock\\": [ + "classes/", + "tests/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "WTFPL" + ], + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.", + "homepage": "https://github.com/php-mock/php-mock", + "keywords": [ + "BDD", + "TDD", + "function", + "mock", + "stub", + "test", + "test double" + ], + "time": "2020-02-08T14:50:32+00:00" + }, + { + "name": "php-mock/php-mock-integration", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-mock/php-mock-integration.git", + "reference": "003d585841e435958a02e9b986953907b8b7609b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-mock/php-mock-integration/zipball/003d585841e435958a02e9b986953907b8b7609b", + "reference": "003d585841e435958a02e9b986953907b8b7609b", + "shasum": "" + }, + "require": { + "php": ">=5.6", + "php-mock/php-mock": "^2.2", + "phpunit/php-text-template": "^1 || ^2" + }, + "require-dev": { + "phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "autoload": { + "psr-4": { + "phpmock\\integration\\": "classes/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "WTFPL" + ], + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "description": "Integration package for PHP-Mock", + "homepage": "https://github.com/php-mock/php-mock-integration", + "keywords": [ + "BDD", + "TDD", + "function", + "mock", + "stub", + "test", + "test double" + ], + "time": "2020-02-08T14:40:25+00:00" + }, + { + "name": "php-mock/php-mock-phpunit", + "version": "2.6.0", + "source": { + "type": "git", + "url": "https://github.com/php-mock/php-mock-phpunit.git", + "reference": "2877a0e58f12e91b64bf36ccd080a209dcbf6c30" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-mock/php-mock-phpunit/zipball/2877a0e58f12e91b64bf36ccd080a209dcbf6c30", + "reference": "2877a0e58f12e91b64bf36ccd080a209dcbf6c30", + "shasum": "" + }, + "require": { + "php": ">=7", + "php-mock/php-mock-integration": "^2.1", + "phpunit/phpunit": "^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "autoload": { + "files": [ + "autoload.php" + ], + "psr-4": { + "phpmock\\phpunit\\": "classes/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "WTFPL" + ], + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "description": "Mock built-in PHP functions (e.g. time()) with PHPUnit. This package relies on PHP's namespace fallback policy. No further extension is needed.", + "homepage": "https://github.com/php-mock/php-mock-phpunit", + "keywords": [ + "BDD", + "TDD", + "function", + "mock", + "phpunit", + "stub", + "test", + "test double" + ], + "time": "2020-02-08T15:44:47+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.0.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", + "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "require-dev": { + "phpunit/phpunit": "~6" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "2.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src" - ] + "phpDocumentor\\Reflection\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -2266,44 +2748,42 @@ "reflection", "static analysis" ], - "time": "2017-09-11T18:02:19+00:00" + "time": "2018-08-07T13:53:10+00:00" }, { "name": "phpdocumentor/reflection-docblock", - "version": "4.3.1", + "version": "5.1.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c" + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c", - "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", "shasum": "" }, "require": { - "php": "^7.0", - "phpdocumentor/reflection-common": "^1.0.0", - "phpdocumentor/type-resolver": "^0.4.0", - "webmozart/assert": "^1.0" + "ext-filter": "^7.1", + "php": "^7.2", + "phpdocumentor/reflection-common": "^2.0", + "phpdocumentor/type-resolver": "^1.0", + "webmozart/assert": "^1" }, "require-dev": { - "doctrine/instantiator": "~1.0.5", - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.4" + "doctrine/instantiator": "^1", + "mockery/mockery": "^1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "5.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -2314,44 +2794,46 @@ { "name": "Mike van Riel", "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2019-04-30T17:48:53+00:00" + "time": "2020-02-22T12:28:44+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "0.4.0", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + "reference": "7462d5f123dfc080dfdf26897032a6513644fc95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95", + "reference": "7462d5f123dfc080dfdf26897032a6513644fc95", "shasum": "" }, "require": { - "php": "^5.5 || ^7.0", - "phpdocumentor/reflection-common": "^1.0" + "php": "^7.2", + "phpdocumentor/reflection-common": "^2.0" }, "require-dev": { - "mockery/mockery": "^0.9.4", - "phpunit/phpunit": "^5.2||^4.8.24" + "ext-tokenizer": "^7.2", + "mockery/mockery": "~1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -2364,37 +2846,38 @@ "email": "me@mikevanriel.com" } ], - "time": "2017-07-14T14:27:02+00:00" + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "time": "2020-02-18T18:59:58+00:00" }, { "name": "phpspec/prophecy", - "version": "1.8.1", + "version": "v1.10.3", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76" + "reference": "451c3cd1418cf640de218914901e51b064abb093" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76", - "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093", + "reference": "451c3cd1418cf640de218914901e51b064abb093", "shasum": "" }, "require": { "doctrine/instantiator": "^1.0.2", "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", - "sebastian/comparator": "^1.1|^2.0|^3.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0" + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", + "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0" }, "require-dev": { - "phpspec/phpspec": "^2.5|^3.2", + "phpspec/phpspec": "^2.5 || ^3.2", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8.x-dev" + "dev-master": "1.10.x-dev" } }, "autoload": { @@ -2427,7 +2910,7 @@ "spy", "stub" ], - "time": "2019-06-13T12:50:23+00:00" + "time": "2020-03-05T15:02:03+00:00" }, { "name": "phpunit/dbunit", @@ -3088,16 +3571,16 @@ }, { "name": "sebastian/exporter", - "version": "3.1.1", + "version": "3.1.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "06a9a5947f47b3029d76118eb5c22802e5869687" + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/06a9a5947f47b3029d76118eb5c22802e5869687", - "reference": "06a9a5947f47b3029d76118eb5c22802e5869687", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", + "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", "shasum": "" }, "require": { @@ -3151,7 +3634,7 @@ "export", "exporter" ], - "time": "2019-08-11T12:43:14+00:00" + "time": "2019-09-14T09:02:43+00:00" }, { "name": "sebastian/global-state", @@ -3436,25 +3919,27 @@ }, { "name": "symfony/browser-kit", - "version": "v3.4.30", + "version": "v5.0.5", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282" + "reference": "6b2a9590a5868f0ce5cbf7af6abe563d1a3930a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/53266c9a1536e2dc673eb1efb6a6142ef84c6282", - "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/6b2a9590a5868f0ce5cbf7af6abe563d1a3930a3", + "reference": "6b2a9590a5868f0ce5cbf7af6abe563d1a3930a3", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/dom-crawler": "~2.8|~3.0|~4.0" + "php": "^7.2.5", + "symfony/dom-crawler": "^4.4|^5.0" }, "require-dev": { - "symfony/css-selector": "~2.8|~3.0|~4.0", - "symfony/process": "~2.8|~3.0|~4.0" + "symfony/css-selector": "^4.4|^5.0", + "symfony/http-client": "^4.4|^5.0", + "symfony/mime": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0" }, "suggest": { "symfony/process": "" @@ -3462,7 +3947,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -3489,29 +3974,29 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2019-06-09T14:27:26+00:00" + "time": "2020-02-24T15:05:31+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.30", + "version": "v5.0.5", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf" + "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", - "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/a0b51ba9938ccc206d9284de7eb527c2d4550b44", + "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^7.2.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -3542,29 +4027,33 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2019-01-16T09:39:14+00:00" + "time": "2020-02-04T09:41:09+00:00" }, { "name": "symfony/dom-crawler", - "version": "v3.4.30", + "version": "v5.0.5", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c" + "reference": "4368bdd61b83af365b8f23e9616d2a2ed52cbe7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/adb96e63af6fb0cc721cc69861001d60d0133d0c", - "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4368bdd61b83af365b8f23e9616d2a2ed52cbe7c", + "reference": "4368bdd61b83af365b8f23e9616d2a2ed52cbe7c", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": "^7.2.5", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0" }, + "conflict": { + "masterminds/html5": "<2.6" + }, "require-dev": { - "symfony/css-selector": "~2.8|~3.0|~4.0" + "masterminds/html5": "^2.6", + "symfony/css-selector": "^4.4|^5.0" }, "suggest": { "symfony/css-selector": "" @@ -3572,7 +4061,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "5.0-dev" } }, "autoload": { @@ -3599,20 +4088,20 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2019-05-30T15:47:52+00:00" + "time": "2020-02-29T10:07:09+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.12.0", + "version": "v1.14.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", + "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", "shasum": "" }, "require": { @@ -3624,7 +4113,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.14-dev" } }, "autoload": { @@ -3657,20 +4146,20 @@ "polyfill", "portable" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-01-13T11:15:53+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.12.0", + "version": "v1.14.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" + "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2", + "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2", "shasum": "" }, "require": { @@ -3682,7 +4171,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-master": "1.14-dev" } }, "autoload": { @@ -3716,31 +4205,31 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "time": "2020-01-13T11:15:53+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.30", + "version": "v4.4.5", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "051d045c684148060ebfc9affb7e3f5e0899d40b" + "reference": "94d005c176db2080e98825d98e01e8b311a97a88" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/051d045c684148060ebfc9affb7e3f5e0899d40b", - "reference": "051d045c684148060ebfc9affb7e3f5e0899d40b", + "url": "https://api.github.com/repos/symfony/yaml/zipball/94d005c176db2080e98825d98e01e8b311a97a88", + "reference": "94d005c176db2080e98825d98e01e8b311a97a88", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": "^7.1.3", "symfony/polyfill-ctype": "~1.8" }, "conflict": { "symfony/console": "<3.4" }, "require-dev": { - "symfony/console": "~3.4|~4.0" + "symfony/console": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" @@ -3748,7 +4237,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.4-dev" } }, "autoload": { @@ -3775,7 +4264,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-07-24T13:01:31+00:00" + "time": "2020-02-03T10:46:43+00:00" }, { "name": "syspass/extension-installer-plugin", @@ -3818,12 +4307,12 @@ "source": { "type": "git", "url": "https://github.com/sysPass/plugin-Authenticator.git", - "reference": "c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd" + "reference": "a9a5c264fce13960267f0d87518456b671530c8b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sysPass/plugin-Authenticator/zipball/c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd", - "reference": "c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd", + "url": "https://api.github.com/repos/sysPass/plugin-Authenticator/zipball/a9a5c264fce13960267f0d87518456b671530c8b", + "reference": "a9a5c264fce13960267f0d87518456b671530c8b", "shasum": "" }, "require": { @@ -3852,14 +4341,14 @@ "authors": [ { "name": "Rubén Domínguez", - "role": "Author/Developer", "email": "nuxsmin@syspass.org", - "homepage": "https://syspass.org/" + "homepage": "https://syspass.org/", + "role": "Author/Developer" } ], "description": "2FA authentication plugin for sysPass based on TOTP algorithm (RFC 6238)", "homepage": "https://syspass.org", - "time": "2019-04-27T00:48:18+00:00" + "time": "2019-12-21T11:52:31+00:00" }, { "name": "theseer/tokenizer", @@ -3903,32 +4392,29 @@ }, { "name": "webmozart/assert", - "version": "1.4.0", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9" + "reference": "aed98a490f9a8f78468232db345ab9cf606cf598" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9", - "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9", + "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598", + "reference": "aed98a490f9a8f78468232db345ab9cf606cf598", "shasum": "" }, "require": { "php": "^5.3.3 || ^7.0", "symfony/polyfill-ctype": "^1.8" }, + "conflict": { + "vimeo/psalm": "<3.6.0" + }, "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" + "phpunit/phpunit": "^4.8.36 || ^7.5.13" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3-dev" - } - }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -3950,7 +4436,7 @@ "check", "validate" ], - "time": "2018-12-25T11:19:39+00:00" + "time": "2020-02-14T12:15:55+00:00" } ], "aliases": [], diff --git a/lib/SP/Providers/Auth/Ldap/LdapConnection.php b/lib/SP/Providers/Auth/Ldap/LdapConnection.php index f9450148..b857d537 100644 --- a/lib/SP/Providers/Auth/Ldap/LdapConnection.php +++ b/lib/SP/Providers/Auth/Ldap/LdapConnection.php @@ -136,7 +136,7 @@ final class LdapConnection implements LdapConnectionInterface @ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, 7); } - $this->ldapHandler = @ldap_connect($this->getServer(), $this->ldapParams->getPort()); + $this->ldapHandler = @ldap_connect($this->getServerUri()); // Conexión al servidor LDAP if (!is_resource($this->ldapHandler)) { @@ -165,9 +165,9 @@ final class LdapConnection implements LdapConnectionInterface */ public function checkParams() { - if (!$this->ldapParams->getSearchBase() - || !$this->getServer() - || !$this->ldapParams->getBindDn() + if (empty($this->ldapParams->getSearchBase()) + || empty($this->getServer()) + || empty($this->ldapParams->getBindDn()) ) { $this->eventDispatcher->notifyEvent('ldap.check.params', new Event($this, EventMessage::factory() @@ -197,6 +197,25 @@ final class LdapConnection implements LdapConnectionInterface return $this; } + /** + * @inheritDoc + */ + public function getServerUri(): string + { + $server = $this->getServer(); + $port = $this->ldapParams->getPort(); + + if (strpos($server, '://') !== false) { + return $server . ':' . $port; + } elseif ($port === 389 || $port === null) { + return 'ldap://' . $server; + } elseif ($port === 636) { + return 'ldaps://' . $server; + } + + return 'ldap://' . $server . ':' . $port; + } + /** * Connect through TLS * diff --git a/tests/SP/Providers/Auth/Ldap/LdapConnectionTest.php b/tests/SP/Providers/Auth/Ldap/LdapConnectionTest.php new file mode 100644 index 00000000..eea7b848 --- /dev/null +++ b/tests/SP/Providers/Auth/Ldap/LdapConnectionTest.php @@ -0,0 +1,150 @@ +. + */ + +namespace SP\Tests\Providers\Auth\Ldap; + +use PHPUnit\Framework\TestCase; +use SP\Core\Events\EventDispatcher; +use SP\Providers\Auth\Ldap\LdapConnection; +use SP\Providers\Auth\Ldap\LdapException; +use SP\Providers\Auth\Ldap\LdapParams; +use SP\Providers\Auth\Ldap\LdapTypeInterface; + +/** + * Class LdapConnectionTest + * + * @package SP\Tests\Providers\Auth\Ldap + */ +class LdapConnectionTest extends TestCase +{ + /** + * @throws LdapException + */ + public function testCheckParams() + { + $ldapConnection = $this->getLdapConnection(); + + $ldapConnection->checkParams(); + + $this->assertTrue(true); + } + + /** + * @param LdapParams|null $params + * + * @return LdapConnection + */ + public function getLdapConnection(LdapParams $params = null) + { + $ev = new EventDispatcher(); + + if ($params === null) { + $params = new LdapParams(); + $params->setServer('test.example.com'); + $params->setPort(10389); + $params->setBindDn('cn=test,dc=example,dc=com'); + $params->setBindPass('testpass'); + $params->setGroup('cn=Test Group,ou=Groups,dc=example,dc=con'); + $params->setSearchBase('dc=example,dc=com'); + $params->setTlsEnabled(true); + $params->setType(LdapTypeInterface::LDAP_STD); + } + + return new LdapConnection($params, $ev); + } + + /** + * @throws LdapException + */ + public function testCheckParamsNoSearchBase() + { + $ldapConnection = $this->getLdapConnection(); + + $params = $ldapConnection->getLdapParams(); + $params->setSearchBase(''); + + $this->expectException(LdapException::class); + $ldapConnection->checkParams(); + } + + /** + * @throws LdapException + */ + public function testCheckParamsNoServer() + { + $ldapConnection = $this->getLdapConnection(); + + $params = $ldapConnection->getLdapParams(); + $params->setServer(''); + + $this->expectException(LdapException::class); + $ldapConnection->checkParams(); + } + + /** + * @throws LdapException + */ + public function testCheckParamsNoBindDn() + { + $ldapConnection = $this->getLdapConnection(); + + $params = $ldapConnection->getLdapParams(); + $params->setBindDn(''); + + $this->expectException(LdapException::class); + $ldapConnection->checkParams(); + } + + public function testGetServerUri() + { + $ldapConnection = $this->getLdapConnection(); + + $this->assertEquals('ldap://test.example.com:10389', $ldapConnection->getServerUri()); + } + + public function testGetServerUriNoSchema() + { + $ldapConnection = $this->getLdapConnection(); + + $params = $ldapConnection->getLdapParams(); + $params->setServer('test.example.com'); + $params->setPort(389); + + $this->assertEquals('ldap://test.example.com', $ldapConnection->getServerUri()); + + $params->setPort(10389); + $this->assertEquals('ldap://test.example.com:10389', $ldapConnection->getServerUri()); + } + + public function testGetServerUriLdaps() + { + $ldapConnection = $this->getLdapConnection(); + + $params = $ldapConnection->getLdapParams(); + $params->setServer('ldaps://test.example.com'); + $params->setPort(10636); + + $this->assertEquals('ldaps://test.example.com:10636', $ldapConnection->getServerUri()); + } +} From c03d779894a5a6f9b2b6924a07252b5d6fc1010b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 7 Mar 2020 17:52:39 +0100 Subject: [PATCH 03/36] * [MOD] Bump version patch and build number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- lib/SP/Services/Install/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/SP/Services/Install/Installer.php b/lib/SP/Services/Install/Installer.php index 7da4009e..65f0fe7b 100644 --- a/lib/SP/Services/Install/Installer.php +++ b/lib/SP/Services/Install/Installer.php @@ -60,9 +60,9 @@ final class Installer extends Service /** * sysPass' version and build number */ - const VERSION = [3, 1, 1]; + const VERSION = [3, 1, 2]; const VERSION_TEXT = '3.1'; - const BUILD = 19121601; + const BUILD = 20030701; /** * @var DatabaseSetupInterface From 97417de1fbb849880c0503c06ea2b5efe376a920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 7 Mar 2020 18:15:08 +0100 Subject: [PATCH 04/36] * [FIX] Wrong version constraint for doctrine packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- composer.json | 24 ++--- composer.lock | 289 ++++---------------------------------------------- 2 files changed, 33 insertions(+), 280 deletions(-) diff --git a/composer.json b/composer.json index accd64f0..77891e9b 100644 --- a/composer.json +++ b/composer.json @@ -20,16 +20,16 @@ "require": { "roave/security-advisories": "dev-master", "php": "~7.0 || ~7.1 || ~7.2 || ~7.3", - "defuse/php-encryption": "^2.1", - "phpmailer/phpmailer": "^6.0", + "defuse/php-encryption": "~2.1", + "phpmailer/phpmailer": "~6.0", "ademarre/binary-to-text-php": "dev-master", - "phpseclib/phpseclib": "^2.0", - "klein/klein": "~2.1", - "php-di/php-di": "^6.0", - "doctrine/common": "~v2.7", - "guzzlehttp/guzzle": "~6.3", + "phpseclib/phpseclib": "~2.0.25", + "klein/klein": "~2.1.2", + "php-di/php-di": "~6.0.11", + "doctrine/common": "~v2.7.3", + "guzzlehttp/guzzle": "^6.3", "monolog/monolog": "^1.23", - "symfony/debug" : "~v3.4", + "symfony/debug" : "^v3.4", "ext-pdo": "*", "ext-dom": "*", "ext-gd": "*", @@ -43,12 +43,12 @@ "require-dev": { "phpunit/phpunit": "^6", "phpunit/dbunit": "^3", - "fzaninotto/faker": "~v1.8", - "fabpot/goutte": "~v3.2", + "fzaninotto/faker": "^v1.8", + "fabpot/goutte": "^v3.2.3", "syspass/extension-installer-plugin": "dev-master", "syspass/plugin-authenticator": "^2.1-dev", - "nikic/php-parser": "~v4.1", - "php-mock/php-mock-phpunit": "~2.6" + "nikic/php-parser": "^v4.1", + "php-mock/php-mock-phpunit": "^2.6" }, "suggest": { "syspass/plugin-authenticator": "^2.1", diff --git a/composer.lock b/composer.lock index e35c5664..570f02df 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "e8a01f253d74b3fa7f840a2a995c3b95", + "content-hash": "bed785c07fc2768f6e410cd762b7e4ff", "packages": [ { "name": "ademarre/binary-to-text-php", @@ -336,41 +336,33 @@ }, { "name": "doctrine/common", - "version": "2.12.0", + "version": "v2.7.3", "source": { "type": "git", "url": "https://github.com/doctrine/common.git", - "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6" + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/common/zipball/2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", - "reference": "2053eafdf60c2172ee1373d1b9289ba1db7f1fc6", + "url": "https://api.github.com/repos/doctrine/common/zipball/4acb8f89626baafede6ee5475bc5844096eba8a9", + "reference": "4acb8f89626baafede6ee5475bc5844096eba8a9", "shasum": "" }, "require": { - "doctrine/annotations": "^1.0", - "doctrine/cache": "^1.0", - "doctrine/collections": "^1.0", - "doctrine/event-manager": "^1.0", - "doctrine/inflector": "^1.0", - "doctrine/lexer": "^1.0", - "doctrine/persistence": "^1.1", - "doctrine/reflection": "^1.0", - "php": "^7.1" + "doctrine/annotations": "1.*", + "doctrine/cache": "1.*", + "doctrine/collections": "1.*", + "doctrine/inflector": "1.*", + "doctrine/lexer": "1.*", + "php": "~5.6|~7.0" }, "require-dev": { - "doctrine/coding-standard": "^1.0", - "phpstan/phpstan": "^0.11", - "phpstan/phpstan-phpunit": "^0.11", - "phpunit/phpunit": "^7.0", - "squizlabs/php_codesniffer": "^3.0", - "symfony/phpunit-bridge": "^4.0.5" + "phpunit/phpunit": "^5.4.6" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.11.x-dev" + "dev-master": "2.7.x-dev" } }, "autoload": { @@ -383,10 +375,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -395,80 +383,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, persistence interfaces, proxies, event system and much more.", - "homepage": "https://www.doctrine-project.org/projects/common.html", - "keywords": [ - "common", - "doctrine", - "php" - ], - "time": "2020-01-10T15:49:25+00:00" - }, - { - "name": "doctrine/event-manager", - "version": "1.1.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/event-manager.git", - "reference": "629572819973f13486371cb611386eb17851e85c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/event-manager/zipball/629572819973f13486371cb611386eb17851e85c", - "reference": "629572819973f13486371cb611386eb17851e85c", - "shasum": "" - }, - "require": { - "php": "^7.1" - }, - "conflict": { - "doctrine/common": "<2.9@dev" - }, - "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -476,22 +394,18 @@ { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" } ], - "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.", - "homepage": "https://www.doctrine-project.org/projects/event-manager.html", + "description": "Common Library for Doctrine projects", + "homepage": "http://www.doctrine-project.org", "keywords": [ - "event", - "event dispatcher", - "event manager", - "event system", - "events" + "annotations", + "collections", + "eventmanager", + "persistence", + "spl" ], - "time": "2019-11-10T09:48:07+00:00" + "time": "2017-07-22T08:35:12+00:00" }, { "name": "doctrine/inflector", @@ -622,167 +536,6 @@ ], "time": "2019-10-30T14:39:59+00:00" }, - { - "name": "doctrine/persistence", - "version": "1.3.6", - "source": { - "type": "git", - "url": "https://github.com/doctrine/persistence.git", - "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/persistence/zipball/5dd3ac5eebef2d0b074daa4440bb18f93132dee4", - "reference": "5dd3ac5eebef2d0b074daa4440bb18f93132dee4", - "shasum": "" - }, - "require": { - "doctrine/annotations": "^1.0", - "doctrine/cache": "^1.0", - "doctrine/collections": "^1.0", - "doctrine/event-manager": "^1.0", - "doctrine/reflection": "^1.1", - "php": "^7.1" - }, - "conflict": { - "doctrine/common": "<2.10@dev" - }, - "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11", - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common", - "Doctrine\\Persistence\\": "lib/Doctrine/Persistence" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.", - "homepage": "https://doctrine-project.org/projects/persistence.html", - "keywords": [ - "mapper", - "object", - "odm", - "orm", - "persistence" - ], - "time": "2020-01-16T22:06:23+00:00" - }, - { - "name": "doctrine/reflection", - "version": "v1.1.0", - "source": { - "type": "git", - "url": "https://github.com/doctrine/reflection.git", - "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/doctrine/reflection/zipball/bc420ead87fdfe08c03ecc3549db603a45b06d4c", - "reference": "bc420ead87fdfe08c03ecc3549db603a45b06d4c", - "shasum": "" - }, - "require": { - "doctrine/annotations": "^1.0", - "ext-tokenizer": "*", - "php": "^7.1" - }, - "conflict": { - "doctrine/common": "<2.9" - }, - "require-dev": { - "doctrine/coding-standard": "^5.0", - "doctrine/common": "^2.10", - "phpstan/phpstan": "^0.11.0", - "phpstan/phpstan-phpunit": "^0.11.0", - "phpunit/phpunit": "^7.0" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "Doctrine\\Common\\": "lib/Doctrine/Common" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, - { - "name": "Benjamin Eberlei", - "email": "kontakt@beberlei.de" - }, - { - "name": "Jonathan Wage", - "email": "jonwage@gmail.com" - }, - { - "name": "Johannes Schmitt", - "email": "schmittjoh@gmail.com" - }, - { - "name": "Marco Pivetta", - "email": "ocramius@gmail.com" - } - ], - "description": "The Doctrine Reflection project is a simple library used by the various Doctrine projects which adds some additional functionality on top of the reflection functionality that comes with PHP. It allows you to get the reflection information about classes, methods and properties statically.", - "homepage": "https://www.doctrine-project.org/projects/reflection.html", - "keywords": [ - "reflection", - "static" - ], - "time": "2020-01-08T19:53:19+00:00" - }, { "name": "guzzlehttp/guzzle", "version": "6.5.2", From 8f78ad5b3541947b07bf0bddaecd01ec7de73837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 7 Mar 2020 19:02:13 +0100 Subject: [PATCH 05/36] * [FIX] Wrong version constraint for doctrine packages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- composer.lock | 923 +++++++++++++++++++------------------------------- 1 file changed, 342 insertions(+), 581 deletions(-) diff --git a/composer.lock b/composer.lock index 570f02df..a64a7de0 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bed785c07fc2768f6e410cd762b7e4ff", + "content-hash": "91dab3bfbcce096704aa0735ad728ad5", "packages": [ { "name": "ademarre/binary-to-text-php", @@ -116,30 +116,30 @@ }, { "name": "doctrine/annotations", - "version": "v1.8.0", + "version": "v1.4.0", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc" + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/904dca4eb10715b92569fbcd79e201d5c349b6bc", - "reference": "904dca4eb10715b92569fbcd79e201d5c349b6bc", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", + "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", "shasum": "" }, "require": { "doctrine/lexer": "1.*", - "php": "^7.1" + "php": "^5.6 || ^7.0" }, "require-dev": { "doctrine/cache": "1.*", - "phpunit/phpunit": "^7.5" + "phpunit/phpunit": "^5.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7.x-dev" + "dev-master": "1.4.x-dev" } }, "autoload": { @@ -152,10 +152,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -164,6 +160,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -180,42 +180,37 @@ "docblock", "parser" ], - "time": "2019-10-01T18:55:10+00:00" + "time": "2017-02-24T16:22:25+00:00" }, { "name": "doctrine/cache", - "version": "1.10.0", + "version": "v1.6.2", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62" + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/382e7f4db9a12dc6c19431743a2b096041bcdd62", - "reference": "382e7f4db9a12dc6c19431743a2b096041bcdd62", + "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", + "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", "shasum": "" }, "require": { - "php": "~7.1" + "php": "~5.5|~7.0" }, "conflict": { "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "alcaeus/mongo-php-adapter": "^1.1", - "doctrine/coding-standard": "^6.0", - "mongodb/mongodb": "^1.1", - "phpunit/phpunit": "^7.0", - "predis/predis": "~1.0" - }, - "suggest": { - "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" + "phpunit/phpunit": "~4.8|~5.0", + "predis/predis": "~1.0", + "satooshi/php-coveralls": "~0.6" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9.x-dev" + "dev-master": "1.6.x-dev" } }, "autoload": { @@ -228,10 +223,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -240,6 +231,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -249,53 +244,44 @@ "email": "schmittjoh@gmail.com" } ], - "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", - "homepage": "https://www.doctrine-project.org/projects/cache.html", + "description": "Caching library offering an object-oriented API for many cache backends", + "homepage": "http://www.doctrine-project.org", "keywords": [ - "abstraction", - "apcu", "cache", - "caching", - "couchdb", - "memcached", - "php", - "redis", - "xcache" + "caching" ], - "time": "2019-11-29T15:36:20+00:00" + "time": "2017-07-22T12:49:21+00:00" }, { "name": "doctrine/collections", - "version": "1.6.4", + "version": "v1.4.0", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7" + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", - "reference": "6b1e4b2b66f6d6e49983cebfe23a21b7ccc5b0d7", + "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", + "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", "shasum": "" }, "require": { - "php": "^7.1.3" + "php": "^5.6 || ^7.0" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan-shim": "^0.9.2", - "phpunit/phpunit": "^7.0", - "vimeo/psalm": "^3.2.2" + "doctrine/coding-standard": "~0.1@dev", + "phpunit/phpunit": "^5.7" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.3.x-dev" } }, "autoload": { - "psr-4": { - "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" + "psr-0": { + "Doctrine\\Common\\Collections\\": "lib/" } }, "notification-url": "https://packagist.org/downloads/", @@ -303,10 +289,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -315,6 +297,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -324,15 +310,14 @@ "email": "schmittjoh@gmail.com" } ], - "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", - "homepage": "https://www.doctrine-project.org/projects/collections.html", + "description": "Collections Abstraction library", + "homepage": "http://www.doctrine-project.org", "keywords": [ "array", "collections", - "iterators", - "php" + "iterator" ], - "time": "2019-11-13T13:07:11+00:00" + "time": "2017-01-03T10:49:41+00:00" }, { "name": "doctrine/common", @@ -409,20 +394,20 @@ }, { "name": "doctrine/inflector", - "version": "1.3.1", + "version": "v1.2.0", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1" + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/ec3a55242203ffa6a4b27c58176da97ff0a7aec1", - "reference": "ec3a55242203ffa6a4b27c58176da97ff0a7aec1", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", + "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", "shasum": "" }, "require": { - "php": "^7.1" + "php": "^7.0" }, "require-dev": { "phpunit/phpunit": "^6.2" @@ -430,7 +415,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.3.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -443,10 +428,6 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -455,6 +436,10 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -472,34 +457,32 @@ "singularize", "string" ], - "time": "2019-10-30T19:59:35+00:00" + "time": "2017-07-22T12:18:28+00:00" }, { "name": "doctrine/lexer", - "version": "1.2.0", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6" + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", - "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", "shasum": "" }, "require": { - "php": "^7.2" + "php": ">=5.3.2" }, "require-dev": { - "doctrine/coding-standard": "^6.0", - "phpstan/phpstan": "^0.11.8", - "phpunit/phpunit": "^8.2" + "phpunit/phpunit": "^4.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { @@ -512,14 +495,14 @@ "MIT" ], "authors": [ - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Roman Borschel", "email": "roman@code-factory.org" }, + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -534,50 +517,48 @@ "parser", "php" ], - "time": "2019-10-30T14:39:59+00:00" + "time": "2019-06-08T11:03:04+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "6.5.2", + "version": "6.3.3", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82" + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/43ece0e75098b7ecd8d13918293029e555a50f82", - "reference": "43ece0e75098b7ecd8d13918293029e555a50f82", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", "shasum": "" }, "require": { - "ext-json": "*", "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.6.1", + "guzzlehttp/psr7": "^1.4", "php": ">=5.5" }, "require-dev": { "ext-curl": "*", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.1" + "psr/log": "^1.0" }, "suggest": { - "ext-intl": "Required for Internationalized Domain Name (IDN) support", "psr/log": "Required for using the Log middleware" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.5-dev" + "dev-master": "6.3-dev" } }, "autoload": { - "psr-4": { - "GuzzleHttp\\": "src/" - }, "files": [ "src/functions_include.php" - ] + ], + "psr-4": { + "GuzzleHttp\\": "src/" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -601,7 +582,7 @@ "rest", "web service" ], - "time": "2019-12-23T11:57:10+00:00" + "time": "2018-04-22T15:46:56+00:00" }, { "name": "guzzlehttp/promises", @@ -841,16 +822,16 @@ }, { "name": "monolog/monolog", - "version": "1.25.3", + "version": "1.24.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1" + "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fa82921994db851a8becaf3787a9e73c5976b6f1", - "reference": "fa82921994db851a8becaf3787a9e73c5976b6f1", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", + "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", "shasum": "" }, "require": { @@ -915,20 +896,20 @@ "logging", "psr-3" ], - "time": "2019-12-20T14:15:16+00:00" + "time": "2018-11-05T09:00:11+00:00" }, { "name": "nikic/php-parser", - "version": "v4.3.0", + "version": "v4.2.3", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc" + "reference": "e612609022e935f3d0337c1295176505b41188c8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/9a9981c347c5c49d6dfe5cf826bb882b824080dc", - "reference": "9a9981c347c5c49d6dfe5cf826bb882b824080dc", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e612609022e935f3d0337c1295176505b41188c8", + "reference": "e612609022e935f3d0337c1295176505b41188c8", "shasum": "" }, "require": { @@ -936,7 +917,6 @@ "php": ">=7.0" }, "require-dev": { - "ircmaxell/php-yacc": "0.0.5", "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" }, "bin": [ @@ -945,7 +925,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.3-dev" + "dev-master": "4.2-dev" } }, "autoload": { @@ -967,7 +947,7 @@ "parser", "php" ], - "time": "2019-11-08T13:50:10+00:00" + "time": "2019-08-12T20:17:41+00:00" }, { "name": "paragonie/random_compat", @@ -1059,16 +1039,16 @@ }, { "name": "php-di/php-di", - "version": "6.0.11", + "version": "6.0.9", "source": { "type": "git", "url": "https://github.com/PHP-DI/PHP-DI.git", - "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620" + "reference": "00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", - "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", + "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1", + "reference": "00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1", "shasum": "" }, "require": { @@ -1118,20 +1098,20 @@ "ioc", "psr11" ], - "time": "2019-12-12T07:58:02+00:00" + "time": "2019-07-08T07:24:22+00:00" }, { "name": "php-di/phpdoc-reader", - "version": "2.1.1", + "version": "2.1.0", "source": { "type": "git", "url": "https://github.com/PHP-DI/PhpDocReader.git", - "reference": "15678f7451c020226807f520efb867ad26fbbfcf" + "reference": "7d0de60b9341933c8afd172a6255cd7557601e0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/15678f7451c020226807f520efb867ad26fbbfcf", - "reference": "15678f7451c020226807f520efb867ad26fbbfcf", + "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/7d0de60b9341933c8afd172a6255cd7557601e0e", + "reference": "7d0de60b9341933c8afd172a6255cd7557601e0e", "shasum": "" }, "require": { @@ -1155,20 +1135,20 @@ "phpdoc", "reflection" ], - "time": "2019-09-26T11:24:58+00:00" + "time": "2018-02-18T17:39:01+00:00" }, { "name": "phpmailer/phpmailer", - "version": "v6.1.4", + "version": "v6.0.7", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "c5e61d0729507049cec9673aa1a679f9adefd683" + "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/c5e61d0729507049cec9673aa1a679f9adefd683", - "reference": "c5e61d0729507049cec9673aa1a679f9adefd683", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/0c41a36d4508d470e376498c1c0c527aa36a2d59", + "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59", "shasum": "" }, "require": { @@ -1177,9 +1157,13 @@ "php": ">=5.5.0" }, "require-dev": { - "doctrine/annotations": "^1.2", + "doctrine/annotations": "1.2.*", "friendsofphp/php-cs-fixer": "^2.2", - "phpunit/phpunit": "^4.8 || ^5.7" + "phpdocumentor/phpdocumentor": "2.*", + "phpunit/phpunit": "^4.8 || ^5.7", + "zendframework/zend-eventmanager": "3.0.*", + "zendframework/zend-i18n": "2.7.3", + "zendframework/zend-serializer": "2.7.*" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset", @@ -1197,17 +1181,17 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1-only" + "LGPL-2.1" ], "authors": [ - { - "name": "Marcus Bointon", - "email": "phpmailer@synchromedia.co.uk" - }, { "name": "Jim Jagielski", "email": "jimjag@gmail.com" }, + { + "name": "Marcus Bointon", + "email": "phpmailer@synchromedia.co.uk" + }, { "name": "Andy Prevost", "email": "codeworxtech@users.sourceforge.net" @@ -1217,20 +1201,20 @@ } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", - "time": "2019-12-10T11:17:38+00:00" + "time": "2019-02-01T15:04:28+00:00" }, { "name": "phpseclib/phpseclib", - "version": "2.0.25", + "version": "2.0.21", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "c18159618ed7cd7ff721ac1a8fec7860a475d2f0" + "reference": "9f1287e68b3f283339a9f98f67515dd619e5bf9d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/c18159618ed7cd7ff721ac1a8fec7860a475d2f0", - "reference": "c18159618ed7cd7ff721ac1a8fec7860a475d2f0", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/9f1287e68b3f283339a9f98f67515dd619e5bf9d", + "reference": "9f1287e68b3f283339a9f98f67515dd619e5bf9d", "shasum": "" }, "require": { @@ -1264,28 +1248,28 @@ "authors": [ { "name": "Jim Wigginton", - "email": "terrafrost@php.net", - "role": "Lead Developer" + "role": "Lead Developer", + "email": "terrafrost@php.net" }, { "name": "Patrick Monnerat", - "email": "pm@datasphere.ch", - "role": "Developer" + "role": "Developer", + "email": "pm@datasphere.ch" }, { "name": "Andreas Fischer", - "email": "bantu@phpbb.com", - "role": "Developer" + "role": "Developer", + "email": "bantu@phpbb.com" }, { "name": "Hans-Jürgen Petrich", - "email": "petrich@tronic-media.com", - "role": "Developer" + "role": "Developer", + "email": "petrich@tronic-media.com" }, { "name": "Graham Campbell", - "email": "graham@alt-three.com", - "role": "Developer" + "role": "Developer", + "email": "graham@alt-three.com" } ], "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", @@ -1309,7 +1293,7 @@ "x.509", "x509" ], - "time": "2020-02-25T04:16:50+00:00" + "time": "2019-07-12T12:53:49+00:00" }, { "name": "psr/container", @@ -1412,16 +1396,16 @@ }, { "name": "psr/log", - "version": "1.1.2", + "version": "1.1.0", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801" + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/446d54b4cb6bf489fc9d75f55843658e6f25d801", - "reference": "446d54b4cb6bf489fc9d75f55843658e6f25d801", + "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", "shasum": "" }, "require": { @@ -1430,7 +1414,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.1.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { @@ -1455,7 +1439,7 @@ "psr", "psr-3" ], - "time": "2019-11-01T11:05:21+00:00" + "time": "2018-11-20T15:27:04+00:00" }, { "name": "ralouphie/getallheaders", @@ -1503,12 +1487,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "f0eca1ac3194cc94726f0bb366672f38629272b4" + "reference": "ea693fa060702164985511acc3ceb5389c9ac761" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/f0eca1ac3194cc94726f0bb366672f38629272b4", - "reference": "f0eca1ac3194cc94726f0bb366672f38629272b4", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/ea693fa060702164985511acc3ceb5389c9ac761", + "reference": "ea693fa060702164985511acc3ceb5389c9ac761", "shasum": "" }, "conflict": { @@ -1520,23 +1504,18 @@ "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6", "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99", "aws/aws-sdk-php": ">=3,<3.2.1", - "bagisto/bagisto": "<0.1.5", - "bolt/bolt": "<3.6.10", "brightlocal/phpwhois": "<=4.2.5", - "buddypress/buddypress": "<5.1.2", "bugsnag/bugsnag-laravel": ">=2,<2.0.2", "cakephp/cakephp": ">=1.3,<1.3.18|>=2,<2.4.99|>=2.5,<2.5.99|>=2.6,<2.6.12|>=2.7,<2.7.6|>=3,<3.5.18|>=3.6,<3.6.15|>=3.7,<3.7.7", "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4", "cartalyst/sentry": "<=2.1.6", - "centreon/centreon": "<18.10.8|>=19,<19.4.5", - "cesnet/simplesamlphp-module-proxystatistics": "<3.1", "codeigniter/framework": "<=3.0.6", "composer/composer": "<=1-alpha.11", "contao-components/mediaelement": ">=2.14.2,<2.21.1", "contao/core": ">=2,<3.5.39", - "contao/core-bundle": ">=4,<4.4.46|>=4.5,<4.8.6", + "contao/core-bundle": ">=4,<4.4.39|>=4.5,<4.7.5", "contao/listing-bundle": ">=4,<4.4.8", - "datadog/dd-trace": ">=0.30,<0.30.2", + "contao/newsletter-bundle": ">=4,<4.1", "david-garcia/phpwhois": "<=4.3.1", "doctrine/annotations": ">=1,<1.2.7", "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", @@ -1547,20 +1526,13 @@ "doctrine/mongodb-odm": ">=1,<1.0.2", "doctrine/mongodb-odm-bundle": ">=2,<3.0.1", "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1", - "dolibarr/dolibarr": "<=10.0.6", "dompdf/dompdf": ">=0.6,<0.6.2", - "drupal/core": ">=7,<7.69|>=8,<8.7.11|>=8.8,<8.8.1", - "drupal/drupal": ">=7,<7.69|>=8,<8.7.11|>=8.8,<8.8.1", - "endroid/qr-code-bundle": "<3.4.2", - "enshrined/svg-sanitize": "<0.13.1", + "drupal/core": ">=7,<7.67|>=8,<8.6.16|>=8.7,<8.7.1|>8.7.3,<8.7.5", + "drupal/drupal": ">=7,<7.67|>=8,<8.6.16|>=8.7,<8.7.1|>8.7.3,<8.7.5", "erusev/parsedown": "<1.7.2", - "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1", - "ezsystems/ezplatform": ">=1.7,<1.7.9.1|>=1.13,<1.13.5.1|>=2.5,<2.5.4", - "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6", - "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2", - "ezsystems/ezplatform-user": ">=1,<1.0.1", - "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.14.1|>=6,<6.7.9.1|>=6.8,<6.13.6.2|>=7,<7.2.4.1|>=7.3,<7.3.2.1|>=7.5,<7.5.6.2", - "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.14.1|>=2011,<2017.12.7.2|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3|>=2019.3,<2019.3.4.2", + "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.4", + "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.13.1|>=6,<6.7.9.1|>=6.8,<6.13.5.1|>=7,<7.2.4.1|>=7.3,<7.3.2.1", + "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.12.3|>=2011,<2017.12.4.3|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3", "ezsystems/repository-forms": ">=2.3,<2.3.2.1", "ezyang/htmlpurifier": "<4.1.1", "firebase/php-jwt": "<2", @@ -1569,7 +1541,6 @@ "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2", "friendsofsymfony/user-bundle": ">=1.2,<1.3.5", "fuel/core": "<1.8.1", - "getgrav/grav": "<1.7-beta.8", "gree/jose": "<=2.2", "gregwar/rst": "<1.0.3", "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1", @@ -1587,15 +1558,12 @@ "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.42|>=5.6,<5.6.30", "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10", "league/commonmark": "<0.18.3", - "librenms/librenms": "<1.53", - "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3", - "magento/magento1ce": "<1.9.4.3", - "magento/magento1ee": ">=1,<1.14.4.3", - "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2", + "magento/magento1ce": "<1.9.4.1", + "magento/magento1ee": ">=1.9,<1.14.4.1", + "magento/product-community-edition": ">=2,<2.2.8|>=2.3,<2.3.1", "monolog/monolog": ">=1.8,<1.12", "namshi/jose": "<2.2", "onelogin/php-saml": "<2.10.4", - "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5", "openid/php-openid": "<2.3", "oro/crm": ">=1.7,<1.7.4", "oro/platform": ">=1.7,<1.7.4", @@ -1604,68 +1572,49 @@ "paragonie/random_compat": "<2", "paypal/merchant-sdk-php": "<3.12", "pear/archive_tar": "<1.4.4", - "phpfastcache/phpfastcache": ">=5,<5.0.13", "phpmailer/phpmailer": ">=5,<5.2.27|>=6,<6.0.6", - "phpmyadmin/phpmyadmin": "<4.9.2", - "phpoffice/phpexcel": "<1.8.2", - "phpoffice/phpspreadsheet": "<1.8", + "phpoffice/phpexcel": "<=1.8.1", + "phpoffice/phpspreadsheet": "<=1.5", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", - "pimcore/pimcore": "<6.3", - "prestashop/autoupgrade": ">=4,<4.10.1", - "prestashop/gamification": "<2.3.2", - "prestashop/ps_facetedsearch": "<3.4.1", - "privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2", "propel/propel": ">=2-alpha.1,<=2-alpha.7", "propel/propel1": ">=1,<=1.7.1", "pusher/pusher-php-server": "<2.2.1", - "robrichards/xmlseclibs": "<3.0.4", + "robrichards/xmlseclibs": ">=1,<3.0.2", "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9", - "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11", "sensiolabs/connect": "<4.2.3", "serluck/phpwhois": "<=4.2.6", "shopware/shopware": "<5.3.7", - "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1", - "silverstripe/assets": ">=1,<1.3.5|>=1.4,<1.4.4", - "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4", - "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", + "silverstripe/cms": ">=3,<=3.0.11|>=3.1,<3.1.11", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", - "silverstripe/framework": "<4.4.5|>=4.5,<4.5.2", + "silverstripe/framework": ">=3,<3.6.7|>=3.7,<3.7.3|>=4,<4.4", "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4", - "silverstripe/subsites": ">=2,<2.1.1", - "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1", "silverstripe/userforms": "<3", "simple-updates/phpwhois": "<=1", "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4", - "simplesamlphp/simplesamlphp": "<1.18.4", + "simplesamlphp/simplesamlphp": "<1.17.3", "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", - "simplito/elliptic-php": "<1.0.6", "slim/slim": "<2.6", "smarty/smarty": "<3.1.33", "socalnick/scn-social-auth": "<1.15.2", "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", "stormpath/sdk": ">=0,<9.9.99", - "studio-42/elfinder": "<2.1.49", "swiftmailer/swiftmailer": ">=4,<5.4.5", "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", "sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", - "sylius/resource-bundle": "<1.3.13|>=1.4,<1.4.6|>=1.5,<1.5.1|>=1.6,<1.6.3", - "sylius/sylius": "<1.3.16|>=1.4,<1.4.12|>=1.5,<1.5.9|>=1.6,<1.6.5", - "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99", - "symbiote/silverstripe-versionedfiles": "<=2.0.3", - "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", + "sylius/sylius": ">=1,<1.1.18|>=1.2,<1.2.17|>=1.3,<1.3.12|>=1.4,<1.4.4", + "symfony/cache": ">=3.1,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1", "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", - "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", - "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", + "symfony/http-foundation": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/http-kernel": ">=2,<2.3.29|>=2.4,<2.5.12|>=2.6,<2.6.8", "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13", - "symfony/mime": ">=4.3,<4.3.8", "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/polyfill": ">=1,<1.10", "symfony/polyfill-php55": ">=1,<1.10", @@ -1676,12 +1625,11 @@ "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<2.8.37|>=3,<3.3.17|>=3.4,<3.4.7|>=4,<4.0.7", "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", "symfony/security-guard": ">=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", - "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8", + "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/serializer": ">=2,<2.0.11", - "symfony/symfony": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", + "symfony/symfony": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/translation": ">=2,<2.0.17", "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3", - "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8", "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7", "tecnickcom/tcpdf": "<6.2.22", @@ -1691,17 +1639,14 @@ "titon/framework": ">=0,<9.9.99", "truckersmp/phpwhois": "<=4.3.1", "twig/twig": "<1.38|>=2,<2.7", - "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.30|>=9,<9.5.12|>=10,<10.2.1", - "typo3/cms-core": ">=8,<8.7.30|>=9,<9.5.12|>=10,<10.2.1", + "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.27|>=9,<9.5.8", + "typo3/cms-core": ">=8,<8.7.27|>=9,<9.5.8", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.10|>=3.1,<3.1.7|>=3.2,<3.2.7|>=3.3,<3.3.5", "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4", "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1", "ua-parser/uap-php": "<3.8", - "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", - "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4", "wallabag/tcpdf": "<6.2.22", "willdurand/js-translation-bundle": "<2.1.1", - "yii2mod/yii2-cms": "<1.9.2", "yiisoft/yii": ">=1.1.14,<1.1.15", "yiisoft/yii2": "<2.0.15", "yiisoft/yii2-bootstrap": "<2.0.4", @@ -1710,7 +1655,6 @@ "yiisoft/yii2-gii": "<2.0.4", "yiisoft/yii2-jui": "<2.0.4", "yiisoft/yii2-redis": "<2.0.8", - "yourls/yourls": "<1.7.4", "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2", "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2", @@ -1745,30 +1689,25 @@ "authors": [ { "name": "Marco Pivetta", - "email": "ocramius@gmail.com", - "role": "maintainer" - }, - { - "name": "Ilya Tribusean", - "email": "slash3b@gmail.com", - "role": "maintainer" + "role": "maintainer", + "email": "ocramius@gmail.com" } ], "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", - "time": "2020-03-03T17:52:54+00:00" + "time": "2019-07-18T15:17:58+00:00" }, { "name": "symfony/debug", - "version": "v3.4.38", + "version": "v3.4.30", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "a99278d50af8a9164219da38d61fb161a7f6e0a6" + "reference": "bc977cb2681d75988ab2d53d14c4245c6c04f82f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/a99278d50af8a9164219da38d61fb161a7f6e0a6", - "reference": "a99278d50af8a9164219da38d61fb161a7f6e0a6", + "url": "https://api.github.com/repos/symfony/debug/zipball/bc977cb2681d75988ab2d53d14c4245c6c04f82f", + "reference": "bc977cb2681d75988ab2d53d14c4245c6c04f82f", "shasum": "" }, "require": { @@ -1811,20 +1750,20 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2020-02-03T15:10:40+00:00" + "time": "2019-07-23T08:39:19+00:00" }, { "name": "symfony/polyfill-php56", - "version": "v1.14.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3" + "reference": "0e3b212e96a51338639d8ce175c046d7729c3403" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/16ec91cb06998b609501b55b7177b7d7c02badb3", - "reference": "16ec91cb06998b609501b55b7177b7d7c02badb3", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403", + "reference": "0e3b212e96a51338639d8ce175c046d7729c3403", "shasum": "" }, "require": { @@ -1834,7 +1773,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -1867,20 +1806,20 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-util", - "version": "v1.14.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-util.git", - "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3" + "reference": "4317de1386717b4c22caed7725350a8887ab205c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/ba3cfcea6d0192cae46c62041f61cbb704b526d3", - "reference": "ba3cfcea6d0192cae46c62041f61cbb704b526d3", + "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c", + "reference": "4317de1386717b4c22caed7725350a8887ab205c", "shasum": "" }, "require": { @@ -1889,7 +1828,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -1919,7 +1858,7 @@ "polyfill", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2019-08-06T08:03:45+00:00" } ], "packages-dev": [ @@ -1971,34 +1910,32 @@ }, { "name": "doctrine/instantiator", - "version": "1.3.0", + "version": "1.0.5", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1" + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/ae466f726242e637cebdd526a7d991b9433bacf1", - "reference": "ae466f726242e637cebdd526a7d991b9433bacf1", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", + "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", "shasum": "" }, "require": { - "php": "^7.1" + "php": ">=5.3,<8.0-DEV" }, "require-dev": { - "doctrine/coding-standard": "^6.0", + "athletic/athletic": "~0.1.8", "ext-pdo": "*", "ext-phar": "*", - "phpbench/phpbench": "^0.13", - "phpstan/phpstan-phpunit": "^0.11", - "phpstan/phpstan-shim": "^0.11", - "phpunit/phpunit": "^7.0" + "phpunit/phpunit": "~4.0", + "squizlabs/php_codesniffer": "~2.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { @@ -2018,41 +1955,41 @@ } ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://www.doctrine-project.org/projects/instantiator.html", + "homepage": "https://github.com/doctrine/instantiator", "keywords": [ "constructor", "instantiate" ], - "time": "2019-10-21T16:45:58+00:00" + "time": "2015-06-14T21:17:01+00:00" }, { "name": "fabpot/goutte", - "version": "v3.3.0", + "version": "v3.2.3", "source": { "type": "git", "url": "https://github.com/FriendsOfPHP/Goutte.git", - "reference": "4ab5199e3ec0ffde0ee0b5ecf568a4fb8398dbae" + "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/4ab5199e3ec0ffde0ee0b5ecf568a4fb8398dbae", - "reference": "4ab5199e3ec0ffde0ee0b5ecf568a4fb8398dbae", + "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^6.0", - "php": "^7.1.3", - "symfony/browser-kit": "^4.4|^5.0", - "symfony/css-selector": "^4.4|^5.0", - "symfony/dom-crawler": "^4.4|^5.0" + "php": ">=5.5.0", + "symfony/browser-kit": "~2.1|~3.0|~4.0", + "symfony/css-selector": "~2.1|~3.0|~4.0", + "symfony/dom-crawler": "~2.1|~3.0|~4.0" }, "require-dev": { - "symfony/phpunit-bridge": "^5.0" + "symfony/phpunit-bridge": "^3.3 || ^4" }, "type": "application", "extra": { "branch-alias": { - "dev-master": "3.3-dev" + "dev-master": "3.2-dev" } }, "autoload": { @@ -2078,20 +2015,20 @@ "keywords": [ "scraper" ], - "time": "2019-12-06T13:11:18+00:00" + "time": "2018-06-29T15:13:57+00:00" }, { "name": "fzaninotto/faker", - "version": "v1.9.1", + "version": "v1.8.0", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f" + "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/fc10d778e4b84d5bd315dad194661e091d307c6f", - "reference": "fc10d778e4b84d5bd315dad194661e091d307c6f", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de", + "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de", "shasum": "" }, "require": { @@ -2100,12 +2037,12 @@ "require-dev": { "ext-intl": "*", "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^2.9.2" + "squizlabs/php_codesniffer": "^1.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.9-dev" + "dev-master": "1.8-dev" } }, "autoload": { @@ -2128,32 +2065,29 @@ "faker", "fixtures" ], - "time": "2019-12-12T13:22:17+00:00" + "time": "2018-07-12T10:23:15+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.9.5", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef" + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/b2c28789e80a97badd14145fda39b545d83ca3ef", - "reference": "b2c28789e80a97badd14145fda39b545d83ca3ef", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", "shasum": "" }, "require": { - "php": "^7.1" - }, - "replace": { - "myclabs/deep-copy": "self.version" + "php": "^5.6 || ^7.0" }, "require-dev": { "doctrine/collections": "^1.0", "doctrine/common": "^2.6", - "phpunit/phpunit": "^7.1" + "phpunit/phpunit": "^4.1" }, "type": "library", "autoload": { @@ -2176,7 +2110,7 @@ "object", "object graph" ], - "time": "2020-01-17T21:11:47+00:00" + "time": "2017-10-19T19:58:43+00:00" }, { "name": "phar-io/manifest", @@ -2280,206 +2214,37 @@ "description": "Library for handling version information and constraints", "time": "2017-03-05T17:38:23+00:00" }, - { - "name": "php-mock/php-mock", - "version": "2.2.1", - "source": { - "type": "git", - "url": "https://github.com/php-mock/php-mock.git", - "reference": "8ca7205ad5e73fbbffa9bde9f6bc90daf5e49702" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-mock/php-mock/zipball/8ca7205ad5e73fbbffa9bde9f6bc90daf5e49702", - "reference": "8ca7205ad5e73fbbffa9bde9f6bc90daf5e49702", - "shasum": "" - }, - "require": { - "php": "^5.6 || ^7.0", - "phpunit/php-text-template": "^1 || ^2" - }, - "replace": { - "malkusch/php-mock": "*" - }, - "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0 || ^9.0" - }, - "suggest": { - "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock." - }, - "type": "library", - "autoload": { - "files": [ - "autoload.php" - ], - "psr-4": { - "phpmock\\": [ - "classes/", - "tests/" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "WTFPL" - ], - "authors": [ - { - "name": "Markus Malkusch", - "email": "markus@malkusch.de", - "homepage": "http://markus.malkusch.de", - "role": "Developer" - } - ], - "description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.", - "homepage": "https://github.com/php-mock/php-mock", - "keywords": [ - "BDD", - "TDD", - "function", - "mock", - "stub", - "test", - "test double" - ], - "time": "2020-02-08T14:50:32+00:00" - }, - { - "name": "php-mock/php-mock-integration", - "version": "2.1.0", - "source": { - "type": "git", - "url": "https://github.com/php-mock/php-mock-integration.git", - "reference": "003d585841e435958a02e9b986953907b8b7609b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-mock/php-mock-integration/zipball/003d585841e435958a02e9b986953907b8b7609b", - "reference": "003d585841e435958a02e9b986953907b8b7609b", - "shasum": "" - }, - "require": { - "php": ">=5.6", - "php-mock/php-mock": "^2.2", - "phpunit/php-text-template": "^1 || ^2" - }, - "require-dev": { - "phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9" - }, - "type": "library", - "autoload": { - "psr-4": { - "phpmock\\integration\\": "classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "WTFPL" - ], - "authors": [ - { - "name": "Markus Malkusch", - "email": "markus@malkusch.de", - "homepage": "http://markus.malkusch.de", - "role": "Developer" - } - ], - "description": "Integration package for PHP-Mock", - "homepage": "https://github.com/php-mock/php-mock-integration", - "keywords": [ - "BDD", - "TDD", - "function", - "mock", - "stub", - "test", - "test double" - ], - "time": "2020-02-08T14:40:25+00:00" - }, - { - "name": "php-mock/php-mock-phpunit", - "version": "2.6.0", - "source": { - "type": "git", - "url": "https://github.com/php-mock/php-mock-phpunit.git", - "reference": "2877a0e58f12e91b64bf36ccd080a209dcbf6c30" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/php-mock/php-mock-phpunit/zipball/2877a0e58f12e91b64bf36ccd080a209dcbf6c30", - "reference": "2877a0e58f12e91b64bf36ccd080a209dcbf6c30", - "shasum": "" - }, - "require": { - "php": ">=7", - "php-mock/php-mock-integration": "^2.1", - "phpunit/phpunit": "^6 || ^7 || ^8 || ^9" - }, - "type": "library", - "autoload": { - "files": [ - "autoload.php" - ], - "psr-4": { - "phpmock\\phpunit\\": "classes/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "WTFPL" - ], - "authors": [ - { - "name": "Markus Malkusch", - "email": "markus@malkusch.de", - "homepage": "http://markus.malkusch.de", - "role": "Developer" - } - ], - "description": "Mock built-in PHP functions (e.g. time()) with PHPUnit. This package relies on PHP's namespace fallback policy. No further extension is needed.", - "homepage": "https://github.com/php-mock/php-mock-phpunit", - "keywords": [ - "BDD", - "TDD", - "function", - "mock", - "phpunit", - "stub", - "test", - "test double" - ], - "time": "2020-02-08T15:44:47+00:00" - }, { "name": "phpdocumentor/reflection-common", - "version": "2.0.0", + "version": "1.0.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a" + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/63a995caa1ca9e5590304cd845c15ad6d482a62a", - "reference": "63a995caa1ca9e5590304cd845c15ad6d482a62a", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", "shasum": "" }, "require": { - "php": ">=7.1" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "~6" + "phpunit/phpunit": "^4.6" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": "src/" + "phpDocumentor\\Reflection\\": [ + "src" + ] } }, "notification-url": "https://packagist.org/downloads/", @@ -2501,42 +2266,44 @@ "reflection", "static analysis" ], - "time": "2018-08-07T13:53:10+00:00" + "time": "2017-09-11T18:02:19+00:00" }, { "name": "phpdocumentor/reflection-docblock", - "version": "5.1.0", + "version": "4.3.1", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e" + "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", - "reference": "cd72d394ca794d3466a3b2fc09d5a6c1dc86b47e", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c", + "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c", "shasum": "" }, "require": { - "ext-filter": "^7.1", - "php": "^7.2", - "phpdocumentor/reflection-common": "^2.0", - "phpdocumentor/type-resolver": "^1.0", - "webmozart/assert": "^1" + "php": "^7.0", + "phpdocumentor/reflection-common": "^1.0.0", + "phpdocumentor/type-resolver": "^0.4.0", + "webmozart/assert": "^1.0" }, "require-dev": { - "doctrine/instantiator": "^1", - "mockery/mockery": "^1" + "doctrine/instantiator": "~1.0.5", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.4" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.x-dev" + "dev-master": "4.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": "src" + "phpDocumentor\\Reflection\\": [ + "src/" + ] } }, "notification-url": "https://packagist.org/downloads/", @@ -2547,46 +2314,44 @@ { "name": "Mike van Riel", "email": "me@mikevanriel.com" - }, - { - "name": "Jaap van Otterdijk", - "email": "account@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2020-02-22T12:28:44+00:00" + "time": "2019-04-30T17:48:53+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "1.1.0", + "version": "0.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "7462d5f123dfc080dfdf26897032a6513644fc95" + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/7462d5f123dfc080dfdf26897032a6513644fc95", - "reference": "7462d5f123dfc080dfdf26897032a6513644fc95", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", + "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", "shasum": "" }, "require": { - "php": "^7.2", - "phpdocumentor/reflection-common": "^2.0" + "php": "^5.5 || ^7.0", + "phpdocumentor/reflection-common": "^1.0" }, "require-dev": { - "ext-tokenizer": "^7.2", - "mockery/mockery": "~1" + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^5.2||^4.8.24" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.x-dev" + "dev-master": "1.0.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": "src" + "phpDocumentor\\Reflection\\": [ + "src/" + ] } }, "notification-url": "https://packagist.org/downloads/", @@ -2599,38 +2364,37 @@ "email": "me@mikevanriel.com" } ], - "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", - "time": "2020-02-18T18:59:58+00:00" + "time": "2017-07-14T14:27:02+00:00" }, { "name": "phpspec/prophecy", - "version": "v1.10.3", + "version": "1.8.1", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "451c3cd1418cf640de218914901e51b064abb093" + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093", - "reference": "451c3cd1418cf640de218914901e51b064abb093", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76", + "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76", "shasum": "" }, "require": { "doctrine/instantiator": "^1.0.2", "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", - "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0" + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", + "sebastian/comparator": "^1.1|^2.0|^3.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0" }, "require-dev": { - "phpspec/phpspec": "^2.5 || ^3.2", + "phpspec/phpspec": "^2.5|^3.2", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.10.x-dev" + "dev-master": "1.8.x-dev" } }, "autoload": { @@ -2663,7 +2427,7 @@ "spy", "stub" ], - "time": "2020-03-05T15:02:03+00:00" + "time": "2019-06-13T12:50:23+00:00" }, { "name": "phpunit/dbunit", @@ -3324,16 +3088,16 @@ }, { "name": "sebastian/exporter", - "version": "3.1.2", + "version": "3.1.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e" + "reference": "06a9a5947f47b3029d76118eb5c22802e5869687" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/68609e1261d215ea5b21b7987539cbfbe156ec3e", - "reference": "68609e1261d215ea5b21b7987539cbfbe156ec3e", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/06a9a5947f47b3029d76118eb5c22802e5869687", + "reference": "06a9a5947f47b3029d76118eb5c22802e5869687", "shasum": "" }, "require": { @@ -3387,7 +3151,7 @@ "export", "exporter" ], - "time": "2019-09-14T09:02:43+00:00" + "time": "2019-08-11T12:43:14+00:00" }, { "name": "sebastian/global-state", @@ -3672,27 +3436,25 @@ }, { "name": "symfony/browser-kit", - "version": "v5.0.5", + "version": "v3.4.30", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "6b2a9590a5868f0ce5cbf7af6abe563d1a3930a3" + "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/6b2a9590a5868f0ce5cbf7af6abe563d1a3930a3", - "reference": "6b2a9590a5868f0ce5cbf7af6abe563d1a3930a3", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/53266c9a1536e2dc673eb1efb6a6142ef84c6282", + "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282", "shasum": "" }, "require": { - "php": "^7.2.5", - "symfony/dom-crawler": "^4.4|^5.0" + "php": "^5.5.9|>=7.0.8", + "symfony/dom-crawler": "~2.8|~3.0|~4.0" }, "require-dev": { - "symfony/css-selector": "^4.4|^5.0", - "symfony/http-client": "^4.4|^5.0", - "symfony/mime": "^4.4|^5.0", - "symfony/process": "^4.4|^5.0" + "symfony/css-selector": "~2.8|~3.0|~4.0", + "symfony/process": "~2.8|~3.0|~4.0" }, "suggest": { "symfony/process": "" @@ -3700,7 +3462,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "3.4-dev" } }, "autoload": { @@ -3727,29 +3489,29 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2020-02-24T15:05:31+00:00" + "time": "2019-06-09T14:27:26+00:00" }, { "name": "symfony/css-selector", - "version": "v5.0.5", + "version": "v3.4.30", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44" + "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/a0b51ba9938ccc206d9284de7eb527c2d4550b44", - "reference": "a0b51ba9938ccc206d9284de7eb527c2d4550b44", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", + "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", "shasum": "" }, "require": { - "php": "^7.2.5" + "php": "^5.5.9|>=7.0.8" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "3.4-dev" } }, "autoload": { @@ -3780,33 +3542,29 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2020-02-04T09:41:09+00:00" + "time": "2019-01-16T09:39:14+00:00" }, { "name": "symfony/dom-crawler", - "version": "v5.0.5", + "version": "v3.4.30", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "4368bdd61b83af365b8f23e9616d2a2ed52cbe7c" + "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4368bdd61b83af365b8f23e9616d2a2ed52cbe7c", - "reference": "4368bdd61b83af365b8f23e9616d2a2ed52cbe7c", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/adb96e63af6fb0cc721cc69861001d60d0133d0c", + "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c", "shasum": "" }, "require": { - "php": "^7.2.5", + "php": "^5.5.9|>=7.0.8", "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0" }, - "conflict": { - "masterminds/html5": "<2.6" - }, "require-dev": { - "masterminds/html5": "^2.6", - "symfony/css-selector": "^4.4|^5.0" + "symfony/css-selector": "~2.8|~3.0|~4.0" }, "suggest": { "symfony/css-selector": "" @@ -3814,7 +3572,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "3.4-dev" } }, "autoload": { @@ -3841,20 +3599,20 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2020-02-29T10:07:09+00:00" + "time": "2019-05-30T15:47:52+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.14.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38" + "reference": "550ebaac289296ce228a706d0867afc34687e3f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", - "reference": "fbdeaec0df06cf3d51c93de80c7eb76e271f5a38", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", + "reference": "550ebaac289296ce228a706d0867afc34687e3f4", "shasum": "" }, "require": { @@ -3866,7 +3624,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -3899,20 +3657,20 @@ "polyfill", "portable" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.14.0", + "version": "v1.12.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2" + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/34094cfa9abe1f0f14f48f490772db7a775559f2", - "reference": "34094cfa9abe1f0f14f48f490772db7a775559f2", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", "shasum": "" }, "require": { @@ -3924,7 +3682,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.14-dev" + "dev-master": "1.12-dev" } }, "autoload": { @@ -3958,31 +3716,31 @@ "portable", "shim" ], - "time": "2020-01-13T11:15:53+00:00" + "time": "2019-08-06T08:03:45+00:00" }, { "name": "symfony/yaml", - "version": "v4.4.5", + "version": "v3.4.30", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "94d005c176db2080e98825d98e01e8b311a97a88" + "reference": "051d045c684148060ebfc9affb7e3f5e0899d40b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/94d005c176db2080e98825d98e01e8b311a97a88", - "reference": "94d005c176db2080e98825d98e01e8b311a97a88", + "url": "https://api.github.com/repos/symfony/yaml/zipball/051d045c684148060ebfc9affb7e3f5e0899d40b", + "reference": "051d045c684148060ebfc9affb7e3f5e0899d40b", "shasum": "" }, "require": { - "php": "^7.1.3", + "php": "^5.5.9|>=7.0.8", "symfony/polyfill-ctype": "~1.8" }, "conflict": { "symfony/console": "<3.4" }, "require-dev": { - "symfony/console": "^3.4|^4.0|^5.0" + "symfony/console": "~3.4|~4.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" @@ -3990,7 +3748,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.4-dev" + "dev-master": "3.4-dev" } }, "autoload": { @@ -4017,7 +3775,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2020-02-03T10:46:43+00:00" + "time": "2019-07-24T13:01:31+00:00" }, { "name": "syspass/extension-installer-plugin", @@ -4060,12 +3818,12 @@ "source": { "type": "git", "url": "https://github.com/sysPass/plugin-Authenticator.git", - "reference": "a9a5c264fce13960267f0d87518456b671530c8b" + "reference": "c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sysPass/plugin-Authenticator/zipball/a9a5c264fce13960267f0d87518456b671530c8b", - "reference": "a9a5c264fce13960267f0d87518456b671530c8b", + "url": "https://api.github.com/repos/sysPass/plugin-Authenticator/zipball/c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd", + "reference": "c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd", "shasum": "" }, "require": { @@ -4094,14 +3852,14 @@ "authors": [ { "name": "Rubén Domínguez", + "role": "Author/Developer", "email": "nuxsmin@syspass.org", - "homepage": "https://syspass.org/", - "role": "Author/Developer" + "homepage": "https://syspass.org/" } ], "description": "2FA authentication plugin for sysPass based on TOTP algorithm (RFC 6238)", "homepage": "https://syspass.org", - "time": "2019-12-21T11:52:31+00:00" + "time": "2019-04-27T00:48:18+00:00" }, { "name": "theseer/tokenizer", @@ -4145,29 +3903,32 @@ }, { "name": "webmozart/assert", - "version": "1.7.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "aed98a490f9a8f78468232db345ab9cf606cf598" + "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/aed98a490f9a8f78468232db345ab9cf606cf598", - "reference": "aed98a490f9a8f78468232db345ab9cf606cf598", + "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9", + "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9", "shasum": "" }, "require": { "php": "^5.3.3 || ^7.0", "symfony/polyfill-ctype": "^1.8" }, - "conflict": { - "vimeo/psalm": "<3.6.0" - }, "require-dev": { - "phpunit/phpunit": "^4.8.36 || ^7.5.13" + "phpunit/phpunit": "^4.6", + "sebastian/version": "^1.0.1" }, "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.3-dev" + } + }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -4189,7 +3950,7 @@ "check", "validate" ], - "time": "2020-02-14T12:15:55+00:00" + "time": "2018-12-25T11:19:39+00:00" } ], "aliases": [], From a802a74cbfa13e9b25c2b954f5ae3398b8ab97c1 Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 6 Sep 2020 12:33:00 +0900 Subject: [PATCH 06/36] [init] translation for Japanese --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 0 -> 93369 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 7236 +++++++++++++++++++++ lib/SP/Core/Language.php | 5 +- 3 files changed, 7239 insertions(+), 2 deletions(-) create mode 100644 app/locales/ja_JP/LC_MESSAGES/messages.mo create mode 100644 app/locales/ja_JP/LC_MESSAGES/messages.po diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo new file mode 100644 index 0000000000000000000000000000000000000000..b6b956b63d1c4c77288ad85416d8a96ff3b93f06 GIT binary patch literal 93369 zcmbrn2VfM{`iH$JAa+EhD+AKOAP9m8N-s)pVt12l!a|aby9puo-t}6r_YOAnTCV-t zd-vKK_U^S{zvB1&&Ut5cHURZ z#Emm0O(b?$oJe$lgW)(h6}E$?!Y$!ta4UElY!9C_^ZRgX%xlcN(Gu@ZH@F4z;ZXWh z;pXr_lUKuoFdq%&{~Fj4wy8)YM!@b+;q47&pMh=RF;MYZ4mW_;!EN9w*a<#o{0vIJ zMP(wfDQpKfh5?kjfl%=o3O9lip!8=#<->tyzsz_dRC>-g^Yu{r_rOiyGf?q;11i4X zK(vy5jq zsC?J~&Vswc{_r9=1wIZb_QdAZUcWuu409j2KHLfRh9luHn1rq1d2kTC1SAZKIq|UpLqd^Nw%;oC{UIj)2OC zbD+xSIw<%5hDz_tuqXT)?gY1}@$s7iJ7dnk0GjI0h=*bD-R>g7WtfsQi2lZUsMq%J1Ldrm)3QufI9m8uNC>ouTw+!uGHf z(o_?NK)F8>D%~eQ#p5z4|5m^a;hj+Ne9-tTqzDpkz*4w-oiE>2Q0{JniswU6_5Vev z_`eMmuWzBkX}Qe%yD2Qf+zEDsQ=r@@VOv-Y75}54{5cmYpH@PJcdyBxg3^BnDqY{e z&EXo@9=4?NsJ?Z9BVc#f0qzauUluNe$3n&PT`2t@q4a)(@^_1aeZF*r12Ol2@_!~& zJ1c{Ve-0|XM?=Ny9H{tQ3zeUDn*3oX{a2v+j}M{rzJzlBJ5)JrdWcVN2dMn$1r^Vc zQ0`|z)vE)b;&U5Ryq|_$;D=^j3swH@5B2fw0+o+_VQ09LnP)@QzXPD+pM#3evBvYD z!nqy>@F6IFK7>lgcTna0E8G^gILyZ<Rk2+reINC#ZPr3%kP<4B!cHd$m$#wn?PpN&`@xtv z!kagPDxa=UxK~d^uG4Tn^>_b}0LYq4MP=DE~i(O3xZ7cYi_ozwuE%-5sIi+d!3DKPZ0( zn|z|lXG7)VUM4Sw3bzUlhlfJ7tJ~r3@EbT5jyT$v@4-;vo(WZsmqN9>RmO)*{t8q+ zeGC<^ub{&H#mtFgy!%a{!r#U?0FJ}FGaLX9g+1U3sPsGoRlnYc3ins2_OsEkRxhFQ zZv^ZDC&QMo1S;N(p!92@^7j;|@Gpgm=Z#SLe3$VNsBoT#(pwGX&$m$N{{t#rn;hrs z_tsGEyFuyohYD{vRDMi{t>8Q;|MrH`Uj${JgVH}3D!pew#p`M_-vZUH9))uMCRF@B zg9`6AsP^Cbcpty+Q28|ks$T2?2g13q2p$P1!&R_9`~?nzJx=iB>>RiU<}6gbcmS$h z`~sEF!%p=6Pk^eY`$4tyN~n0%L8b2`sQg|IRW8@TiSQAqa5p@Oz6%b8J>h<^H$2+7 z5-J@p!VTaTa9j92lz(kc_Wi^_xEa2vQ3%HQQs_33^Xz%QWM`9`OB{hqKp<|$Bm zi=o0l7j}d9!~XDHD7`kPdVl*v)z7(bN4ONq{(2a|XU+T#ls}uF=HodC_Q5`?d^;%nF;L~aKO6|_q5Qwr>>q~#=8vJ$(dr-c32-1({1!lk zyUffNL%Dwd2Jk(z|I6gto#DeB4;9a(@kprhx(v$wqp%nJ7%JS2&h+xZFu*(;D*jn0 zf6g%bRZ#i+0_+NZheKe8vwZpP4%IHop!5!f+r#Ui((@`*J@^HxeQbHQ&)>dK@tFk` zpQTXYUjh~Wy-@k^7F0Uc!T@f!-1|ELDn4aU?v8;<=M_-yAA+h!tD(aA9qtH&bG*Ov zU=ikJQ0}fXJ^@uPKZ5~md#(>}FjPF}LXG;kJ`FL*K>0dIjj!!Mxx-|kB9Z+|F%cZJHgX;9(r3rE9B zsPx|e70#_t<$n)UykCHF|29;;`2s3^e?a-y`YLbV9;zIBLWMsVDj!Ecxtk0X&R$UE zdw{VNs@|rd^7Ck@@%2vzsIle;Vgs-w+t%ZmYVrQ1JLCm5y?#@;Df}^h1@yRmNMO>g)Yb{=8)7)lm7g2CBWS zcfGG)+rYt?_koh11}DQ6um*kyRi3FENGm)Jj)DJ!d&1E-`tjo&sQ5h!Tf*0&(*KU} zbGRYqHE;l23#H%xChz}fsQB#%H-SswD7Xx&J>3D7-!DPM^CQ>>u7wI`gPXnmmQdzi zP~i=RsxQ01R&X4YyD3odoDEeD3!n?vxD0NF{5Uf&H(mkd|IKhScn?%NeG1C|4OaPd zYzozmyFlp;gbH^TD7^`AbGSQ{{oYXVO~c+W2LpH^+!Wpm72l`K{5({A-+^-X1>6Y! z2o>&H*cEPmi;wR>sCqL3D!sFz^vhsdco5ti9t~xG7L@zzpz{AwsP?lO_JzMf^|#$` z_3~ZdHkju^mD52`{rxde;a&-4e=k)1d=o0&-$0e;|Dftahktr^{h`903Kee3co8m;)7F zB~-c8oBSlG{^V*Xe{X~e?+)X?q0;pfR6acms1FR|9hEv7*zcn z50&pzq0*Oxa$jXU2C9EOA1WVKnfxKB`uZB&8h#9wU%x|@OZz+hynP$E8|GP1`EdqR zx!eR5|68HbcRQ4S_d|vA3{-u37b<^#hTFmQ{^irv8>-xfLzVxYQ2DhOD*P-|`s$&= zI|8cwkAW)x6QT0+Jg9K4fQrXGP~krUm0zzy#p@HO{QMCre_Gz<^*TYh9{{C40S<=q zp!AN1ec(l~JA4EVgrAtX-Q8Y36iU7TDx71W{96v&!>f(=!l{^FhDuM@dwjaPLzP26 zsQB*&m2b1*Ah;jw4^M*%=Ps!H`~>a@H@w%&N5dU3FE;ZA!tBZwr-=+naebl-@L`{Mj2yzYMDW*Fn{%W1;HFc~Ie9 z3st|Kg7WVrsQmu`%AZf6+Wil37ufniAI>e8l%NTR_F92r6I4LzjN2cxQ}O&c z?oWl%zr@Tp!Je2OfIZ+xa0G1qxbG)+gX1vgpxWb|Q2wlj^7nhFa!Wkn^Roj~Ji0^W z-_Fq0OQ?L`9m?H8GnYffr`F8JL6z6pX1*Ls|7NKCydNsRo;3akN`JMPzkw|={|39l zwNUQ5Jn8F4Z#WV2F0eH`3d+9|VIR004uJPTrR#IJ4g3o#{@Xm|49eX2MUh z3aVdT4OKsWhlj!*FZuE7GN|w#fmQG$D7`r^`}Te??1K3k<3n%(=6B(?aOf+3eK;2m zz+4YkN*^kIGymi3!$EL6%oiE|4PASMeUZ0*)wkn8Q2x$?iboFimOD5FJ`BgejbHQc zcc#IeFrN+w!^hxo_zT<@4tm|&p9*JTegrOpTfO1^KMczKHLw?a2d3b9Z~A(;2qrOC z!&dNRxH)_SwuPTV)$iX--tsM9AGd<4XWPMcus>9N7!B8l?Z?{9?_L%2Gc~sCIH3Y!Arml+3P-}(~5 z-vz4wm;$@Q1#nBa466R03YC9%K&A5)sQ7&e<^DIQ`quhGpWhvz6by(t2)>bu7ryJ!%%w98{dJ-pD$rI_`AtFf8^uQ7plGuhiZ>0sPvx-m5$|5>0SYq zpEp5;_aIa_Z$gFp8C1M~G$uaw`LroizIQZp4=BCuO+FHCfq4RyKMTyh7^1 zQ2v|-rGK88S3>FC1{J?2&HOgp8uNEh;kEw6r*})Jc=v#+pF2R=4~O011StQ@pz>iE zYzdEqa(5h*{@G@}94dcrhKIlh;4X0Fr#}3pQ2ofMQ1$IRDEGIT{R2?x{*RegL)G`6 zq2kf*Ghg04p~_cYMw?%#|RR4Gt+ySnED(_yO`*qY@I2`lQ za0t8y4u;=AwVQ5V_QdwgO839;onMGWiGa zAk05P`JejM*XMdT0`pl=_30TX`_)kGZ4FesTK(78i;hs~44}$&SK~q`{Vd!R9s^ar zXTlBOC2(_i4crLc0j2*SRQz9po5L@Rzd@yE!|%Mj3zYr(qgKfU|`PKo-pCTxK$3V6Fc_y!fZ80BVJOe5pu7I=P zy|6#rLCH(aTnFc3J_V}Yybo1Q zUqQuV4OFT zQ1$IpI0BvpmF{Pt^8F*Y5dH)e&l&&o`lV2Mi=q5I8Y*8-f&<~%Q2sv%)y`grivPz@ z@%j-eUakN1@#z4S?mkfR9ij9mK=mJUq2j#{l=~%6;T;Z@-V>qn<6NkC-T>wPA*g!w zB2;{OuJ!TW1$Mza*UTBH@;?D8zNbR@djaeWuQT(*Q1$6WsCa%16`!AsZT|A%bb$f# zAyEFzg-S;fs+`ksTbPB)$1`CkxDrbL5vcgS1Xcc@L#3|;|B3CP(mwzy9>dH$2`WCb zpweGr_F1?c=3`(lcpX$co`V|yUxNYs6>bkZwP@k;V=`2^OoOVo3!&myVm!!r1XTH) z29zk&*Py;i;)H-~C>fpLh*CqU)X ze5m;D3l;7nGam$14-SJ0|8(QUa2)3A;Q;sz>;XHq_URb~RljCIg`0+IKZih9FQM{p zB~*L43o3v90~PN#q4Yn6%HRJ%g}?a*KAzh^<#RvdP^fTrgVLJ~<<9|7@vneN*I`ig z`*Us{eWn%D-oz^xri5kD>Ixf-1ijZG618hB9}Ds&~Vn-0uz* zzlBiYErx3Ubx`p;3o5^^f~pty!GZ8mSOmX^lVPx73pWo~1P5V08+L<_z&+qcQ1xQa zM!sDvg39M>q5QuCs-8X%l@ISh#p`pZ^!*N%->o+G<9K1o&2$9pi8d?pNF4t9mh&Hh%Xa()4-JimnUzrz;Z{cspyo)49drLZ5o1S&pH zK>7cLnKy0c-4B8R@|jTf)h1sKm7ljm#q(w3_fX~4c1!Pm7*zV^Lxp>Y$*+U~=7*vD z`3TCN7F&6D0aX5uflB8RI0T*uRlfH^wTsuG^uB@H!;V|~^h|=%TLjfUj)ltK3!vij z5LA3Vg9?AM_CEZ9Q0d$QDjgXZz~xZ+bO%&?UWanG1}dN1b@1+oK-Ht!P~j|rst0F6 z`TH1DJNp94UB`}|BcSTfLKwiKpu)QnDxQx*^=Dr}rE~pGK7NCt+%16e{|G4kt4#hh zRD6Ggif`M_KKvr6c;KzW1!kk8I;~xQ1QGSs=VKTiq|ht>Dqc5?`}Mlei};u6e#~!L6yr3Fo0{I>hadw z`grdK@N(D+-T>7v-3rw&-D~FOp!8pdZQy$*{|s)7`Fp5->rbfq z*S4GQXM02ScRL!#L-m7mp~|fSYTj@xl>2`})ytQm!v74a|NIRqUTp#&-*!-X+d$b5 zf$GP{LiPW1pwd$Y6~79oabOvgyW^qKeGyc+*FwefZnJ;N zvI~?vFm4YO{zxeQWSh05N{ycXvUB z^E7M;Uo^f7Rd3&d%FiF6(*Gxvf314^d0#u&8*@LXb~y{K2dkmWH!~jv6~AMl!v6o#UGf$78+{YJT}CRQ&&hN?*&q-v6zj%sq@lp!CN<`M(!*?G7%) zd@NLW??RQ&_m232onLX~3*DjyDpz2He^UImp;519EWsC2vmRUThKm;Qmi9JVrchpJaaQ2vfH z^K7X2r=Z$f4yt~g4hO?$O}-XR#@uQ97VaEh5~@63gG=Gha15+0YT?fD-3*H`w;tr< zHw>!&Oo2-ObmLx7^(O@fzzkG+E`sv^W~lf*4^^+;furCTQ0=Mr4nAMULB)R_RJ+SS zg|p1;k2UkTP~lw(RbOs|s^7Okxw{)Go)1Hn!xPYjYy1K#|9&=etHIvB9aMPTpzH@g z<>N>w|Cd3f<8Y{Ud@7XQB~ans2&H!iRQcU&_Rm1Y_bsS)^f3(J#zVY+1EJzO(#*R- z#dkWCyS<_6ODR;i8K`mlNT~Q;0#$ETLZ$a%DE-%=^go1(&yQxm{*K;#N2vTC2GxFM z!@e*L)!&|F@*APX*GHk+#fMP+{Tirnw;by22SU})-J$Yjf2i`TgsKlGLb$&@-Bw*FAbGXhZ;|U>tj9_s(-o=Dqk;wiqDl$`FSf; zy}TEyy}k{VkKaSZ>rbe3cG}7NKL9E}M?kqBZ=4PluRWpCeIQi1)IjC?nNa>;3FZDS zsQh>YD!lig%H>Ow{|?okY(3ojyA4!$y^T9SrE4TqK8=R*cTcEtFNO-Y4yvA>2<88| zX1*4xe%=n1@Ap9E-^)<$-#4y->R&e;;qxJYvL6EF?_{WS&4g^GUF&hvK!sZhmHt{Ny_2Ehc`=m! z9dIyw3`*}8*avR1i=WpHg#$4!F!M3SYfSzGR5)v({A)GJ=l|Bmfp9AF@lfeG4JzGd zL6yUWQ1QA2D&HQ4gW&V9KU@nHe!tN^KNr9qF&_*izZvcT-!}6myZU~7XIO+h1(lxV zQ2O^l^#@--<--QM***dsgLx4g4p&0W>py@2Tz`yTFZYBh$H`FTTMngnipg(+JuyEA z`@tVz57>3AH}3{j-f5_Es)owH!=cLgA5i&tshMwv(z_ojf1ZKTe;sZDKZmMMKS8-~ zGtP(C0V z{7p>o{%riLD!uce!c9WyRYBGFW1+&i04jfOf@){~gbMdQvws3A{%=F2 z>nkXKeuT>Z4JZ11=n5s@5h|WjjSHdNl|%WPG4sJt{mju&@wp5tUvGyl{ZR2TEA58N3)(!^9yFmFr3M#zGQ1x{tRK3fXd?{4C4~NR{GokA3l~CpI1e8B7LgmZb zus>W4RSp|Z_Wo@FmA@UK{Obu7@8QtZ1LJ;B;bfrl@kleDVdg8K(tRtGyQiT1dmAbr zzlC!DCzSimrg-zVQ1KoF)z0R@5wH&K2ycPo;KxwyvCmZRZZ?#^#ZcqLK~VX5B2+xi zg37<^p{tir`F<~yyQj?j22^}LHS^C<<<)X`ufGM9emAK6EP~3fosAQr^kK$ zDt%8w<=cj{eEn(*#G{rMME z_zyzG{}-t8@3)_i&s3=Tl7Z@%PJ;ow25t`@hsxJAQ2Ewze_vmQL%Ev+RS&A6`j4BS z^d5#?;RnXGChu~9cQ+DBZy{7U)j{cB2o>JHpvvoQ7{J7V-d%U&Zm=Bjeo*cngKFm= zLba2hVSBh<(&tkrsCE`WMOD94P&Lq1ro9bN%dPalCQxA);t_!(5b zbuISgHWVuVCqR|c6exf8gd^c%sCZlh$H7%l^O_%^!r7$6$G-?FoRP+Ha5m=Mq00GU zsCsb)RQtaXs{gnf%AY5o^5YAr`u`_XdG#*!>6`!+zkQ(GFNUgbbufS@ntY}4PN@3% z2vj&vLFvB^Rj)pWn(uZ_`S|Y$rMH`LI#mC(4^;hIV)9d<;&A~~eOm$59$$k>|DRCl zXjSIZ-3cl`w}lFCFjP3ZLzVkNsPvQ?4}!|4!=dv1Br~6F_LrLc2Dk`?h4lF5LaG-x+thhV%S0&le%z#N1tryg%mc zaJM73`i}VZ4thVB;4Sq2#5^3m-^_gl&%YyYhxs4eU-7J~GvN%y{4btgLv{(~cer0L zd#7Z7uEvjv=HJ%v7R>;ax{#?5)==31T~$Is8W z>3S1SBHs<(gzkM%*UhH8K0MT(B|jLy26LjONAwLK{0Y`DaZ*iM}!*|dr#r!C@>U=-5liRK2G1on~ zQ9G%Fy5@54hu&AFtFdDfvrFOTbMF1jJeY7tV?G_7-H=_$^EL1&?#Gbr4R7Gy62D%- zd=U5LJlEk)ZTAH9r(-UM;Z=3It*b4%Mcg0r{4-=al~{}ZV(eG*d>Y&Veu@3@ z+*7z;!Tw=ncVKs4%;2QuEZ~0E4i!P zlm9ahPqZ=9lC_2W~qJBvGm`}oxfou`rOD&@Hv`0OrFo=c>?y~b-47nhjQz>ADy3Y_pCQ2PQ?5I zZgf4zU4&UzTV$Kz=3ee=xmixS>l^cDEaqeESr)sPA9IYiAe)Ij)8E8wWWQtHm-~J5 z|3T~~nfrzC2zy?N{r0$Fxsn*6xZ!3ToQyfk^W9L_gZTNKxj7E|JuKWi;SQL0#I7UH z>zlsZOy#)>?q%+N<@s22bzOq)=cfCt$^JrqllfbRn+2Hn;+~ED5#0Yp{{`+P=v)Z5 zF!x)c+X2~!a8vY0@O%vSj@a)7pECb_&mm%K6Yi}3)Xa5?wC(9u;K^J|e8C2l}=1kakUWeK~)bhkHdfb0#z`v|?C z;3F2l3(S2lsJWJ|Tg}bI=zYoac-*|feJb}c7H6-CjE5ue>p|`h%$>8d=aX>rGS8#9 z=iv5Z^zJ|*$$h8!bs#!gUuaEOj_g%*2AcbgvAfIkzA=u&URMirj^w!)_dYxykM5Z~ zKZo9l*#C@K*M8hjBOd^dN3RX{C)jPxeFm~0FwenW*Y3FO!>x5nHJlDdp?8)nxiqiU zbv$T@`S==2ke}#^&#Irn1^G(vB}?nQ!wkg9k;W&t1&-{ z`9AChVBQA5{^vCOpZ4Zfrqi(-!u=)pX~^G4HXgPzKc&+TKeRTe;I50gU5@!B?855? z?7qXF6Oo;R`(mDT-H&-DOv9JZxd`^dd@1)Crjs>(iMuVapO4-W7+xP^{{VIa;5i6u zupiCy_Q+zV?0#_mIIT|aS8M3#n+ zpnpAXbv+5UMcxv|_b-T4etH z8~Yn^_q54ZAs>wHP26*lPv$$~&|4qbEhamK=TEuQ=)Z;CZOH3kU(7pk>w4Mf zP0WojcgD@@=ssb>Pfh1K<6z`7xS!%qqN}Src1LlujhOhvixU6F?g8%eG2ek*A4~7a z@DOB=!p#ZiZJq~l59j%E)A<2T^pJkJztOB4(Rmcc{}c_c)o`_y!J$QPt3g$ zEDMFO3U~AI??aQ_hR$}#zA?A0W4d}&kZ*Edfc-}3UCA@sf$q8*ZeVd+ilhrV+vDIj zcsu56xC8E2B^5W=q)nyxA1q&ec(gb z9RlmQGu+`dkLUBu&lTui6SI@fkKB)8znuFA?mmRq@Ole(8{zI@vpd85I~V!h$nQXY zGQ1my`(bw^e1`jRZe72icNJWP&X3ri!d+{AI0gPZfgfe)ZDsOz;V;Nejp-$^53gN# zn1{WtzR0_Af5G!3$oAp+Oj+Qz4flGcCsBBPKwSP4^KSuq+nC-mlm7$dXV4pl`48-S zz?YFt;91uY)Bi6zx-Le(e-mMyZ2nyY|7E(;-xU2ySj+tv^7k>{Yr3+3Re$WN!0sXJ z(&qoak@vLc`Pk{&O@Hv`3iLW#I7Nsq!#o9@ACRSa9?x?pbMr|ozSkiu!G3e}ddM%k zu0{47va_+D$MeUy>5X|h&kMN!;64GnAm-Nsp4Xt$%4CnCqicU;;q?V>?!oXMsOwPq zp>TNa#C;6rkIenm=B_9HT!P(Q$iLuuYqLMg?DsLYhjY!}3(;xM^K7$Qh5HLIZvl1P zjr}0Z-QZ#HQrOyb--i1W&Qa(+hkRd4huqzW-6YH#bN|KN75f3)x{fyY4;ic+FK zQ@E$`+zI&z?pFw7Dm=;TrE?(Re2e)mp4afa7x(k%?S$+qi^I8?&&ORm%pra1&%FaBFY)H)Oh&z#7~f1UHPinT&Zh_5-ln)^w%+ zAs_g6CQIQGb;kKz6idtFt=`*HI%`dzs9 z_Ew4c*j>my4)av*H?eyLKXh$}d}lZY*+lNMaep=Dwa9f{irz;&S8y-J?rHdppFEF+uX4w)dfYr|g7eWCgn1z5lX+eb-FJEJ*TBu9SQsy&e>M02OxDuEd=<__ zcDkAGMn~6s@NHzPxTl%j?eI_Ro`T&?mc;Fw+{+33Tijd>$HMo_ej?BJBl`_^i{&xb zdzjCIpJ8_-&$l`$c>?#td^-Leg557Lyt2r{>wD}*VmHa`|AWN>?7MMyBHRt(?(kFe z7Qr3iq1?anyg7FVp8vw_9o(0qyBo5x`0)hK{dsPQ{Zl*-;SR4ek&QzCZ8!`*55sFP zZkBQnM1MMVgWxK75en_OKf`>x`Sm7x8Dwu`e-v%B%VTl)*^3h+(Oqc%90=dyew_Osrn@`#tI<6I*-pqV=J`5vI|1`+JYRv` zmE0GgdnvMg2=gwU@3gR2BWuC)9CV9ej(ZxAw`wH#{(YYDfN$6h%+nVAGvy7^@)4(FhA3Oe6ocNEXzbr8=R zaPN*ky1wJN3(pTa6MHR~dt=@McemsIEDL8P<~@<;u-A1We9XdafzD0Xb?4UA!sL1$ zid}c}LuOq&D@#ss?GVLl(W zLgyOpC%OO0o#MX7^xB|PE{8pO<$45FnbK5Hnn~rV`qTueW$9c^qDQi%BvV^eb3j$H zGSy?39wim&R8@^0k~OLFOtzlK+H8gX=2BTuoy_IxGTBldt1>mIT#rPrTrfSEt4U>p zS!T!a{(iwUyib(|>8hYSo2ji%j159BgLE#aN~KCurE#Gm5EHw21Pz3l%IZuN@hkM9 zzPze-Sy3ii9#m&Di&G^vcw3svm1NV^HR()MfwGHB6A~9tJYGvu^#y7bnR1d6*QiR> z1-bg15*<|f355cAEJ9hM1enX9ERzjN7A32Qez}6p z1}e#*aa2pmT7^=REcf{yPi##xTb`;33WBbwuP%totf|4++L}d~Z2DlAj$C3aqWN>C zIVKCN$g!$qd8(4aY|6H_x|B>yj4jS(Dr##|XfI1w)>bO`!8=VKM>I=HQsg_H2c&Q6 ztWZ#zs!FR~d26Lq&#K`eg9)jcWV(XLd3i9^sY@kafkV5nMhCO9saz`W#~jKelO=-Y zM@crNLXOO(>0EV1vOXqBEvrsvW9BqfIU9GP0*u_d(xeVmq^p(`3ahiJvh=dNEK@@X z*H-0&&Za6eOJe~MaYZ$+;PW;z_n|SW>5;W$S7|_~)yXUpwdhP)uxENnI>@Dx*^))U z(quNBEUr*B@d=M|F&Ffm(l3$*V@oU3Re57lM*0I;xbhg^}*6~E=@Xv;(FIOU5iOp zmAa;*mR*tY?a3N%WissM@;MVV;pRNdtMVK3^wXe6JOWhF&C=w4$nq1(MKo!eHg}W$SN`H!D)go!gVcsw66sqaRiL~@wM;jj_@R{Y3qQnmLGX-_%(Wu5WLGh>NxeAO!+FC_n5UFJ)DL>L@N@x-4>Z*cFv1S5=imn;g zk%PhX`nj{G1+H7N^vg}&p3x^+oXnBfe9x7pynSAUx?#T=CM!0CyJnUc8-hE4US zTcZ-k6?`ku7)>)PuZp!eqUA)ILohz4nRnEXqP(oyWNNrelNHRPh)hD3XG z`s52;ebbeYx?NL~ELo&*2$Qb2vO4xacU@wWS+j~HLEm1bgL;)RE;9EC#wBy<616S$ zp`<4-BP$~jfmpkC8hK-o%4Ss?+%(Ey6RkoMb=FO-0Fjx8wG^63MKzC_6MR#1N zN~d5xjH5y&^oKdUhgz%aXv#FmFTyEFO}UBRxHNS!oJ1v@X};!U<0_I>O9H00`~#5V zYAcom)(Xbe6HZyOwxVWW;Flt?5{ma@Zcq(Jl-OwPt4rM?x;#eG@@$fd>UxlTUl{Mh ziW2b<<=73n8d@_|rO9l)bxBN)Lcjbd(3A!}lx9!zg{B#w6VSOQ)WMU7>B=;fT&6+l z`KP*RU?M+2#2%w8&)dc)NG7chUDRtP8wz=L^8n&h6wG(^OZ}*yafLl~QGq(vz6H|J z=Pi6?io6YLK}--WwDOMf)89xhn(IXpbu)P<`AJKp5Z2D|TD_p^kgrWZz8S9|DkIYqF_0h_xpsUUGBS+-iIV48;F*YVQPfX&g19i>K-2CVqt_s5m znntv`WVTA#Emgm#2^^}(wQe`Kir^Q}|Ho<& zDHm1(FSaV+4N(OMjj`f4QMC5)k;+f=&Fl-_E60l63!*}I#+;=n-~EhdAY%~KG;{&| zx2C-kxorWSs>;&kwJbBdJZ7T%bzN40N;F70X|~cYl&Na+2cx=*hD&?5mZrGNGzHf( z-p!-jVxL7I>nCQJu8S#V85R~hvpW2&Vn#y5+^SUx*OVqEb{%}scihw&6Z%PBquqjJ zg?wc%qAFdJPFAE3rh5(TN;WEGm!9Z(?E#hGMQUSg%DIr zn@r~0j?<7VoF*j3yEShxtG1Yp3$}Y$shUVTBQ_ZfMU2HunFRlh*tI*qUF5t{W=+sW zfHN`rjc1H!c&y-oB~eE6;96=zNwP|L!7Ncr1LaU{Hml~*aAV5kEdO%B_Q4D{ZjTIx z58DA3ER!pPN$FHYDYed<%4CYIr{dy*#cH92ufyhvCK<71?Sye*P2`D!jMY~J^ZjIy zCmXM-nV)F8Es+;#d`XZi$)J|KFk2gXK{y~rVymXPkZ*OY5&vgu;& zLuts6L}g%81DEu=MXZzj5Jw_O$=|vr8~v8z|0k!-1gbe6VGDtuD26jc6NY1JsAR*2 z*-lC>)g(Id!Zn6abrOry@HxzA7tj>83D_tO?OaD-9?pmlU?!VYQOj0jsGTn)=U2Ql zG5xtDr$ifNW}cU%BKss-i8`0AK(VOI@Fzbeg`0iQ`JxhJ5ugqrF@X&^mWV#Wep-&q zrsq6p2QOeJLPGa!VR#c0Q#Q_)rpw)66BH-eEn|V4sdj5x>WD3m*?(g?%K%`$;Lfj; zsR4y5a-XCXWlP!jTjDAkQH?pwWwcM1Uq`YVqiI5XhC}1a_b6_&fh`J`W)^EPuUxe* zEu}ZjR3$5H;-?5Hv(@b?EsYoZ_`ohUU9H=Is1K7uUS^imx}8F{dRGZpV& z*i(3`*rdY=)GN3L*C)6q-&);cI2nl>@}rof%q=ET&no<1Eum?*IWy%nwVvn}Q3lt$ zA`O@7-ZF@4wOWD6rcD?-D}0W1Z}{z3Wpn7V=&tA1=g9p~SZHz$ORoYVN2RIa+DO@N ziP0)!%N6rHS|o%X+g>7j*!6xZ%`8fdxqKQ}o^C&9*7!g#aWwAbV^I_-Cn@)QHUw@% zH%E_D6)4%Xf-H?EukL!3;&cTYHJW~w_!(riFHDy}iM9VAFY^7Q?Z8ICI)57OFl*mD z&5FI0R@5L!x-{nEQ>(UTx5}-+@_VP%nF<09^U{y^bfV!@-8KGs)8-Zgo$#R$yv(ik7tx?MXc8dMZurF1&qf2{@ zchLSF4s)w~Y|Jsc2yXjY!Im(8!e_segi({|VAd2B6x(2Q`Q%+vdd_057lvkrV6&mC zYG8-k(9#VaE`wBColg>lb4E9MXyG$a$D$J#RdyYKxJH3JJbK}re5|;tH$)yQz~ikfWuDqZ`52T8`Ehf zZcfeh#R?|NYlFl@ZT@Lc_OJ7l2eC$A)@<%Gno%cZT^3H}ywd`^m{VpU+Lmp~2WiE7 zmF9G+{fw?492Sm#1xfv{T}F%7UYf0onpAXA$}cyY(k;=}j7u6>;r%L%ccj4U_eBM< zjcl}WU9OE{y`pbMM^RBjaEqXLWFudsp>5zyR>=yhc43Ixt_h1N>W1B3O@Wt@T9*9@ z-m$QkQ(({DhDM^$CpTYFi>J zt@E4LN`mQrTDZgEy_gT&R<+_vRtu>T1Z<~MJxDFj#_BNX*n)o$qse)_9Ru#0s zs+3Lg|8wmu)sjuM(+Vx$srf1w**Dp5MYgJKP1TF06kG!+>>-*`qX%?_^7oqS(D=Jl zDc((1*Mb-|QC*v`Uq>{WseuKaIGuI+(V$T_aLvM}K{c?FRT>*t?*i9;FjXb{J3rQ8 z-|U!F5L8@i9iBBYcolf#?bqQ!qZU)({BM%#=RJklna+hBsYY=f5s1yD3sp1Wuu$wb zx8u#aw1K6jqH3><5jF#74PV$%<(>F9b8+wdp%lU^h=Cn%3!}k)iYCl5HX2?VsQ%6H z8SSMtJI!IrrI(Hhi%zpJAujq2v&+{F8l=5%7CQZ9d(t6?gm$Vz=((Ug4?b)~?4 zJX-4vh(mV`#_d>!C?uz_PA}AnHI=jewL;@roXO>RgBLLP(x_vIX;T#W-OGZ^_DgG( zv_IIxIg%>&Tv-H9n9+=)g7@RioOS9bby`{Zjhfip&Nf2{Q#09UNzi!a&Hj*Eaw)_{ zn);!r7^ZA-Nogwfd%J>Y*Dq6e-)Hj48;tXl)(u@|r63 zNO6&E{Ktoh$WnncHBoCyp^1rFQ))z}$)#3Py3IDjzf)EQ{cXaUoXHjV+{8?-(7xH4 zUZ~dG@YAeT6CGfIZn*Soy6jbI&CDSSd}%z*E3j_Vc@@|;tm}<>gaYk&N7sC$|Gr}6 zTgf_nX}ptB5EmW3X3L*fDTV!I10{D#zxhxa94=aiR}IJ6f^Zsl>;=|p?mi9{Ku(9A z6BBi8#QzPZX~Q`>MpB}!2yOC7;$D!sCtNQ}>hR#m@FAxsoo08RGQ^*QzNMTWWuqW( z&FhhL6|YW1X?-w({neMdZ#ci@(58RXRy%X%9k4a2 zjY0N7iJtX8x#%nz5B?QPcoJ806}CQH*s*Cu7#)f7E@FDVdB@fKtcQKxDt9JjV)%qk zy$&05f{g!@!Gwv^XLj$N2w$~ow~joIjBfD|6XZCN5T1&hq|*oq_cwIr&L>1}oXL(v z&}`V%tub}?Qpme>uZ|noqU%2*@G9;^u2h;7=6!YbO_5c=8roA8)!vXluS4`x$k>;h z;9lBF8$&+MGVn=~+ZXoVBzXnf33uM36OT^Z=tpDc#3ib>+78ca7oPU2mkB;d<{6=9 zIgZgpr!>trb}W|7MLS30{Ef1MqdhvP?j6`ENolyoqKBNbDoi}4@D-<1;XJ=T?deUi zqah6i1rFJ5mgm}Zo;f3YQX2CsCAUoUqdaogMN_%GBR6xR3v?e~OiE{YNuzVyiAiYg zkxHrA>HVcWE_8FcsNMLN3*o_$rqp$+JscFhwtIu^u4+$qpIKETj13Ofcqwmx!w2{Nppx|a zqrgcvb2)0Iv*`I*OB8-l-dPii*2x_DY;d@V*EM7%C(+#zB-am1E9SSGy|VAcS>*gN z(V&ORF8?K-Itw+l<{ipkJ3`XKy({P;HwuK7LuHvBhwB%N z$dSRMv9kq#=9Fyl7W1@j49~wz$>iMJoI^^fgbc2yr6x?BrS96jPi|VQnit#SDN0Q3 z!|O_YkH>(agZj~ThPKZ$bwXn5j0Iz-@hWNd{E2h+O7H<3p^UXq@{g`(%7^drO4Vv= z8N;OeID&?juFBQWwdos0ooB4e)K+llOOP(?V7$5$(y z&2m+tjF+M{_MX#)qQQ9T1V13#uoHfKV;=XbVd?S^E%J`MYH4IOUL zu6mwRCE~ym$BCSeZtcY$m!i*WM7KGe;qx4QJZWCrH!n5$?=wbpD$xUuj%*F$Fy3OHG}rspJq}(XvW+zR35rw*2%9 zeezi+usHEj7)p3P(A7Je=tX5y&QTqm)}homNHnq_dOihi?}R+?nOVsa%Ae6yA?pw- z-vg+Zv`>cIdN>_@a>R%kPq03Ebzzk;`Q$wrts|>QY%%v`8|e zwz61z`k}_$`pV)A-`Ixc`PK9r=7PadwTlx2Q+>x1(g}5<%jDjiZz9pFThgg-NvUF} zlC?TnkWpHW+jpc-gjzAXPat2R@jj~AnF`zDN&Ya$UI%%BZvbaKO@>X5n^RZ`+*M`Vat z>~r|+>ezRhE>aEc!*4&r*V`II2r~bXK>lU2`wT5fCs^h-6*yGc;8z5qkuID| zx-azqe+Fyms?PB4MBNIRrvAa5QgTc1aNg}~^pR^==J}YbPSatznh++mD6xBTY0}Tr z+|0rqu9sFcdSq+$3W{lQiRwnUj*tg__)EAgST_@j34*!q6q&PhpD6ezxAjTnsl{qE zE-tYZke|*LdEI<%4QB4qNThKhzPIRni56|n6t3Bvq1;V7{q$XK12@F@kHVE{M2FQE zb7oCnF#F!!q7r>uPi12`u^Ew%Q?$_36fKsPw3}h%w>qZrJyfkafoW72%{Z8$_-E#x z(IG%D@$JMvyA|KGR8@J+qQtb+(o{uaTDpt_tnAH9)42ovi9R^7*?<=o7{a-^Q&$4~ zHi0veT%8m2uELqPv$2V|o*99OwEIy8Glo4vG#80|(wD5N*GxFyjMV>B;0-y-UsA5W z(T;*Q#isPr+$SM{KX;BcW3B6kdEj`l`x{$|VAh#xI}n$M<~jK%S7t8BuB6?7&N{$0 zej*31RjDd8r{L!1({<)lfAWicX9_EvGq8JBBc&=on{ zub zkNw;vYNzoJz|5+a?-Hm|8Y&ahH6Z3YmS}sduYM7zAJ+aAdUSF*-#$u;GM$RE9}&p~kx%Xjao!@5>kTpUQpU~-T4!7#{NRU$Yz zh|TPs53{2AUOalfU-Sz0k)EZjK+6sd$m7^4cIV8_0tfnJOMT}oCZY^rQk}HZB!rUMwfWRkB=0Lv1wp6bP%Lp|L=$ z2oDb zt6T|b0>fO$egEV>RkQh)+nQmF)9(V&O58+RL5A-0&iKb0CnaXiNX(o?#peiZVrH>^ znj{2xAku- zqV^j;-^HI)}45pwZ~My<;lpYd7)d7x!)x!A^@iMv;3+kB;{6IuO?uXu+d0> zzWtC9#p*Xf-D!6nNOw~!mJ9ZC18Q_`4>0^Hr$ArnRBYVx%&m^dxu(6AYF(Y6sxhfe_Pb?IM{Hkgf$4#{nlW*syMSO zvhcs0MK-u?)o^93bww_t%_WAN__l;LA6&%UFMlu@3*%}Vu5A8LTC7O;^ryC}&i~d+ zaf-bbehkPrA@?gk;c70Q-@d-^0WWitsJ7z9FKu0*(JyMT_>2V{*0TmvuO>8HMa{pW z%*Q?S!YRat$0y7r-hA!iTv>GY+b&nx<&Tx*rr}XF;rU@;~I5AR2c4~ z_GN2kYZ3&jJ?qH38orcKVcI(-zq#u^7>rcvl9Z_5vz2DJFUZ=67O8zjG~LJJ9(qy1 zKBEb#2jQB>tiyeZ&=|gkH*>heHlw}qH}HO=^B!9>=Tgz90>qUlU{ z0-IH&`+�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 I<~Pww8u&!ZQ6 zq;P3xwf)1J9pV7CpZIV*TUxwNr0FI1HIP|jTb6<|imgWo3CWU)6wcMmkhBS7seYVM z_yM)iDgMR_n|PTDX3=a15WMIs!M07s6x<-)vcUZsbn(sE z+of)S(uddyp3YGYP1F1fc_YHO@T?MhqJXj_5-0gCNjo>V1@aXWk{Eis$r_!j`2ti3 zO1#pakdiT6_PP$F3f-aH7JlV1M^Xfy%c%uqc2&7Fej(#(=VcPEGx*SUOQehg3k4qb z5+XtxEU9Gd47Lk<&XlBxKU!rfnsOTx1Qi4_b6O|Jb_7Rc%>f5WJ(}QYb?5$%| z2W#C+1(*yS;&+hXy`uLK{?YocmvPrbVJt}i3bq8@4q3|WZ%bYb_AtDnE5(ZN_yldC zub-#|_UF&AX5)rayfg;-+V6OCr-j~IsX!M*nUN5xr=eQNg`LW!(Z1m9McPTnNM)-6 zLr9P$q?0p}RV~ISuvV?r30J7bMcUhd^OfnMgB_%<&b+cN=LK~+)32~L<79K|0vDc9 zJ8G22*zN6YKwN>Gf&Dv*Jtrfh7^F_>k%;9oXi+HbSQL=?Jn3wOLh|dd796lua8Yw! zZ|zMVLu4xvCDpS@18e00Nu=meOeQzL4X`fGbTk&!x9OOkAf))y-0H7b?9@|AW(0lA z4ajD${T|vEak=Nl8=JpUTx?#jB!Y{{u{uQk+3{dC0ZzdT!%i)7@MvYzQ+{p`D{cL~ zbQnjzrhR!sze7A~@x-EYm__xKYR9ZJGCNijK2xlFYLj`{c_r$i(l~;&B&F3#Pbv6`p56(4bg<5(O!*D0K3s`%;7B;-(+}iD z)7)Y3EJxF;5X{>rt#g9sYRI?Bsqw)p|kb<{E7TZ~mVgc#Y$t3Q-W}dqe3+#*>RZZspe^Hdx\n" +"Language-Team: language@syspass.org\n" +"Language: ja_JP\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Poedit-KeywordsList: _;__;__u;gettext;gettext_noop\n" +"X-Poedit-SourceCharset: UTF-8\n" +"X-Generator: Poedit 2.4.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-Basepath: ../../../..\n" +"X-Poedit-SearchPath-0: app/modules\n" +"X-Poedit-SearchPath-1: lib\n" +"X-Poedit-SearchPath-2: app/config\n" +"X-Poedit-SearchPathExcluded-0: app/modules/**/plugins\n" + +#: app/modules/api/Controllers/AccountController.php:74 +msgid "Account displayed" +msgstr "Account displayed" + +#: app/modules/api/Controllers/AccountController.php:75 +#: app/modules/api/Controllers/AccountController.php:107 +#: app/modules/api/Controllers/AccountController.php:143 +#: app/modules/api/Controllers/AccountController.php:193 +#: app/modules/api/Controllers/AccountController.php:244 +#: app/modules/api/Controllers/AccountController.php:319 +#: app/modules/api/Controllers/CategoryController.php:67 +#: app/modules/api/Controllers/CategoryController.php:96 +#: app/modules/api/Controllers/CategoryController.php:126 +#: app/modules/api/Controllers/CategoryController.php:155 +#: app/modules/api/Controllers/ClientController.php:68 +#: app/modules/api/Controllers/ClientController.php:98 +#: app/modules/api/Controllers/ClientController.php:129 +#: app/modules/api/Controllers/ClientController.php:158 +#: app/modules/api/Controllers/TagController.php:66 +#: app/modules/api/Controllers/TagController.php:94 +#: app/modules/api/Controllers/TagController.php:123 +#: app/modules/api/Controllers/TagController.php:152 +#: app/modules/api/Controllers/UserGroupController.php:66 +#: app/modules/api/Controllers/UserGroupController.php:96 +#: app/modules/api/Controllers/UserGroupController.php:127 +#: app/modules/api/Controllers/UserGroupController.php:157 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:249 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:105 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:107 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:108 +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:106 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:108 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 +#: app/modules/web/Controllers/UserGroupController.php:291 +#: app/modules/web/Controllers/UserGroupController.php:334 +#: app/modules/web/Controllers/UserProfileController.php:283 +#: app/modules/web/Controllers/UserProfileController.php:326 +#: lib/SP/Plugin/PluginManager.php:367 lib/SP/Plugin/PluginManager.php:395 +#: lib/SP/Plugin/PluginManager.php:412 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:35 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:53 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:27 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:31 +#: app/modules/web/themes/material-blue/views/account/account.inc:78 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:63 +#: app/modules/web/themes/material-blue/views/config/info.inc:51 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:29 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:29 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 +#: app/modules/web/themes/material-blue/views/itemshow/tag.inc:28 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:45 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:32 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:28 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:576 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Name" +msgstr "Name" + +#: app/modules/api/Controllers/AccountController.php:76 +#: app/modules/api/Controllers/AccountController.php:108 +#: app/modules/api/Controllers/AccountController.php:144 +#: app/modules/api/Controllers/AccountController.php:194 +#: app/modules/api/Controllers/AccountController.php:245 +#: app/modules/api/Controllers/AccountController.php:320 +#: app/modules/web/Controllers/AccountController.php:264 +#: app/modules/web/Controllers/AccountController.php:844 +#: app/modules/web/Controllers/AccountController.php:893 +#: app/modules/web/Controllers/AccountController.php:938 +#: app/modules/web/Controllers/AccountController.php:981 +#: app/modules/web/Controllers/AccountController.php:1035 +#: app/modules/web/Controllers/AccountController.php:1082 +#: app/modules/web/Controllers/AccountFileController.php:255 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:128 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:167 +#: app/modules/web/Controllers/AccountManagerController.php:158 +#: app/modules/web/Controllers/ClientController.php:240 +#: app/modules/web/Controllers/ClientController.php:276 +#: app/modules/web/Controllers/ClientController.php:316 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:242 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:107 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 +#: lib/SP/Services/Import/CsvImportBase.php:165 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:48 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:56 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:68 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:70 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:41 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:49 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:44 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:52 +#: app/modules/web/themes/material-blue/views/account/account.inc:93 +#: app/modules/web/themes/material-blue/views/account/account.inc:95 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:40 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:45 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 +msgid "Client" +msgstr "Client" + +#: app/modules/api/Controllers/AccountController.php:106 +#: app/modules/web/Controllers/AccountController.php:667 +#: app/modules/web/Controllers/AccountController.php:727 +msgid "Password viewed" +msgstr "Password viewed" + +#: app/modules/api/Controllers/AccountController.php:142 +#: app/modules/api/Controllers/AccountController.php:148 +#: app/modules/web/Controllers/AccountController.php:936 +#: app/modules/web/Controllers/AccountController.php:947 +#: app/modules/web/Controllers/UserController.php:456 +#: app/modules/web/Controllers/UserController.php:460 +#: app/modules/web/Controllers/UserPassResetController.php:220 +#: app/modules/web/Controllers/UserPassResetController.php:228 +msgid "Password updated" +msgstr "Password updated" + +#: app/modules/api/Controllers/AccountController.php:192 +#: app/modules/api/Controllers/AccountController.php:198 +#: app/modules/web/Controllers/AccountController.php:842 +#: app/modules/web/Controllers/AccountController.php:853 +msgid "Account created" +msgstr "Account created" + +#: app/modules/api/Controllers/AccountController.php:243 +#: app/modules/api/Controllers/AccountController.php:249 +#: app/modules/web/Controllers/AccountController.php:891 +#: app/modules/web/Controllers/AccountController.php:902 +msgid "Account updated" +msgstr "Account updated" + +#: app/modules/api/Controllers/AccountController.php:318 +#: app/modules/api/Controllers/AccountController.php:324 +#: app/modules/web/Controllers/AccountController.php:1033 +#: app/modules/web/Controllers/AccountController.php:1038 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:126 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:131 +#: app/modules/web/Controllers/AccountManagerController.php:156 +#: app/modules/web/Controllers/AccountManagerController.php:161 +msgid "Account removed" +msgstr "Account removed" + +#: app/modules/api/Controllers/CategoryController.php:66 +msgid "Category displayed" +msgstr "Category displayed" + +#: app/modules/api/Controllers/CategoryController.php:95 +#: app/modules/api/Controllers/CategoryController.php:100 +#: app/modules/web/Controllers/CategoryController.php:280 +#: app/modules/web/Controllers/CategoryController.php:284 +msgid "Category added" +msgstr "Category added" + +#: app/modules/api/Controllers/CategoryController.php:125 +#: app/modules/api/Controllers/CategoryController.php:130 +#: app/modules/web/Controllers/CategoryController.php:324 +#: app/modules/web/Controllers/CategoryController.php:328 +msgid "Category updated" +msgstr "Category updated" + +#: app/modules/api/Controllers/CategoryController.php:154 +#: app/modules/api/Controllers/CategoryController.php:159 +#: app/modules/web/Controllers/CategoryController.php:242 +#: app/modules/web/Controllers/CategoryController.php:246 +msgid "Category deleted" +msgstr "Category deleted" + +#: app/modules/api/Controllers/ClientController.php:67 +msgid "Client displayed" +msgstr "Client displayed" + +#: app/modules/api/Controllers/ClientController.php:97 +#: app/modules/api/Controllers/ClientController.php:102 +#: app/modules/web/Controllers/ClientController.php:275 +#: app/modules/web/Controllers/ClientController.php:279 +#: lib/SP/Services/Import/KeepassImport.php:79 +msgid "Client added" +msgstr "Client added" + +#: app/modules/api/Controllers/ClientController.php:128 +#: app/modules/api/Controllers/ClientController.php:133 +#: app/modules/web/Controllers/ClientController.php:315 +#: app/modules/web/Controllers/ClientController.php:319 +msgid "Client updated" +msgstr "Client updated" + +#: app/modules/api/Controllers/ClientController.php:157 +#: app/modules/api/Controllers/ClientController.php:162 +#: app/modules/web/Controllers/ClientController.php:239 +#: app/modules/web/Controllers/ClientController.php:243 +msgid "Client deleted" +msgstr "Client deleted" + +#: app/modules/api/Controllers/ConfigController.php:59 +#: app/modules/web/Controllers/ConfigBackupController.php:70 +msgid "Application and database backup completed successfully" +msgstr "Application and database backup completed successfully" + +#: app/modules/api/Controllers/ConfigController.php:60 +#: app/modules/api/Controllers/ConfigController.php:85 +#: app/modules/api/Controllers/Help/ConfigHelp.php:43 +#: app/modules/api/Controllers/Help/ConfigHelp.php:54 +msgid "Path" +msgstr "Path" + +#: app/modules/api/Controllers/ConfigController.php:63 +#: app/modules/web/Controllers/ConfigBackupController.php:73 +msgid "Backup process finished" +msgstr "Backup process finished" + +#: app/modules/api/Controllers/ConfigController.php:84 +#: app/modules/web/Controllers/ConfigBackupController.php:98 +msgid "sysPass XML export" +msgstr "sysPass XML export" + +#: app/modules/api/Controllers/ConfigController.php:93 +#: app/modules/api/Controllers/ConfigController.php:96 +#: app/modules/web/Controllers/ConfigBackupController.php:108 +#: app/modules/web/Controllers/ConfigBackupController.php:136 +msgid "Export process finished" +msgstr "Export process finished" + +#: app/modules/api/Controllers/ControllerBase.php:150 +#: lib/SP/Services/Api/ApiService.php:189 +msgid "Unauthorized access" +msgstr "Unauthorized access" + +#: app/modules/api/Controllers/Help/AccountHelp.php:43 +#: app/modules/api/Controllers/Help/AccountHelp.php:54 +#: app/modules/api/Controllers/Help/AccountHelp.php:67 +#: app/modules/api/Controllers/Help/AccountHelp.php:105 +#: app/modules/api/Controllers/Help/AccountHelp.php:144 +msgid "Account Id" +msgstr "Account Id" + +#: app/modules/api/Controllers/Help/AccountHelp.php:55 +#: app/modules/api/Controllers/Help/AccountHelp.php:68 +#: app/modules/api/Controllers/Help/AccountHelp.php:81 +msgid "Token's password" +msgstr "Token's password" + +#: app/modules/api/Controllers/Help/AccountHelp.php:56 +msgid "Send details in the response" +msgstr "Send details in the response" + +#: app/modules/api/Controllers/Help/AccountHelp.php:69 +#: app/modules/api/Controllers/Help/AccountHelp.php:85 +#: app/modules/api/Controllers/Help/ConfigHelp.php:55 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:87 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:95 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:108 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:107 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:110 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:121 +#: app/modules/web/themes/material-blue/views/account/account.inc:172 +#: app/modules/web/themes/material-blue/views/account/account.inc:181 +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:50 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:318 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:321 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:91 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:185 +#: app/modules/web/themes/material-blue/views/config/mail.inc:137 +#: app/modules/web/themes/material-blue/views/config/mail.inc:146 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:152 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:162 +#: app/modules/web/themes/material-blue/views/install/index.inc:53 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:68 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:114 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:123 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:61 +#: app/modules/web/themes/material-blue/views/login/index.inc:40 +#: app/modules/web/themes/material-blue/views/login/index.inc:106 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:34 +msgid "Password" +msgstr "Password" + +#: app/modules/api/Controllers/Help/AccountHelp.php:70 +#: app/modules/api/Controllers/Help/AccountHelp.php:91 +#: app/modules/api/Controllers/Help/AccountHelp.php:114 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:114 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:129 +#: app/modules/web/themes/material-blue/views/account/account.inc:201 +#: app/modules/web/themes/material-blue/views/account/details.inc:94 +#: app/modules/web/themes/material-blue/views/account/details.inc:96 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:274 +msgid "Password Expiry Date" +msgstr "Password Expiry Date" + +#: app/modules/api/Controllers/Help/AccountHelp.php:82 +#: app/modules/api/Controllers/Help/AccountHelp.php:106 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:43 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:63 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:36 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:39 +#: app/modules/web/themes/material-blue/views/account/account.inc:88 +msgid "Account name" +msgstr "Account name" + +#: app/modules/api/Controllers/Help/AccountHelp.php:83 +#: app/modules/api/Controllers/Help/AccountHelp.php:107 +#: app/modules/api/Controllers/Help/CategoryHelp.php:43 +#: app/modules/api/Controllers/Help/CategoryHelp.php:66 +#: app/modules/api/Controllers/Help/CategoryHelp.php:91 +msgid "Category Id" +msgstr "Category Id" + +#: app/modules/api/Controllers/Help/AccountHelp.php:84 +#: app/modules/api/Controllers/Help/AccountHelp.php:108 +#: app/modules/api/Controllers/Help/ClientHelp.php:43 +#: app/modules/api/Controllers/Help/ClientHelp.php:67 +#: app/modules/api/Controllers/Help/ClientHelp.php:93 +msgid "Client Id" +msgstr "Client Id" + +#: app/modules/api/Controllers/Help/AccountHelp.php:86 +#: app/modules/api/Controllers/Help/AccountHelp.php:109 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:124 +#: app/modules/web/themes/material-blue/views/account/account.inc:166 +msgid "Access user" +msgstr "Access user" + +#: app/modules/api/Controllers/Help/AccountHelp.php:87 +#: app/modules/api/Controllers/Help/AccountHelp.php:110 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:110 +#: app/modules/web/themes/material-blue/views/account/account.inc:153 +msgid "Access URL or IP" +msgstr "Access URL or IP" + +#: app/modules/api/Controllers/Help/AccountHelp.php:88 +#: app/modules/api/Controllers/Help/AccountHelp.php:111 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:154 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:103 +#: app/modules/web/themes/material-blue/views/account/account.inc:233 +msgid "Notes about the account" +msgstr "Notes about the account" + +#: app/modules/api/Controllers/Help/AccountHelp.php:89 +#: app/modules/api/Controllers/Help/AccountHelp.php:112 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:228 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:131 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:35 +msgid "Private Account" +msgstr "Private Account" + +#: app/modules/api/Controllers/Help/AccountHelp.php:90 +#: app/modules/api/Controllers/Help/AccountHelp.php:113 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:246 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:55 +msgid "Private Account for Group" +msgstr "Private Account for Group" + +#: app/modules/api/Controllers/Help/AccountHelp.php:92 +#: app/modules/api/Controllers/Help/AccountHelp.php:115 +#: app/modules/web/themes/material-blue/views/account/account.inc:283 +#: app/modules/web/themes/material-blue/views/account/account.inc:285 +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:19 +msgid "Linked Account" +msgstr "Linked Account" + +#: app/modules/api/Controllers/Help/AccountHelp.php:93 +#: app/modules/api/Controllers/Help/AccountHelp.php:116 +msgid "Array with tags id" +msgstr "Array with tags id" + +#: app/modules/api/Controllers/Help/AccountHelp.php:94 +#: app/modules/api/Controllers/Help/AccountHelp.php:117 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:43 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:67 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:93 +msgid "Group Id" +msgstr "Group Id" + +#: app/modules/api/Controllers/Help/AccountHelp.php:128 +#: app/modules/api/Controllers/Help/CategoryHelp.php:79 +#: app/modules/api/Controllers/Help/ClientHelp.php:81 +#: app/modules/api/Controllers/Help/TagHelp.php:77 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:81 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:34 +msgid "Text to search for" +msgstr "Text to search for" + +#: app/modules/api/Controllers/Help/AccountHelp.php:129 +#: app/modules/api/Controllers/Help/CategoryHelp.php:80 +#: app/modules/api/Controllers/Help/ClientHelp.php:82 +#: app/modules/api/Controllers/Help/TagHelp.php:78 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:82 +msgid "Number of results to display" +msgstr "Number of results to display" + +#: app/modules/api/Controllers/Help/AccountHelp.php:130 +msgid "Category Id to filter on" +msgstr "Category Id to filter on" + +#: app/modules/api/Controllers/Help/AccountHelp.php:131 +msgid "Client Id to filter on" +msgstr "Client Id to filter on" + +#: app/modules/api/Controllers/Help/AccountHelp.php:132 +msgid "Array with tags id for filtering" +msgstr "Array with tags id for filtering" + +#: app/modules/api/Controllers/Help/AccountHelp.php:133 +msgid "Filtering operator" +msgstr "Filtering operator" + +#: app/modules/api/Controllers/Help/CategoryHelp.php:54 +#: app/modules/api/Controllers/Help/CategoryHelp.php:67 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:37 +msgid "Category name" +msgstr "Category name" + +#: app/modules/api/Controllers/Help/CategoryHelp.php:55 +#: app/modules/api/Controllers/Help/CategoryHelp.php:68 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:50 +msgid "Category description" +msgstr "Category description" + +#: app/modules/api/Controllers/Help/ClientHelp.php:54 +#: app/modules/api/Controllers/Help/ClientHelp.php:68 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:37 +msgid "Client name" +msgstr "Client name" + +#: app/modules/api/Controllers/Help/ClientHelp.php:55 +#: app/modules/api/Controllers/Help/ClientHelp.php:69 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:51 +msgid "Client description" +msgstr "Client description" + +#: app/modules/api/Controllers/Help/ClientHelp.php:56 +#: app/modules/api/Controllers/Help/ClientHelp.php:70 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:155 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:76 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:119 +msgid "Global" +msgstr "Global" + +#: app/modules/api/Controllers/Help/TagHelp.php:43 +#: app/modules/api/Controllers/Help/TagHelp.php:65 +#: app/modules/api/Controllers/Help/TagHelp.php:89 +msgid "Tag Id" +msgstr "Tag Id" + +#: app/modules/api/Controllers/Help/TagHelp.php:54 +#: app/modules/api/Controllers/Help/TagHelp.php:66 +#: app/modules/web/themes/material-blue/views/itemshow/tag.inc:36 +msgid "Tag name" +msgstr "Tag name" + +#: app/modules/api/Controllers/Help/UserGroupHelp.php:54 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:68 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:40 +msgid "Group name" +msgstr "Group name" + +#: app/modules/api/Controllers/Help/UserGroupHelp.php:55 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:69 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:54 +msgid "Group description" +msgstr "Group description" + +#: app/modules/api/Controllers/Help/UserGroupHelp.php:56 +#: app/modules/api/Controllers/Help/UserGroupHelp.php:70 +msgid "Array with users Id" +msgstr "Array with users Id" + +#: app/modules/api/Controllers/TagController.php:65 +msgid "Tag displayed" +msgstr "Tag displayed" + +#: app/modules/api/Controllers/TagController.php:93 +#: app/modules/api/Controllers/TagController.php:98 +#: app/modules/web/Controllers/TagController.php:259 +msgid "Tag added" +msgstr "Tag added" + +#: app/modules/api/Controllers/TagController.php:122 +#: app/modules/api/Controllers/TagController.php:127 +#: app/modules/web/Controllers/TagController.php:294 +msgid "Tag updated" +msgstr "Tag updated" + +#: app/modules/api/Controllers/TagController.php:151 +#: app/modules/api/Controllers/TagController.php:156 +#: app/modules/web/Controllers/TagController.php:229 +msgid "Tag removed" +msgstr "Tag removed" + +#: app/modules/api/Controllers/UserGroupController.php:65 +msgid "Group viewed" +msgstr "Group viewed" + +#: app/modules/api/Controllers/UserGroupController.php:95 +#: app/modules/api/Controllers/UserGroupController.php:100 +#: app/modules/web/Controllers/UserGroupController.php:290 +#: app/modules/web/Controllers/UserGroupController.php:294 +msgid "Group added" +msgstr "Group added" + +#: app/modules/api/Controllers/UserGroupController.php:126 +#: app/modules/api/Controllers/UserGroupController.php:132 +#: app/modules/web/Controllers/UserGroupController.php:333 +#: app/modules/web/Controllers/UserGroupController.php:338 +msgid "Group updated" +msgstr "Group updated" + +#: app/modules/api/Controllers/UserGroupController.php:156 +#: app/modules/api/Controllers/UserGroupController.php:162 +#: app/modules/web/Controllers/UserGroupController.php:251 +#: app/modules/web/Controllers/UserGroupController.php:256 +msgid "Group deleted" +msgstr "Group deleted" + +#: app/modules/api/Init.php:156 +msgid "Updating needed" +msgstr "Updating needed" + +#: app/modules/web/Controllers/AccountController.php:169 +#: app/modules/web/Controllers/AccountController.php:236 +#: app/modules/web/Controllers/AccountController.php:567 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:32 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:67 +msgid "Account Details" +msgstr "Account Details" + +#: app/modules/web/Controllers/AccountController.php:262 +msgid "Link viewed" +msgstr "Link viewed" + +#: app/modules/web/Controllers/AccountController.php:263 +#: app/modules/web/Controllers/AccountController.php:668 +#: app/modules/web/Controllers/AccountController.php:728 +#: app/modules/web/Controllers/AccountController.php:772 +#: app/modules/web/Controllers/AccountController.php:809 +#: app/modules/web/Controllers/AccountController.php:843 +#: app/modules/web/Controllers/AccountController.php:892 +#: app/modules/web/Controllers/AccountController.php:937 +#: app/modules/web/Controllers/AccountController.php:980 +#: app/modules/web/Controllers/AccountController.php:1034 +#: app/modules/web/Controllers/AccountController.php:1081 +#: app/modules/web/Controllers/AccountFileController.php:254 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:127 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:166 +#: app/modules/web/Controllers/AccountManagerController.php:157 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:106 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:33 +#: app/modules/web/themes/material-blue/views/account/account.inc:37 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:29 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:31 +msgid "Account" +msgstr "Account" + +#: app/modules/web/Controllers/AccountController.php:265 +msgid "Agent" +msgstr "Agent" + +#: app/modules/web/Controllers/AccountController.php:266 +msgid "HTTPS" +msgstr "HTTPS" + +#: app/modules/web/Controllers/AccountController.php:266 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:215 +msgid "ON" +msgstr "ON" + +#: app/modules/web/Controllers/AccountController.php:266 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 +msgid "OFF" +msgstr "OFF" + +#: app/modules/web/Controllers/AccountController.php:267 +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 +msgid "IP" +msgstr "IP" + +#: app/modules/web/Controllers/AccountController.php:268 +#: app/modules/web/Controllers/AccountController.php:1084 +#: app/modules/web/Controllers/PublicLinkController.php:273 +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:91 +msgid "Link" +msgstr "Link" + +#: app/modules/web/Controllers/AccountController.php:301 +#: app/modules/web/Controllers/AccountController.php:353 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:276 +msgid "New Account" +msgstr "New Account" + +#: app/modules/web/Controllers/AccountController.php:407 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:24 +msgid "Edit Account" +msgstr "Edit Account" + +#: app/modules/web/Controllers/AccountController.php:462 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +msgid "Remove Account" +msgstr "Remove Account" + +#: app/modules/web/Controllers/AccountController.php:515 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +msgid "Edit Account Password" +msgstr "Edit Account Password" + +#: app/modules/web/Controllers/AccountController.php:771 +#: app/modules/web/Controllers/AccountController.php:808 +msgid "Password copied" +msgstr "Password copied" + +#: app/modules/web/Controllers/AccountController.php:979 +#: app/modules/web/Controllers/AccountController.php:990 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:165 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:170 +msgid "Account restored" +msgstr "Account restored" + +#: app/modules/web/Controllers/AccountController.php:1019 +#: app/modules/web/Controllers/AccountController.php:1022 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:115 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:118 +#: app/modules/web/Controllers/AccountManagerController.php:142 +#: app/modules/web/Controllers/AccountManagerController.php:145 +msgid "Accounts removed" +msgstr "Accounts removed" + +#: app/modules/web/Controllers/AccountController.php:1063 +#: app/modules/web/Forms/NotificationForm.php:106 +msgid "A description is needed" +msgstr "A description is needed" + +#: app/modules/web/Controllers/AccountController.php:1079 +#: lib/SP/Providers/Notification/NotificationHandler.php:127 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:57 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:49 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:51 +msgid "Request" +msgstr "Request" + +#: app/modules/web/Controllers/AccountController.php:1080 +msgid "Requester" +msgstr "Requester" + +#: app/modules/web/Controllers/AccountController.php:1083 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:130 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:42 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:43 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:46 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:72 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:82 +msgid "Description" +msgstr "Description" + +#: app/modules/web/Controllers/AccountController.php:1099 +msgid "Request done" +msgstr "Request done" + +#: app/modules/web/Controllers/AccountFavoriteController.php:57 +msgid "Favorite added" +msgstr "Favorite added" + +#: app/modules/web/Controllers/AccountFavoriteController.php:77 +msgid "Favorite deleted" +msgstr "Favorite deleted" + +#: app/modules/web/Controllers/AccountFileController.php:83 +#: app/modules/web/Controllers/AccountFileController.php:146 +msgid "File does not exist" +msgstr "File does not exist" + +#: app/modules/web/Controllers/AccountFileController.php:96 +#: app/modules/web/Controllers/AccountFileController.php:112 +msgid "File viewed" +msgstr "File viewed" + +#: app/modules/web/Controllers/AccountFileController.php:97 +#: app/modules/web/Controllers/AccountFileController.php:113 +#: app/modules/web/Controllers/AccountFileController.php:152 +#: app/modules/web/Controllers/AccountFileController.php:253 +#: app/modules/web/Controllers/AccountFileController.php:388 +#: app/modules/web/Controllers/ConfigBackupController.php:165 +#: app/modules/web/Controllers/ConfigBackupController.php:211 +#: app/modules/web/Controllers/ConfigBackupController.php:257 +#: app/modules/web/Controllers/ConfigGeneralController.php:212 +#: app/modules/web/Controllers/ConfigGeneralController.php:253 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:133 +#: app/modules/web/themes/material-blue/views/config/import.inc:80 +msgid "File" +msgstr "File" + +#: app/modules/web/Controllers/AccountFileController.php:126 +msgid "File not supported for preview" +msgstr "File not supported for preview" + +#: app/modules/web/Controllers/AccountFileController.php:151 +#: app/modules/web/Controllers/ConfigBackupController.php:164 +#: app/modules/web/Controllers/ConfigBackupController.php:210 +#: app/modules/web/Controllers/ConfigBackupController.php:256 +#: app/modules/web/Controllers/ConfigGeneralController.php:211 +#: app/modules/web/Controllers/ConfigGeneralController.php:252 +msgid "File downloaded" +msgstr "File downloaded" + +#: app/modules/web/Controllers/AccountFileController.php:197 +msgid "INVALID QUERY" +msgstr "INVALID QUERY" + +#: app/modules/web/Controllers/AccountFileController.php:203 +msgid "There aren't any allowed MIME types" +msgstr "There aren't any allowed MIME types" + +#: app/modules/web/Controllers/AccountFileController.php:218 +msgid "Invalid file" +msgstr "Invalid file" + +#: app/modules/web/Controllers/AccountFileController.php:220 +#, php-format +msgid "File: %s" +msgstr "File: %s" + +#: app/modules/web/Controllers/AccountFileController.php:232 +msgid "File size exceeded" +msgstr "File size exceeded" + +#: app/modules/web/Controllers/AccountFileController.php:234 +#, php-format +msgid "Maximum size: %d KB" +msgstr "Maximum size: %d KB" + +#: app/modules/web/Controllers/AccountFileController.php:240 +#: lib/SP/Services/Import/FileImport.php:106 +msgid "Internal error while reading the file" +msgstr "Internal error while reading the file" + +#: app/modules/web/Controllers/AccountFileController.php:252 +#: app/modules/web/Controllers/AccountFileController.php:261 +msgid "File saved" +msgstr "File saved" + +#: app/modules/web/Controllers/AccountFileController.php:256 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:109 +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:128 +#: app/modules/web/Controllers/ItemPresetController.php:343 +#: app/modules/web/Controllers/ItemPresetController.php:386 +#: lib/SP/Services/Auth/LoginService.php:490 +#: lib/SP/Services/Auth/LoginService.php:568 +#: lib/SP/Services/Auth/LoginService.php:614 +#: lib/SP/Services/Auth/LoginService.php:663 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:44 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:46 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:31 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:39 +msgid "Type" +msgstr "Type" + +#: app/modules/web/Controllers/AccountFileController.php:257 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:110 +msgid "Size" +msgstr "Size" + +#: app/modules/web/Controllers/AccountFileController.php:295 +#: lib/SP/Services/Import/FileImport.php:95 +msgid "File type not allowed" +msgstr "File type not allowed" + +#: app/modules/web/Controllers/AccountFileController.php:297 +#: lib/SP/Services/Import/FileImport.php:97 +#, php-format +msgid "MIME type: %s" +msgstr "MIME type: %s" + +#: app/modules/web/Controllers/AccountFileController.php:316 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:71 +#: app/modules/web/Controllers/AccountManagerController.php:86 +#: app/modules/web/Controllers/AccountManagerController.php:220 +#: app/modules/web/Controllers/AuthTokenController.php:81 +#: app/modules/web/Controllers/AuthTokenController.php:121 +#: app/modules/web/Controllers/AuthTokenController.php:188 +#: app/modules/web/Controllers/AuthTokenController.php:223 +#: app/modules/web/Controllers/AuthTokenController.php:270 +#: app/modules/web/Controllers/AuthTokenController.php:310 +#: app/modules/web/Controllers/AuthTokenController.php:364 +#: app/modules/web/Controllers/CategoryController.php:80 +#: app/modules/web/Controllers/CategoryController.php:117 +#: app/modules/web/Controllers/CategoryController.php:183 +#: app/modules/web/Controllers/CategoryController.php:218 +#: app/modules/web/Controllers/CategoryController.php:265 +#: app/modules/web/Controllers/CategoryController.php:309 +#: app/modules/web/Controllers/CategoryController.php:353 +#: app/modules/web/Controllers/ClientController.php:81 +#: app/modules/web/Controllers/ClientController.php:118 +#: app/modules/web/Controllers/ClientController.php:184 +#: app/modules/web/Controllers/ClientController.php:218 +#: app/modules/web/Controllers/ClientController.php:262 +#: app/modules/web/Controllers/ClientController.php:304 +#: app/modules/web/Controllers/ClientController.php:344 +#: app/modules/web/Controllers/CustomFieldController.php:81 +#: app/modules/web/Controllers/CustomFieldController.php:118 +#: app/modules/web/Controllers/CustomFieldController.php:182 +#: app/modules/web/Controllers/CustomFieldController.php:216 +#: app/modules/web/Controllers/CustomFieldController.php:252 +#: app/modules/web/Controllers/CustomFieldController.php:293 +#: app/modules/web/Controllers/CustomFieldController.php:334 +#: app/modules/web/Controllers/EventlogController.php:114 +#: app/modules/web/Controllers/ItemPresetController.php:82 +#: app/modules/web/Controllers/ItemPresetController.php:171 +#: app/modules/web/Controllers/ItemPresetController.php:211 +#: app/modules/web/Controllers/ItemPresetController.php:252 +#: app/modules/web/Controllers/ItemPresetController.php:286 +#: app/modules/web/Controllers/ItemPresetController.php:329 +#: app/modules/web/Controllers/ItemPresetController.php:372 +#: app/modules/web/Controllers/NotificationController.php:118 +#: app/modules/web/Controllers/NotificationController.php:183 +#: app/modules/web/Controllers/NotificationController.php:201 +#: app/modules/web/Controllers/NotificationController.php:235 +#: app/modules/web/Controllers/NotificationController.php:320 +#: app/modules/web/Controllers/NotificationController.php:351 +#: app/modules/web/Controllers/NotificationController.php:388 +#: app/modules/web/Controllers/PluginController.php:124 +#: app/modules/web/Controllers/PluginController.php:146 +#: app/modules/web/Controllers/PluginController.php:299 +#: app/modules/web/Controllers/PublicLinkController.php:84 +#: app/modules/web/Controllers/PublicLinkController.php:121 +#: app/modules/web/Controllers/PublicLinkController.php:187 +#: app/modules/web/Controllers/PublicLinkController.php:217 +#: app/modules/web/Controllers/PublicLinkController.php:251 +#: app/modules/web/Controllers/PublicLinkController.php:296 +#: app/modules/web/Controllers/PublicLinkController.php:332 +#: app/modules/web/Controllers/PublicLinkController.php:378 +#: app/modules/web/Controllers/TagController.php:78 +#: app/modules/web/Controllers/TagController.php:115 +#: app/modules/web/Controllers/TagController.php:177 +#: app/modules/web/Controllers/TagController.php:211 +#: app/modules/web/Controllers/TagController.php:249 +#: app/modules/web/Controllers/TagController.php:284 +#: app/modules/web/Controllers/TagController.php:319 +#: app/modules/web/Controllers/UserController.php:86 +#: app/modules/web/Controllers/UserController.php:123 +#: app/modules/web/Controllers/UserController.php:210 +#: app/modules/web/Controllers/UserController.php:245 +#: app/modules/web/Controllers/UserController.php:283 +#: app/modules/web/Controllers/UserController.php:331 +#: app/modules/web/Controllers/UserController.php:398 +#: app/modules/web/Controllers/UserController.php:444 +#: app/modules/web/Controllers/UserController.php:485 +#: app/modules/web/Controllers/UserGroupController.php:87 +#: app/modules/web/Controllers/UserGroupController.php:124 +#: app/modules/web/Controllers/UserGroupController.php:197 +#: app/modules/web/Controllers/UserGroupController.php:231 +#: app/modules/web/Controllers/UserGroupController.php:276 +#: app/modules/web/Controllers/UserGroupController.php:319 +#: app/modules/web/Controllers/UserGroupController.php:363 +#: app/modules/web/Controllers/UserProfileController.php:81 +#: app/modules/web/Controllers/UserProfileController.php:118 +#: app/modules/web/Controllers/UserProfileController.php:187 +#: app/modules/web/Controllers/UserProfileController.php:221 +#: app/modules/web/Controllers/UserProfileController.php:266 +#: app/modules/web/Controllers/UserProfileController.php:311 +#: app/modules/web/Controllers/UserProfileController.php:355 +#: lib/SP/Core/Acl/UnauthorizedActionException.php:47 +#: lib/SP/Util/ErrorUtil.php:161 +msgid "You don't have permission to do this operation" +msgstr "You don't have permission to do this operation" + +#: app/modules/web/Controllers/AccountFileController.php:379 +#: app/modules/web/Controllers/AccountFileController.php:382 +msgid "Files deleted" +msgstr "Files deleted" + +#: app/modules/web/Controllers/AccountFileController.php:387 +msgid "File deleted" +msgstr "File deleted" + +#: app/modules/web/Controllers/AccountFileController.php:393 +msgid "File Deleted" +msgstr "File Deleted" + +#: app/modules/web/Controllers/AccountFileController.php:431 +msgid "Files management disabled" +msgstr "Files management disabled" + +#: app/modules/web/Controllers/AccountFileController.php:450 +msgid "There are no linked files for the account" +msgstr "There are no linked files for the account" + +#: app/modules/web/Controllers/AccountManagerController.php:198 +#: app/modules/web/Controllers/AccountManagerController.php:201 +#: lib/SP/Services/Account/AccountCryptService.php:198 +msgid "Accounts updated" +msgstr "Accounts updated" + +#: app/modules/web/Controllers/AccountManagerController.php:223 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +msgid "Bulk Update" +msgstr "Bulk Update" + +#: app/modules/web/Controllers/AuthTokenController.php:124 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 +msgid "New Authorization" +msgstr "New Authorization" + +#: app/modules/web/Controllers/AuthTokenController.php:191 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 +msgid "Edit Authorization" +msgstr "Edit Authorization" + +#: app/modules/web/Controllers/AuthTokenController.php:234 +#: app/modules/web/Controllers/AuthTokenController.php:237 +msgid "Authorizations deleted" +msgstr "Authorizations deleted" + +#: app/modules/web/Controllers/AuthTokenController.php:247 +#: app/modules/web/Controllers/AuthTokenController.php:251 +msgid "Authorization deleted" +msgstr "Authorization deleted" + +#: app/modules/web/Controllers/AuthTokenController.php:248 +#: app/modules/web/Controllers/AuthTokenController.php:324 +#: app/modules/web/Controllers/AuthTokenController.php:333 +#: app/modules/web/Controllers/AuthTokenController.php:376 +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:72 +msgid "Authorization" +msgstr "Authorization" + +#: app/modules/web/Controllers/AuthTokenController.php:285 +msgid "Authorization added" +msgstr "Authorization added" + +#: app/modules/web/Controllers/AuthTokenController.php:323 +#: app/modules/web/Controllers/AuthTokenController.php:332 +#: app/modules/web/Controllers/AuthTokenController.php:339 +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 +msgid "Authorization updated" +msgstr "Authorization updated" + +#: app/modules/web/Controllers/AuthTokenController.php:367 +msgid "View Authorization" +msgstr "View Authorization" + +#: app/modules/web/Controllers/AuthTokenController.php:375 +msgid "Authorization viewed" +msgstr "Authorization viewed" + +#: app/modules/web/Controllers/CategoryController.php:120 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: app/modules/web/themes/material-blue/views/account/account.inc:135 +msgid "New Category" +msgstr "New Category" + +#: app/modules/web/Controllers/CategoryController.php:186 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +msgid "Edit Category" +msgstr "Edit Category" + +#: app/modules/web/Controllers/CategoryController.php:229 +#: app/modules/web/Controllers/CategoryController.php:232 +msgid "Categories deleted" +msgstr "Categories deleted" + +#: app/modules/web/Controllers/CategoryController.php:243 +#: app/modules/web/Controllers/CategoryController.php:281 +#: app/modules/web/Controllers/CategoryController.php:325 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:256 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 +#: lib/SP/Services/Import/KeepassImport.php:106 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:84 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:86 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:54 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:62 +#: app/modules/web/themes/material-blue/views/account/account.inc:119 +#: app/modules/web/themes/material-blue/views/account/account.inc:121 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:80 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:61 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:63 +msgid "Category" +msgstr "Category" + +#: app/modules/web/Controllers/CategoryController.php:356 +msgid "View Category" +msgstr "View Category" + +#: app/modules/web/Controllers/ClientController.php:121 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: app/modules/web/themes/material-blue/views/account/account.inc:109 +msgid "New Client" +msgstr "New Client" + +#: app/modules/web/Controllers/ClientController.php:187 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +msgid "Edit Client" +msgstr "Edit Client" + +#: app/modules/web/Controllers/ClientController.php:228 +#: app/modules/web/Controllers/ClientController.php:231 +msgid "Clients deleted" +msgstr "Clients deleted" + +#: app/modules/web/Controllers/ClientController.php:347 +msgid "View Client" +msgstr "View Client" + +#: app/modules/web/Controllers/ConfigAccountController.php:74 +msgid "Maximum size per file is 16MB" +msgstr "Maximum size per file is 16MB" + +#: app/modules/web/Controllers/ConfigAccountController.php:82 +msgid "Files enabled" +msgstr "Files enabled" + +#: app/modules/web/Controllers/ConfigAccountController.php:87 +msgid "Files disabled" +msgstr "Files disabled" + +#: app/modules/web/Controllers/ConfigAccountController.php:100 +msgid "Public links enabled" +msgstr "Public links enabled" + +#: app/modules/web/Controllers/ConfigAccountController.php:105 +msgid "Public links disabled" +msgstr "Public links disabled" + +#: app/modules/web/Controllers/ConfigBackupController.php:59 +#: app/modules/web/Controllers/ConfigBackupController.php:197 +#: app/modules/web/Controllers/ConfigBackupController.php:243 +#: app/modules/web/Controllers/ConfigEncryptionController.php:131 +#: app/modules/web/Controllers/ConfigEncryptionController.php:194 +#: app/modules/web/Controllers/ConfigGeneralController.php:200 +#: app/modules/web/Controllers/ConfigGeneralController.php:246 +#: app/modules/web/Controllers/ConfigImportController.php:61 +#: app/modules/web/Controllers/ConfigLdapController.php:237 +#: app/modules/web/Controllers/Traits/ConfigTrait.php:56 +#: app/modules/web/Forms/UserForm.php:131 +#: app/modules/web/Forms/UserForm.php:153 +#: app/modules/web/Forms/UserForm.php:171 +msgid "Ey, this is a DEMO!!" +msgstr "Ey, this is a DEMO!!" + +#: app/modules/web/Controllers/ConfigBackupController.php:92 +#: app/modules/web/Controllers/UserPassResetController.php:203 +#: app/modules/web/Forms/AccountForm.php:136 +#: app/modules/web/Forms/UserForm.php:161 +msgid "Passwords do not match" +msgstr "Passwords do not match" + +#: app/modules/web/Controllers/ConfigBackupController.php:123 +msgid "Verification of exported data finished" +msgstr "Verification of exported data finished" + +#: app/modules/web/Controllers/ConfigBackupController.php:124 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:124 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:262 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:311 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:336 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:167 +#: app/modules/web/themes/material-blue/views/config/info.inc:61 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:41 +msgid "Version" +msgstr "Version" + +#: app/modules/web/Controllers/ConfigBackupController.php:125 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:21 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:106 +msgid "Encrypted" +msgstr "Encrypted" + +#: app/modules/web/Controllers/ConfigBackupController.php:125 +#: app/modules/web/themes/material-blue/views/config/info.inc:152 +msgid "Yes" +msgstr "Yes" + +#: app/modules/web/Controllers/ConfigBackupController.php:125 +#: app/modules/web/themes/material-blue/views/config/info.inc:152 +msgid "No" +msgstr "No" + +#: app/modules/web/Controllers/ConfigBackupController.php:126 +#: app/modules/web/Controllers/ConfigManagerController.php:203 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: lib/SP/Providers/Notification/NotificationHandler.php:128 +#: lib/SP/Providers/Notification/NotificationHandler.php:159 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:79 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:33 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:429 +msgid "Accounts" +msgstr "Accounts" + +#: app/modules/web/Controllers/ConfigBackupController.php:127 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:81 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:361 +msgid "Clients" +msgstr "Clients" + +#: app/modules/web/Controllers/ConfigBackupController.php:128 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:80 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:327 +msgid "Categories" +msgstr "Categories" + +#: app/modules/web/Controllers/ConfigBackupController.php:129 +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: app/modules/web/themes/material-blue/views/account/account.inc:237 +#: app/modules/web/themes/material-blue/views/account/account.inc:239 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:109 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:344 +msgid "Tags" +msgstr "Tags" + +#: app/modules/web/Controllers/ConfigDokuWikiController.php:66 +msgid "Missing DokuWiki parameters" +msgstr "Missing DokuWiki parameters" + +#: app/modules/web/Controllers/ConfigDokuWikiController.php:78 +msgid "DokuWiki enabled" +msgstr "DokuWiki enabled" + +#: app/modules/web/Controllers/ConfigDokuWikiController.php:83 +msgid "DokuWiki disabled" +msgstr "DokuWiki disabled" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:80 +#: app/modules/web/Controllers/ConfigEncryptionController.php:180 +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:124 +#: lib/SP/Services/Auth/LoginService.php:325 +#: lib/SP/Services/Auth/LoginService.php:351 +#: lib/SP/Services/User/UpdatedMasterPassException.php:46 +#: lib/SP/Util/ErrorUtil.php:165 +msgid "Master password updated" +msgstr "Master password updated" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:81 +#: app/modules/web/Controllers/ConfigEncryptionController.php:181 +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:124 +#: lib/SP/Services/User/UpdatedMasterPassException.php:46 +#: lib/SP/Util/ErrorUtil.php:166 +msgid "Please, restart the session for update it" +msgstr "Please, restart the session for update it" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:88 +msgid "Master password not entered" +msgstr "Master password not entered" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:95 +msgid "The password update must be confirmed" +msgstr "The password update must be confirmed" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:102 +msgid "Passwords are the same" +msgstr "Passwords are the same" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:109 +msgid "Master passwords do not match" +msgstr "Master passwords do not match" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:116 +msgid "The current master password does not match" +msgstr "The current master password does not match" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:123 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:91 +msgid "Maintenance mode not enabled" +msgstr "Maintenance mode not enabled" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:124 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:91 +msgid "Please, enable it to avoid unwanted behavior from other sessions" +msgstr "Please, enable it to avoid unwanted behavior from other sessions" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:174 +msgid "Error while saving the Master Password's hash" +msgstr "Error while saving the Master Password's hash" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:201 +#: app/modules/web/Controllers/ConfigEncryptionController.php:203 +msgid "Master password hash updated" +msgstr "Master password hash updated" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:210 +msgid "Error while updating the master password hash" +msgstr "Error while updating the master password hash" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:239 +#: app/modules/web/Controllers/ConfigEncryptionController.php:249 +#: app/modules/web/Controllers/ConfigEncryptionController.php:255 +msgid "Temporary password generated" +msgstr "Temporary password generated" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:240 +#: app/modules/web/Controllers/ConfigMailController.php:164 +#: app/modules/web/Controllers/ConfigMailController.php:170 +#: lib/SP/Services/Mail/MailService.php:150 +msgid "Email sent" +msgstr "Email sent" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:250 +#: lib/SP/Services/Mail/MailService.php:82 +#: lib/SP/Services/Mail/MailService.php:160 +msgid "Error while sending the email" +msgstr "Error while sending the email" + +#: app/modules/web/Controllers/ConfigGeneralController.php:102 +msgid "Missing remote syslog parameters" +msgstr "Missing remote syslog parameters" + +#: app/modules/web/Controllers/ConfigGeneralController.php:110 +msgid "Remote syslog enabled" +msgstr "Remote syslog enabled" + +#: app/modules/web/Controllers/ConfigGeneralController.php:115 +msgid "Remote syslog disabled" +msgstr "Remote syslog disabled" + +#: app/modules/web/Controllers/ConfigGeneralController.php:128 +msgid "Missing Proxy parameters " +msgstr "Missing Proxy parameters " + +#: app/modules/web/Controllers/ConfigGeneralController.php:142 +msgid "Proxy enabled" +msgstr "Proxy enabled" + +#: app/modules/web/Controllers/ConfigGeneralController.php:147 +msgid "Proxy disabled" +msgstr "Proxy disabled" + +#: app/modules/web/Controllers/ConfigGeneralController.php:166 +msgid "Auth Basic enabled" +msgstr "Auth Basic enabled" + +#: app/modules/web/Controllers/ConfigGeneralController.php:172 +msgid "Auth Basic disabled" +msgstr "Auth Basic disabled" + +#: app/modules/web/Controllers/ConfigImportController.php:80 +msgid "Accounts imported" +msgstr "Accounts imported" + +#: app/modules/web/Controllers/ConfigImportController.php:86 +#: app/modules/web/Controllers/ConfigLdapController.php:279 +msgid "Import finished" +msgstr "Import finished" + +#: app/modules/web/Controllers/ConfigImportController.php:87 +#: app/modules/web/Controllers/ConfigImportController.php:94 +#: lib/SP/Services/Backup/FileBackupService.php:128 +#: lib/SP/Services/Export/XmlExportService.php:206 +msgid "Please check out the event log for more details" +msgstr "Please check out the event log for more details" + +#: app/modules/web/Controllers/ConfigImportController.php:93 +msgid "No accounts were imported" +msgstr "No accounts were imported" + +#: app/modules/web/Controllers/ConfigLdapController.php:76 +#: app/modules/web/Controllers/ConfigLdapController.php:152 +#: app/modules/web/Controllers/ConfigLdapController.php:191 +msgid "Missing LDAP parameters" +msgstr "Missing LDAP parameters" + +#: app/modules/web/Controllers/ConfigLdapController.php:95 +msgid "LDAP enabled" +msgstr "LDAP enabled" + +#: app/modules/web/Controllers/ConfigLdapController.php:100 +msgid "LDAP disabled" +msgstr "LDAP disabled" + +#: app/modules/web/Controllers/ConfigLdapController.php:102 +#: app/modules/web/Controllers/ConfigMailController.php:114 +msgid "No changes" +msgstr "No changes" + +#: app/modules/web/Controllers/ConfigLdapController.php:126 +#: app/modules/web/Controllers/ConfigLdapController.php:257 +msgid "Wrong LDAP parameters" +msgstr "Wrong LDAP parameters" + +#: app/modules/web/Controllers/ConfigLdapController.php:162 +#: app/modules/web/Controllers/ConfigLdapController.php:207 +msgid "Results" +msgstr "Results" + +#: app/modules/web/Controllers/ConfigLdapController.php:167 +#: app/modules/web/Controllers/ConfigLdapController.php:213 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:99 +msgid "LDAP connection OK" +msgstr "LDAP connection OK" + +#: app/modules/web/Controllers/ConfigLdapController.php:168 +#: app/modules/web/Controllers/ConfigLdapController.php:214 +#, php-format +msgid "Objects found: %d" +msgstr "Objects found: %d" + +#: app/modules/web/Controllers/ConfigLdapController.php:264 +msgid "LDAP Import" +msgstr "LDAP Import" + +#: app/modules/web/Controllers/ConfigLdapController.php:283 +msgid "There aren't any objects to synchronize" +msgstr "There aren't any objects to synchronize" + +#: app/modules/web/Controllers/ConfigLdapController.php:288 +msgid "LDAP users import finished" +msgstr "LDAP users import finished" + +#: app/modules/web/Controllers/ConfigLdapController.php:290 +#, php-format +msgid "Imported users: %d / %d" +msgstr "Imported users: %d / %d" + +#: app/modules/web/Controllers/ConfigLdapController.php:291 +#, php-format +msgid "Errors: %d" +msgstr "Errors: %d" + +#: app/modules/web/Controllers/ConfigMailController.php:77 +#: app/modules/web/Controllers/ConfigMailController.php:150 +msgid "Missing Mail parameters" +msgstr "Missing Mail parameters" + +#: app/modules/web/Controllers/ConfigMailController.php:105 +msgid "Mail enabled" +msgstr "Mail enabled" + +#: app/modules/web/Controllers/ConfigMailController.php:112 +msgid "Mail disabled" +msgstr "Mail disabled" + +#: app/modules/web/Controllers/ConfigMailController.php:165 +#: lib/SP/Services/Mail/MailService.php:151 +msgid "Recipient" +msgstr "Recipient" + +#: app/modules/web/Controllers/ConfigMailController.php:171 +msgid "Please, check your inbox" +msgstr "Please, check your inbox" + +#: app/modules/web/Controllers/ConfigManagerController.php:173 +#: app/modules/web/themes/material-blue/views/install/index.inc:144 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:28 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:484 +msgid "General" +msgstr "General" + +#: app/modules/web/Controllers/ConfigManagerController.php:218 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:22 +msgid "Wiki" +msgstr "Wiki" + +#: app/modules/web/Controllers/ConfigManagerController.php:245 +msgid "LDAP" +msgstr "LDAP" + +#: app/modules/web/Controllers/ConfigManagerController.php:271 +#: app/modules/web/themes/material-blue/views/config/mail.inc:18 +msgid "Mail" +msgstr "Mail" + +#: app/modules/web/Controllers/ConfigManagerController.php:312 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:501 +msgid "Encryption" +msgstr "Encryption" + +#: app/modules/web/Controllers/ConfigManagerController.php:340 +#: app/modules/web/themes/material-blue/views/config/backup.inc:68 +msgid "There aren't any backups available" +msgstr "There aren't any backups available" + +#: app/modules/web/Controllers/ConfigManagerController.php:350 +#: app/modules/web/themes/material-blue/views/config/backup.inc:142 +msgid "No export file found" +msgstr "No export file found" + +#: app/modules/web/Controllers/ConfigManagerController.php:353 +#: app/modules/web/themes/material-blue/views/config/backup.inc:31 +#: app/modules/web/themes/material-blue/views/config/backup.inc:86 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:518 +msgid "Backup" +msgstr "Backup" + +#: app/modules/web/Controllers/ConfigManagerController.php:376 +msgid "Import Accounts" +msgstr "Import Accounts" + +#: app/modules/web/Controllers/ConfigManagerController.php:398 +msgid "Not installed" +msgstr "Not installed" + +#: app/modules/web/Controllers/ConfigManagerController.php:408 +#: app/modules/web/themes/material-blue/inc/Icons.php:62 +msgid "Information" +msgstr "Information" + +#: app/modules/web/Controllers/ConfigWikiController.php:64 +msgid "Missing Wiki parameters" +msgstr "Missing Wiki parameters" + +#: app/modules/web/Controllers/ConfigWikiController.php:74 +msgid "Wiki enabled" +msgstr "Wiki enabled" + +#: app/modules/web/Controllers/ConfigWikiController.php:79 +msgid "Wiki disabled" +msgstr "Wiki disabled" + +#: app/modules/web/Controllers/CustomFieldController.php:121 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 +msgid "New Field" +msgstr "New Field" + +#: app/modules/web/Controllers/CustomFieldController.php:185 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 +msgid "Edit Field" +msgstr "Edit Field" + +#: app/modules/web/Controllers/CustomFieldController.php:223 +#: app/modules/web/Controllers/CustomFieldController.php:226 +msgid "Fields deleted" +msgstr "Fields deleted" + +#: app/modules/web/Controllers/CustomFieldController.php:232 +msgid "Field deleted" +msgstr "Field deleted" + +#: app/modules/web/Controllers/CustomFieldController.php:264 +#: app/modules/web/Controllers/CustomFieldController.php:268 +msgid "Field added" +msgstr "Field added" + +#: app/modules/web/Controllers/CustomFieldController.php:265 +#: app/modules/web/Controllers/CustomFieldController.php:306 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:98 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:190 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:254 +msgid "Field" +msgstr "Field" + +#: app/modules/web/Controllers/CustomFieldController.php:305 +#: app/modules/web/Controllers/CustomFieldController.php:309 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:75 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:189 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:253 +msgid "Field updated" +msgstr "Field updated" + +#: app/modules/web/Controllers/CustomFieldController.php:337 +msgid "View Field" +msgstr "View Field" + +#: app/modules/web/Controllers/ErrorController.php:109 +msgid "Application on maintenance" +msgstr "Application on maintenance" + +#: app/modules/web/Controllers/ErrorController.php:110 +msgid "It will be running shortly" +msgstr "It will be running shortly" + +#: app/modules/web/Controllers/ErrorController.php:125 +#: lib/SP/Services/Install/MySQL.php:363 +msgid "Error while checking the database" +msgstr "Error while checking the database" + +#: app/modules/web/Controllers/ErrorController.php:126 +#: app/modules/web/Controllers/ErrorController.php:142 +#: app/modules/web/Controllers/UserPassResetController.php:105 +#: lib/SP/Core/Acl/AccountPermissionException.php:46 +#: lib/SP/Core/Acl/UnauthorizedActionException.php:47 +#: lib/SP/Core/Acl/UnauthorizedPageException.php:46 +#: lib/SP/Util/ErrorUtil.php:150 lib/SP/Util/ErrorUtil.php:154 +#: lib/SP/Util/ErrorUtil.php:158 lib/SP/Util/ErrorUtil.php:162 +#: lib/SP/Util/ErrorUtil.php:170 lib/SP/Util/ErrorUtil.php:177 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:17 +msgid "Please contact to the administrator" +msgstr "Please contact to the administrator" + +#: app/modules/web/Controllers/ErrorController.php:141 +#: lib/SP/Services/Install/MySQL.php:99 +#: lib/SP/Storage/Database/MySQLHandler.php:99 +#: lib/SP/Storage/Database/MySQLHandler.php:119 +#: lib/SP/Storage/Database/MySQLHandler.php:166 +#: lib/SP/Storage/Database/MySQLHandler.php:178 +msgid "Unable to connect to DB" +msgstr "Unable to connect to DB" + +#: app/modules/web/Controllers/EventlogController.php:134 +#: app/modules/web/Controllers/EventlogController.php:137 +msgid "Event log cleared" +msgstr "Event log cleared" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 +msgid "View Current" +msgstr "View Current" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 +#: app/modules/web/themes/material-blue/inc/Icons.php:48 +#: app/modules/web/themes/material-blue/views/_partials/error.inc:18 +#: app/modules/web/themes/material-blue/views/_partials/error.inc:19 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:142 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:80 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:400 +#: app/modules/web/themes/material-blue/views/config/backup.inc:184 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:335 +#: app/modules/web/themes/material-blue/views/config/general.inc:32 +#: app/modules/web/themes/material-blue/views/config/import.inc:100 +#: app/modules/web/themes/material-blue/views/config/info.inc:205 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:328 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:482 +#: app/modules/web/themes/material-blue/views/config/mail.inc:231 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:198 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:149 +#: app/modules/web/themes/material-blue/views/error/error-database.inc:18 +#: app/modules/web/themes/material-blue/views/error/error-database.inc:19 +#: app/modules/web/themes/material-blue/views/error/error-maintenance.inc:18 +#: app/modules/web/themes/material-blue/views/error/error-maintenance.inc:19 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:44 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:60 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:231 +msgid "Back" +msgstr "Back" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 +msgid "Request Modification" +msgstr "Request Modification" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 +msgid "Restore account from this point" +msgstr "Restore account from this point" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 +#: app/modules/web/themes/material-blue/inc/Icons.php:50 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:150 +msgid "Save" +msgstr "Save" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +msgid "Update Public Link" +msgstr "Update Public Link" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +msgid "Delete Public Link" +msgstr "Delete Public Link" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +msgid "Create Public Link" +msgstr "Create Public Link" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 +#: app/modules/web/themes/material-blue/inc/Icons.php:33 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 +msgid "View password" +msgstr "View password" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 +msgid "Copy Password to Clipboard" +msgstr "Copy Password to Clipboard" + +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 +#: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +msgid "Copy Account" +msgstr "Copy Account" + +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:75 +msgid "Account Password" +msgstr "Account Password" + +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:102 +#: lib/SP/Core/Acl/AccountPermissionException.php:46 +#: lib/SP/Util/ErrorUtil.php:153 +msgid "You don't have permission to access this account" +msgstr "You don't have permission to access this account" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:186 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:187 +msgid "More Actions" +msgstr "More Actions" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:243 +msgid "Sort by Client" +msgstr "Sort by Client" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:250 +msgid "Sort by Name" +msgstr "Sort by Name" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:257 +msgid "Sort by Category" +msgstr "Sort by Category" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:263 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 +#: app/modules/web/Controllers/LoginController.php:126 +#: app/modules/web/Controllers/UserController.php:307 +#: app/modules/web/Controllers/UserController.php:346 +#: app/modules/web/Controllers/UserController.php:413 +#: app/modules/web/Controllers/UserController.php:457 +#: app/modules/web/Controllers/UserPassResetController.php:221 +#: lib/SP/Core/Acl/Acl.php:301 lib/SP/Providers/Auth/Ldap/LdapMsAds.php:114 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:114 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:146 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:156 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:112 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:144 +#: lib/SP/Services/Auth/LoginService.php:238 +#: lib/SP/Services/Auth/LoginService.php:256 +#: lib/SP/Services/Auth/LoginService.php:422 +#: lib/SP/Services/Auth/LoginService.php:492 +#: lib/SP/Services/Auth/LoginService.php:615 +#: lib/SP/Services/Auth/LoginService.php:664 +#: lib/SP/Services/Ldap/LdapImportService.php:231 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:82 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:115 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:80 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:88 +#: app/modules/web/themes/material-blue/views/account/account.inc:158 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:86 +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:32 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:76 +#: app/modules/web/themes/material-blue/views/config/info.inc:73 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:161 +#: app/modules/web/themes/material-blue/views/config/mail.inc:122 +#: app/modules/web/themes/material-blue/views/config/mail.inc:131 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:129 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:146 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:29 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:31 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:41 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:47 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:75 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:77 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:26 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +#: app/modules/web/themes/material-blue/views/login/index.inc:29 +#: app/modules/web/themes/material-blue/views/login/index.inc:102 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:94 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:96 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:22 +msgid "User" +msgstr "User" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:264 +msgid "Sort by Username" +msgstr "Sort by Username" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:270 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:61 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:101 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:67 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:75 +#: app/modules/web/themes/material-blue/views/account/account.inc:145 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:91 +msgid "URL / IP" +msgstr "URL / IP" + +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:271 +msgid "Sort by URL / IP" +msgstr "Sort by URL / IP" + +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:70 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:71 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:73 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:74 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:72 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:73 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:71 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:72 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:72 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:73 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:71 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:72 +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:75 +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:91 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:92 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:74 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:75 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:72 +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:73 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:74 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:75 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:73 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:74 +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 +msgid "Delete Selected" +msgstr "Delete Selected" + +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:184 +#: app/modules/web/themes/material-blue/views/account/details.inc:48 +#: app/modules/web/themes/material-blue/views/account/details.inc:50 +msgid "Owner" +msgstr "Owner" + +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:208 +#: app/modules/web/themes/material-blue/views/account/details.inc:56 +#: app/modules/web/themes/material-blue/views/account/details.inc:58 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:93 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:95 +msgid "Main Group" +msgstr "Main Group" + +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +msgid "Search for Account" +msgstr "Search for Account" + +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 +msgid "Accounts (H)" +msgstr "Accounts (H)" + +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:127 +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:125 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:139 +#: app/modules/web/themes/material-blue/views/account/account.inc:214 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:285 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:58 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:66 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:42 +msgid "Date" +msgstr "Date" + +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:131 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:109 +msgid "Status" +msgstr "Status" + +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 +msgid "Modified" +msgstr "Modified" + +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 +msgid "Removed" +msgstr "Removed" + +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 +#: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +msgid "Account Restore" +msgstr "Account Restore" + +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "API Authorizations" +msgstr "API Authorizations" + +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 +#: lib/SP/Core/Acl/Acl.php:300 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:44 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 +msgid "Action" +msgstr "Action" + +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 +msgid "Search for Token" +msgstr "Search for Token" + +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 +msgid "View Authorization token" +msgstr "View Authorization token" + +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 +#: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 +msgid "Delete Authorization" +msgstr "Delete Authorization" + +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +msgid "Search for Category" +msgstr "Search for Category" + +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +msgid "Delete Category" +msgstr "Delete Category" + +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +msgid "YES" +msgstr "YES" + +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +msgid "NO" +msgstr "NO" + +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +msgid "Search for Client" +msgstr "Search for Client" + +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +msgid "Delete Client" +msgstr "Delete Client" + +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: app/modules/web/themes/material-blue/views/account/account.inc:41 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +msgid "Custom Fields" +msgstr "Custom Fields" + +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:61 +msgid "Module" +msgstr "Module" + +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:112 +msgid "Properties" +msgstr "Properties" + +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 +msgid "Search for Field" +msgstr "Search for Field" + +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 +#: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 +msgid "Delete Field" +msgstr "Delete Field" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: app/modules/web/themes/material-blue/views/eventlog/index.inc:3 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:556 +msgid "Event Log" +msgstr "Event Log" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 +#: app/modules/web/Controllers/ItemPresetController.php:307 +#: app/modules/web/Controllers/ItemPresetController.php:344 +#: app/modules/web/Controllers/ItemPresetController.php:387 +#: app/modules/web/themes/material-blue/views/account/details.inc:103 +#: app/modules/web/themes/material-blue/views/account/details.inc:105 +msgid "ID" +msgstr "ID" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 +msgid "Date / Time" +msgstr "Date / Time" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 +msgid "Level" +msgstr "Level" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 +msgid "Event" +msgstr "Event" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:109 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:61 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:40 +msgid "Login" +msgstr "Login" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +msgid "Search for Events" +msgstr "Search for Events" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 +msgid "Refresh" +msgstr "Refresh" + +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 +#: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 +msgid "Clear the event log out" +msgstr "Clear the event log out" + +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: app/modules/web/themes/material-blue/views/account/account.inc:51 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:306 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 +msgid "Files" +msgstr "Files" + +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +msgid "Search for File" +msgstr "Search for File" + +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:160 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: app/modules/web/themes/material-blue/views/account/files-list.inc:59 +msgid "View File" +msgstr "View File" + +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:178 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: app/modules/web/themes/material-blue/views/account/files-list.inc:50 +msgid "Download File" +msgstr "Download File" + +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:198 +#: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: app/modules/web/themes/material-blue/views/account/files-list.inc:42 +msgid "Delete File" +msgstr "Delete File" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 +msgid "Preset Values" +msgstr "Preset Values" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:111 +#: app/modules/web/Controllers/UserGroupController.php:252 +#: lib/SP/Providers/Auth/Ldap/LdapActions.php:122 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:115 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:115 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:147 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:157 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:113 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:145 +#: lib/SP/Services/Ldap/LdapImportService.php:139 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:147 +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:30 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:298 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:301 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:234 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:264 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:59 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:61 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:164 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:166 +msgid "Group" +msgstr "Group" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:110 +#: app/modules/web/Controllers/UserProfileController.php:243 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:77 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:79 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:148 +msgid "Profile" +msgstr "Profile" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:96 +msgid "Priority" +msgstr "Priority" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:137 +msgid "Forced" +msgstr "Forced" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +msgid "Search for Value" +msgstr "Search for Value" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:69 +msgid "Permission Preset" +msgstr "Permission Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 +msgid "New Permission Preset" +msgstr "New Permission Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:89 +msgid "Private Account Preset" +msgstr "Private Account Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 +msgid "New Private Account Preset" +msgstr "New Private Account Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:105 +msgid "Session Timeout Preset" +msgstr "Session Timeout Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 +msgid "New Session Timeout Preset" +msgstr "New Session Timeout Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:120 +msgid "Account Password Preset" +msgstr "Account Password Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 +msgid "New Account Password Preset" +msgstr "New Account Password Preset" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 +#: app/modules/web/Controllers/ItemPresetController.php:255 +msgid "Edit Value" +msgstr "Edit Value" + +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 +#: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +msgid "Delete Value" +msgstr "Delete Value" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:114 +#: app/modules/web/themes/material-blue/inc/Icons.php:64 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:119 +#: app/modules/web/themes/material-blue/views/notification/index.inc:3 +msgid "Notifications" +msgstr "Notifications" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:129 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:44 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:52 +msgid "Component" +msgstr "Component" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:153 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:133 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:137 +msgid "Read" +msgstr "Read" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:154 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:128 +msgid "Only Admins" +msgstr "Only Admins" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:171 +msgid "Search for Notification" +msgstr "Search for Notification" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:186 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:187 +#: app/modules/web/Controllers/NotificationController.php:204 +msgid "New Notification" +msgstr "New Notification" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:204 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:205 +#: app/modules/web/Controllers/NotificationController.php:121 +msgid "View Notification" +msgstr "View Notification" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:234 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:235 +msgid "Checkout Notification" +msgstr "Checkout Notification" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:252 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:253 +#: app/modules/web/Controllers/NotificationController.php:238 +msgid "Edit Notification" +msgstr "Edit Notification" + +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:269 +#: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:270 +msgid "Delete Notification" +msgstr "Delete Notification" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:96 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:332 +#: app/modules/web/themes/material-blue/views/plugin/index.inc:3 +msgid "Plugins" +msgstr "Plugins" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:108 +#: lib/SP/Plugin/PluginManager.php:208 lib/SP/Plugin/PluginManager.php:264 +#: lib/SP/Plugin/PluginManager.php:422 +msgid "Plugin" +msgstr "Plugin" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:125 +msgid "Unavailable" +msgstr "Unavailable" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:141 +msgid "Search for Plugin" +msgstr "Search for Plugin" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:156 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:157 +#: app/modules/web/Controllers/PluginController.php:149 +msgid "View Plugin" +msgstr "View Plugin" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:173 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:174 +msgid "Enable" +msgstr "Enable" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:192 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:193 +msgid "Disable" +msgstr "Disable" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:211 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:212 +msgid "Reset Data" +msgstr "Reset Data" + +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:231 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:232 +msgid "Delete Plugin" +msgstr "Delete Plugin" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: app/modules/web/themes/material-blue/views/account/account.inc:61 +msgid "Links" +msgstr "Links" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:59 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:61 +msgid "Creation Date" +msgstr "Creation Date" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:69 +msgid "Expiry Date " +msgstr "Expiry Date " + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:45 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:53 +msgid "Notify" +msgstr "Notify" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: app/modules/web/themes/material-blue/views/account/details.inc:20 +#: app/modules/web/themes/material-blue/views/account/details.inc:22 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:210 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:85 +msgid "Visits" +msgstr "Visits" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:151 +msgid "Search for Link" +msgstr "Search for Link" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:166 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:167 +msgid "New Link" +msgstr "New Link" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:184 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:185 +#: app/modules/web/Controllers/PublicLinkController.php:381 +msgid "View Link" +msgstr "View Link" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:200 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:201 +msgid "Renew Link" +msgstr "Renew Link" + +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:217 +#: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:218 +msgid "Delete Link" +msgstr "Delete Link" + +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +msgid "Search for Tag" +msgstr "Search for Tag" + +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:150 +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:151 +#: app/modules/web/Controllers/TagController.php:118 +#: app/modules/web/themes/material-blue/views/account/account.inc:253 +msgid "New Tag" +msgstr "New Tag" + +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:168 +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:169 +#: app/modules/web/Controllers/TagController.php:180 +msgid "Edit Tag" +msgstr "Edit Tag" + +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:185 +#: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +msgid "Delete Tag" +msgstr "Delete Tag" + +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 +msgid "Tracks" +msgstr "Tracks" + +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 +msgid "Date Unlocked" +msgstr "Date Unlocked" + +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 +msgid "Source" +msgstr "Source" + +#: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +msgid "Search for track" +msgstr "Search for track" + +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:96 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:82 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:24 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:128 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:60 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:62 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:67 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:276 +msgid "Users" +msgstr "Users" + +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:148 +msgid "Search for User" +msgstr "Search for User" + +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:163 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:164 +#: app/modules/web/Controllers/UserController.php:126 +msgid "New User" +msgstr "New User" + +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:181 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:182 +#: app/modules/web/Controllers/UserController.php:213 +msgid "Edit User" +msgstr "Edit User" + +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:198 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:199 +msgid "Delete User" +msgstr "Delete User" + +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:215 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:216 +msgid "View User Details" +msgstr "View User Details" + +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:232 +#: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:233 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:130 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:136 +msgid "Change User's Password" +msgstr "Change User's Password" + +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:83 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:96 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:185 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:61 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 +msgid "Groups" +msgstr "Groups" + +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +msgid "Search for Group" +msgstr "Search for Group" + +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 +#: app/modules/web/Controllers/UserGroupController.php:127 +msgid "New Group" +msgstr "New Group" + +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 +#: app/modules/web/Controllers/UserGroupController.php:366 +msgid "View Group" +msgstr "View Group" + +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 +#: app/modules/web/Controllers/UserGroupController.php:200 +msgid "Edit Group" +msgstr "Edit Group" + +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 +#: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +msgid "Delete Group" +msgstr "Delete Group" + +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 +msgid "Profiles" +msgstr "Profiles" + +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +msgid "Search for Profile" +msgstr "Search for Profile" + +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 +#: app/modules/web/Controllers/UserProfileController.php:121 +msgid "New Profile" +msgstr "New Profile" + +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 +msgid "View Profile Details" +msgstr "View Profile Details" + +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 +#: app/modules/web/Controllers/UserProfileController.php:190 +msgid "Edit Profile" +msgstr "Edit Profile" + +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 +#: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +msgid "Delete Profile" +msgstr "Delete Profile" + +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:263 +#: app/modules/web/themes/material-blue/inc/Icons.php:57 +msgid "Search" +msgstr "Search" + +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:346 +#: app/modules/web/themes/material-blue/inc/Icons.php:60 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:31 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +msgid "Configuration" +msgstr "Configuration" + +#: app/modules/web/Controllers/InstallController.php:60 +msgid "Module unavailable" +msgstr "Module unavailable" + +#: app/modules/web/Controllers/InstallController.php:61 +msgid "Without this module the application could not run correctly" +msgstr "Without this module the application could not run correctly" + +#: app/modules/web/Controllers/InstallController.php:90 +msgid "Installation finished" +msgstr "Installation finished" + +#: app/modules/web/Controllers/ItemPresetController.php:85 +msgid "Display Value" +msgstr "Display Value" + +#: app/modules/web/Controllers/ItemPresetController.php:221 +msgid "New Value" +msgstr "New Value" + +#: app/modules/web/Controllers/ItemPresetController.php:295 +#: app/modules/web/Controllers/ItemPresetController.php:298 +msgid "Values deleted" +msgstr "Values deleted" + +#: app/modules/web/Controllers/ItemPresetController.php:306 +#: app/modules/web/Controllers/ItemPresetController.php:310 +msgid "Value deleted" +msgstr "Value deleted" + +#: app/modules/web/Controllers/ItemPresetController.php:342 +#: app/modules/web/Controllers/ItemPresetController.php:347 +msgid "Value created" +msgstr "Value created" + +#: app/modules/web/Controllers/ItemPresetController.php:385 +#: app/modules/web/Controllers/ItemPresetController.php:390 +msgid "Value updated" +msgstr "Value updated" + +#: app/modules/web/Controllers/ItemsController.php:140 +msgid "There aren't any pending notifications" +msgstr "There aren't any pending notifications" + +#: app/modules/web/Controllers/ItemsController.php:141 +#, php-format +msgid "There are pending notifications: %d" +msgstr "There are pending notifications: %d" + +#: app/modules/web/Controllers/LoginController.php:125 +msgid "Logout session" +msgstr "Logout session" + +#: app/modules/web/Controllers/LoginController.php:127 +msgid "Inactive time" +msgstr "Inactive time" + +#: app/modules/web/Controllers/LoginController.php:128 +msgid "Total time" +msgstr "Total time" + +#: app/modules/web/Controllers/NotificationController.php:278 +#: app/modules/web/Controllers/NotificationController.php:281 +msgid "Notifications deleted" +msgstr "Notifications deleted" + +#: app/modules/web/Controllers/NotificationController.php:293 +#: app/modules/web/Controllers/NotificationController.php:297 +msgid "Notification deleted" +msgstr "Notification deleted" + +#: app/modules/web/Controllers/NotificationController.php:294 +#: app/modules/web/Controllers/NotificationController.php:329 +#: lib/SP/Providers/Notification/NotificationHandler.php:158 +msgid "Notification" +msgstr "Notification" + +#: app/modules/web/Controllers/NotificationController.php:328 +#: app/modules/web/Controllers/NotificationController.php:332 +msgid "Notification read" +msgstr "Notification read" + +#: app/modules/web/Controllers/NotificationController.php:362 +#: app/modules/web/Controllers/NotificationController.php:365 +msgid "Notification created" +msgstr "Notification created" + +#: app/modules/web/Controllers/NotificationController.php:399 +#: app/modules/web/Controllers/NotificationController.php:402 +msgid "Notification updated" +msgstr "Notification updated" + +#: app/modules/web/Controllers/PluginController.php:214 +#: app/modules/web/Controllers/PluginController.php:217 +msgid "Plugin enabled" +msgstr "Plugin enabled" + +#: app/modules/web/Controllers/PluginController.php:243 +#: app/modules/web/Controllers/PluginController.php:246 +#: lib/SP/Plugin/PluginManager.php:233 lib/SP/Plugin/PluginManager.php:441 +msgid "Plugin disabled" +msgstr "Plugin disabled" + +#: app/modules/web/Controllers/PluginController.php:273 +#: app/modules/web/Controllers/PluginController.php:276 +msgid "Plugin reset" +msgstr "Plugin reset" + +#: app/modules/web/Controllers/PluginController.php:307 +msgid "Plugins deleted" +msgstr "Plugins deleted" + +#: app/modules/web/Controllers/PluginController.php:313 +msgid "Plugin deleted" +msgstr "Plugin deleted" + +#: app/modules/web/Controllers/PublicLinkController.php:124 +msgid "New Public Link" +msgstr "New Public Link" + +#: app/modules/web/Controllers/PublicLinkController.php:194 +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:90 +msgid "Link updated" +msgstr "Link updated" + +#: app/modules/web/Controllers/PublicLinkController.php:220 +msgid "Edit Public Link" +msgstr "Edit Public Link" + +#: app/modules/web/Controllers/PublicLinkController.php:261 +#: app/modules/web/Controllers/PublicLinkController.php:264 +msgid "Links deleted" +msgstr "Links deleted" + +#: app/modules/web/Controllers/PublicLinkController.php:272 +#: app/modules/web/Controllers/PublicLinkController.php:276 +msgid "Link deleted" +msgstr "Link deleted" + +#: app/modules/web/Controllers/PublicLinkController.php:306 +#: app/modules/web/Controllers/PublicLinkController.php:345 +msgid "Link created" +msgstr "Link created" + +#: app/modules/web/Controllers/StatusController.php:95 +msgid "Version unavailable" +msgstr "Version unavailable" + +#: app/modules/web/Controllers/StatusController.php:142 +msgid "Notifications not available" +msgstr "Notifications not available" + +#: app/modules/web/Controllers/TagController.php:221 +msgid "Tags deleted" +msgstr "Tags deleted" + +#: app/modules/web/Controllers/TagController.php:322 +msgid "View Tag" +msgstr "View Tag" + +#: app/modules/web/Controllers/TrackController.php:121 +msgid "Track unlocked" +msgstr "Track unlocked" + +#: app/modules/web/Controllers/TrackController.php:149 +msgid "Tracks cleared out" +msgstr "Tracks cleared out" + +#: app/modules/web/Controllers/Traits/ConfigTrait.php:69 +msgid "Configuration updated" +msgstr "Configuration updated" + +#: app/modules/web/Controllers/Traits/ConfigTrait.php:73 +msgid "Error while saving the configuration" +msgstr "Error while saving the configuration" + +#: app/modules/web/Controllers/Traits/ItemTrait.php:135 +#: app/modules/web/Controllers/Traits/ItemTrait.php:196 +#: lib/SP/Core/Crypt/OldCrypt.php:176 lib/SP/Core/Crypt/OldCrypt.php:188 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:62 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:157 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:247 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:337 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:392 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:420 +#: lib/SP/Services/Account/AccountService.php:247 +#: lib/SP/Services/Account/AccountService.php:252 +#: lib/SP/Services/Api/ApiService.php:132 +#: lib/SP/Services/Api/ApiService.php:232 +#: lib/SP/Services/Api/ApiService.php:240 +#: lib/SP/Services/Auth/LoginService.php:208 +#: lib/SP/Services/Auth/LoginService.php:381 +#: lib/SP/Services/Auth/LoginService.php:550 +#: lib/SP/Services/Auth/LoginService.php:558 +#: lib/SP/Services/Auth/LoginService.php:591 +#: lib/SP/Services/Auth/LoginService.php:712 +#: lib/SP/Services/AuthToken/AuthTokenService.php:318 +#: lib/SP/Services/CustomField/CustomFieldService.php:207 +#: lib/SP/Services/Export/XmlVerifyService.php:110 +#: lib/SP/Services/Import/XmlFileImport.php:82 +#: lib/SP/Services/User/UserPassService.php:237 +msgid "Internal error" +msgstr "Internal error" + +#: app/modules/web/Controllers/Traits/ItemTrait.php:192 +msgid "Error while updating custom field's data" +msgstr "Error while updating custom field's data" + +#: app/modules/web/Controllers/UpgradeController.php:72 +msgid "The updating need to be confirmed" +msgstr "The updating need to be confirmed" + +#: app/modules/web/Controllers/UpgradeController.php:79 +msgid "Wrong security code" +msgstr "Wrong security code" + +#: app/modules/web/Controllers/UpgradeController.php:105 +#: app/modules/web/themes/material-blue/views/login/index.inc:96 +msgid "Application successfully updated" +msgstr "Application successfully updated" + +#: app/modules/web/Controllers/UpgradeController.php:106 +msgid "You will be redirected to log in within 5 seconds" +msgstr "You will be redirected to log in within 5 seconds" + +#: app/modules/web/Controllers/UserController.php:250 +#: app/modules/web/Controllers/UserController.php:381 +#: app/modules/web/Controllers/UserPassResetController.php:119 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:72 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:261 +msgid "Password Change" +msgstr "Password Change" + +#: app/modules/web/Controllers/UserController.php:294 +#: app/modules/web/Controllers/UserController.php:298 +msgid "Users deleted" +msgstr "Users deleted" + +#: app/modules/web/Controllers/UserController.php:306 +#: app/modules/web/Controllers/UserController.php:311 +msgid "User deleted" +msgstr "User deleted" + +#: app/modules/web/Controllers/UserController.php:345 +#: app/modules/web/Controllers/UserController.php:351 +msgid "User added" +msgstr "User added" + +#: app/modules/web/Controllers/UserController.php:412 +#: app/modules/web/Controllers/UserController.php:419 +msgid "User updated" +msgstr "User updated" + +#: app/modules/web/Controllers/UserController.php:488 +msgid "View User" +msgstr "View User" + +#: app/modules/web/Controllers/UserGroupController.php:240 +#: app/modules/web/Controllers/UserGroupController.php:243 +msgid "Groups deleted" +msgstr "Groups deleted" + +#: app/modules/web/Controllers/UserPassResetController.php:98 +msgid "Wrong data" +msgstr "Wrong data" + +#: app/modules/web/Controllers/UserPassResetController.php:103 +msgid "Unable to reset the password" +msgstr "Unable to reset the password" + +#: app/modules/web/Controllers/UserPassResetController.php:114 +msgid "Password Recovery" +msgstr "Password Recovery" + +#: app/modules/web/Controllers/UserPassResetController.php:115 +msgid "Requested for" +msgstr "Requested for" + +#: app/modules/web/Controllers/UserPassResetController.php:125 +msgid "Request sent" +msgstr "Request sent" + +#: app/modules/web/Controllers/UserPassResetController.php:126 +msgid "You will receive an email to complete the request shortly." +msgstr "You will receive an email to complete the request shortly." + +#: app/modules/web/Controllers/UserPassResetController.php:149 +#: lib/SP/Services/Api/ApiService.php:99 +#: lib/SP/Services/Auth/LoginService.php:147 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:110 +msgid "Attempts exceeded" +msgstr "Attempts exceeded" + +#: app/modules/web/Controllers/UserPassResetController.php:199 +#: app/modules/web/Forms/AuthTokenForm.php:101 +#: app/modules/web/Forms/UserForm.php:157 +msgid "Password cannot be blank" +msgstr "Password cannot be blank" + +#: app/modules/web/Controllers/UserProfileController.php:230 +#: app/modules/web/Controllers/UserProfileController.php:233 +msgid "Profiles deleted" +msgstr "Profiles deleted" + +#: app/modules/web/Controllers/UserProfileController.php:242 +#: app/modules/web/Controllers/UserProfileController.php:247 +msgid "Profile deleted" +msgstr "Profile deleted" + +#: app/modules/web/Controllers/UserProfileController.php:282 +#: app/modules/web/Controllers/UserProfileController.php:286 +msgid "Profile added" +msgstr "Profile added" + +#: app/modules/web/Controllers/UserProfileController.php:325 +#: app/modules/web/Controllers/UserProfileController.php:330 +msgid "Profile updated" +msgstr "Profile updated" + +#: app/modules/web/Controllers/UserProfileController.php:358 +msgid "View Profile" +msgstr "View Profile" + +#: app/modules/web/Controllers/UserSettingsGeneralController.php:78 +msgid "Preferences updated" +msgstr "Preferences updated" + +#: app/modules/web/Controllers/UserSettingsManagerController.php:98 +msgid "Preferences" +msgstr "Preferences" + +#: app/modules/web/Forms/AccountForm.php:132 +msgid "A key is needed" +msgstr "A key is needed" + +#: app/modules/web/Forms/AccountForm.php:172 +msgid "An account name needed" +msgstr "An account name needed" + +#: app/modules/web/Forms/AccountForm.php:176 +#: app/modules/web/Forms/ClientForm.php:84 +msgid "A client name needed" +msgstr "A client name needed" + +#: app/modules/web/Forms/AccountForm.php:180 +msgid "A category is needed" +msgstr "A category is needed" + +#: app/modules/web/Forms/AuthTokenForm.php:91 +msgid "User not set" +msgstr "User not set" + +#: app/modules/web/Forms/AuthTokenForm.php:95 +msgid "Action not set" +msgstr "Action not set" + +#: app/modules/web/Forms/CategoryForm.php:83 +msgid "A category name needed" +msgstr "A category name needed" + +#: app/modules/web/Forms/CustomFieldDefForm.php:87 +msgid "Field name not set" +msgstr "Field name not set" + +#: app/modules/web/Forms/CustomFieldDefForm.php:91 +msgid "Field type not set" +msgstr "Field type not set" + +#: app/modules/web/Forms/CustomFieldDefForm.php:95 +msgid "Field module not set" +msgstr "Field module not set" + +#: app/modules/web/Forms/ItemsPresetForm.php:116 +msgid "Value type not set or incorrect" +msgstr "Value type not set or incorrect" + +#: app/modules/web/Forms/ItemsPresetForm.php:133 +msgid "There aren't any defined permissions" +msgstr "There aren't any defined permissions" + +#: app/modules/web/Forms/ItemsPresetForm.php:182 +msgid "Invalid regular expression" +msgstr "Invalid regular expression" + +#: app/modules/web/Forms/ItemsPresetForm.php:208 +msgid "An element of type user, group or profile need to be set" +msgstr "An element of type user, group or profile need to be set" + +#: app/modules/web/Forms/NotificationForm.php:98 +msgid "A component is needed" +msgstr "A component is needed" + +#: app/modules/web/Forms/NotificationForm.php:102 +msgid "A type is needed" +msgstr "A type is needed" + +#: app/modules/web/Forms/NotificationForm.php:112 +msgid "A target is needed" +msgstr "A target is needed" + +#: app/modules/web/Forms/PublicLinkForm.php:85 +msgid "An account is needed" +msgstr "An account is needed" + +#: app/modules/web/Forms/TagForm.php:82 +msgid "A tag name is needed" +msgstr "A tag name is needed" + +#: app/modules/web/Forms/UserForm.php:111 +msgid "An username is needed" +msgstr "An username is needed" + +#: app/modules/web/Forms/UserForm.php:115 +msgid "A login is needed" +msgstr "A login is needed" + +#: app/modules/web/Forms/UserForm.php:119 +msgid "A profile is needed" +msgstr "A profile is needed" + +#: app/modules/web/Forms/UserForm.php:123 +msgid "A group is needed" +msgstr "A group is needed" + +#: app/modules/web/Forms/UserForm.php:127 +msgid "An email is needed" +msgstr "An email is needed" + +#: app/modules/web/Forms/UserForm.php:179 +msgid "Unable to delete, user in use" +msgstr "Unable to delete, user in use" + +#: app/modules/web/Forms/UserGroupForm.php:84 +msgid "A group name is needed" +msgstr "A group name is needed" + +#: app/modules/web/Forms/UserProfileForm.php:116 +msgid "A profile name is needed" +msgstr "A profile name is needed" + +#: app/modules/web/themes/material-blue/inc/Icons.php:31 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:47 +msgid "Add" +msgstr "Add" + +#: app/modules/web/themes/material-blue/inc/Icons.php:32 +msgid "View Details" +msgstr "View Details" + +#: app/modules/web/themes/material-blue/inc/Icons.php:34 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:76 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:80 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:148 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:152 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:169 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:226 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:54 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:97 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:116 +msgid "Edit" +msgstr "Edit" + +#: app/modules/web/themes/material-blue/inc/Icons.php:35 +#: app/modules/web/themes/material-blue/inc/Icons.php:65 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:178 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:210 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:235 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +msgid "Delete" +msgstr "Delete" + +#: app/modules/web/themes/material-blue/inc/Icons.php:36 +msgid "Change Password" +msgstr "Change Password" + +#: app/modules/web/themes/material-blue/inc/Icons.php:37 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:221 +msgid "Application Admin" +msgstr "Application Admin" + +#: app/modules/web/themes/material-blue/inc/Icons.php:38 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Accounts Admin" +msgstr "Accounts Admin" + +#: app/modules/web/themes/material-blue/inc/Icons.php:39 +msgid "LDAP User" +msgstr "LDAP User" + +#: app/modules/web/themes/material-blue/inc/Icons.php:40 +#: app/modules/web/themes/material-blue/views/config/mail.inc:159 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:280 +msgid "Disabled" +msgstr "Disabled" + +#: app/modules/web/themes/material-blue/inc/Icons.php:41 +msgid "Enabled" +msgstr "Enabled" + +#: app/modules/web/themes/material-blue/inc/Icons.php:42 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:198 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:58 +msgid "Update" +msgstr "Update" + +#: app/modules/web/themes/material-blue/inc/Icons.php:43 +msgid "Copy" +msgstr "Copy" + +#: app/modules/web/themes/material-blue/inc/Icons.php:45 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:97 +msgid "Email" +msgstr "Email" + +#: app/modules/web/themes/material-blue/inc/Icons.php:49 +msgid "Restore" +msgstr "Restore" + +#: app/modules/web/themes/material-blue/inc/Icons.php:51 +msgid "Help" +msgstr "Help" + +#: app/modules/web/themes/material-blue/inc/Icons.php:52 +msgid "Clear" +msgstr "Clear" + +#: app/modules/web/themes/material-blue/inc/Icons.php:53 +msgid "Perform" +msgstr "Perform" + +#: app/modules/web/themes/material-blue/inc/Icons.php:54 +msgid "Download" +msgstr "Download" + +#: app/modules/web/themes/material-blue/inc/Icons.php:55 +msgid "Warning" +msgstr "Warning" + +#: app/modules/web/themes/material-blue/inc/Icons.php:56 +msgid "Check" +msgstr "Check" + +#: app/modules/web/themes/material-blue/inc/Icons.php:63 +msgid "Critical" +msgstr "Critical" + +#: app/modules/web/themes/material-blue/inc/Icons.php:66 +msgid "Previous page" +msgstr "Previous page" + +#: app/modules/web/themes/material-blue/inc/Icons.php:67 +msgid "Next page" +msgstr "Next page" + +#: app/modules/web/themes/material-blue/inc/Icons.php:68 +msgid "First page" +msgstr "First page" + +#: app/modules/web/themes/material-blue/inc/Icons.php:69 +msgid "Last page" +msgstr "Last page" + +#: lib/SP/Bootstrap.php:293 +#, php-format +msgid "Required PHP version >= %s <= %s" +msgstr "Required PHP version >= %s <= %s" + +#: lib/SP/Bootstrap.php:295 +msgid "Please update the PHP version to run sysPass" +msgstr "Please update the PHP version to run sysPass" + +#: lib/SP/Config/ConfigUtil.php:102 +msgid "'/app/config' directory does not exist." +msgstr "" + +#: lib/SP/Config/ConfigUtil.php:108 +msgid "Unable to write into '/app/config' directory" +msgstr "" + +#: lib/SP/Config/ConfigUtil.php:117 +msgid "'/app/config' directory permissions are wrong" +msgstr "" + +#: lib/SP/Config/ConfigUtil.php:119 +#, php-format +msgid "Current: %s - Needed: 750" +msgstr "Current: %s - Needed: 750" + +#: lib/SP/Core/Acl/Acl.php:294 lib/SP/Services/Auth/LoginService.php:660 +msgid "N/A" +msgstr "N/A" + +#: lib/SP/Core/Acl/Acl.php:299 +msgid "Access denied" +msgstr "Access denied" + +#: lib/SP/Core/Acl/Actions.php:177 +msgid "Action not found" +msgstr "Action not found" + +#: lib/SP/Core/Acl/UnauthorizedPageException.php:46 +#: lib/SP/Util/ErrorUtil.php:157 +msgid "You don't have permission to access this page" +msgstr "You don't have permission to access this page" + +#: lib/SP/Core/Context/ContextBase.php:73 +msgid "Unable to change password value" +msgstr "Unable to change password value" + +#: lib/SP/Core/Context/ContextBase.php:103 +#: lib/SP/Core/Context/ContextBase.php:126 +msgid "Context already initialized" +msgstr "Context already initialized" + +#: lib/SP/Core/Context/ContextBase.php:109 +msgid "Invalid context" +msgstr "Invalid context" + +#: lib/SP/Core/Context/ContextBase.php:154 +msgid "Context not initialized" +msgstr "Context not initialized" + +#: lib/SP/Core/Context/SessionContext.php:492 +msgid "Session cannot be initialized" +msgstr "Session cannot be initialized" + +#: lib/SP/Core/Crypt/OldCrypt.php:178 +msgid "Crypto module cannot be loaded" +msgstr "Crypto module cannot be loaded" + +#: lib/SP/Core/Crypt/OldCrypt.php:190 +msgid "Error while creating the encrypted data" +msgstr "Error while creating the encrypted data" + +#: lib/SP/Core/Events/Event.php:57 +msgid "An object is needed" +msgstr "An object is needed" + +#: lib/SP/Core/Events/EventDispatcherBase.php:85 +msgid "Observer not initialized" +msgstr "Observer not initialized" + +#: lib/SP/Core/UI/Theme.php:185 +msgid "Invalid icons class" +msgstr "Invalid icons class" + +#: lib/SP/Html/DataGrid/DataGridBase.php:302 lib/SP/Mvc/View/Template.php:128 +#, php-format +msgid "Unable to retrieve \"%s\" template: %s" +msgstr "Unable to retrieve \"%s\" template: %s" + +#: lib/SP/Http/Address.php:49 lib/SP/Http/Address.php:51 +#: lib/SP/Http/Address.php:68 lib/SP/Http/Address.php:70 +#: lib/SP/Http/Address.php:90 lib/SP/Http/Address.php:109 +msgid "Invalid IP" +msgstr "Invalid IP" + +#: lib/SP/Http/Json.php:180 +msgid "Encoding error" +msgstr "Encoding error" + +#: lib/SP/Http/XMLRPCResponseParse.php:70 +msgid "Invalid XML-RPC response" +msgstr "Invalid XML-RPC response" + +#: lib/SP/Mvc/Controller/ControllerTrait.php:66 +msgid "Session not started or timed out" +msgstr "Session not started or timed out" + +#: lib/SP/Mvc/Controller/ControllerTrait.php:117 +#: lib/SP/Mvc/Controller/ControllerTrait.php:131 +msgid "Invalid Action" +msgstr "Invalid Action" + +#: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 +#, php-format +msgid "Password needs to be %d characters long" +msgstr "Password needs to be %d characters long" + +#: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 +msgid "Password does not contain the required characters" +msgstr "Password does not contain the required characters" + +#: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 +msgid "Password needs to contain letters" +msgstr "Password needs to contain letters" + +#: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 +msgid "Password needs to contain lower case letters" +msgstr "Password needs to contain lower case letters" + +#: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 +msgid "Password needs to contain upper case letters" +msgstr "Password needs to contain upper case letters" + +#: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 +msgid "Password needs to contain numbers" +msgstr "Password needs to contain numbers" + +#: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 +msgid "Password needs to contain symbols" +msgstr "Password needs to contain symbols" + +#: lib/SP/Mvc/Model/QueryCondition.php:73 +msgid "Invalid filter type" +msgstr "Invalid filter type" + +#: lib/SP/Mvc/View/Components/SelectItemAdapter.php:96 +#: lib/SP/Mvc/View/Components/SelectItemAdapter.php:158 +msgid "Wrong object type" +msgstr "Wrong object type" + +#: lib/SP/Mvc/View/Template.php:303 lib/SP/Mvc/View/Template.php:367 +#, php-format +msgid "Unable to retrieve \"%s\" variable" +msgstr "Unable to retrieve \"%s\" variable" + +#: lib/SP/Mvc/View/Template.php:336 +#, php-format +msgid "Unable to unset \"%s\" variable" +msgstr "Unable to unset \"%s\" variable" + +#: lib/SP/Mvc/View/Template.php:357 +msgid "Template does not contain files" +msgstr "Template does not contain files" + +#: lib/SP/Plugin/PluginManager.php:194 +#, php-format +msgid "Plugin version not compatible (%s)" +msgstr "Plugin version not compatible (%s)" + +#: lib/SP/Plugin/PluginManager.php:206 lib/SP/Plugin/PluginManager.php:262 +#, php-format +msgid "Unable to load the \"%s\" plugin" +msgstr "Unable to load the \"%s\" plugin" + +#: lib/SP/Plugin/PluginManager.php:297 +msgid "Plugin available" +msgstr "Plugin available" + +#: lib/SP/Plugin/PluginManager.php:308 +msgid "Plugin unavailable" +msgstr "Plugin unavailable" + +#: lib/SP/Plugin/PluginManager.php:341 +msgid "Plugin loaded" +msgstr "Plugin loaded" + +#: lib/SP/Plugin/PluginManager.php:366 +msgid "New Plugin" +msgstr "New Plugin" + +#: lib/SP/Plugin/PluginManager.php:394 +msgid "Upgrading plugin" +msgstr "" + +#: lib/SP/Plugin/PluginManager.php:411 +msgid "Plugin upgraded" +msgstr "" + +#: lib/SP/Plugin/PluginManager.php:420 +#, php-format +msgid "Unable to upgrade the \"%s\" plugin" +msgstr "" + +#: lib/SP/Providers/Auth/AuthProvider.php:220 +msgid "Method unavailable" +msgstr "Method unavailable" + +#: lib/SP/Providers/Auth/AuthProvider.php:224 +msgid "Method already initialized" +msgstr "Method already initialized" + +#: lib/SP/Providers/Auth/Ldap/Ldap.php:110 +msgid "LDAP type not set" +msgstr "LDAP type not set" + +#: lib/SP/Providers/Auth/Ldap/LdapActions.php:121 +#: lib/SP/Providers/Auth/Ldap/LdapActions.php:128 +msgid "Error while searching the group RDN" +msgstr "Error while searching the group RDN" + +#: lib/SP/Providers/Auth/Ldap/LdapActions.php:226 +#: lib/SP/Providers/Auth/Ldap/LdapActions.php:231 +msgid "Error while searching the user on LDAP" +msgstr "Error while searching the user on LDAP" + +#: lib/SP/Providers/Auth/Ldap/LdapActions.php:281 +#: lib/SP/Providers/Auth/Ldap/LdapActions.php:287 +msgid "Error while searching objects in base DN" +msgstr "Error while searching objects in base DN" + +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:149 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:213 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:218 +msgid "Unable to connect to LDAP server" +msgstr "Unable to connect to LDAP server" + +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:146 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:214 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:79 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:45 +#: app/modules/web/themes/material-blue/views/config/info.inc:87 +#: app/modules/web/themes/material-blue/views/config/info.inc:90 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:102 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:129 +#: app/modules/web/themes/material-blue/views/config/mail.inc:69 +#: app/modules/web/themes/material-blue/views/config/mail.inc:78 +msgid "Server" +msgstr "Server" + +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:174 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:176 +msgid "LDAP parameters are not set" +msgstr "LDAP parameters are not set" + +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:256 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:262 +msgid "Connection error (BIND)" +msgstr "Connection error (BIND)" + +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:326 +msgid "Error while disconnecting from LDAP server" +msgstr "Error while disconnecting from LDAP server" + +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:113 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:155 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:111 +msgid "User in group verified" +msgstr "User in group verified" + +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:145 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:143 +msgid "User does not belong to the group" +msgstr "User does not belong to the group" + +#: lib/SP/Providers/Mail/MailHandler.php:153 +#, php-format +msgid "Event: %s" +msgstr "Event: %s" + +#: lib/SP/Providers/Mail/MailHandler.php:161 +#: lib/SP/Providers/Mail/MailHandler.php:163 +#, php-format +msgid "Performed by: %s (%s)" +msgstr "Performed by: %s (%s)" + +#: lib/SP/Providers/Mail/MailHandler.php:166 +#, php-format +msgid "IP Address: %s" +msgstr "IP Address: %s" + +#: lib/SP/Providers/Mail/MailProvider.php:94 +msgid "Unable to initialize" +msgstr "Unable to initialize" + +#: lib/SP/Repositories/Account/AccountFileRepository.php:80 +msgid "Error while saving file" +msgstr "Error while saving file" + +#: lib/SP/Repositories/Account/AccountFileRepository.php:282 +msgid "Error while deleting the file" +msgstr "Error while deleting the file" + +#: lib/SP/Repositories/Account/AccountFileRepository.php:305 +#: lib/SP/Services/Account/AccountFileService.php:149 +msgid "Error while deleting the files" +msgstr "Error while deleting the files" + +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:144 +msgid "Error while updating history" +msgstr "Error while updating history" + +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:163 +#: lib/SP/Repositories/Account/AccountRepository.php:323 +#: lib/SP/Services/Account/AccountHistoryService.php:195 +msgid "Error while deleting the account" +msgstr "Error while deleting the account" + +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:293 +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:316 +#: lib/SP/Repositories/Account/AccountRepository.php:503 +#: lib/SP/Services/Account/AccountService.php:647 +msgid "Error while deleting the accounts" +msgstr "Error while deleting the accounts" + +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:437 +#: lib/SP/Repositories/Account/AccountRepository.php:237 +#: lib/SP/Repositories/Account/AccountRepository.php:262 +#: lib/SP/Repositories/User/UserRepository.php:166 +#: lib/SP/Services/Account/AccountHistoryService.php:236 +#: lib/SP/Services/User/UserService.php:334 +msgid "Error while updating the password" +msgstr "Error while updating the password" + +#: lib/SP/Repositories/Account/AccountRepository.php:202 +msgid "Error while creating the account" +msgstr "Error while creating the account" + +#: lib/SP/Repositories/Account/AccountRepository.php:303 +#: lib/SP/Services/Account/AccountService.php:613 +msgid "Error on restoring the account" +msgstr "Error on restoring the account" + +#: lib/SP/Repositories/Account/AccountRepository.php:384 +#: lib/SP/Repositories/Account/AccountRepository.php:433 +msgid "Error while updating the account" +msgstr "Error while updating the account" + +#: lib/SP/Repositories/Account/AccountRepository.php:453 +#: lib/SP/Repositories/Account/AccountRepository.php:625 +#: lib/SP/Services/Account/AccountHistoryService.php:78 +msgid "Error while retrieving account's data" +msgstr "Error while retrieving account's data" + +#: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:74 +msgid "Error while adding favorite" +msgstr "Error while adding favorite" + +#: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:94 +msgid "Error while deleting favorite" +msgstr "Error while deleting favorite" + +#: lib/SP/Repositories/Account/AccountToTagRepository.php:97 +msgid "Error while removing the account's tags" +msgstr "Error while removing the account's tags" + +#: lib/SP/Repositories/Account/AccountToTagRepository.php:118 +msgid "Error while adding the account's tags" +msgstr "Error while adding the account's tags" + +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:109 +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:142 +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:194 +msgid "Error while deleting the account's groups" +msgstr "Error while deleting the account's groups" + +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:167 +msgid "Error while updating the secondary groups" +msgstr "Error while updating the secondary groups" + +#: lib/SP/Repositories/Account/AccountToUserRepository.php:79 +#: lib/SP/Repositories/Account/AccountToUserRepository.php:135 +msgid "Error while deleting the account users" +msgstr "Error while deleting the account users" + +#: lib/SP/Repositories/Account/AccountToUserRepository.php:106 +msgid "Error while updating the account users" +msgstr "Error while updating the account users" + +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:224 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:312 +msgid "The authorization already exist" +msgstr "The authorization already exist" + +#: lib/SP/Repositories/Category/CategoryRepository.php:61 +msgid "Duplicated category" +msgstr "Duplicated category" + +#: lib/SP/Repositories/Category/CategoryRepository.php:71 +msgid "Error while creating the category" +msgstr "Error while creating the category" + +#: lib/SP/Repositories/Category/CategoryRepository.php:110 +msgid "Duplicated category name" +msgstr "Duplicated category name" + +#: lib/SP/Repositories/Category/CategoryRepository.php:128 +msgid "Error while updating the category" +msgstr "Error while updating the category" + +#: lib/SP/Repositories/Category/CategoryRepository.php:256 +msgid "Error while deleting the categories" +msgstr "Error while deleting the categories" + +#: lib/SP/Repositories/Category/CategoryRepository.php:278 +msgid "Error while deleting the category" +msgstr "Error while deleting the category" + +#: lib/SP/Repositories/Client/ClientRepository.php:63 +#: lib/SP/Repositories/Client/ClientRepository.php:117 +msgid "Duplicated client" +msgstr "Duplicated client" + +#: lib/SP/Repositories/Client/ClientRepository.php:81 +msgid "Error while creating the client" +msgstr "Error while creating the client" + +#: lib/SP/Repositories/Client/ClientRepository.php:137 +msgid "Error while updating the client" +msgstr "Error while updating the client" + +#: lib/SP/Repositories/Client/ClientRepository.php:265 +#: lib/SP/Services/Client/ClientService.php:132 +msgid "Error while deleting the clients" +msgstr "Error while deleting the clients" + +#: lib/SP/Repositories/Client/ClientRepository.php:284 +msgid "Error while deleting the client" +msgstr "Error while deleting the client" + +#: lib/SP/Repositories/Client/ClientRepository.php:346 +msgid "Wrong filter" +msgstr "Wrong filter" + +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:78 +msgid "Error while creating the custom field" +msgstr "Error while creating the custom field" + +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:121 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:170 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:198 +msgid "Error while updating the custom field" +msgstr "Error while updating the custom field" + +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:162 +msgid "Custom field not found" +msgstr "Custom field not found" + +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:242 +msgid "Error while removing the custom fields" +msgstr "Error while removing the custom fields" + +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:262 +msgid "Error while removing the custom field" +msgstr "Error while removing the custom field" + +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:63 +msgid "Error while creating the field type" +msgstr "Error while creating the field type" + +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:99 +msgid "Error while updating the field type" +msgstr "Error while updating the field type" + +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:181 +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:200 +msgid "Error while deleting the field type" +msgstr "Error while deleting the field type" + +#: lib/SP/Repositories/EventLog/EventlogRepository.php:53 +msgid "Error while clearing the event log out" +msgstr "Error while clearing the event log out" + +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:79 +msgid "Error while creating the permission" +msgstr "Error while creating the permission" + +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:118 +msgid "Error while updating the permission" +msgstr "Error while updating the permission" + +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:137 +msgid "Error while removing the permission" +msgstr "Error while removing the permission" + +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:262 +msgid "Error while removing the permissions" +msgstr "Error while removing the permissions" + +#: lib/SP/Repositories/Notification/NotificationRepository.php:80 +msgid "Error while adding the notification" +msgstr "Error while adding the notification" + +#: lib/SP/Repositories/Notification/NotificationRepository.php:120 +#: lib/SP/Repositories/Notification/NotificationRepository.php:479 +msgid "Error while updating the notification" +msgstr "Error while updating the notification" + +#: lib/SP/Repositories/Notification/NotificationRepository.php:139 +#: lib/SP/Repositories/Notification/NotificationRepository.php:158 +msgid "Error while deleting the notification" +msgstr "Error while deleting the notification" + +#: lib/SP/Repositories/Notification/NotificationRepository.php:181 +#: lib/SP/Repositories/Notification/NotificationRepository.php:304 +#: lib/SP/Services/Notification/NotificationService.php:144 +#: lib/SP/Services/Notification/NotificationService.php:163 +msgid "Error while deleting the notifications" +msgstr "Error while deleting the notifications" + +#: lib/SP/Repositories/Notification/NotificationRepository.php:214 +msgid "Error while retrieving notification" +msgstr "Error while retrieving notification" + +#: lib/SP/Repositories/Notification/NotificationRepository.php:244 +#: lib/SP/Repositories/Notification/NotificationRepository.php:516 +#: lib/SP/Repositories/Notification/NotificationRepository.php:549 +#: lib/SP/Repositories/Notification/NotificationRepository.php:583 +#: lib/SP/Repositories/Notification/NotificationRepository.php:616 +msgid "Error while retrieving the notifications" +msgstr "Error while retrieving the notifications" + +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:68 +msgid "Error while adding plugin's data" +msgstr "" + +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:97 +msgid "Error while updating plugin's data" +msgstr "" + +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:116 +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:136 +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:242 +msgid "Error while deleting plugin's data" +msgstr "" + +#: lib/SP/Repositories/Plugin/PluginRepository.php:70 +msgid "Error while adding the plugin" +msgstr "Error while adding the plugin" + +#: lib/SP/Repositories/Plugin/PluginRepository.php:106 +#: lib/SP/Repositories/Plugin/PluginRepository.php:354 +#: lib/SP/Repositories/Plugin/PluginRepository.php:374 +#: lib/SP/Repositories/Plugin/PluginRepository.php:394 +#: lib/SP/Repositories/Plugin/PluginRepository.php:414 +#: lib/SP/Repositories/Plugin/PluginRepository.php:433 +msgid "Error while updating the plugin" +msgstr "Error while updating the plugin" + +#: lib/SP/Repositories/Plugin/PluginRepository.php:217 +#: lib/SP/Services/Plugin/PluginService.php:139 +msgid "Error while deleting the plugins" +msgstr "Error while deleting the plugins" + +#: lib/SP/Repositories/Plugin/PluginRepository.php:237 +msgid "Error while deleting the plugin" +msgstr "Error while deleting the plugin" + +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:64 +msgid "Error while removing the link" +msgstr "Error while removing the link" + +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:256 +msgid "Link already created" +msgstr "Link already created" + +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:283 +msgid "Error while creating the link" +msgstr "Error while creating the link" + +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:342 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:390 +msgid "Error while updating the link" +msgstr "Error while updating the link" + +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:425 +msgid "Error while renewing link" +msgstr "Error while renewing link" + +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:467 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:508 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:529 +msgid "Error while retrieving the link" +msgstr "Error while retrieving the link" + +#: lib/SP/Repositories/Tag/TagRepository.php:60 +#: lib/SP/Repositories/Tag/TagRepository.php:108 +msgid "Duplicated tag" +msgstr "Duplicated tag" + +#: lib/SP/Repositories/Tag/TagRepository.php:69 +msgid "Error while creating the tag" +msgstr "Error while creating the tag" + +#: lib/SP/Repositories/Tag/TagRepository.php:118 +msgid "Error while updating the tag" +msgstr "Error while updating the tag" + +#: lib/SP/Repositories/Tag/TagRepository.php:243 +#: lib/SP/Services/Tag/TagService.php:132 +msgid "Error while removing the tags" +msgstr "Error while removing the tags" + +#: lib/SP/Repositories/Tag/TagRepository.php:262 +msgid "Error while removing the tag" +msgstr "Error while removing the tag" + +#: lib/SP/Repositories/Track/TrackRepository.php:68 +msgid "Error while creating track" +msgstr "Error while creating track" + +#: lib/SP/Repositories/Track/TrackRepository.php:85 +msgid "Error while removing the track" +msgstr "Error while removing the track" + +#: lib/SP/Repositories/Track/TrackRepository.php:102 +msgid "Error while updating the track" +msgstr "Error while updating the track" + +#: lib/SP/Repositories/Track/TrackRepository.php:118 +msgid "Error while clearing tracks out" +msgstr "Error while clearing tracks out" + +#: lib/SP/Repositories/Track/TrackRepository.php:146 +msgid "Error while retrieving the track" +msgstr "Error while retrieving the track" + +#: lib/SP/Repositories/Track/TrackRepository.php:169 +#: lib/SP/Repositories/Track/TrackRepository.php:202 +msgid "Error while retrieving the tracks" +msgstr "Error while retrieving the tracks" + +#: lib/SP/Repositories/User/UserPassRecoverRepository.php:89 +msgid "Error while generating the recovering hash" +msgstr "Error while generating the recovering hash" + +#: lib/SP/Repositories/User/UserPassRecoverRepository.php:115 +msgid "Error while checking hash" +msgstr "Error while checking hash" + +#: lib/SP/Repositories/User/UserRepository.php:64 +#: lib/SP/Repositories/User/UserRepository.php:431 +msgid "Duplicated user login/email" +msgstr "Duplicated user login/email" + +#: lib/SP/Repositories/User/UserRepository.php:101 +#: lib/SP/Repositories/User/UserRepository.php:678 +#: lib/SP/Services/User/UserService.php:313 +msgid "Error while updating the user" +msgstr "Error while updating the user" + +#: lib/SP/Repositories/User/UserRepository.php:185 +msgid "Error while deleting the user" +msgstr "Error while deleting the user" + +#: lib/SP/Repositories/User/UserRepository.php:235 +#: lib/SP/Repositories/User/UserRepository.php:552 +msgid "Error while retrieving the user's data" +msgstr "Error while retrieving the user's data" + +#: lib/SP/Repositories/User/UserRepository.php:354 +#: lib/SP/Services/User/UserService.php:212 +msgid "Error while deleting the users" +msgstr "Error while deleting the users" + +#: lib/SP/Repositories/User/UserRepository.php:475 +msgid "Error while creating the user" +msgstr "Error while creating the user" + +#: lib/SP/Repositories/User/UserRepository.php:698 +msgid "Error while updating the preferences" +msgstr "Error while updating the preferences" + +#: lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 +msgid "Error while deleting the group" +msgstr "Error while deleting the group" + +#: lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 +#: lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 +msgid "Duplicated group name" +msgstr "Duplicated group name" + +#: lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 +msgid "Error while creating the group" +msgstr "Error while creating the group" + +#: lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 +msgid "Error while updating the group" +msgstr "Error while updating the group" + +#: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:111 +msgid "Error while deleting the group users" +msgstr "Error while deleting the group users" + +#: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:143 +msgid "Error while setting users in the group" +msgstr "Error while setting users in the group" + +#: lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 +msgid "Error while removing the profile" +msgstr "Error while removing the profile" + +#: lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 +#: lib/SP/Services/UserProfile/UserProfileService.php:119 +msgid "Error while removing the profiles" +msgstr "Error while removing the profiles" + +#: lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 +#: lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 +msgid "Duplicated profile name" +msgstr "Duplicated profile name" + +#: lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 +msgid "Error while creating the profile" +msgstr "Error while creating the profile" + +#: lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 +#: lib/SP/Services/UserProfile/UserProfileService.php:146 +msgid "Error while updating the profile" +msgstr "Error while updating the profile" + +#: lib/SP/Services/Account/AccountCryptService.php:74 +#: lib/SP/Services/Account/AccountCryptService.php:81 +#: lib/SP/Services/Account/AccountCryptService.php:143 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:72 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:80 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:88 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:113 +msgid "Update Master Password" +msgstr "Update Master Password" + +#: lib/SP/Services/Account/AccountCryptService.php:94 +msgid "Error while updating the accounts' passwords" +msgstr "Error while updating the accounts' passwords" + +#: lib/SP/Services/Account/AccountCryptService.php:120 +msgid "Error while retrieving the accounts' passwords" +msgstr "Error while retrieving the accounts' passwords" + +#: lib/SP/Services/Account/AccountCryptService.php:144 +#, php-format +msgid "Accounts updated: %d / %d" +msgstr "Accounts updated: %d / %d" + +#: lib/SP/Services/Account/AccountCryptService.php:153 +#, php-format +msgid "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" + +#: lib/SP/Services/Account/AccountCryptService.php:163 +msgid "The record's master password does not match" +msgstr "The record's master password does not match" + +#: lib/SP/Services/Account/AccountCryptService.php:188 +#: lib/SP/Services/Account/AccountCryptService.php:193 +msgid "Error while updating the account's password" +msgstr "Error while updating the account's password" + +#: lib/SP/Services/Account/AccountCryptService.php:199 +msgid "Errors" +msgstr "Errors" + +#: lib/SP/Services/Account/AccountCryptService.php:217 +#: lib/SP/Services/Account/AccountCryptService.php:224 +msgid "Update Master Password (H)" +msgstr "Update Master Password (H)" + +#: lib/SP/Services/Account/AccountCryptService.php:240 +msgid "Error while updating the accounts' passwords in history" +msgstr "Error while updating the accounts' passwords in history" + +#: lib/SP/Services/Account/AccountFileService.php:168 +msgid "File not found" +msgstr "File not found" + +#: lib/SP/Services/Account/AccountService.php:170 +#: lib/SP/Services/Account/AccountService.php:630 +msgid "Account not found" +msgstr "Account not found" + +#: lib/SP/Services/Account/AccountService.php:240 +msgid "Master password not set" +msgstr "Master password not set" + +#: lib/SP/Services/Account/AccountService.php:303 +#: lib/SP/Services/Account/AccountService.php:703 +#: lib/SP/Services/Account/AccountService.php:758 +msgid "The account doesn't exist" +msgstr "The account doesn't exist" + +#: lib/SP/Services/Api/ApiRequest.php:79 lib/SP/Services/Api/ApiRequest.php:113 +#: lib/SP/Services/Api/ApiService.php:234 +msgid "Invalid data" +msgstr "Invalid data" + +#: lib/SP/Services/Api/ApiRequest.php:88 +msgid "Invalid format" +msgstr "Invalid format" + +#: lib/SP/Services/Api/ApiService.php:155 +msgid "Wrong parameters" +msgstr "Wrong parameters" + +#: lib/SP/Services/Auth/LoginService.php:169 +#: lib/SP/Services/Auth/LoginService.php:495 +#: lib/SP/Services/Auth/LoginService.php:505 +#: lib/SP/Services/Auth/LoginService.php:625 +#: lib/SP/Services/Auth/LoginService.php:633 +#: lib/SP/Services/Auth/LoginService.php:675 +#: lib/SP/Services/Auth/LoginService.php:683 +msgid "Wrong login" +msgstr "Wrong login" + +#: lib/SP/Services/Auth/LoginService.php:237 +#: lib/SP/Services/Auth/LoginService.php:244 +msgid "User disabled" +msgstr "User disabled" + +#: lib/SP/Services/Auth/LoginService.php:296 +msgid "Using temporary password" +msgstr "Using temporary password" + +#: lib/SP/Services/Auth/LoginService.php:309 +#: lib/SP/Services/Auth/LoginService.php:315 +#: lib/SP/Services/Auth/LoginService.php:335 +#: lib/SP/Services/Auth/LoginService.php:341 +msgid "Wrong master password" +msgstr "Wrong master password" + +#: lib/SP/Services/Auth/LoginService.php:357 +msgid "Your previous password is needed" +msgstr "Your previous password is needed" + +#: lib/SP/Services/Auth/LoginService.php:369 +msgid "The Master Password either is not saved or is wrong" +msgstr "The Master Password either is not saved or is wrong" + +#: lib/SP/Services/Auth/LoginService.php:491 +#: lib/SP/Services/Auth/LoginService.php:569 +msgid "LDAP Server" +msgstr "LDAP Server" + +#: lib/SP/Services/Auth/LoginService.php:513 +#: lib/SP/Services/Auth/LoginService.php:521 +msgid "Account expired" +msgstr "Account expired" + +#: lib/SP/Services/Auth/LoginService.php:529 +#: lib/SP/Services/Auth/LoginService.php:537 +msgid "User has no associated groups" +msgstr "User has no associated groups" + +#: lib/SP/Services/Auth/LoginService.php:665 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:18 +msgid "Authentication" +msgstr "Authentication" + +#: lib/SP/Services/AuthToken/AuthTokenService.php:146 +#: lib/SP/Services/AuthToken/AuthTokenService.php:284 +#: lib/SP/Services/AuthToken/AuthTokenService.php:298 +msgid "Token not found" +msgstr "Token not found" + +#: lib/SP/Services/AuthToken/AuthTokenService.php:165 +msgid "Error while removing the tokens" +msgstr "Error while removing the tokens" + +#: lib/SP/Services/Backup/FileBackupService.php:108 +msgid "Make Backup" +msgstr "Make Backup" + +#: lib/SP/Services/Backup/FileBackupService.php:115 +msgid "Error while doing the backup in compatibility mode" +msgstr "Error while doing the backup in compatibility mode" + +#: lib/SP/Services/Backup/FileBackupService.php:126 +msgid "Error while doing the backup" +msgstr "Error while doing the backup" + +#: lib/SP/Services/Backup/FileBackupService.php:147 +#, php-format +msgid "Unable to create the backups directory (\"%s\")" +msgstr "Unable to create the backups directory (\"%s\")" + +#: lib/SP/Services/Backup/FileBackupService.php:152 +msgid "Please, check the backup directory permissions" +msgstr "Please, check the backup directory permissions" + +#: lib/SP/Services/Backup/FileBackupService.php:226 +msgid "Copying database" +msgstr "Copying database" + +#: lib/SP/Services/Backup/FileBackupService.php:358 +#: lib/SP/Services/Backup/FileBackupService.php:382 +msgid "Copying application" +msgstr "Copying application" + +#: lib/SP/Services/Backup/FileBackupService.php:377 +msgid "This operation is only available on Linux environments" +msgstr "This operation is only available on Linux environments" + +#: lib/SP/Services/Category/CategoryService.php:81 +#: lib/SP/Services/Category/CategoryService.php:102 +#: lib/SP/Services/Category/CategoryService.php:119 +msgid "Category not found" +msgstr "Category not found" + +#: lib/SP/Services/Category/CategoryService.php:138 +msgid "Error while deleting categories" +msgstr "Error while deleting categories" + +#: lib/SP/Services/Client/ClientService.php:81 +#: lib/SP/Services/Client/ClientService.php:100 +#: lib/SP/Services/Client/ClientService.php:115 +msgid "Client not found" +msgstr "Client not found" + +#: lib/SP/Services/Config/ConfigBackupService.php:121 +#: lib/SP/Services/Config/ConfigBackupService.php:128 +msgid "Unable to restore the configuration" +msgstr "Unable to restore the configuration" + +#: lib/SP/Services/Config/ConfigService.php:71 +#: lib/SP/Services/Config/ConfigService.php:156 +#, php-format +msgid "Parameter not found (%s)" +msgstr "Parameter not found (%s)" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:109 +msgid "Generate temporary password" +msgstr "Generate temporary password" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:116 +msgid "Error while generating the temporary password" +msgstr "Error while generating the temporary password" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:137 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:187 +msgid "Temporary password expired" +msgstr "Temporary password expired" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:166 +msgid "Error while checking the temporary password" +msgstr "Error while checking the temporary password" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:238 +#, php-format +msgid "%s Master Password" +msgstr "%s Master Password" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:239 +msgid "" +"A new sysPass master password has been generated, so next time you log into " +"the application it will be requested." +msgstr "" +"A new sysPass master password has been generated, so next time you log into " +"the application it will be requested." + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:240 +#, php-format +msgid "The new Master Password is: %s" +msgstr "The new Master Password is: %s" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:241 +#, php-format +msgid "This password will be valid until: %s" +msgstr "This password will be valid until: %s" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:242 +msgid "Please, don't forget to log in as soon as possible to save the changes." +msgstr "" +"Please, don't forget to log in as soon as possible to save the changes." + +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:73 +msgid "There aren't any data from custom fields" +msgstr "There aren't any data from custom fields" + +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:81 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:89 +msgid "Updating encrypted data" +msgstr "Updating encrypted data" + +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:114 +msgid "Records updated" +msgstr "Records updated" + +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:115 +msgid "Records not updated" +msgstr "Records not updated" + +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:141 +msgid "Error while updating the custom fields data" +msgstr "Error while updating the custom fields data" + +#: lib/SP/Services/CustomField/CustomFieldDefService.php:114 +msgid "Field not found" +msgstr "Field not found" + +#: lib/SP/Services/CustomField/CustomFieldDefService.php:135 +msgid "Error while deleting the fields" +msgstr "Error while deleting the fields" + +#: lib/SP/Services/CustomField/CustomFieldTypeService.php:86 +msgid "Field type not found" +msgstr "Field type not found" + +#: lib/SP/Services/Export/XmlExportService.php:130 +#: lib/SP/Storage/File/FileCacheBase.php:98 +#, php-format +msgid "Unable to create the directory (%s)" +msgstr "Unable to create the directory (%s)" + +#: lib/SP/Services/Export/XmlExportService.php:204 +msgid "Error while exporting" +msgstr "Error while exporting" + +#: lib/SP/Services/Export/XmlExportService.php:271 +msgid "Exporting categories" +msgstr "Exporting categories" + +#: lib/SP/Services/Export/XmlExportService.php:383 +msgid "Exporting clients" +msgstr "Exporting clients" + +#: lib/SP/Services/Export/XmlExportService.php:429 +msgid "Exporting tags" +msgstr "Exporting tags" + +#: lib/SP/Services/Export/XmlExportService.php:473 +msgid "Exporting accounts" +msgstr "Exporting accounts" + +#: lib/SP/Services/Export/XmlExportService.php:583 +msgid "Error while creating the XML file" +msgstr "Error while creating the XML file" + +#: lib/SP/Services/Export/XmlVerifyService.php:112 +#: lib/SP/Services/Import/XmlFileImport.php:84 +msgid "Unable to process the XML file" +msgstr "Unable to process the XML file" + +#: lib/SP/Services/Export/XmlVerifyService.php:183 +#: lib/SP/Services/Import/SyspassImport.php:181 +msgid "Error while checking integrity hash" +msgstr "Error while checking integrity hash" + +#: lib/SP/Services/Export/XmlVerifyService.php:200 +#: lib/SP/Services/Export/XmlVerifyService.php:230 +#: lib/SP/Services/Import/SyspassImport.php:129 +#: lib/SP/Services/Import/SyspassImport.php:153 +msgid "Wrong encryption password" +msgstr "Wrong encryption password" + +#: lib/SP/Services/Import/CsvImport.php:51 +#, php-format +msgid "Detected format: %s" +msgstr "Detected format: %s" + +#: lib/SP/Services/Import/CsvImportBase.php:132 +#: lib/SP/Services/Import/CsvImportBase.php:182 +#, php-format +msgid "Wrong number of fields (%d)" +msgstr "Wrong number of fields (%d)" + +#: lib/SP/Services/Import/CsvImportBase.php:134 +#: lib/SP/Services/Import/CsvImportBase.php:184 +#, php-format +msgid "Please, check the CSV file format in line %s" +msgstr "Please, check the CSV file format in line %s" + +#: lib/SP/Services/Import/CsvImportBase.php:164 +#: lib/SP/Services/Import/KeepassImport.php:105 +#: lib/SP/Services/Import/SyspassImport.php:392 +msgid "Account imported" +msgstr "Account imported" + +#: lib/SP/Services/Import/CsvImportBase.php:172 +msgid "Error while importing the account" +msgstr "Error while importing the account" + +#: lib/SP/Services/Import/CsvImportBase.php:173 +msgid "Error while processing line" +msgstr "Error while processing line" + +#: lib/SP/Services/Import/FileImport.php:83 +msgid "File successfully uploaded" +msgstr "File successfully uploaded" + +#: lib/SP/Services/Import/FileImport.php:85 +msgid "Please check the web server user permissions" +msgstr "Please check the web server user permissions" + +#: lib/SP/Services/Import/FileImport.php:108 +msgid "Please, check PHP configuration for upload files" +msgstr "Please, check PHP configuration for upload files" + +#: lib/SP/Services/Import/ImportService.php:100 +#, php-format +msgid "Mime type not supported (\"%s\")" +msgstr "Mime type not supported (\"%s\")" + +#: lib/SP/Services/Import/ImportService.php:102 +msgid "Please, check the file format" +msgstr "Please, check the file format" + +#: lib/SP/Services/Import/ImportTrait.php:111 +msgid "Category Id not set. Unable to import account." +msgstr "Category Id not set. Unable to import account." + +#: lib/SP/Services/Import/ImportTrait.php:115 +msgid "Client Id not set. Unable to import account." +msgstr "Client Id not set. Unable to import account." + +#: lib/SP/Services/Import/KeepassImport.php:60 +msgid "KeePass XML Import" +msgstr "KeePass XML Import" + +#: lib/SP/Services/Import/KeepassImport.php:93 +#: lib/SP/Services/Import/SyspassImport.php:216 +msgid "Category imported" +msgstr "Category imported" + +#: lib/SP/Services/Import/SyspassImport.php:63 +msgid "sysPass XML Import" +msgstr "sysPass XML Import" + +#: lib/SP/Services/Import/SyspassImport.php:74 +msgid "Encryption password not set" +msgstr "Encryption password not set" + +#: lib/SP/Services/Import/SyspassImport.php:167 +msgid "Data unencrypted" +msgstr "Data unencrypted" + +#: lib/SP/Services/Import/SyspassImport.php:182 +msgid "" +"If you are importing an exported file from the same origin, the data could " +"be compromised." +msgstr "" +"If you are importing an exported file from the same origin, the data could " +"be compromised." + +#: lib/SP/Services/Import/SyspassImport.php:255 +#: lib/SP/Services/Import/SyspassImport.php:295 +msgid "Client imported" +msgstr "Client imported" + +#: lib/SP/Services/Import/SyspassImport.php:331 +msgid "Tag imported" +msgstr "Tag imported" + +#: lib/SP/Services/Import/XmlFileImport.php:108 +msgid "XML file not supported" +msgstr "XML file not supported" + +#: lib/SP/Services/Import/XmlFileImport.php:110 +msgid "Unable to guess the application which data was exported from" +msgstr "Unable to guess the application which data was exported from" + +#: lib/SP/Services/Import/XmlImport.php:101 +msgid "Format not detected" +msgstr "Format not detected" + +#: lib/SP/Services/Import/XmlImport.php:109 +msgid "Not implemented" +msgstr "Not implemented" + +#: lib/SP/Services/Import/XmlImportBase.php:111 +#: lib/SP/Services/Import/XmlImportTrait.php:80 +msgid "Invalid Method" +msgstr "Invalid Method" + +#: lib/SP/Services/Import/XmlImportBase.php:123 +#: lib/SP/Services/Import/XmlImportTrait.php:70 +msgid "Invalid XML format" +msgstr "Invalid XML format" + +#: lib/SP/Services/Import/XmlImportBase.php:125 +#: lib/SP/Services/Import/XmlImportTrait.php:72 +#, php-format +msgid "\"%s\" node doesn't exist" +msgstr "\"%s\" node doesn't exist" + +#: lib/SP/Services/Install/Installer.php:111 +msgid "Please, enter the admin username" +msgstr "Please, enter the admin username" + +#: lib/SP/Services/Install/Installer.php:113 +msgid "Admin user to log into the application" +msgstr "Admin user to log into the application" + +#: lib/SP/Services/Install/Installer.php:118 +msgid "Please, enter the admin's password" +msgstr "Please, enter the admin's password" + +#: lib/SP/Services/Install/Installer.php:120 +msgid "Application administrator's password" +msgstr "Application administrator's password" + +#: lib/SP/Services/Install/Installer.php:125 +msgid "Please, enter the Master Password" +msgstr "Please, enter the Master Password" + +#: lib/SP/Services/Install/Installer.php:127 +msgid "Master password to encrypt the passwords" +msgstr "Master password to encrypt the passwords" + +#: lib/SP/Services/Install/Installer.php:132 +msgid "Master password too short" +msgstr "Master password too short" + +#: lib/SP/Services/Install/Installer.php:134 +msgid "The Master Password length need to be at least 11 characters" +msgstr "The Master Password length need to be at least 11 characters" + +#: lib/SP/Services/Install/Installer.php:139 +msgid "Please, enter the database user" +msgstr "Please, enter the database user" + +#: lib/SP/Services/Install/Installer.php:141 +msgid "An user with database administrative rights" +msgstr "An user with database administrative rights" + +#: lib/SP/Services/Install/Installer.php:146 +msgid "Please, enter the database password" +msgstr "Please, enter the database password" + +#: lib/SP/Services/Install/Installer.php:148 +msgid "Database administrator's password" +msgstr "Database administrator's password" + +#: lib/SP/Services/Install/Installer.php:153 +msgid "Please, enter the database name" +msgstr "Please, enter the database name" + +#: lib/SP/Services/Install/Installer.php:155 +msgid "Application database name. eg. syspass" +msgstr "Application database name. eg. syspass" + +#: lib/SP/Services/Install/Installer.php:160 +msgid "Database name cannot contain \".\"" +msgstr "Database name cannot contain \".\"" + +#: lib/SP/Services/Install/Installer.php:162 +msgid "Please, remove dots in database name" +msgstr "Please, remove dots in database name" + +#: lib/SP/Services/Install/Installer.php:167 +msgid "Please, enter the database server" +msgstr "Please, enter the database server" + +#: lib/SP/Services/Install/Installer.php:169 +msgid "Server where the database will be installed" +msgstr "Server where the database will be installed" + +#: lib/SP/Services/Install/Installer.php:324 +#: lib/SP/Services/Install/Installer.php:375 +msgid "Warn to developer" +msgstr "Warn to developer" + +#: lib/SP/Services/Install/Installer.php:365 +msgid "Error while creating 'admin' user" +msgstr "Error while creating 'admin' user" + +#: lib/SP/Services/Install/MySQL.php:135 +#, php-format +msgid "Unable to check the sysPass user (%s)" +msgstr "Unable to check the sysPass user (%s)" + +#: lib/SP/Services/Install/MySQL.php:137 +msgid "Please, check the DB connection user rights" +msgstr "Please, check the DB connection user rights" + +#: lib/SP/Services/Install/MySQL.php:181 +#, php-format +msgid "Error while creating the MySQL connection user '%s'" +msgstr "Error while creating the MySQL connection user '%s'" + +#: lib/SP/Services/Install/MySQL.php:201 +msgid "The database already exists" +msgstr "The database already exists" + +#: lib/SP/Services/Install/MySQL.php:203 +msgid "Please, enter a new database or delete the existing one" +msgstr "Please, enter a new database or delete the existing one" + +#: lib/SP/Services/Install/MySQL.php:213 lib/SP/Services/Install/MySQL.php:329 +#: lib/SP/Services/Install/MySQL.php:341 +#, php-format +msgid "Error while creating the DB ('%s')" +msgstr "Error while creating the DB ('%s')" + +#: lib/SP/Services/Install/MySQL.php:215 lib/SP/Services/Install/MySQL.php:239 +msgid "Please check the database user permissions" +msgstr "Please check the database user permissions" + +#: lib/SP/Services/Install/MySQL.php:237 +#, php-format +msgid "Error while setting the database permissions ('%s')" +msgstr "Error while setting the database permissions ('%s')" + +#: lib/SP/Services/Install/MySQL.php:251 +msgid "The database does not exist" +msgstr "The database does not exist" + +#: lib/SP/Services/Install/MySQL.php:253 +msgid "You need to create it and assign the needed permissions" +msgstr "You need to create it and assign the needed permissions" + +#: lib/SP/Services/Install/MySQL.php:309 +#, php-format +msgid "Error while selecting '%s' database (%s)" +msgstr "Error while selecting '%s' database (%s)" + +#: lib/SP/Services/Install/MySQL.php:311 +msgid "" +"Unable to use the database to create the structure. Please check the " +"permissions and it does not exist." +msgstr "" +"Unable to use the database to create the structure. Please check the " +"permissions and it does not exist." + +#: lib/SP/Services/Install/MySQL.php:331 +msgid "Error while creating database structure." +msgstr "Error while creating database structure." + +#: lib/SP/Services/Install/MySQL.php:365 +msgid "Please, try the installation again" +msgstr "Please, try the installation again" + +#: lib/SP/Services/ItemPreset/ItemPresetService.php:86 +#: lib/SP/Services/ItemPreset/ItemPresetService.php:107 +msgid "Value not found" +msgstr "Value not found" + +#: lib/SP/Services/ItemPreset/ItemPresetService.php:190 +msgid "Error while deleting the values" +msgstr "Error while deleting the values" + +#: lib/SP/Services/Ldap/LdapImportService.php:108 +#: lib/SP/Services/Ldap/LdapImportService.php:189 +msgid "Objects found" +msgstr "Objects found" + +#: lib/SP/Services/Ldap/LdapImportService.php:133 +#: lib/SP/Services/Ldap/LdapImportService.php:222 +msgid "Imported from LDAP" +msgstr "Imported from LDAP" + +#: lib/SP/Services/Mail/MailService.php:67 +msgid "Mail test" +msgstr "Mail test" + +#: lib/SP/Services/Mail/MailService.php:68 +msgid "" +"This is a test email in order to verify that the configuration is working " +"right." +msgstr "" +"This is a test email in order to verify that the configuration is working " +"right." + +#: lib/SP/Services/Notification/NotificationService.php:106 +#: lib/SP/Services/Notification/NotificationService.php:125 +#: lib/SP/Services/Notification/NotificationService.php:184 +#: lib/SP/Services/Notification/NotificationService.php:214 +msgid "Notification not found" +msgstr "Notification not found" + +#: lib/SP/Services/Plugin/PluginDataService.php:103 +#: lib/SP/Services/Plugin/PluginDataService.php:127 +#: lib/SP/Services/Plugin/PluginDataService.php:171 +#: lib/SP/Services/Plugin/PluginDataService.php:189 +msgid "Plugin's data not found" +msgstr "" + +#: lib/SP/Services/Plugin/PluginService.php:94 +#: lib/SP/Services/Plugin/PluginService.php:155 +#: lib/SP/Services/Plugin/PluginService.php:188 +#: lib/SP/Services/Plugin/PluginService.php:208 +#: lib/SP/Services/Plugin/PluginService.php:226 +#: lib/SP/Services/Plugin/PluginService.php:243 +#: lib/SP/Services/Plugin/PluginService.php:260 +#: lib/SP/Services/Plugin/PluginService.php:277 +msgid "Plugin not found" +msgstr "Plugin not found" + +#: lib/SP/Services/PublicLink/PublicLinkService.php:129 +#: lib/SP/Services/PublicLink/PublicLinkService.php:152 +#: lib/SP/Services/PublicLink/PublicLinkService.php:226 +#: lib/SP/Services/PublicLink/PublicLinkService.php:304 +#: lib/SP/Services/PublicLink/PublicLinkService.php:339 +#: lib/SP/Services/PublicLink/PublicLinkService.php:360 +msgid "Link not found" +msgstr "Link not found" + +#: lib/SP/Services/PublicLink/PublicLinkService.php:245 +msgid "Error while removing the links" +msgstr "Error while removing the links" + +#: lib/SP/Services/Service.php:111 +msgid "Rollback" +msgstr "Rollback" + +#: lib/SP/Services/Service.php:117 +msgid "Unable to start a transaction" +msgstr "Unable to start a transaction" + +#: lib/SP/Services/Service.php:135 lib/SP/Services/Service.php:142 +msgid "Error while retrieving master password from context" +msgstr "Error while retrieving master password from context" + +#: lib/SP/Services/Service.php:162 lib/SP/Services/Service.php:166 +msgid "Error while setting master password in context" +msgstr "Error while setting master password in context" + +#: lib/SP/Services/Tag/TagService.php:81 lib/SP/Services/Tag/TagService.php:100 +#: lib/SP/Services/Tag/TagService.php:117 +msgid "Tag not found" +msgstr "Tag not found" + +#: lib/SP/Services/Task/TaskService.php:85 +msgid "Unable to create the lock file" +msgstr "Unable to create the lock file" + +#: lib/SP/Services/Task/TaskService.php:94 +msgid "Task not set within wait time" +msgstr "Task not set within wait time" + +#: lib/SP/Services/Task/TaskService.php:183 +msgid "Waiting for progress updating ..." +msgstr "Waiting for progress updating ..." + +#: lib/SP/Services/Track/TrackService.php:94 +#: lib/SP/Services/Track/TrackService.php:108 +#: lib/SP/Services/Track/TrackService.php:135 +msgid "Track not found" +msgstr "Track not found" + +#: lib/SP/Services/Track/TrackService.php:169 +#, php-format +msgid "Attempts exceeded (%d/%d)" +msgstr "Attempts exceeded (%d/%d)" + +#: lib/SP/Services/Track/TrackService.php:170 +msgid "Seconds" +msgstr "Seconds" + +#: lib/SP/Services/Track/TrackService.php:215 +msgid "IP address not set" +msgstr "IP address not set" + +#: lib/SP/Services/Upgrade/UpgradeAppService.php:72 +#: lib/SP/Services/Upgrade/UpgradeAppService.php:95 +msgid "Update Application" +msgstr "Update Application" + +#: lib/SP/Services/Upgrade/UpgradeAppService.php:79 +msgid "Error while applying the application update" +msgstr "Error while applying the application update" + +#: lib/SP/Services/Upgrade/UpgradeAppService.php:81 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:112 +msgid "Please, check the event log for more details" +msgstr "Please, check the event log for more details" + +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:56 +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:86 +msgid "API authorizations update" +msgstr "API authorizations update" + +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:81 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:215 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:261 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:310 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:335 +msgid "Update Configuration" +msgstr "Update Configuration" + +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:93 +msgid "Parameter" +msgstr "Parameter" + +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:132 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:136 +msgid "Error while updating the configuration" +msgstr "Error while updating the configuration" + +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:287 +msgid "MIME type set for this extension" +msgstr "MIME type set for this extension" + +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:288 +msgid "MIME type" +msgstr "MIME type" + +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:289 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:298 +msgid "Extension" +msgstr "Extension" + +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:297 +msgid "MIME type not found for this extension" +msgstr "MIME type not found for this extension" + +#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:58 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:89 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:61 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:112 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:172 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:204 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:222 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:268 +msgid "Custom fields update" +msgstr "Custom fields update" + +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:95 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:126 +msgid "Update DB" +msgstr "Update DB" + +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:102 +msgid "Error while applying an auxiliary update" +msgstr "Error while applying an auxiliary update" + +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:110 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:181 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 +msgid "Error while updating the database" +msgstr "Error while updating the database" + +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:158 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:160 +msgid "Update file does not contain data" +msgstr "Update file does not contain data" + +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:191 +msgid "Database updating was completed successfully." +msgstr "Database updating was completed successfully." + +#: lib/SP/Services/Upgrade/UpgradePlugin.php:49 +#: lib/SP/Services/Upgrade/UpgradePlugin.php:58 +msgid "Plugins upgrade" +msgstr "" + +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:57 +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:103 +msgid "Public links update" +msgstr "Public links update" + +#: lib/SP/Services/User/UserPassService.php:261 +#: lib/SP/Services/User/UserService.php:126 +#: lib/SP/Services/User/UserService.php:157 +#: lib/SP/Services/User/UserService.php:176 +msgid "User does not exist" +msgstr "User does not exist" + +#: lib/SP/Services/User/UserService.php:195 +msgid "User not found" +msgstr "User not found" + +#: lib/SP/Services/UserGroup/UserGroupService.php:85 +#: lib/SP/Services/UserGroup/UserGroupService.php:103 +#: lib/SP/Services/UserGroup/UserGroupService.php:192 +#: lib/SP/Services/UserGroup/UserToUserGroupService.php:61 +msgid "Group not found" +msgstr "Group not found" + +#: lib/SP/Services/UserGroup/UserGroupService.php:120 +msgid "Error while deleting the groups" +msgstr "Error while deleting the groups" + +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:73 +msgid "A request for changing your user password has been done." +msgstr "A request for changing your user password has been done." + +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:75 +msgid "In order to complete the process, please go to this URL:" +msgstr "In order to complete the process, please go to this URL:" + +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:79 +msgid "If you have not requested this action, please dismiss this message." +msgstr "If you have not requested this action, please dismiss this message." + +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:94 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:162 +msgid "Wrong hash or expired" +msgstr "Wrong hash or expired" + +#: lib/SP/Services/UserProfile/UserProfileService.php:70 +#: lib/SP/Services/UserProfile/UserProfileService.php:102 +msgid "Profile not found" +msgstr "Profile not found" + +#: lib/SP/Services/Wiki/DokuWikiApi.php:69 +msgid "Authentication error" +msgstr "Authentication error" + +#: lib/SP/Services/Wiki/DokuWikiApiBase.php:198 +msgid "Error while doing the query" +msgstr "Error while doing the query" + +#: lib/SP/Services/Wiki/DokuWikiApiBase.php:230 +msgid "Connection URL not set" +msgstr "Connection URL not set" + +#: lib/SP/Storage/Database/Database.php:132 +msgid "Blank query" +msgstr "Blank query" + +#: lib/SP/Storage/Database/Database.php:249 +msgid "Integrity constraint" +msgstr "Integrity constraint" + +#: lib/SP/Storage/Database/MySQLHandler.php:101 +#: lib/SP/Storage/Database/MySQLHandler.php:168 +msgid "Please, check the connection parameters" +msgstr "Please, check the connection parameters" + +#: lib/SP/Storage/Database/QueryData.php:338 +msgid "Error while querying" +msgstr "Error while querying" + +#: lib/SP/Storage/File/FileCachePacked.php:47 +#, php-format +msgid "Error while decompressing the file data (%s)" +msgstr "Error while decompressing the file data (%s)" + +#: lib/SP/Storage/File/FileCachePacked.php:53 +msgid "Error while retrieving the data" +msgstr "Error while retrieving the data" + +#: lib/SP/Storage/File/FileCachePacked.php:72 +#, php-format +msgid "Error while compressing the file data (%s)" +msgstr "Error while compressing the file data (%s)" + +#: lib/SP/Storage/File/FileHandler.php:76 +#: lib/SP/Storage/File/FileHandler.php:165 +#, php-format +msgid "Unable to read/write the file (%s)" +msgstr "Unable to read/write the file (%s)" + +#: lib/SP/Storage/File/FileHandler.php:101 +#, php-format +msgid "Unable to open the file (%s)" +msgstr "Unable to open the file (%s)" + +#: lib/SP/Storage/File/FileHandler.php:119 +#, php-format +msgid "Unable to obtain a lock (%s)" +msgstr "Unable to obtain a lock (%s)" + +#: lib/SP/Storage/File/FileHandler.php:134 +#: lib/SP/Storage/File/FileHandler.php:148 +#, php-format +msgid "Unable to read from file (%s)" +msgstr "Unable to read from file (%s)" + +#: lib/SP/Storage/File/FileHandler.php:207 +#, php-format +msgid "Unable to close the file (%s)" +msgstr "Unable to close the file (%s)" + +#: lib/SP/Storage/File/FileHandler.php:261 +#, php-format +msgid "Unable to write in file (%s)" +msgstr "Unable to write in file (%s)" + +#: lib/SP/Storage/File/FileHandler.php:276 +#, php-format +msgid "File not found (%s)" +msgstr "File not found (%s)" + +#: lib/SP/Storage/File/FileHandler.php:301 +#: lib/SP/Storage/File/FileHandler.php:356 +#, php-format +msgid "Unable to read/write file (%s)" +msgstr "Unable to read/write file (%s)" + +#: lib/SP/Storage/File/FileHandler.php:328 +#, php-format +msgid "Unable to delete file (%s)" +msgstr "Unable to delete file (%s)" + +#: lib/SP/Storage/File/XmlHandler.php:90 lib/SP/Storage/File/XmlHandler.php:310 +msgid "XML node does not exist" +msgstr "XML node does not exist" + +#: lib/SP/Storage/File/XmlHandler.php:168 +msgid "There aren't any items to save" +msgstr "There aren't any items to save" + +#: lib/SP/Util/Connection.php:157 +msgid "Socket not initialized" +msgstr "Socket not initialized" + +#: lib/SP/Util/Connection.php:164 +msgid "Error while sending the data" +msgstr "Error while sending the data" + +#: lib/SP/Util/ErrorUtil.php:149 +msgid "Option unavailable" +msgstr "Option unavailable" + +#: lib/SP/Util/ErrorUtil.php:169 lib/SP/Util/ErrorUtil.php:176 +msgid "An exception occured" +msgstr "An exception occured" + +#: lib/SP/Util/ImageUtil.php:65 +msgid "Invalid image" +msgstr "Invalid image" + +#: app/modules/web/themes/material-blue/views/_layouts/main.inc:25 +msgid "Javascript is needed in order to run correctly" +msgstr "Javascript is needed in order to run correctly" + +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:80 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:141 +msgid "User preferences" +msgstr "User preferences" + +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:84 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:87 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:163 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:166 +msgid "Sign Out" +msgstr "Sign Out" + +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:179 +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:60 +msgid "Demo" +msgstr "Demo" + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 +msgid "Tells whether the connection uses HTTPS or not." +msgstr "Tells whether the connection uses HTTPS or not." + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 +msgid "" +"Passwords sent from forms are encrypted using PKI, the remain data don't." +msgstr "" +"Passwords sent from forms are encrypted using PKI, the remain data don't." + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:74 +msgid "Help :: FAQ :: Changelog" +msgstr "Help :: FAQ :: Changelog" + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:79 +msgid "A cygnux.org project" +msgstr "A cygnux.org project" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:13 +msgid "Special parameters" +msgstr "Special parameters" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:15 +msgid "" +"You could use either one or several special parameters separated by blank " +"spaces" +msgstr "" +"You could use either one or several special parameters separated by blank " +"spaces" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Search for accounts which 'login' has access rights" +msgstr "Search for accounts which 'login' has access rights" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +msgid "Get the accounts in which user login \"login\" is the owner" +msgstr "Get the accounts in which user login \"login\" is the owner" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Search for accounts which 'group_name' has access rights" +msgstr "Search for accounts which 'group_name' has access rights" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Get the accounts in which main group \"group_name\" is set" +msgstr "Get the accounts in which main group \"group_name\" is set" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Search for accounts which contain a file with the name 'file_name'" +msgstr "Search for accounts which contain a file with the name 'file_name'" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Search for accounts by client name" +msgstr "Search for accounts by client name" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 +msgid "Search for accounts by category name" +msgstr "Search for accounts by category name" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Returns the account for the given ID" +msgstr "Returns the account for the given ID" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Search for accounts name by regular expression" +msgstr "" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 +msgid "Search for accounts with expired password" +msgstr "Search for accounts with expired password" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:27 +msgid "Get private accounts for current user" +msgstr "Get private accounts for current user" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:28 +msgid "Operator for special parameters" +msgstr "Operator for special parameters" + +#: app/modules/web/themes/material-blue/views/_partials/no_records_found.inc:13 +#: app/modules/web/themes/material-blue/views/account/search-index.inc:22 +msgid "No records found" +msgstr "No records found" + +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:100 +#: app/modules/web/themes/material-blue/views/account/account.inc:186 +#: app/modules/web/themes/material-blue/views/account/account.inc:195 +#: app/modules/web/themes/material-blue/views/install/index.inc:74 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:130 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:139 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:68 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:76 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:46 +msgid "Password (repeat)" +msgstr "Password (repeat)" + +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:128 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:168 +#: app/modules/web/themes/material-blue/views/account/account.inc:218 +#: app/modules/web/themes/material-blue/views/account/account.inc:311 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:288 +msgid "Select date" +msgstr "Select date" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:26 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:160 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:162 +#: app/modules/web/themes/material-blue/views/account/account.inc:303 +#: app/modules/web/themes/material-blue/views/account/account.inc:305 +msgid "History" +msgstr "History" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:37 +#: app/modules/web/themes/material-blue/views/account/account.inc:56 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:32 +msgid "Details" +msgstr "Details" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:91 +#: app/modules/web/themes/material-blue/views/account/account.inc:126 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:53 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 +msgid "Select Category" +msgstr "Select Category" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:144 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:93 +#: app/modules/web/themes/material-blue/views/account/account.inc:224 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:181 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:182 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:189 +msgid "Notes" +msgstr "Notes" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:181 +#: app/modules/web/themes/material-blue/views/account/account.inc:326 +#: app/modules/web/themes/material-blue/views/account/details.inc:38 +#: app/modules/web/themes/material-blue/views/account/details.inc:40 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:314 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:316 +msgid "Last Modification" +msgstr "Last Modification" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:33 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:66 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:136 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:161 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:25 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:68 +msgid "Select Users" +msgstr "Select Users" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:43 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:47 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:115 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:119 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:144 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:201 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:36 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:79 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 +msgid "View" +msgstr "View" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:105 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:138 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:193 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:218 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:68 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:86 +msgid "Select Groups" +msgstr "Select Groups" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:188 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:126 +#: app/modules/web/themes/material-blue/views/config/import.inc:39 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:311 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:83 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:35 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:100 +msgid "Select User" +msgstr "Select User" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:212 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:306 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: app/modules/web/themes/material-blue/views/config/import.inc:67 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:285 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:99 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:171 +msgid "Select Group" +msgstr "Select Group" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:236 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:201 +msgid "Private" +msgstr "Private" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:254 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:218 +msgid "Private for Group" +msgstr "Private for Group" + +#: app/modules/web/themes/material-blue/views/account/account-request.inc:21 +msgid "Request Account Modification" +msgstr "Request Account Modification" + +#: app/modules/web/themes/material-blue/views/account/account-request.inc:65 +msgid "Request description" +msgstr "Request description" + +#: app/modules/web/themes/material-blue/views/account/account-request.inc:87 +msgid "Send" +msgstr "Send" + +#: app/modules/web/themes/material-blue/views/account/account.inc:46 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:145 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:30 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:236 +msgid "Permissions" +msgstr "Permissions" + +#: app/modules/web/themes/material-blue/views/account/account.inc:100 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:43 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 +msgid "Select Client" +msgstr "Select Client" + +#: app/modules/web/themes/material-blue/views/account/account.inc:245 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +msgid "Select Tags" +msgstr "Select Tags" + +#: app/modules/web/themes/material-blue/views/account/account.inc:294 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:35 +msgid "Select Account" +msgstr "Select Account" + +#: app/modules/web/themes/material-blue/views/account/account.inc:334 +#: app/modules/web/themes/material-blue/views/account/account.inc:336 +#: app/modules/web/themes/material-blue/views/account/account.inc:340 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:206 +msgid "Public Link" +msgstr "Public Link" + +#: app/modules/web/themes/material-blue/views/account/account.inc:348 +#: app/modules/web/themes/material-blue/views/account/account.inc:350 +#: app/modules/web/themes/material-blue/views/account/account.inc:354 +msgid "Direct Link" +msgstr "Direct Link" + +#: app/modules/web/themes/material-blue/views/account/details.inc:28 +#: app/modules/web/themes/material-blue/views/account/details.inc:30 +msgid "Date Added" +msgstr "Date Added" + +#: app/modules/web/themes/material-blue/views/account/details.inc:66 +#: app/modules/web/themes/material-blue/views/account/details.inc:68 +msgid "Date Modified" +msgstr "Date Modified" + +#: app/modules/web/themes/material-blue/views/account/details.inc:74 +#: app/modules/web/themes/material-blue/views/account/details.inc:76 +msgid "Editor" +msgstr "Editor" + +#: app/modules/web/themes/material-blue/views/account/details.inc:84 +#: app/modules/web/themes/material-blue/views/account/details.inc:86 +msgid "Password Date" +msgstr "Password Date" + +#: app/modules/web/themes/material-blue/views/account/files.inc:45 +msgid "Drop files here (max. 5) or click to select" +msgstr "Drop files here (max. 5) or click to select" + +#: app/modules/web/themes/material-blue/views/account/files.inc:47 +#, php-format +msgid "Maximum file size: %d MB" +msgstr "Maximum file size: %d MB" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:44 +msgid "Search in Wiki" +msgstr "Search in Wiki" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:95 +#, php-format +msgid "Open link to: %s" +msgstr "Open link to: %s" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:123 +msgid "Password Expired" +msgstr "Password Expired" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:137 +msgid "Private Account (Group)" +msgstr "Private Account (Group)" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:162 +msgid "Delete Favorite" +msgstr "Delete Favorite" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:172 +msgid "Mark as Favorite" +msgstr "Mark as Favorite" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:195 +msgid "Attachments" +msgstr "Attachments" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:208 +msgid "Expiry Date" +msgstr "" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:222 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:233 +msgid "Link to Wiki" +msgstr "Link to Wiki" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:225 +msgid "View at Wiki" +msgstr "View at Wiki" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:70 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:76 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:254 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:255 +msgid "Global search" +msgstr "Global search" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:89 +msgid "Display All" +msgstr "Display All" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:96 +msgid "Show Favorites" +msgstr "Show Favorites" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:101 +msgid "Favorites Filtering" +msgstr "Favorites Filtering" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:120 +msgid "Accounts per page" +msgstr "Accounts per page" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:128 +msgid "More Filters" +msgstr "More Filters" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:134 +msgid "Select Tag" +msgstr "Select Tag" + +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:30 +msgid "Copy Username" +msgstr "Copy Username" + +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:48 +msgid "Copy Password" +msgstr "Copy Password" + +#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:26 +msgid "Data will be encrypted after saving" +msgstr "Data will be encrypted after saving" + +#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:31 +msgid "Data will be unencrypted after saving" +msgstr "Data will be unencrypted after saving" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:18 +#: app/modules/web/themes/material-blue/views/config/backup.inc:18 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:18 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:18 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:17 +#, php-format +msgid "The '%s' extension is unavailable" +msgstr "The '%s' extension is unavailable" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:23 +msgid "This extension is needed to display passwords as images" +msgstr "This extension is needed to display passwords as images" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:36 +msgid "Searching" +msgstr "Searching" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:42 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:62 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:64 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:84 +msgid "Results per page" +msgstr "Results per page" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:48 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:70 +msgid "Number of results per page to display when performing a search." +msgstr "Number of results per page to display when performing a search." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:82 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:35 +msgid "Accounts password expiry" +msgstr "Accounts password expiry" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:83 +msgid "Enables the accounts password expiry date." +msgstr "Enables the accounts password expiry date." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:91 +msgid "Password expiry time" +msgstr "Password expiry time" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:97 +msgid "Number of days for account's password expiry date." +msgstr "Number of days for account's password expiry date." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:109 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:43 +msgid "Expire time (days)" +msgstr "Expire time (days)" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:128 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:103 +msgid "Account name as link" +msgstr "Account name as link" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:129 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:105 +msgid "Enables to use the account name as a link to account details." +msgstr "Enables to use the account name as a link to account details." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:145 +msgid "Global searches" +msgstr "Global searches" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:146 +msgid "" +"Allows the users to do searches that includes all accounts, they won't be " +"able to display the account details if they don't have permission." +msgstr "" +"Allows the users to do searches that includes all accounts, they won't be " +"able to display the account details if they don't have permission." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:162 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:166 +msgid "Image to show password" +msgstr "Image to show password" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:164 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:168 +msgid "Generate an image with a text of the account password." +msgstr "Generate an image with a text of the account password." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:166 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:170 +msgid "" +"Useful for environments where copying a password to clipboard is a security " +"risk." +msgstr "" +"Useful for environments where copying a password to clipboard is a security " +"risk." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:183 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "Results like Cards" +msgstr "Results like Cards" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:185 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Displays account's search results on a card like format." +msgstr "Displays account's search results on a card like format." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:202 +msgid "Secondary Groups Access" +msgstr "Secondary Groups Access" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:204 +msgid "Grants access to users that are included in secondary groups." +msgstr "Grants access to users that are included in secondary groups." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:206 +msgid "" +"By default, user in a secondary group is granted if the secondary group is " +"set as user's main group." +msgstr "" +"By default, user in a secondary group is granted if the secondary group is " +"set as user's main group." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:217 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:412 +msgid "Public Links" +msgstr "Public Links" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:236 +msgid "Enable Public Links" +msgstr "Enable Public Links" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:238 +msgid "Enables the ability to create public links to view an account's details" +msgstr "" +"Enables the ability to create public links to view an account's details" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:240 +msgid "Linked accounts will be visible by anyone that have the link." +msgstr "Linked accounts will be visible by anyone that have the link." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:242 +msgid "" +"In order to create links, users must have activated the option on their " +"profiles." +msgstr "" +"In order to create links, users must have activated the option on their " +"profiles." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:259 +msgid "Use an image for password" +msgstr "Use an image for password" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:261 +msgid "The account password is shown as image." +msgstr "The account password is shown as image." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:270 +msgid "Expire time" +msgstr "Expire time" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:281 +msgid "Expire time (minutes)" +msgstr "Expire time (minutes)" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:287 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:298 +msgid "Maximum visits" +msgstr "Maximum visits" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:325 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +msgid "Files management" +msgstr "Files management" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:326 +msgid "Enables the uploading and downloading of accounts files." +msgstr "Enables the uploading and downloading of accounts files." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:334 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:348 +msgid "Allowed MIME types" +msgstr "Allowed MIME types" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:340 +msgid "Allowed file MIME types for uploading." +msgstr "Allowed file MIME types for uploading." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:343 +msgid "" +"In order to add more MIME types, you need to add them into mime.xml file " +"within the config directory." +msgstr "" +"In order to add more MIME types, you need to add them into mime.xml file " +"within the config directory." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:365 +msgid "Maximum file size" +msgstr "Maximum file size" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:371 +msgid "Sets the maximum file size for uploading." +msgstr "Sets the maximum file size for uploading." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:375 +msgid "Absolute maximum is 16MB." +msgstr "Absolute maximum is 16MB." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:388 +msgid "Maximum file size in kilobytes" +msgstr "Maximum file size in kilobytes" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:23 +msgid "This extension is needed to build the application's backup files" +msgstr "This extension is needed to build the application's backup files" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:37 +#: app/modules/web/themes/material-blue/views/config/backup.inc:40 +#: app/modules/web/themes/material-blue/views/config/backup.inc:118 +#: app/modules/web/themes/material-blue/views/config/backup.inc:121 +msgid "Result" +msgstr "Result" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:48 +#: app/modules/web/themes/material-blue/views/config/backup.inc:51 +#: app/modules/web/themes/material-blue/views/config/backup.inc:129 +#: app/modules/web/themes/material-blue/views/config/backup.inc:132 +msgid "Download Current" +msgstr "Download Current" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:58 +msgid "DB Backup" +msgstr "DB Backup" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:65 +msgid "sysPass Backup" +msgstr "sysPass Backup" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:88 +msgid "" +"The backup allows you to save and download sysPass database and application " +"files including its configuration." +msgstr "" +"The backup allows you to save and download sysPass database and application " +"files including its configuration." + +#: app/modules/web/themes/material-blue/views/config/backup.inc:90 +msgid "" +"With this method it's possible to either save all sysPass data in another " +"place or use it to make the application portable." +msgstr "" +"With this method it's possible to either save all sysPass data in another " +"place or use it to make the application portable." + +#: app/modules/web/themes/material-blue/views/config/backup.inc:109 +#: app/modules/web/themes/material-blue/views/config/backup.inc:197 +msgid "Export Accounts" +msgstr "Export Accounts" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:149 +#: app/modules/web/themes/material-blue/views/config/backup.inc:157 +msgid "Export Password" +msgstr "Export Password" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:163 +#: app/modules/web/themes/material-blue/views/config/backup.inc:172 +msgid "Export Password (repeat)" +msgstr "Export Password (repeat)" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:199 +msgid "" +"The accounts export allows you to save the accounts and their data in XML " +"format to be imported in another sysPass instance." +msgstr "" +"The accounts export allows you to save the accounts and their data in XML " +"format to be imported in another sysPass instance." + +#: app/modules/web/themes/material-blue/views/config/backup.inc:201 +msgid "Exported items are accounts, clients, categories and tags." +msgstr "Exported items are accounts, clients, categories and tags." + +#: app/modules/web/themes/material-blue/views/config/backup.inc:203 +msgid "" +"Accounts' password are exported in an encrypted way for better security." +msgstr "" +"Accounts' password are exported in an encrypted way for better security." + +#: app/modules/web/themes/material-blue/views/config/backup.inc:205 +msgid "" +"It's possible to set an export password to save all the encrypted data in " +"the XML file." +msgstr "" +"It's possible to set an export password to save all the encrypted data in " +"the XML file." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:24 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:173 +#: app/modules/web/themes/material-blue/views/config/import.inc:162 +#: app/modules/web/themes/material-blue/views/config/import.inc:179 +#: app/modules/web/themes/material-blue/views/install/index.inc:58 +#: app/modules/web/themes/material-blue/views/install/index.inc:65 +#: app/modules/web/themes/material-blue/views/login/index.inc:62 +#: app/modules/web/themes/material-blue/views/login/index.inc:110 +msgid "Master Password" +msgstr "Master Password" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:31 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:34 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:219 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:222 +msgid "Last change" +msgstr "Last change" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:42 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:51 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:148 +msgid "Current Master Password" +msgstr "Current Master Password" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:57 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:66 +msgid "New Master Password" +msgstr "New Master Password" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:72 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:81 +msgid "New Master Password (repeat)" +msgstr "New Master Password (repeat)" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:96 +msgid "You should save the new password on a secure place" +msgstr "You should save the new password on a secure place" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:100 +msgid "All accounts passwords will be encrypted again." +msgstr "All accounts passwords will be encrypted again." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:104 +msgid "Users will need to enter the new Master Password." +msgstr "Users will need to enter the new Master Password." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:108 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:136 +#, php-format +msgid "It will be updated %s accounts. This process could take some time long." +msgstr "" +"It will be updated %s accounts. This process could take some time long." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:126 +msgid "Do not modify accounts" +msgstr "Do not modify accounts" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:128 +msgid "Sets a new Master Password without re-encrypting the accounts." +msgstr "Sets a new Master Password without re-encrypting the accounts." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:145 +msgid "Confirm change" +msgstr "Confirm change" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:147 +msgid "" +"Confirm the master password change after you have been read all the above " +"warnings." +msgstr "" +"Confirm the master password change after you have been read all the above " +"warnings." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:175 +msgid "" +"The Master Password is used to encrypt sysPass accounts passwords and keep " +"them safe." +msgstr "" +"The Master Password is used to encrypt sysPass accounts passwords and keep " +"them safe." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:177 +msgid "" +"It's advisable to change it from time to time and use a complex password " +"that includes numbers, letters and symbols." +msgstr "" +"It's advisable to change it from time to time and use a complex password " +"that includes numbers, letters and symbols." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:179 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:138 +#, php-format +msgid "You could get more info on: %s" +msgstr "You could get more info on: %s" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:189 +msgid "Update master password hash" +msgstr "Update master password hash" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:209 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:349 +msgid "Temporary Password" +msgstr "Temporary Password" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:224 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:239 +msgid "Not generated" +msgstr "Not generated" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:229 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:232 +msgid "Valid until" +msgstr "Valid until" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:245 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:248 +msgid "Attempts" +msgstr "Attempts" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:255 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:267 +msgid "Life (s)" +msgstr "Life (s)" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:287 +msgid "Send email" +msgstr "Send email" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:289 +msgid "Sends an email to all users or only to those whose group is selected." +msgstr "Sends an email to all users or only to those whose group is selected." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:351 +msgid "" +"The temporary password is used as a Master Password for the users that need " +"to enter it during login. By this way there is no need to tell them the real " +"Master Password." +msgstr "" +"The temporary password is used as a Master Password for the users that need " +"to enter it during login. By this way there is no need to tell them the real " +"Master Password." + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:358 +msgid "Generate" +msgstr "Generate" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:37 +msgid "Use Auth Basic" +msgstr "Use Auth Basic" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:38 +msgid "Use Auth Basic for authorizing accesses to the application" +msgstr "Use Auth Basic for authorizing accesses to the application" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Use Auth Basic SSO" +msgstr "Use Auth Basic SSO" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:55 +msgid "Use auto-login through Auth Basic" +msgstr "Use auto-login through Auth Basic" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:63 +msgid "Domain" +msgstr "Domain" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:68 +msgid "" +"The domain will be added to sysPass user name for checking against the Auth " +"Basic one." +msgstr "" +"The domain will be added to sysPass user name for checking against the Auth " +"Basic one." + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:79 +msgid "Domain name" +msgstr "Domain name" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:96 +#: app/modules/web/themes/material-blue/views/config/import.inc:52 +#: app/modules/web/themes/material-blue/views/config/import.inc:63 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:270 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:281 +msgid "Default Group" +msgstr "Default Group" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:91 +msgid "Sets the default users group for newly created SSO users" +msgstr "Sets the default users group for newly created SSO users" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:111 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:122 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:296 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:307 +msgid "Default Profile" +msgstr "Default Profile" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:117 +msgid "Sets the default profile for the newly created SSO users." +msgstr "Sets the default profile for the newly created SSO users." + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:18 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:110 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:113 +#: app/modules/web/themes/material-blue/views/config/mail.inc:196 +#: app/modules/web/themes/material-blue/views/config/mail.inc:199 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:78 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:80 +msgid "Events" +msgstr "Events" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:37 +msgid "Enable event log" +msgstr "Enable event log" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:38 +msgid "Saves the actions done by the application." +msgstr "Saves the actions done by the application." + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:53 +msgid "Enable Syslog" +msgstr "Enable Syslog" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:69 +msgid "Enable Remote Syslog" +msgstr "Enable Remote Syslog" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:88 +msgid "Hostname or IP address" +msgstr "Hostname or IP address" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:94 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:104 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:60 +#: app/modules/web/themes/material-blue/views/config/mail.inc:84 +#: app/modules/web/themes/material-blue/views/config/mail.inc:94 +msgid "Port" +msgstr "Port" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:17 +msgid "Proxy" +msgstr "Proxy" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:36 +msgid "Use Proxy" +msgstr "Use Proxy" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:37 +msgid "Use a proxy server for checking out for updates and notifications." +msgstr "Use a proxy server for checking out for updates and notifications." + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:54 +msgid "Proxy server" +msgstr "Proxy server" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:70 +msgid "Proxy server port" +msgstr "Proxy server port" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:85 +msgid "Proxy server user" +msgstr "Proxy server user" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:100 +msgid "Proxy server password" +msgstr "Proxy server password" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:23 +msgid "This extension is needed to check for sysPass updates and notices" +msgstr "This extension is needed to check for sysPass updates and notices" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:31 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:21 +msgid "Site" +msgstr "Site" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:37 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:51 +#: app/modules/web/themes/material-blue/views/config/info.inc:119 +#: app/modules/web/themes/material-blue/views/config/info.inc:133 +#: app/modules/web/themes/material-blue/views/install/index.inc:147 +#: app/modules/web/themes/material-blue/views/install/index.inc:150 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:33 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:35 +msgid "Language" +msgstr "Language" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:42 +msgid "" +"Sets the global app language. You can set a per user language on preferences." +msgstr "" +"Sets the global app language. You can set a per user language on preferences." + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:46 +msgid "" +"To improve/add translations, you can get involved at https://poeditor.com/" +"join/project/fmlsBuugyv" +msgstr "" +"To improve/add translations, you can get involved at https://poeditor.com/" +"join/project/fmlsBuugyv" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:65 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:75 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:48 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:50 +msgid "Visual Theme" +msgstr "Visual Theme" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:70 +msgid "" +"Sets the global application visual theme. You can set a per user visual " +"theme on preferences." +msgstr "" +"Sets the global application visual theme. You can set a per user visual " +"theme on preferences." + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:89 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:101 +msgid "Session timeout (s)" +msgstr "Session timeout (s)" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:107 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:123 +msgid "Application URL" +msgstr "" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:112 +msgid "" +"Sets the application URL when accessing through a reverse proxy or load " +"balancer." +msgstr "" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:142 +msgid "Force HTTPS" +msgstr "Force HTTPS" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:143 +msgid "It forces the use of HTTPS on all the connections" +msgstr "It forces the use of HTTPS on all the connections" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:158 +msgid "Enable debug" +msgstr "Enable debug" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:159 +msgid "" +"Displays some information about application configuration and performance." +msgstr "" +"Displays some information about application configuration and performance." + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:174 +msgid "Maintenance mode" +msgstr "Maintenance mode" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:175 +msgid "" +"In this mode nobody can log into the application. To disable it, you need to " +"either modify the configuration file or unset on the site tab." +msgstr "" +"In this mode nobody can log into the application. To disable it, you need to " +"either modify the configuration file or unset on the site tab." + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:190 +msgid "Check for updates" +msgstr "Check for updates" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:191 +msgid "Check for application updates (only for administrators)." +msgstr "Check for application updates (only for administrators)." + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:206 +msgid "Check for notifications" +msgstr "Check for notifications" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:207 +msgid "" +"Check if there are either sysPass security or warning notices (only for " +"administrators)." +msgstr "" +"Check if there are either sysPass security or warning notices (only for " +"administrators)." + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:222 +msgid "Encrypt Session" +msgstr "Encrypt Session" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:224 +msgid "Encrypt PHP session data" +msgstr "Encrypt PHP session data" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:225 +msgid "" +"This feature increases the PHP sessions security, because the stored data " +"won't be readable." +msgstr "" +"This feature increases the PHP sessions security, because the stored data " +"won't be readable." + +#: app/modules/web/themes/material-blue/views/config/import.inc:18 +#: app/modules/web/themes/material-blue/views/config/import.inc:113 +msgid "CSV/XML Import" +msgstr "CSV/XML Import" + +#: app/modules/web/themes/material-blue/views/config/import.inc:24 +#: app/modules/web/themes/material-blue/views/config/import.inc:35 +msgid "Default User" +msgstr "Default User" + +#: app/modules/web/themes/material-blue/views/config/import.inc:30 +msgid "Sets the default user for the accounts imported." +msgstr "Sets the default user for the accounts imported." + +#: app/modules/web/themes/material-blue/views/config/import.inc:58 +msgid "Sets the default group for the accounts imported." +msgstr "Sets the default group for the accounts imported." + +#: app/modules/web/themes/material-blue/views/config/import.inc:83 +msgid "Drop files here or click to select" +msgstr "Drop files here or click to select" + +#: app/modules/web/themes/material-blue/views/config/import.inc:115 +msgid "" +"Allows to import Accounts, Categories and Clients from XML or CSV files." +msgstr "" +"Allows to import Accounts, Categories and Clients from XML or CSV files." + +#: app/modules/web/themes/material-blue/views/config/import.inc:117 +msgid "Supported XML file formats are: sysPass, KeePass and KeePassX" +msgstr "Supported XML file formats are: sysPass, KeePass and KeePassX" + +#: app/modules/web/themes/material-blue/views/config/import.inc:119 +msgid "Drag & Drop the file into the import zone or click over the arrow." +msgstr "Drag & Drop the file into the import zone or click over the arrow." + +#: app/modules/web/themes/material-blue/views/config/import.inc:121 +msgid "" +"For KeePass or KeePassX files, client name will be KeePass or KeePassX and " +"category name like groups name." +msgstr "" +"For KeePass or KeePassX files, client name will be KeePass or KeePassX and " +"category name like groups name." + +#: app/modules/web/themes/material-blue/views/config/import.inc:123 +msgid "The CSV import file requires the following format:" +msgstr "The CSV import file requires the following format:" + +#: app/modules/web/themes/material-blue/views/config/import.inc:125 +msgid "" +"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\"" +msgstr "" +"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\"" + +#: app/modules/web/themes/material-blue/views/config/import.inc:127 +msgid "" +"In all cases, if the client or category do not exist they will be created " +"automatically." +msgstr "" +"In all cases, if the client or category do not exist they will be created " +"automatically." + +#: app/modules/web/themes/material-blue/views/config/import.inc:135 +msgid "XML" +msgstr "XML" + +#: app/modules/web/themes/material-blue/views/config/import.inc:141 +#: app/modules/web/themes/material-blue/views/config/import.inc:156 +msgid "Import Password" +msgstr "Import Password" + +#: app/modules/web/themes/material-blue/views/config/import.inc:146 +msgid "It's only needed for sysPass XML files that have been encrypted." +msgstr "It's only needed for sysPass XML files that have been encrypted." + +#: app/modules/web/themes/material-blue/views/config/import.inc:168 +msgid "" +"It's only needed for sysPass XML files that have been encrypted with a " +"different master password from the current one." +msgstr "" +"It's only needed for sysPass XML files that have been encrypted with a " +"different master password from the current one." + +#: app/modules/web/themes/material-blue/views/config/import.inc:186 +msgid "CSV" +msgstr "CSV" + +#: app/modules/web/themes/material-blue/views/config/import.inc:192 +#: app/modules/web/themes/material-blue/views/config/import.inc:208 +msgid "CSV delimiter" +msgstr "CSV delimiter" + +#: app/modules/web/themes/material-blue/views/config/import.inc:198 +msgid "It's only needed for CSV files." +msgstr "It's only needed for CSV files." + +#: app/modules/web/themes/material-blue/views/config/info.inc:20 +msgid "Application Information" +msgstr "Application Information" + +#: app/modules/web/themes/material-blue/views/config/info.inc:26 +#: app/modules/web/themes/material-blue/views/config/info.inc:29 +msgid "sysPass version" +msgstr "sysPass version" + +#: app/modules/web/themes/material-blue/views/config/info.inc:42 +#: app/modules/web/themes/material-blue/views/config/info.inc:45 +msgid "Database" +msgstr "Database" + +#: app/modules/web/themes/material-blue/views/config/info.inc:56 +#: app/modules/web/themes/material-blue/views/config/info.inc:59 +msgid "PHP" +msgstr "PHP" + +#: app/modules/web/themes/material-blue/views/config/info.inc:63 +msgid "Extensions" +msgstr "Extensions" + +#: app/modules/web/themes/material-blue/views/config/info.inc:67 +msgid "Unavailable extensions" +msgstr "Unavailable extensions" + +#: app/modules/web/themes/material-blue/views/config/info.inc:71 +msgid "Used Memory" +msgstr "Used Memory" + +#: app/modules/web/themes/material-blue/views/config/info.inc:75 +msgid "Download rate" +msgstr "Download rate" + +#: app/modules/web/themes/material-blue/views/config/info.inc:78 +msgid "OP Cache" +msgstr "OP Cache" + +#: app/modules/web/themes/material-blue/views/config/info.inc:97 +#: app/modules/web/themes/material-blue/views/config/info.inc:100 +msgid "Configuration Backup" +msgstr "Configuration Backup" + +#: app/modules/web/themes/material-blue/views/config/info.inc:110 +#: app/modules/web/themes/material-blue/views/config/info.inc:192 +#, php-format +msgid "Download %s" +msgstr "Download %s" + +#: app/modules/web/themes/material-blue/views/config/info.inc:124 +msgid "Tells whether the language is available or not." +msgstr "Tells whether the language is available or not." + +#: app/modules/web/themes/material-blue/views/config/info.inc:128 +msgid "" +"If it is not installed, you would need install the right operating system " +"locales. More info at Wiki." +msgstr "" +"If it is not installed, you would need install the right operating system " +"locales. More info at Wiki." + +#: app/modules/web/themes/material-blue/views/config/info.inc:140 +#: app/modules/web/themes/material-blue/views/config/info.inc:150 +msgid "Encrypted Session" +msgstr "Encrypted Session" + +#: app/modules/web/themes/material-blue/views/config/info.inc:145 +msgid "Tells whether the session data are encrypted in the server side or not" +msgstr "Tells whether the session data are encrypted in the server side or not" + +#: app/modules/web/themes/material-blue/views/config/info.inc:157 +#: app/modules/web/themes/material-blue/views/config/info.inc:160 +msgid "Loaded Plugins" +msgstr "Loaded Plugins" + +#: app/modules/web/themes/material-blue/views/config/info.inc:183 +#: app/modules/web/themes/material-blue/views/config/info.inc:186 +msgid "Log file" +msgstr "Log file" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:23 +msgid "This extension is needed to connect to the LDAP server" +msgstr "This extension is needed to connect to the LDAP server" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:54 +msgid "Enable LDAP" +msgstr "Enable LDAP" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:56 +msgid "Enables authentication against an LDAP server." +msgstr "Enables authentication against an LDAP server." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:58 +msgid "This method will use MySQL as fallback." +msgstr "This method will use MySQL as fallback." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:76 +msgid "Enables the connection over TLS" +msgstr "Enables the connection over TLS" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:85 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:87 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:91 +msgid "Server Type" +msgstr "Server Type" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:108 +msgid "Hostname or IP address of LDAP server." +msgstr "Hostname or IP address of LDAP server." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:112 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:145 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:212 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:248 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:130 +msgid "Examples:" +msgstr "Examples:" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:135 +msgid "Bind User" +msgstr "Bind User" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:141 +msgid "User to connect to LDAP service." +msgstr "User to connect to LDAP service." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:167 +msgid "Bind Password" +msgstr "Bind Password" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:173 +msgid "LDAP connection user's password" +msgstr "LDAP connection user's password" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:194 +msgid "" +"This isn't the real LDAP password. You should set the real one before " +"checking or importing LDAP objects" +msgstr "" +"This isn't the real LDAP password. You should set the real one before " +"checking or importing LDAP objects" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:202 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:228 +msgid "Search base" +msgstr "Search base" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:208 +msgid "LDAP base to perform the LDAP users search." +msgstr "LDAP base to perform the LDAP users search." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:240 +msgid "LDAP group which user must belong to for granting to log in." +msgstr "LDAP group which user must belong to for granting to log in." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:244 +msgid "This group needs to be placed in the LDAP search base." +msgstr "This group needs to be placed in the LDAP search base." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:276 +msgid "Sets the default users group for newly created LDAP users" +msgstr "Sets the default users group for newly created LDAP users" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:302 +msgid "Sets the default profile for the newly created LDAP users." +msgstr "Sets the default profile for the newly created LDAP users." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:354 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:535 +msgid "Import" +msgstr "Import" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:360 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:371 +msgid "Login Attribute" +msgstr "Login Attribute" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:366 +msgid "Defines the attribute for the user's login when importing." +msgstr "Defines the attribute for the user's login when importing." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:385 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:396 +msgid "Name Attribute" +msgstr "Name Attribute" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:391 +msgid "Defines the attribute for the user's name when importing." +msgstr "Defines the attribute for the user's name when importing." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:423 +msgid "Import Groups" +msgstr "Import Groups" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:432 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:443 +msgid "Group Name Attribute" +msgstr "Group Name Attribute" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:438 +msgid "Defines the attribute for the user group name when importing." +msgstr "Defines the attribute for the user group name when importing." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:455 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:471 +msgid "Filter" +msgstr "Filter" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:461 +msgid "Filter for importing LDAP users or groups." +msgstr "Filter for importing LDAP users or groups." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:502 +msgid "Import users from LDAP" +msgstr "Import users from LDAP" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:41 +#: app/modules/web/themes/material-blue/views/config/mail.inc:42 +msgid "Enable email notifications" +msgstr "Enable email notifications" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:58 +msgid "Enable requests by email" +msgstr "Enable requests by email" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:60 +msgid "" +"Allows users to request for either modifications to existing accounts or " +"access to accounts which they have no rights on." +msgstr "" +"Allows users to request for either modifications to existing accounts or " +"access to accounts which they have no rights on." + +#: app/modules/web/themes/material-blue/views/config/mail.inc:113 +msgid "Enable Authentication" +msgstr "Enable Authentication" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:152 +#: app/modules/web/themes/material-blue/views/config/mail.inc:155 +msgid "Security" +msgstr "Security" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:169 +#: app/modules/web/themes/material-blue/views/config/mail.inc:178 +msgid "Sender email address" +msgstr "Sender email address" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:184 +#: app/modules/web/themes/material-blue/views/config/mail.inc:187 +msgid "Recipients" +msgstr "Recipients" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:22 +msgid "This extension is needed to connect with DokuWiki" +msgstr "This extension is needed to connect with DokuWiki" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:35 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:54 +msgid "Enable DokuWiki API" +msgstr "Enable DokuWiki API" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:56 +msgid "Enables DokuWiki XML-RPC API for Wiki links." +msgstr "Enables DokuWiki XML-RPC API for Wiki links." + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:58 +msgid "" +"In order to get this feature working, you should enable Wiki links for " +"accounts filtering" +msgstr "" +"In order to get this feature working, you should enable Wiki links for " +"accounts filtering" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:68 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:92 +msgid "API URL" +msgstr "API URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:74 +msgid "DokuWiki API URL" +msgstr "DokuWiki API URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:78 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:108 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:64 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:99 +msgid "Example:" +msgstr "Example:" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:98 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:123 +msgid "Base URL" +msgstr "Base URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:104 +msgid "DokuWiki base URL" +msgstr "DokuWiki base URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:135 +msgid "User for connecting to the DokuWiki API." +msgstr "User for connecting to the DokuWiki API." + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:168 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:186 +msgid "Namespace" +msgstr "Namespace" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:174 +msgid "Namespace used to search pages." +msgstr "Namespace used to search pages." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:41 +msgid "Enable Wiki links" +msgstr "Enable Wiki links" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:42 +msgid "" +"Enables the option to add a link to search for results in an external Wiki." +msgstr "" +"Enables the option to add a link to search for results in an external Wiki." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:50 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:79 +msgid "Wiki search URL" +msgstr "Wiki search URL" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:56 +msgid "URL that Wiki uses for making an entry searching." +msgstr "URL that Wiki uses for making an entry searching." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:60 +msgid "The client's name is used as parameter." +msgstr "The client's name is used as parameter." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:85 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:114 +msgid "Wiki page URL" +msgstr "Wiki page URL" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:91 +msgid "URL that Wiki uses for accessing to the entry details." +msgstr "URL that Wiki uses for accessing to the entry details." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:95 +msgid "Account's name is used as parameter of Wiki search variable." +msgstr "Account's name is used as parameter of Wiki search variable." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:120 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:135 +msgid "Account name prefix" +msgstr "Account name prefix" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:126 +msgid "Prefix to determine which accounts have a link to the Wiki." +msgstr "Prefix to determine which accounts have a link to the Wiki." + +#: app/modules/web/themes/material-blue/views/error/error-database.inc:23 +#: app/modules/web/themes/material-blue/views/error/error-database.inc:25 +#: app/modules/web/themes/material-blue/views/install/index.inc:184 +#: app/modules/web/themes/material-blue/views/install/index.inc:186 +msgid "Install" +msgstr "Install" + +#: app/modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:21 +msgid "Filter ON" +msgstr "Filter ON" + +#: app/modules/web/themes/material-blue/views/install/index.inc:17 +#, php-format +msgid "Installation %s" +msgstr "Installation %s" + +#: app/modules/web/themes/material-blue/views/install/index.inc:28 +msgid "sysPass Admin" +msgstr "sysPass Admin" + +#: app/modules/web/themes/material-blue/views/install/index.inc:37 +msgid "sysPass admin user" +msgstr "sysPass admin user" + +#: app/modules/web/themes/material-blue/views/install/index.inc:45 +msgid "sysPass administrator's login" +msgstr "sysPass administrator's login" + +#: app/modules/web/themes/material-blue/views/install/index.inc:79 +msgid "DB Configuration" +msgstr "DB Configuration" + +#: app/modules/web/themes/material-blue/views/install/index.inc:89 +msgid "DB access user" +msgstr "DB access user" + +#: app/modules/web/themes/material-blue/views/install/index.inc:97 +msgid "An user with MySQL admin rights" +msgstr "An user with MySQL admin rights" + +#: app/modules/web/themes/material-blue/views/install/index.inc:105 +msgid "DB access password" +msgstr "DB access password" + +#: app/modules/web/themes/material-blue/views/install/index.inc:114 +#: app/modules/web/themes/material-blue/views/install/index.inc:122 +msgid "sysPass database name" +msgstr "sysPass database name" + +#: app/modules/web/themes/material-blue/views/install/index.inc:131 +msgid "sysPass database server" +msgstr "sysPass database server" + +#: app/modules/web/themes/material-blue/views/install/index.inc:139 +msgid "Server name to install sysPass database" +msgstr "Server name to install sysPass database" + +#: app/modules/web/themes/material-blue/views/install/index.inc:160 +msgid "Hosting Mode" +msgstr "Hosting Mode" + +#: app/modules/web/themes/material-blue/views/install/index.inc:167 +msgid "It does not create or verify the user's permissions on the DB" +msgstr "It does not create or verify the user's permissions on the DB" + +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:39 +msgid "Others" +msgstr "Others" + +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +msgid "Creator" +msgstr "Creator" + +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:263 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:265 +msgid "Delete History" +msgstr "Delete History" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:51 +msgid "Select Action" +msgstr "Select Action" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:28 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:111 +msgid "Options" +msgstr "Options" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:81 +msgid "Refresh Authorization" +msgstr "Refresh Authorization" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:87 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:89 +msgid "Token" +msgstr "Token" + +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:63 +msgid "Sets whether the client is visible by all users" +msgstr "Sets whether the client is visible by all users" + +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:66 +msgid "" +"By default, clients assigned to accounts only will be visible by users who " +"are granted to access to the accounts." +msgstr "" +"By default, clients assigned to accounts only will be visible by users who " +"are granted to access to the accounts." + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:39 +msgid "Field name" +msgstr "Field name" + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:74 +msgid "Help Text" +msgstr "Help Text" + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:81 +msgid "Field's help" +msgstr "Field's help" + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:94 +msgid "Required" +msgstr "Required" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:21 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:29 +msgid "Length" +msgstr "Length" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:49 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +msgid "Score" +msgstr "Score" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:64 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:71 +msgid "Regular Expression" +msgstr "Regular Expression" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:91 +msgid "Include Numbers" +msgstr "Include Numbers" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:106 +msgid "Include Letters" +msgstr "Include Letters" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:121 +msgid "Include Symbols" +msgstr "Include Symbols" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:136 +msgid "Include Uppercase" +msgstr "Include Uppercase" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:151 +msgid "Include Lowercase" +msgstr "Include Lowercase" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:37 +msgid "Accounts will be only visible by the user." +msgstr "Accounts will be only visible by the user." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:39 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:59 +msgid "Administrators won't be able to display the accounts." +msgstr "Administrators won't be able to display the accounts." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:57 +msgid "" +"Accounts will be only visible by the user and users belonging to the main " +"group." +msgstr "" +"Accounts will be only visible by the user and users belonging to the main " +"group." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:21 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +msgid "IP Address" +msgstr "IP Address" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:34 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:42 +msgid "Timeout" +msgstr "Timeout" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:153 +msgid "Select Profile" +msgstr "Select Profile" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:103 +msgid "" +"Assignment priority if values match with others assigned by user, group or " +"profile." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:116 +msgid "Assignment Priority" +msgstr "Assignment Priority" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:139 +msgid "Enforces the values to be set either on creating or updating an item." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:141 +msgid "Values will be merged with the existing ones." +msgstr "Values will be merged with the existing ones." + +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:93 +msgid "Hash" +msgstr "Hash" + +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "URL" +msgstr "URL" + +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:109 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:111 +msgid "Use" +msgstr "Use" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:55 +msgid "Full username" +msgstr "Full username" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:70 +msgid "Session login" +msgstr "Session login" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:81 +msgid "SSO Login " +msgstr "SSO Login " + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:90 +msgid "Session login with SSO" +msgstr "Session login with SSO" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:106 +msgid "Email address" +msgstr "Email address" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:223 +msgid "Application administrator" +msgstr "Application administrator" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:242 +msgid "Accounts administrator" +msgstr "Accounts administrator" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:263 +msgid "Force password change" +msgstr "Force password change" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:296 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:298 +msgid "Entries" +msgstr "Entries" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:305 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:307 +msgid "Last Access" +msgstr "Last Access" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:323 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:325 +msgid "Master Password Date" +msgstr "Master Password Date" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:332 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:334 +msgid "Used in" +msgstr "Used in" + +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:98 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:100 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:592 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:594 +msgid "Used by" +msgstr "Used by" + +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:119 +msgid "(*) Listed in group" +msgstr "(*) Listed in group" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:35 +msgid "Management" +msgstr "Management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 +msgid "Create new account" +msgstr "Create new account" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 +msgid "View account details" +msgstr "View account details" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 +msgid "View account password" +msgstr "View account password" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 +msgid "View History" +msgstr "View History" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:99 +msgid "View account history" +msgstr "View account history" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:117 +msgid "Edit account" +msgstr "Edit account" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:133 +msgid "Edit Password" +msgstr "Edit Password" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 +msgid "Edit account password" +msgstr "Edit account password" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "Remove account" +msgstr "Remove account" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:168 +msgid "View account files" +msgstr "View account files" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:184 +msgid "Share Link" +msgstr "Share Link" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:185 +msgid "Share link to account" +msgstr "Share link to account" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:202 +msgid "Create private account" +msgstr "Create private account" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:219 +msgid "Create private account for group" +msgstr "Create private account for group" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:237 +msgid "Assign permissions" +msgstr "Assign permissions" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 +msgid "Users management" +msgstr "Users management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 +msgid "Groups management" +msgstr "Groups management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:311 +msgid "Profiles management" +msgstr "Profiles management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:328 +msgid "Categories management" +msgstr "Categories management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:345 +msgid "Tags management" +msgstr "Tags management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 +msgid "Customers management" +msgstr "Customers management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Custom fields management" +msgstr "Custom fields management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:396 +msgid "API authorizations management" +msgstr "API authorizations management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:413 +msgid "Links management" +msgstr "Links management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:430 +msgid "Accounts management" +msgstr "Accounts management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 +msgid "Default Values" +msgstr "Default Values" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:464 +msgid "Default Values Management" +msgstr "Default Values Management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:485 +msgid "General Configuration" +msgstr "General Configuration" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:502 +msgid "Encryption options" +msgstr "Encryption options" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:519 +msgid "Make a backup and export" +msgstr "Make a backup and export" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 +msgid "Make accounts import" +msgstr "Make accounts import" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:557 +msgid "View event log" +msgstr "View event log" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:585 +msgid "Profile name" +msgstr "Profile name" + +#: app/modules/web/themes/material-blue/views/login/index.inc:51 +msgid "Previous Password" +msgstr "Previous Password" + +#: app/modules/web/themes/material-blue/views/login/index.inc:80 +msgid "Sign in" +msgstr "Sign in" + +#: app/modules/web/themes/material-blue/views/login/index.inc:89 +msgid "Forgot password?" +msgstr "Forgot password?" + +#: app/modules/web/themes/material-blue/views/main/update.inc:42 +msgid "Updated" +msgstr "Updated" + +#: app/modules/web/themes/material-blue/views/main/update.inc:49 +msgid "Error while checking for updates" +msgstr "Error while checking for updates" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:17 +#, php-format +msgid "Update %s" +msgstr "Update %s" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:24 +msgid "DB Update" +msgstr "DB Update" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:26 +msgid "Application Update" +msgstr "Application Update" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:34 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:34 +msgid "Security Code" +msgstr "Security Code" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:42 +msgid "" +"This code is set in sysPass config file within the tag name \"upgradekey\"" +msgstr "" +"This code is set in sysPass config file within the tag name \"upgradekey\"" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:52 +msgid "" +"Some orphaned items have been found. Please, modify those items or enter the " +"default IDs for them." +msgstr "" +"Some orphaned items have been found. Please, modify those items or enter the " +"default IDs for them." + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:54 +msgid "If items IDs are not set, they will be created." +msgstr "If items IDs are not set, they will be created." + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:80 +msgid "Enter a valid user ID for the accounts" +msgstr "Enter a valid user ID for the accounts" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:91 +msgid "Enter a valid category ID for the accounts" +msgstr "Enter a valid category ID for the accounts" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:102 +msgid "Enter a valid client ID for the accounts" +msgstr "Enter a valid client ID for the accounts" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:114 +msgid "Enter a valid group ID for the users" +msgstr "Enter a valid group ID for the users" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:124 +msgid "Enter a valid profile ID for the users" +msgstr "Enter a valid profile ID for the users" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:134 +msgid "" +"This update uses a new encryption schema, so it will be needed to reencrypt " +"the whole encrypted data." +msgstr "" +"This update uses a new encryption schema, so it will be needed to reencrypt " +"the whole encrypted data." + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:157 +msgid "Enter a valid user login" +msgstr "Enter a valid user login" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:172 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "I've done a full sysPass backup" +msgstr "I've done a full sysPass backup" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:189 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:49 +msgid "Please, wait while the process is running" +msgstr "Please, wait while the process is running" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:200 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:60 +msgid "Start Update" +msgstr "Start Update" + +#: app/modules/web/themes/material-blue/views/notification/notification.inc:115 +msgid "Global notification" +msgstr "Global notification" + +#: app/modules/web/themes/material-blue/views/notification/notification.inc:124 +msgid "Only for application administrators" +msgstr "Only for application administrators" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:36 +msgid "Plugin name" +msgstr "Plugin name" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:48 +msgid "Plugin version" +msgstr "Plugin version" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "Compatible Version" +msgstr "Compatible Version" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:61 +msgid "sysPass compatible version" +msgstr "sysPass compatible version" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:66 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:43 +msgid "Author" +msgstr "Author" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:73 +msgid "Plugin author" +msgstr "Plugin author" + +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:15 +msgid "The application needs to be updated" +msgstr "The application needs to be updated" + +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:20 +msgid "Please enter the security code to start the upgrade" +msgstr "Please enter the security code to start the upgrade" + +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:8 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:18 +msgid "Request Password Change" +msgstr "Request Password Change" + +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:32 +msgid "User's Email" +msgstr "User's Email" + +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:43 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:59 +msgid "Go back to login" +msgstr "Go back to login" + +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:65 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:67 +msgid "Change" +msgstr "Change" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:121 +msgid "Sort search results by views" +msgstr "Sort search results by views" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:123 +msgid "Sorts accounts search results by the number of account's views" +msgstr "Sorts accounts search results by the number of account's views" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:139 +msgid "Navigation bar on top" +msgstr "Navigation bar on top" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Displays a navigation bar on top of the search results." +msgstr "Displays a navigation bar on top of the search results." + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:157 +msgid "Show Hidden Actions" +msgstr "Show Hidden Actions" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:159 +msgid "Always display hidden actions on the accounts search page." +msgstr "Always display hidden actions on the accounts search page." + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:193 +msgid "In-App Notifications" +msgstr "In-App Notifications" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:195 +msgid "Enables the active In-App notifications polling" +msgstr "Enables the active In-App notifications polling" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:212 +msgid "Show Filters" +msgstr "Show Filters" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:214 +msgid "Displays the additional filters selection on the accounts search." +msgstr "Displays the additional filters selection on the accounts search." + +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:20 +msgid "View Wiki" +msgstr "View Wiki" + +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:26 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:35 +msgid "Page not found" +msgstr "Page not found" + +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:28 +#, php-format +msgid "Search results of '%s'" +msgstr "Search results of '%s'" + +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:31 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:41 +msgid "Page" +msgstr "Page" + +#~ msgid "\"/config\" directory does not exist." +#~ msgstr "\"/config\" directory does not exist." + +#~ msgid "Unable to write into \"/config\" directory" +#~ msgstr "Unable to write into \"/config\" directory" + +#~ msgid "\"/config\" directory permissions are wrong" +#~ msgstr "\"/config\" directory permissions are wrong" + +#~ msgid "There was an error" +#~ msgstr "There was an error" + +#~ msgid "Session finished" +#~ msgstr "Session finished" + +#~ msgid "Delete account?" +#~ msgstr "Delete account?" + +#~ msgid "Delete user?" +#~ msgstr "Delete user?" + +#~ msgid "You should save configuration in order to take effect" +#~ msgstr "You should save configuration in order to take effect" + +#~ msgid "Generated Password" +#~ msgstr "Generated Password" + +#~ msgid "High level" +#~ msgstr "High level" + +#~ msgid "Average level" +#~ msgstr "Average level" + +#~ msgid "Low level" +#~ msgstr "Low level" + +#~ msgid "Very High level" +#~ msgstr "Very High level" + +#~ msgid "You should use at least 8 characters" +#~ msgstr "You should use at least 8 characters" + +#~ msgid "Delete item?" +#~ msgstr "Delete item?" + +#~ msgid "Delete file?" +#~ msgstr "Delete file?" + +#~ msgid "Your browser does not support HTML5 file uploads" +#~ msgstr "Your browser does not support HTML5 file uploads" + +#~ msgid "Too many files" +#~ msgstr "Too many files" + +#~ msgid "File size not allowed" +#~ msgstr "File size not allowed" + +#~ msgid "MIME type not allowed" +#~ msgstr "MIME type not allowed" + +#~ msgid "Clear the event log out?" +#~ msgstr "Clear the event log out?" + +#~ msgid "No results" +#~ msgstr "No results" + +#~ msgid "Password options" +#~ msgstr "Password options" + +#~ msgid "Generate random password" +#~ msgstr "Generate random password" + +#~ msgid "Complexity" +#~ msgstr "Complexity" + +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "Password strength level" +#~ msgstr "Password strength level" + +#~ msgid "Show Password" +#~ msgstr "Show Password" + +#~ msgid "Accept" +#~ msgstr "Accept" + +#~ msgid "Cancel" +#~ msgstr "Cancel" + +#~ msgid "Password Copied into Clipboard" +#~ msgstr "Password Copied into Clipboard" + +#~ msgid "Error while copying to clipboard" +#~ msgstr "Error while copying to clipboard" + +#~ msgid "Send notifies?" +#~ msgstr "Send notifies?" + +#~ msgid "Clear Selection" +#~ msgstr "Clear Selection" + +#~ msgid "Now" +#~ msgstr "Now" + +#~ msgid "" +#~ "This process will import the detected LDAP users. Would you like to " +#~ "continue?" +#~ msgstr "" +#~ "This process will import the detected LDAP users. Would you like to " +#~ "continue?" + +#~ msgid "This action will reset all plugin data. Do you want to continue?" +#~ msgstr "This action will reset all plugin data. Do you want to continue?" + +#~ msgid "This process could take some time long. Do you wish to continue?" +#~ msgstr "This process could take some time long. Do you wish to continue?" + +#~ msgid "Performing task. Please, do not close browser's window/tab." +#~ msgstr "Performing task. Please, do not close browser's window/tab." + +#~ msgid "Cookies disabled. Application won't work properly." +#~ msgstr "Cookies disabled. Application won't work properly." + +#~ msgid "Clipboard not supported by your browser." +#~ msgstr "Clipboard not supported by your browser." + +#~ msgid "Performing auto-login" +#~ msgstr "Performing auto-login" + +#~ msgid "There is a more recent version of {0} plugin ({1})" +#~ msgstr "There is a more recent version of {0} plugin ({1})" + +#~ msgid "sysPass Notices" +#~ msgstr "sysPass Notices" + +#~ msgid "Clear the tracks out?" +#~ msgstr "Clear the tracks out?" + +#~ msgid "Search for Accounts" +#~ msgstr "Search for Accounts" + +#~ msgid "Requests" +#~ msgstr "Requests" + +#~ msgid "Favorites" +#~ msgstr "Favorites" + +#~ msgid "Items and Customizations" +#~ msgstr "Items and Customizations" + +#~ msgid "Categories Management" +#~ msgstr "Categories Management" + +#~ msgid "Customers Management" +#~ msgstr "Customers Management" + +#~ msgid "API Authorizations Management" +#~ msgstr "API Authorizations Management" + +#~ msgid "Custom Fields Management" +#~ msgstr "Custom Fields Management" + +#~ msgid "Files Management" +#~ msgstr "Files Management" + +#~ msgid "Accounts Management" +#~ msgstr "Accounts Management" + +#~ msgid "Tags Management" +#~ msgstr "Tags Management" + +#~ msgid "Plugins Management" +#~ msgstr "Plugins Management" + +#~ msgid "Users and Accesses" +#~ msgstr "Users and Accesses" + +#~ msgid "Security and Audit" +#~ msgstr "Security and Audit" + +#~ msgid "Users Management" +#~ msgstr "Users Management" + +#~ msgid "Groups Management" +#~ msgstr "Groups Management" + +#~ msgid "Profiles Management" +#~ msgstr "Profiles Management" + +#~ msgid "Clear Events" +#~ msgstr "Clear Events" + +#~ msgid "View Account" +#~ msgstr "View Account" + +#~ msgid "Upload File" +#~ msgstr "Upload File" + +#~ msgid "Search for Files" +#~ msgstr "Search for Files" + +#~ msgid "List Files" +#~ msgstr "List Files" + +#~ msgid "Add Wiki" +#~ msgstr "Add Wiki" + +#~ msgid "Edit Wiki" +#~ msgstr "Edit Wiki" + +#~ msgid "Delete Wiki" +#~ msgstr "Delete Wiki" + +#~ msgid "New API Token" +#~ msgstr "New API Token" + +#~ msgid "View API Token" +#~ msgstr "View API Token" + +#~ msgid "Edit API Token" +#~ msgstr "Edit API Token" + +#~ msgid "Delete API Token" +#~ msgstr "Delete API Token" + +#~ msgid "Search for API Token" +#~ msgstr "Search for API Token" + +#~ msgid "New Custom Field" +#~ msgstr "New Custom Field" + +#~ msgid "Show Custom Field" +#~ msgstr "Show Custom Field" + +#~ msgid "Edit Custom Field" +#~ msgstr "Edit Custom Field" + +#~ msgid "Delete Custom Field" +#~ msgstr "Delete Custom Field" + +#~ msgid "Search for Custom Field" +#~ msgstr "Search for Custom Field" + +#~ msgid "Show Public Link" +#~ msgstr "Show Public Link" + +#~ msgid "Search for Public Link" +#~ msgstr "Search for Public Link" + +#~ msgid "Enable Plugin" +#~ msgstr "Enable Plugin" + +#~ msgid "Disable Plugin" +#~ msgstr "Disable Plugin" + +#~ msgid "Reset Plugin" +#~ msgstr "Reset Plugin" + +#~ msgid "Edit User Password" +#~ msgstr "Edit User Password" + +#~ msgid "User Configuration" +#~ msgstr "User Configuration" + +#~ msgid "General Preferences" +#~ msgstr "General Preferences" + +#~ msgid "Accounts Configuration" +#~ msgstr "Accounts Configuration" + +#~ msgid "Wiki Configuration" +#~ msgstr "Wiki Configuration" + +#~ msgid "Encryption Configuration" +#~ msgstr "Encryption Configuration" + +#~ msgid "Update Hash" +#~ msgstr "Update Hash" + +#~ msgid "Temporary Master Password" +#~ msgstr "Temporary Master Password" + +#~ msgid "Backup Configuration" +#~ msgstr "Backup Configuration" + +#~ msgid "Import Configuration" +#~ msgstr "Import Configuration" + +#~ msgid "CSV Import" +#~ msgstr "CSV Import" + +#~ msgid "XML Import" +#~ msgstr "XML Import" + +#~ msgid "Export Configuration" +#~ msgstr "Export Configuration" + +#~ msgid "Export" +#~ msgstr "Export" + +#~ msgid "Email Configuration" +#~ msgstr "Email Configuration" + +#~ msgid "LDAP Configuration" +#~ msgstr "LDAP Configuration" + +#~ msgid "LDAP synchronization" +#~ msgstr "LDAP synchronization" + +#~ msgid "Account Management (H)" +#~ msgstr "Account Management (H)" + +#~ msgid "Create Notification" +#~ msgstr "Create Notification" + +#~ msgid "Preset Values Management" +#~ msgstr "Preset Values Management" + +#~ msgid "Tracks Management" +#~ msgstr "Tracks Management" + +#~ msgid "Unlock track" +#~ msgstr "Unlock track" + +#~ msgid "Clear the tracks out" +#~ msgstr "Clear the tracks out" + +#~ msgid "Color" +#~ msgstr "Color" + +#~ msgid "Number" +#~ msgstr "Number" + +#~ msgid "Phone" +#~ msgstr "Phone" + +#~ msgid "Text Area" +#~ msgstr "Text Area" + +#~ msgid "Text" +#~ msgstr "Text" diff --git a/lib/SP/Core/Language.php b/lib/SP/Core/Language.php index 4b20ea76..f29f51c7 100644 --- a/lib/SP/Core/Language.php +++ b/lib/SP/Core/Language.php @@ -79,7 +79,8 @@ final class Language 'pt_BR' => 'Português', 'it_IT' => 'Italiano', 'da' => 'Dansk', - 'fo' => 'Føroyskt mál' + 'fo' => 'Føroyskt mál', + 'ja_JP' => '日本語', ]; /** * @var ConfigData @@ -237,4 +238,4 @@ final class Language { return file_exists(LOCALES_PATH . DIRECTORY_SEPARATOR . $lang); } -} \ No newline at end of file +} From 6d5fdf4cd944782cc9ee5e5fff7014d23d66c6ea Mon Sep 17 00:00:00 2001 From: magcho Date: Tue, 8 Sep 2020 01:55:59 +0900 Subject: [PATCH 07/36] [init] clear and reset translation file --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 93369 -> 659 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 2537 ++++++++++----------- 2 files changed, 1226 insertions(+), 1311 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index b6b956b63d1c4c77288ad85416d8a96ff3b93f06..88a3d35c12f1a69da9e87916999d54385eab0bc2 100644 GIT binary patch delta 79 zcmdmalXWty#XTXGsSH5C2*ff#tOCT$K&%7AAYcK+kxUE>mOvV$1_ma(zw&3dP%tpG MGBw>i_Z2G>0F#pn<^TWy literal 93369 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�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 I<~Pww8u&!ZQ6 zq;P3xwf)1J9pV7CpZIV*TUxwNr0FI1HIP|jTb6<|imgWo3CWU)6wcMmkhBS7seYVM z_yM)iDgMR_n|PTDX3=a15WMIs!M07s6x<-)vcUZsbn(sE z+of)S(uddyp3YGYP1F1fc_YHO@T?MhqJXj_5-0gCNjo>V1@aXWk{Eis$r_!j`2ti3 zO1#pakdiT6_PP$F3f-aH7JlV1M^Xfy%c%uqc2&7Fej(#(=VcPEGx*SUOQehg3k4qb z5+XtxEU9Gd47Lk<&XlBxKU!rfnsOTx1Qi4_b6O|Jb_7Rc%>f5WJ(}QYb?5$%| z2W#C+1(*yS;&+hXy`uLK{?YocmvPrbVJt}i3bq8@4q3|WZ%bYb_AtDnE5(ZN_yldC zub-#|_UF&AX5)rayfg;-+V6OCr-j~IsX!M*nUN5xr=eQNg`LW!(Z1m9McPTnNM)-6 zLr9P$q?0p}RV~ISuvV?r30J7bMcUhd^OfnMgB_%<&b+cN=LK~+)32~L<79K|0vDc9 zJ8G22*zN6YKwN>Gf&Dv*Jtrfh7^F_>k%;9oXi+HbSQL=?Jn3wOLh|dd796lua8Yw! zZ|zMVLu4xvCDpS@18e00Nu=meOeQzL4X`fGbTk&!x9OOkAf))y-0H7b?9@|AW(0lA z4ajD${T|vEak=Nl8=JpUTx?#jB!Y{{u{uQk+3{dC0ZzdT!%i)7@MvYzQ+{p`D{cL~ zbQnjzrhR!sze7A~@x-EYm__xKYR9ZJGCNijK2xlFYLj`{c_r$i(l~;&B&F3#Pbv6`p56(4bg<5(O!*D0K3s`%;7B;-(+}iD z)7)Y3EJxF;5X{>rt#g9sYRI?Bsqw)p|kb<{E7TZ~mVgc#Y$t3Q-W}dqe3+#*>RZZspe^Hdx\n" "Language-Team: language@syspass.org\n" "Language: ja_JP\n" @@ -22,7 +22,7 @@ msgstr "" #: app/modules/api/Controllers/AccountController.php:74 msgid "Account displayed" -msgstr "Account displayed" +msgstr "" #: app/modules/api/Controllers/AccountController.php:75 #: app/modules/api/Controllers/AccountController.php:107 @@ -80,7 +80,7 @@ msgstr "Account displayed" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:576 #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:29 msgid "Name" -msgstr "Name" +msgstr "" #: app/modules/api/Controllers/AccountController.php:76 #: app/modules/api/Controllers/AccountController.php:108 @@ -122,13 +122,13 @@ msgstr "Name" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:45 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 msgid "Client" -msgstr "Client" +msgstr "" #: app/modules/api/Controllers/AccountController.php:106 #: app/modules/web/Controllers/AccountController.php:667 #: app/modules/web/Controllers/AccountController.php:727 msgid "Password viewed" -msgstr "Password viewed" +msgstr "" #: app/modules/api/Controllers/AccountController.php:142 #: app/modules/api/Controllers/AccountController.php:148 @@ -139,21 +139,21 @@ msgstr "Password viewed" #: app/modules/web/Controllers/UserPassResetController.php:220 #: app/modules/web/Controllers/UserPassResetController.php:228 msgid "Password updated" -msgstr "Password updated" +msgstr "" #: app/modules/api/Controllers/AccountController.php:192 #: app/modules/api/Controllers/AccountController.php:198 #: app/modules/web/Controllers/AccountController.php:842 #: app/modules/web/Controllers/AccountController.php:853 msgid "Account created" -msgstr "Account created" +msgstr "" #: app/modules/api/Controllers/AccountController.php:243 #: app/modules/api/Controllers/AccountController.php:249 #: app/modules/web/Controllers/AccountController.php:891 #: app/modules/web/Controllers/AccountController.php:902 msgid "Account updated" -msgstr "Account updated" +msgstr "" #: app/modules/api/Controllers/AccountController.php:318 #: app/modules/api/Controllers/AccountController.php:324 @@ -164,36 +164,36 @@ msgstr "Account updated" #: app/modules/web/Controllers/AccountManagerController.php:156 #: app/modules/web/Controllers/AccountManagerController.php:161 msgid "Account removed" -msgstr "Account removed" +msgstr "" #: app/modules/api/Controllers/CategoryController.php:66 msgid "Category displayed" -msgstr "Category displayed" +msgstr "" #: app/modules/api/Controllers/CategoryController.php:95 #: app/modules/api/Controllers/CategoryController.php:100 #: app/modules/web/Controllers/CategoryController.php:280 #: app/modules/web/Controllers/CategoryController.php:284 msgid "Category added" -msgstr "Category added" +msgstr "" #: app/modules/api/Controllers/CategoryController.php:125 #: app/modules/api/Controllers/CategoryController.php:130 #: app/modules/web/Controllers/CategoryController.php:324 #: app/modules/web/Controllers/CategoryController.php:328 msgid "Category updated" -msgstr "Category updated" +msgstr "" #: app/modules/api/Controllers/CategoryController.php:154 #: app/modules/api/Controllers/CategoryController.php:159 #: app/modules/web/Controllers/CategoryController.php:242 #: app/modules/web/Controllers/CategoryController.php:246 msgid "Category deleted" -msgstr "Category deleted" +msgstr "" #: app/modules/api/Controllers/ClientController.php:67 msgid "Client displayed" -msgstr "Client displayed" +msgstr "" #: app/modules/api/Controllers/ClientController.php:97 #: app/modules/api/Controllers/ClientController.php:102 @@ -201,55 +201,55 @@ msgstr "Client displayed" #: app/modules/web/Controllers/ClientController.php:279 #: lib/SP/Services/Import/KeepassImport.php:79 msgid "Client added" -msgstr "Client added" +msgstr "" #: app/modules/api/Controllers/ClientController.php:128 #: app/modules/api/Controllers/ClientController.php:133 #: app/modules/web/Controllers/ClientController.php:315 #: app/modules/web/Controllers/ClientController.php:319 msgid "Client updated" -msgstr "Client updated" +msgstr "" #: app/modules/api/Controllers/ClientController.php:157 #: app/modules/api/Controllers/ClientController.php:162 #: app/modules/web/Controllers/ClientController.php:239 #: app/modules/web/Controllers/ClientController.php:243 msgid "Client deleted" -msgstr "Client deleted" +msgstr "" #: app/modules/api/Controllers/ConfigController.php:59 #: app/modules/web/Controllers/ConfigBackupController.php:70 msgid "Application and database backup completed successfully" -msgstr "Application and database backup completed successfully" +msgstr "" #: app/modules/api/Controllers/ConfigController.php:60 #: app/modules/api/Controllers/ConfigController.php:85 #: app/modules/api/Controllers/Help/ConfigHelp.php:43 #: app/modules/api/Controllers/Help/ConfigHelp.php:54 msgid "Path" -msgstr "Path" +msgstr "" #: app/modules/api/Controllers/ConfigController.php:63 #: app/modules/web/Controllers/ConfigBackupController.php:73 msgid "Backup process finished" -msgstr "Backup process finished" +msgstr "" #: app/modules/api/Controllers/ConfigController.php:84 #: app/modules/web/Controllers/ConfigBackupController.php:98 msgid "sysPass XML export" -msgstr "sysPass XML export" +msgstr "" #: app/modules/api/Controllers/ConfigController.php:93 #: app/modules/api/Controllers/ConfigController.php:96 #: app/modules/web/Controllers/ConfigBackupController.php:108 #: app/modules/web/Controllers/ConfigBackupController.php:136 msgid "Export process finished" -msgstr "Export process finished" +msgstr "" #: app/modules/api/Controllers/ControllerBase.php:150 #: lib/SP/Services/Api/ApiService.php:189 msgid "Unauthorized access" -msgstr "Unauthorized access" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:43 #: app/modules/api/Controllers/Help/AccountHelp.php:54 @@ -257,17 +257,17 @@ msgstr "Unauthorized access" #: app/modules/api/Controllers/Help/AccountHelp.php:105 #: app/modules/api/Controllers/Help/AccountHelp.php:144 msgid "Account Id" -msgstr "Account Id" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:55 #: app/modules/api/Controllers/Help/AccountHelp.php:68 #: app/modules/api/Controllers/Help/AccountHelp.php:81 msgid "Token's password" -msgstr "Token's password" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:56 msgid "Send details in the response" -msgstr "Send details in the response" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:69 #: app/modules/api/Controllers/Help/AccountHelp.php:85 @@ -300,7 +300,7 @@ msgstr "Send details in the response" #: app/modules/web/themes/material-blue/views/login/index.inc:106 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:34 msgid "Password" -msgstr "Password" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:70 #: app/modules/api/Controllers/Help/AccountHelp.php:91 @@ -312,7 +312,7 @@ msgstr "Password" #: app/modules/web/themes/material-blue/views/account/details.inc:96 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:274 msgid "Password Expiry Date" -msgstr "Password Expiry Date" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:82 #: app/modules/api/Controllers/Help/AccountHelp.php:106 @@ -322,7 +322,7 @@ msgstr "Password Expiry Date" #: app/modules/web/themes/material-blue/views/account/account-request.inc:39 #: app/modules/web/themes/material-blue/views/account/account.inc:88 msgid "Account name" -msgstr "Account name" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:83 #: app/modules/api/Controllers/Help/AccountHelp.php:107 @@ -330,7 +330,7 @@ msgstr "Account name" #: app/modules/api/Controllers/Help/CategoryHelp.php:66 #: app/modules/api/Controllers/Help/CategoryHelp.php:91 msgid "Category Id" -msgstr "Category Id" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:84 #: app/modules/api/Controllers/Help/AccountHelp.php:108 @@ -338,21 +338,21 @@ msgstr "Category Id" #: app/modules/api/Controllers/Help/ClientHelp.php:67 #: app/modules/api/Controllers/Help/ClientHelp.php:93 msgid "Client Id" -msgstr "Client Id" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:86 #: app/modules/api/Controllers/Help/AccountHelp.php:109 #: app/modules/web/themes/material-blue/views/account/account-history.inc:124 #: app/modules/web/themes/material-blue/views/account/account.inc:166 msgid "Access user" -msgstr "Access user" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:87 #: app/modules/api/Controllers/Help/AccountHelp.php:110 #: app/modules/web/themes/material-blue/views/account/account-history.inc:110 #: app/modules/web/themes/material-blue/views/account/account.inc:153 msgid "Access URL or IP" -msgstr "Access URL or IP" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:88 #: app/modules/api/Controllers/Help/AccountHelp.php:111 @@ -360,7 +360,7 @@ msgstr "Access URL or IP" #: app/modules/web/themes/material-blue/views/account/account-link.inc:103 #: app/modules/web/themes/material-blue/views/account/account.inc:233 msgid "Notes about the account" -msgstr "Notes about the account" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:89 #: app/modules/api/Controllers/Help/AccountHelp.php:112 @@ -368,14 +368,14 @@ msgstr "Notes about the account" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:131 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:35 msgid "Private Account" -msgstr "Private Account" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:90 #: app/modules/api/Controllers/Help/AccountHelp.php:113 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:246 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:55 msgid "Private Account for Group" -msgstr "Private Account for Group" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:92 #: app/modules/api/Controllers/Help/AccountHelp.php:115 @@ -383,12 +383,12 @@ msgstr "Private Account for Group" #: app/modules/web/themes/material-blue/views/account/account.inc:285 #: app/modules/web/themes/material-blue/views/account/viewpass.inc:19 msgid "Linked Account" -msgstr "Linked Account" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:93 #: app/modules/api/Controllers/Help/AccountHelp.php:116 msgid "Array with tags id" -msgstr "Array with tags id" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:94 #: app/modules/api/Controllers/Help/AccountHelp.php:117 @@ -396,7 +396,7 @@ msgstr "Array with tags id" #: app/modules/api/Controllers/Help/UserGroupHelp.php:67 #: app/modules/api/Controllers/Help/UserGroupHelp.php:93 msgid "Group Id" -msgstr "Group Id" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:128 #: app/modules/api/Controllers/Help/CategoryHelp.php:79 @@ -405,7 +405,7 @@ msgstr "Group Id" #: app/modules/api/Controllers/Help/UserGroupHelp.php:81 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:34 msgid "Text to search for" -msgstr "Text to search for" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:129 #: app/modules/api/Controllers/Help/CategoryHelp.php:80 @@ -413,47 +413,47 @@ msgstr "Text to search for" #: app/modules/api/Controllers/Help/TagHelp.php:78 #: app/modules/api/Controllers/Help/UserGroupHelp.php:82 msgid "Number of results to display" -msgstr "Number of results to display" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:130 msgid "Category Id to filter on" -msgstr "Category Id to filter on" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:131 msgid "Client Id to filter on" -msgstr "Client Id to filter on" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:132 msgid "Array with tags id for filtering" -msgstr "Array with tags id for filtering" +msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:133 msgid "Filtering operator" -msgstr "Filtering operator" +msgstr "" #: app/modules/api/Controllers/Help/CategoryHelp.php:54 #: app/modules/api/Controllers/Help/CategoryHelp.php:67 #: app/modules/web/themes/material-blue/views/itemshow/category.inc:37 msgid "Category name" -msgstr "Category name" +msgstr "" #: app/modules/api/Controllers/Help/CategoryHelp.php:55 #: app/modules/api/Controllers/Help/CategoryHelp.php:68 #: app/modules/web/themes/material-blue/views/itemshow/category.inc:50 msgid "Category description" -msgstr "Category description" +msgstr "" #: app/modules/api/Controllers/Help/ClientHelp.php:54 #: app/modules/api/Controllers/Help/ClientHelp.php:68 #: app/modules/web/themes/material-blue/views/itemshow/client.inc:37 msgid "Client name" -msgstr "Client name" +msgstr "" #: app/modules/api/Controllers/Help/ClientHelp.php:55 #: app/modules/api/Controllers/Help/ClientHelp.php:69 #: app/modules/web/themes/material-blue/views/itemshow/client.inc:51 msgid "Client description" -msgstr "Client description" +msgstr "" #: app/modules/api/Controllers/Help/ClientHelp.php:56 #: app/modules/api/Controllers/Help/ClientHelp.php:70 @@ -462,87 +462,87 @@ msgstr "Client description" #: app/modules/web/themes/material-blue/views/itemshow/client.inc:76 #: app/modules/web/themes/material-blue/views/notification/notification.inc:119 msgid "Global" -msgstr "Global" +msgstr "" #: app/modules/api/Controllers/Help/TagHelp.php:43 #: app/modules/api/Controllers/Help/TagHelp.php:65 #: app/modules/api/Controllers/Help/TagHelp.php:89 msgid "Tag Id" -msgstr "Tag Id" +msgstr "" #: app/modules/api/Controllers/Help/TagHelp.php:54 #: app/modules/api/Controllers/Help/TagHelp.php:66 #: app/modules/web/themes/material-blue/views/itemshow/tag.inc:36 msgid "Tag name" -msgstr "Tag name" +msgstr "" #: app/modules/api/Controllers/Help/UserGroupHelp.php:54 #: app/modules/api/Controllers/Help/UserGroupHelp.php:68 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:40 msgid "Group name" -msgstr "Group name" +msgstr "" #: app/modules/api/Controllers/Help/UserGroupHelp.php:55 #: app/modules/api/Controllers/Help/UserGroupHelp.php:69 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:54 msgid "Group description" -msgstr "Group description" +msgstr "" #: app/modules/api/Controllers/Help/UserGroupHelp.php:56 #: app/modules/api/Controllers/Help/UserGroupHelp.php:70 msgid "Array with users Id" -msgstr "Array with users Id" +msgstr "" #: app/modules/api/Controllers/TagController.php:65 msgid "Tag displayed" -msgstr "Tag displayed" +msgstr "" #: app/modules/api/Controllers/TagController.php:93 #: app/modules/api/Controllers/TagController.php:98 #: app/modules/web/Controllers/TagController.php:259 msgid "Tag added" -msgstr "Tag added" +msgstr "" #: app/modules/api/Controllers/TagController.php:122 #: app/modules/api/Controllers/TagController.php:127 #: app/modules/web/Controllers/TagController.php:294 msgid "Tag updated" -msgstr "Tag updated" +msgstr "" #: app/modules/api/Controllers/TagController.php:151 #: app/modules/api/Controllers/TagController.php:156 #: app/modules/web/Controllers/TagController.php:229 msgid "Tag removed" -msgstr "Tag removed" +msgstr "" #: app/modules/api/Controllers/UserGroupController.php:65 msgid "Group viewed" -msgstr "Group viewed" +msgstr "" #: app/modules/api/Controllers/UserGroupController.php:95 #: app/modules/api/Controllers/UserGroupController.php:100 #: app/modules/web/Controllers/UserGroupController.php:290 #: app/modules/web/Controllers/UserGroupController.php:294 msgid "Group added" -msgstr "Group added" +msgstr "" #: app/modules/api/Controllers/UserGroupController.php:126 #: app/modules/api/Controllers/UserGroupController.php:132 #: app/modules/web/Controllers/UserGroupController.php:333 #: app/modules/web/Controllers/UserGroupController.php:338 msgid "Group updated" -msgstr "Group updated" +msgstr "" #: app/modules/api/Controllers/UserGroupController.php:156 #: app/modules/api/Controllers/UserGroupController.php:162 #: app/modules/web/Controllers/UserGroupController.php:251 #: app/modules/web/Controllers/UserGroupController.php:256 msgid "Group deleted" -msgstr "Group deleted" +msgstr "" #: app/modules/api/Init.php:156 msgid "Updating needed" -msgstr "Updating needed" +msgstr "" #: app/modules/web/Controllers/AccountController.php:169 #: app/modules/web/Controllers/AccountController.php:236 @@ -554,11 +554,11 @@ msgstr "Updating needed" #: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:32 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:67 msgid "Account Details" -msgstr "Account Details" +msgstr "" #: app/modules/web/Controllers/AccountController.php:262 msgid "Link viewed" -msgstr "Link viewed" +msgstr "" #: app/modules/web/Controllers/AccountController.php:263 #: app/modules/web/Controllers/AccountController.php:668 @@ -582,51 +582,51 @@ msgstr "Link viewed" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:29 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:31 msgid "Account" -msgstr "Account" +msgstr "" #: app/modules/web/Controllers/AccountController.php:265 msgid "Agent" -msgstr "Agent" +msgstr "" #: app/modules/web/Controllers/AccountController.php:266 msgid "HTTPS" -msgstr "HTTPS" +msgstr "" #: app/modules/web/Controllers/AccountController.php:266 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:215 msgid "ON" -msgstr "ON" +msgstr "" #: app/modules/web/Controllers/AccountController.php:266 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 msgid "OFF" -msgstr "OFF" +msgstr "" #: app/modules/web/Controllers/AccountController.php:267 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 msgid "IP" -msgstr "IP" +msgstr "" #: app/modules/web/Controllers/AccountController.php:268 #: app/modules/web/Controllers/AccountController.php:1084 #: app/modules/web/Controllers/PublicLinkController.php:273 #: lib/SP/Services/Upgrade/UpgradePublicLink.php:91 msgid "Link" -msgstr "Link" +msgstr "" #: app/modules/web/Controllers/AccountController.php:301 #: app/modules/web/Controllers/AccountController.php:353 #: app/modules/web/Controllers/Helpers/LayoutHelper.php:276 msgid "New Account" -msgstr "New Account" +msgstr "" #: app/modules/web/Controllers/AccountController.php:407 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 #: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:24 msgid "Edit Account" -msgstr "Edit Account" +msgstr "" #: app/modules/web/Controllers/AccountController.php:462 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 @@ -636,25 +636,25 @@ msgstr "Edit Account" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 msgid "Remove Account" -msgstr "Remove Account" +msgstr "" #: app/modules/web/Controllers/AccountController.php:515 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 msgid "Edit Account Password" -msgstr "Edit Account Password" +msgstr "" #: app/modules/web/Controllers/AccountController.php:771 #: app/modules/web/Controllers/AccountController.php:808 msgid "Password copied" -msgstr "Password copied" +msgstr "" #: app/modules/web/Controllers/AccountController.php:979 #: app/modules/web/Controllers/AccountController.php:990 #: app/modules/web/Controllers/AccountHistoryManagerController.php:165 #: app/modules/web/Controllers/AccountHistoryManagerController.php:170 msgid "Account restored" -msgstr "Account restored" +msgstr "" #: app/modules/web/Controllers/AccountController.php:1019 #: app/modules/web/Controllers/AccountController.php:1022 @@ -663,12 +663,12 @@ msgstr "Account restored" #: app/modules/web/Controllers/AccountManagerController.php:142 #: app/modules/web/Controllers/AccountManagerController.php:145 msgid "Accounts removed" -msgstr "Accounts removed" +msgstr "" #: app/modules/web/Controllers/AccountController.php:1063 #: app/modules/web/Forms/NotificationForm.php:106 msgid "A description is needed" -msgstr "A description is needed" +msgstr "" #: app/modules/web/Controllers/AccountController.php:1079 #: lib/SP/Providers/Notification/NotificationHandler.php:127 @@ -676,11 +676,11 @@ msgstr "A description is needed" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:49 #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:51 msgid "Request" -msgstr "Request" +msgstr "" #: app/modules/web/Controllers/AccountController.php:1080 msgid "Requester" -msgstr "Requester" +msgstr "" #: app/modules/web/Controllers/AccountController.php:1083 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 @@ -694,29 +694,29 @@ msgstr "Requester" #: app/modules/web/themes/material-blue/views/notification/notification.inc:72 #: app/modules/web/themes/material-blue/views/notification/notification.inc:82 msgid "Description" -msgstr "Description" +msgstr "" #: app/modules/web/Controllers/AccountController.php:1099 msgid "Request done" -msgstr "Request done" +msgstr "" #: app/modules/web/Controllers/AccountFavoriteController.php:57 msgid "Favorite added" -msgstr "Favorite added" +msgstr "" #: app/modules/web/Controllers/AccountFavoriteController.php:77 msgid "Favorite deleted" -msgstr "Favorite deleted" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:83 #: app/modules/web/Controllers/AccountFileController.php:146 msgid "File does not exist" -msgstr "File does not exist" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:96 #: app/modules/web/Controllers/AccountFileController.php:112 msgid "File viewed" -msgstr "File viewed" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:97 #: app/modules/web/Controllers/AccountFileController.php:113 @@ -731,11 +731,11 @@ msgstr "File viewed" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:133 #: app/modules/web/themes/material-blue/views/config/import.inc:80 msgid "File" -msgstr "File" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:126 msgid "File not supported for preview" -msgstr "File not supported for preview" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:151 #: app/modules/web/Controllers/ConfigBackupController.php:164 @@ -744,43 +744,43 @@ msgstr "File not supported for preview" #: app/modules/web/Controllers/ConfigGeneralController.php:211 #: app/modules/web/Controllers/ConfigGeneralController.php:252 msgid "File downloaded" -msgstr "File downloaded" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:197 msgid "INVALID QUERY" -msgstr "INVALID QUERY" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:203 msgid "There aren't any allowed MIME types" -msgstr "There aren't any allowed MIME types" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:218 msgid "Invalid file" -msgstr "Invalid file" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:220 #, php-format msgid "File: %s" -msgstr "File: %s" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:232 msgid "File size exceeded" -msgstr "File size exceeded" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:234 #, php-format msgid "Maximum size: %d KB" -msgstr "Maximum size: %d KB" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:240 #: lib/SP/Services/Import/FileImport.php:106 msgid "Internal error while reading the file" -msgstr "Internal error while reading the file" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:252 #: app/modules/web/Controllers/AccountFileController.php:261 msgid "File saved" -msgstr "File saved" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:256 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 @@ -798,23 +798,23 @@ msgstr "File saved" #: app/modules/web/themes/material-blue/views/notification/notification.inc:31 #: app/modules/web/themes/material-blue/views/notification/notification.inc:39 msgid "Type" -msgstr "Type" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:257 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Size" -msgstr "Size" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:295 #: lib/SP/Services/Import/FileImport.php:95 msgid "File type not allowed" -msgstr "File type not allowed" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:297 #: lib/SP/Services/Import/FileImport.php:97 #, php-format msgid "MIME type: %s" -msgstr "MIME type: %s" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:316 #: app/modules/web/Controllers/AccountHistoryManagerController.php:71 @@ -907,62 +907,62 @@ msgstr "MIME type: %s" #: lib/SP/Core/Acl/UnauthorizedActionException.php:47 #: lib/SP/Util/ErrorUtil.php:161 msgid "You don't have permission to do this operation" -msgstr "You don't have permission to do this operation" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:379 #: app/modules/web/Controllers/AccountFileController.php:382 msgid "Files deleted" -msgstr "Files deleted" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:387 msgid "File deleted" -msgstr "File deleted" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:393 msgid "File Deleted" -msgstr "File Deleted" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:431 msgid "Files management disabled" -msgstr "Files management disabled" +msgstr "" #: app/modules/web/Controllers/AccountFileController.php:450 msgid "There are no linked files for the account" -msgstr "There are no linked files for the account" +msgstr "" #: app/modules/web/Controllers/AccountManagerController.php:198 #: app/modules/web/Controllers/AccountManagerController.php:201 #: lib/SP/Services/Account/AccountCryptService.php:198 msgid "Accounts updated" -msgstr "Accounts updated" +msgstr "" #: app/modules/web/Controllers/AccountManagerController.php:223 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 msgid "Bulk Update" -msgstr "Bulk Update" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:124 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "New Authorization" -msgstr "New Authorization" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:191 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Edit Authorization" -msgstr "Edit Authorization" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:234 #: app/modules/web/Controllers/AuthTokenController.php:237 msgid "Authorizations deleted" -msgstr "Authorizations deleted" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:247 #: app/modules/web/Controllers/AuthTokenController.php:251 msgid "Authorization deleted" -msgstr "Authorization deleted" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:248 #: app/modules/web/Controllers/AuthTokenController.php:324 @@ -970,44 +970,44 @@ msgstr "Authorization deleted" #: app/modules/web/Controllers/AuthTokenController.php:376 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:72 msgid "Authorization" -msgstr "Authorization" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:285 msgid "Authorization added" -msgstr "Authorization added" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:323 #: app/modules/web/Controllers/AuthTokenController.php:332 #: app/modules/web/Controllers/AuthTokenController.php:339 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 msgid "Authorization updated" -msgstr "Authorization updated" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:367 msgid "View Authorization" -msgstr "View Authorization" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:375 msgid "Authorization viewed" -msgstr "Authorization viewed" +msgstr "" #: app/modules/web/Controllers/CategoryController.php:120 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 #: app/modules/web/themes/material-blue/views/account/account.inc:135 msgid "New Category" -msgstr "New Category" +msgstr "" #: app/modules/web/Controllers/CategoryController.php:186 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 msgid "Edit Category" -msgstr "Edit Category" +msgstr "" #: app/modules/web/Controllers/CategoryController.php:229 #: app/modules/web/Controllers/CategoryController.php:232 msgid "Categories deleted" -msgstr "Categories deleted" +msgstr "" #: app/modules/web/Controllers/CategoryController.php:243 #: app/modules/web/Controllers/CategoryController.php:281 @@ -1026,53 +1026,53 @@ msgstr "Categories deleted" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:63 msgid "Category" -msgstr "Category" +msgstr "" #: app/modules/web/Controllers/CategoryController.php:356 msgid "View Category" -msgstr "View Category" +msgstr "" #: app/modules/web/Controllers/ClientController.php:121 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 #: app/modules/web/themes/material-blue/views/account/account.inc:109 msgid "New Client" -msgstr "New Client" +msgstr "" #: app/modules/web/Controllers/ClientController.php:187 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 msgid "Edit Client" -msgstr "Edit Client" +msgstr "" #: app/modules/web/Controllers/ClientController.php:228 #: app/modules/web/Controllers/ClientController.php:231 msgid "Clients deleted" -msgstr "Clients deleted" +msgstr "" #: app/modules/web/Controllers/ClientController.php:347 msgid "View Client" -msgstr "View Client" +msgstr "" #: app/modules/web/Controllers/ConfigAccountController.php:74 msgid "Maximum size per file is 16MB" -msgstr "Maximum size per file is 16MB" +msgstr "" #: app/modules/web/Controllers/ConfigAccountController.php:82 msgid "Files enabled" -msgstr "Files enabled" +msgstr "" #: app/modules/web/Controllers/ConfigAccountController.php:87 msgid "Files disabled" -msgstr "Files disabled" +msgstr "" #: app/modules/web/Controllers/ConfigAccountController.php:100 msgid "Public links enabled" -msgstr "Public links enabled" +msgstr "" #: app/modules/web/Controllers/ConfigAccountController.php:105 msgid "Public links disabled" -msgstr "Public links disabled" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:59 #: app/modules/web/Controllers/ConfigBackupController.php:197 @@ -1088,18 +1088,18 @@ msgstr "Public links disabled" #: app/modules/web/Forms/UserForm.php:153 #: app/modules/web/Forms/UserForm.php:171 msgid "Ey, this is a DEMO!!" -msgstr "Ey, this is a DEMO!!" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:92 #: app/modules/web/Controllers/UserPassResetController.php:203 #: app/modules/web/Forms/AccountForm.php:136 #: app/modules/web/Forms/UserForm.php:161 msgid "Passwords do not match" -msgstr "Passwords do not match" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:123 msgid "Verification of exported data finished" -msgstr "Verification of exported data finished" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:124 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:124 @@ -1110,24 +1110,24 @@ msgstr "Verification of exported data finished" #: app/modules/web/themes/material-blue/views/config/info.inc:61 #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:41 msgid "Version" -msgstr "Version" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:125 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 #: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:21 #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:106 msgid "Encrypted" -msgstr "Encrypted" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:125 #: app/modules/web/themes/material-blue/views/config/info.inc:152 msgid "Yes" -msgstr "Yes" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:125 #: app/modules/web/themes/material-blue/views/config/info.inc:152 msgid "No" -msgstr "No" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:126 #: app/modules/web/Controllers/ConfigManagerController.php:203 @@ -1138,21 +1138,21 @@ msgstr "No" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:33 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:429 msgid "Accounts" -msgstr "Accounts" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:127 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 #: lib/SP/Services/CustomField/CustomFieldDefService.php:81 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:361 msgid "Clients" -msgstr "Clients" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:128 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 #: lib/SP/Services/CustomField/CustomFieldDefService.php:80 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:327 msgid "Categories" -msgstr "Categories" +msgstr "" #: app/modules/web/Controllers/ConfigBackupController.php:129 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:94 @@ -1161,19 +1161,19 @@ msgstr "Categories" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:109 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:344 msgid "Tags" -msgstr "Tags" +msgstr "" #: app/modules/web/Controllers/ConfigDokuWikiController.php:66 msgid "Missing DokuWiki parameters" -msgstr "Missing DokuWiki parameters" +msgstr "" #: app/modules/web/Controllers/ConfigDokuWikiController.php:78 msgid "DokuWiki enabled" -msgstr "DokuWiki enabled" +msgstr "" #: app/modules/web/Controllers/ConfigDokuWikiController.php:83 msgid "DokuWiki disabled" -msgstr "DokuWiki disabled" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:80 #: app/modules/web/Controllers/ConfigEncryptionController.php:180 @@ -1183,7 +1183,7 @@ msgstr "DokuWiki disabled" #: lib/SP/Services/User/UpdatedMasterPassException.php:46 #: lib/SP/Util/ErrorUtil.php:165 msgid "Master password updated" -msgstr "Master password updated" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:81 #: app/modules/web/Controllers/ConfigEncryptionController.php:181 @@ -1191,206 +1191,206 @@ msgstr "Master password updated" #: lib/SP/Services/User/UpdatedMasterPassException.php:46 #: lib/SP/Util/ErrorUtil.php:166 msgid "Please, restart the session for update it" -msgstr "Please, restart the session for update it" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:88 msgid "Master password not entered" -msgstr "Master password not entered" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:95 msgid "The password update must be confirmed" -msgstr "The password update must be confirmed" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:102 msgid "Passwords are the same" -msgstr "Passwords are the same" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:109 msgid "Master passwords do not match" -msgstr "Master passwords do not match" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:116 msgid "The current master password does not match" -msgstr "The current master password does not match" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:123 #: app/modules/web/themes/material-blue/views/config/encryption.inc:91 msgid "Maintenance mode not enabled" -msgstr "Maintenance mode not enabled" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:124 #: app/modules/web/themes/material-blue/views/config/encryption.inc:91 msgid "Please, enable it to avoid unwanted behavior from other sessions" -msgstr "Please, enable it to avoid unwanted behavior from other sessions" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:174 msgid "Error while saving the Master Password's hash" -msgstr "Error while saving the Master Password's hash" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:201 #: app/modules/web/Controllers/ConfigEncryptionController.php:203 msgid "Master password hash updated" -msgstr "Master password hash updated" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:210 msgid "Error while updating the master password hash" -msgstr "Error while updating the master password hash" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:239 #: app/modules/web/Controllers/ConfigEncryptionController.php:249 #: app/modules/web/Controllers/ConfigEncryptionController.php:255 msgid "Temporary password generated" -msgstr "Temporary password generated" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:240 #: app/modules/web/Controllers/ConfigMailController.php:164 #: app/modules/web/Controllers/ConfigMailController.php:170 #: lib/SP/Services/Mail/MailService.php:150 msgid "Email sent" -msgstr "Email sent" +msgstr "" #: app/modules/web/Controllers/ConfigEncryptionController.php:250 #: lib/SP/Services/Mail/MailService.php:82 #: lib/SP/Services/Mail/MailService.php:160 msgid "Error while sending the email" -msgstr "Error while sending the email" +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:102 msgid "Missing remote syslog parameters" -msgstr "Missing remote syslog parameters" +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:110 msgid "Remote syslog enabled" -msgstr "Remote syslog enabled" +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:115 msgid "Remote syslog disabled" -msgstr "Remote syslog disabled" +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:128 msgid "Missing Proxy parameters " -msgstr "Missing Proxy parameters " +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:142 msgid "Proxy enabled" -msgstr "Proxy enabled" +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:147 msgid "Proxy disabled" -msgstr "Proxy disabled" +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:166 msgid "Auth Basic enabled" -msgstr "Auth Basic enabled" +msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:172 msgid "Auth Basic disabled" -msgstr "Auth Basic disabled" +msgstr "" #: app/modules/web/Controllers/ConfigImportController.php:80 msgid "Accounts imported" -msgstr "Accounts imported" +msgstr "" #: app/modules/web/Controllers/ConfigImportController.php:86 #: app/modules/web/Controllers/ConfigLdapController.php:279 msgid "Import finished" -msgstr "Import finished" +msgstr "" #: app/modules/web/Controllers/ConfigImportController.php:87 #: app/modules/web/Controllers/ConfigImportController.php:94 #: lib/SP/Services/Backup/FileBackupService.php:128 #: lib/SP/Services/Export/XmlExportService.php:206 msgid "Please check out the event log for more details" -msgstr "Please check out the event log for more details" +msgstr "" #: app/modules/web/Controllers/ConfigImportController.php:93 msgid "No accounts were imported" -msgstr "No accounts were imported" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:76 #: app/modules/web/Controllers/ConfigLdapController.php:152 #: app/modules/web/Controllers/ConfigLdapController.php:191 msgid "Missing LDAP parameters" -msgstr "Missing LDAP parameters" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:95 msgid "LDAP enabled" -msgstr "LDAP enabled" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:100 msgid "LDAP disabled" -msgstr "LDAP disabled" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:102 #: app/modules/web/Controllers/ConfigMailController.php:114 msgid "No changes" -msgstr "No changes" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:126 #: app/modules/web/Controllers/ConfigLdapController.php:257 msgid "Wrong LDAP parameters" -msgstr "Wrong LDAP parameters" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:162 #: app/modules/web/Controllers/ConfigLdapController.php:207 msgid "Results" -msgstr "Results" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:167 #: app/modules/web/Controllers/ConfigLdapController.php:213 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:99 msgid "LDAP connection OK" -msgstr "LDAP connection OK" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:168 #: app/modules/web/Controllers/ConfigLdapController.php:214 #, php-format msgid "Objects found: %d" -msgstr "Objects found: %d" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:264 msgid "LDAP Import" -msgstr "LDAP Import" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:283 msgid "There aren't any objects to synchronize" -msgstr "There aren't any objects to synchronize" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:288 msgid "LDAP users import finished" -msgstr "LDAP users import finished" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:290 #, php-format msgid "Imported users: %d / %d" -msgstr "Imported users: %d / %d" +msgstr "" #: app/modules/web/Controllers/ConfigLdapController.php:291 #, php-format msgid "Errors: %d" -msgstr "Errors: %d" +msgstr "" #: app/modules/web/Controllers/ConfigMailController.php:77 #: app/modules/web/Controllers/ConfigMailController.php:150 msgid "Missing Mail parameters" -msgstr "Missing Mail parameters" +msgstr "" #: app/modules/web/Controllers/ConfigMailController.php:105 msgid "Mail enabled" -msgstr "Mail enabled" +msgstr "" #: app/modules/web/Controllers/ConfigMailController.php:112 msgid "Mail disabled" -msgstr "Mail disabled" +msgstr "" #: app/modules/web/Controllers/ConfigMailController.php:165 #: lib/SP/Services/Mail/MailService.php:151 msgid "Recipient" -msgstr "Recipient" +msgstr "" #: app/modules/web/Controllers/ConfigMailController.php:171 msgid "Please, check your inbox" -msgstr "Please, check your inbox" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:173 #: app/modules/web/themes/material-blue/views/install/index.inc:144 @@ -1398,94 +1398,94 @@ msgstr "Please, check your inbox" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:484 msgid "General" -msgstr "General" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:218 #: app/modules/web/themes/material-blue/views/config/wiki.inc:22 msgid "Wiki" -msgstr "Wiki" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:245 msgid "LDAP" -msgstr "LDAP" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:271 #: app/modules/web/themes/material-blue/views/config/mail.inc:18 msgid "Mail" -msgstr "Mail" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:312 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:501 msgid "Encryption" -msgstr "Encryption" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:340 #: app/modules/web/themes/material-blue/views/config/backup.inc:68 msgid "There aren't any backups available" -msgstr "There aren't any backups available" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:350 #: app/modules/web/themes/material-blue/views/config/backup.inc:142 msgid "No export file found" -msgstr "No export file found" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:353 #: app/modules/web/themes/material-blue/views/config/backup.inc:31 #: app/modules/web/themes/material-blue/views/config/backup.inc:86 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:518 msgid "Backup" -msgstr "Backup" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:376 msgid "Import Accounts" -msgstr "Import Accounts" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:398 msgid "Not installed" -msgstr "Not installed" +msgstr "" #: app/modules/web/Controllers/ConfigManagerController.php:408 #: app/modules/web/themes/material-blue/inc/Icons.php:62 msgid "Information" -msgstr "Information" +msgstr "" #: app/modules/web/Controllers/ConfigWikiController.php:64 msgid "Missing Wiki parameters" -msgstr "Missing Wiki parameters" +msgstr "" #: app/modules/web/Controllers/ConfigWikiController.php:74 msgid "Wiki enabled" -msgstr "Wiki enabled" +msgstr "" #: app/modules/web/Controllers/ConfigWikiController.php:79 msgid "Wiki disabled" -msgstr "Wiki disabled" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:121 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "New Field" -msgstr "New Field" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:185 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Edit Field" -msgstr "Edit Field" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:223 #: app/modules/web/Controllers/CustomFieldController.php:226 msgid "Fields deleted" -msgstr "Fields deleted" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:232 msgid "Field deleted" -msgstr "Field deleted" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:264 #: app/modules/web/Controllers/CustomFieldController.php:268 msgid "Field added" -msgstr "Field added" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:265 #: app/modules/web/Controllers/CustomFieldController.php:306 @@ -1493,7 +1493,7 @@ msgstr "Field added" #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:190 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:254 msgid "Field" -msgstr "Field" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:305 #: app/modules/web/Controllers/CustomFieldController.php:309 @@ -1502,24 +1502,24 @@ msgstr "Field" #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:189 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:253 msgid "Field updated" -msgstr "Field updated" +msgstr "" #: app/modules/web/Controllers/CustomFieldController.php:337 msgid "View Field" -msgstr "View Field" +msgstr "" #: app/modules/web/Controllers/ErrorController.php:109 msgid "Application on maintenance" -msgstr "Application on maintenance" +msgstr "" #: app/modules/web/Controllers/ErrorController.php:110 msgid "It will be running shortly" -msgstr "It will be running shortly" +msgstr "" #: app/modules/web/Controllers/ErrorController.php:125 #: lib/SP/Services/Install/MySQL.php:363 msgid "Error while checking the database" -msgstr "Error while checking the database" +msgstr "" #: app/modules/web/Controllers/ErrorController.php:126 #: app/modules/web/Controllers/ErrorController.php:142 @@ -1532,7 +1532,7 @@ msgstr "Error while checking the database" #: lib/SP/Util/ErrorUtil.php:170 lib/SP/Util/ErrorUtil.php:177 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:17 msgid "Please contact to the administrator" -msgstr "Please contact to the administrator" +msgstr "" #: app/modules/web/Controllers/ErrorController.php:141 #: lib/SP/Services/Install/MySQL.php:99 @@ -1541,17 +1541,17 @@ msgstr "Please contact to the administrator" #: lib/SP/Storage/Database/MySQLHandler.php:166 #: lib/SP/Storage/Database/MySQLHandler.php:178 msgid "Unable to connect to DB" -msgstr "Unable to connect to DB" +msgstr "" #: app/modules/web/Controllers/EventlogController.php:134 #: app/modules/web/Controllers/EventlogController.php:137 msgid "Event log cleared" -msgstr "Event log cleared" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 msgid "View Current" -msgstr "View Current" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 @@ -1579,39 +1579,39 @@ msgstr "View Current" #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:60 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:231 msgid "Back" -msgstr "Back" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 msgid "Request Modification" -msgstr "Request Modification" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 msgid "Restore account from this point" -msgstr "Restore account from this point" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 #: app/modules/web/themes/material-blue/inc/Icons.php:50 #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:150 msgid "Save" -msgstr "Save" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 msgid "Update Public Link" -msgstr "Update Public Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 msgid "Delete Public Link" -msgstr "Delete Public Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 msgid "Create Public Link" -msgstr "Create Public Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 @@ -1620,46 +1620,46 @@ msgstr "Create Public Link" #: app/modules/web/themes/material-blue/inc/Icons.php:33 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 msgid "View password" -msgstr "View password" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 msgid "Copy Password to Clipboard" -msgstr "Copy Password to Clipboard" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 msgid "Copy Account" -msgstr "Copy Account" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:75 msgid "Account Password" -msgstr "Account Password" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:102 #: lib/SP/Core/Acl/AccountPermissionException.php:46 #: lib/SP/Util/ErrorUtil.php:153 msgid "You don't have permission to access this account" -msgstr "You don't have permission to access this account" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:186 #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:187 msgid "More Actions" -msgstr "More Actions" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:243 msgid "Sort by Client" -msgstr "Sort by Client" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:250 msgid "Sort by Name" -msgstr "Sort by Name" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:257 msgid "Sort by Category" -msgstr "Sort by Category" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:263 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 @@ -1717,11 +1717,11 @@ msgstr "Sort by Category" #: app/modules/web/themes/material-blue/views/notification/notification.inc:96 #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:22 msgid "User" -msgstr "User" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:264 msgid "Sort by Username" -msgstr "Sort by Username" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:270 #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:61 @@ -1732,11 +1732,11 @@ msgstr "Sort by Username" #: app/modules/web/themes/material-blue/views/account/account.inc:145 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:91 msgid "URL / IP" -msgstr "URL / IP" +msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:271 msgid "Sort by URL / IP" -msgstr "Sort by URL / IP" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 @@ -1769,14 +1769,14 @@ msgstr "Sort by URL / IP" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 msgid "Delete Selected" -msgstr "Delete Selected" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:184 #: app/modules/web/themes/material-blue/views/account/details.inc:48 #: app/modules/web/themes/material-blue/views/account/details.inc:50 msgid "Owner" -msgstr "Owner" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:208 @@ -1785,16 +1785,16 @@ msgstr "Owner" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:93 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:95 msgid "Main Group" -msgstr "Main Group" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 msgid "Search for Account" -msgstr "Search for Account" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 msgid "Accounts (H)" -msgstr "Accounts (H)" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:127 @@ -1807,110 +1807,110 @@ msgstr "Accounts (H)" #: app/modules/web/themes/material-blue/views/notification/notification.inc:66 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:42 msgid "Date" -msgstr "Date" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:131 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:109 msgid "Status" -msgstr "Status" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 msgid "Modified" -msgstr "Modified" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 msgid "Removed" -msgstr "Removed" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 msgid "Account Restore" -msgstr "Account Restore" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 msgid "API Authorizations" -msgstr "API Authorizations" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 #: lib/SP/Core/Acl/Acl.php:300 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:44 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 msgid "Action" -msgstr "Action" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 msgid "Search for Token" -msgstr "Search for Token" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 msgid "View Authorization token" -msgstr "View Authorization token" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 msgid "Delete Authorization" -msgstr "Delete Authorization" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 msgid "Search for Category" -msgstr "Search for Category" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 msgid "Delete Category" -msgstr "Delete Category" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 msgid "YES" -msgstr "YES" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 msgid "NO" -msgstr "NO" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 msgid "Search for Client" -msgstr "Search for Client" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 msgid "Delete Client" -msgstr "Delete Client" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 #: app/modules/web/themes/material-blue/views/account/account.inc:41 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 msgid "Custom Fields" -msgstr "Custom Fields" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:61 msgid "Module" -msgstr "Module" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:112 msgid "Properties" -msgstr "Properties" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 msgid "Search for Field" -msgstr "Search for Field" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 msgid "Delete Field" -msgstr "Delete Field" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 #: app/modules/web/themes/material-blue/views/eventlog/index.inc:3 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:556 msgid "Event Log" -msgstr "Event Log" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 #: app/modules/web/Controllers/ItemPresetController.php:307 @@ -1919,42 +1919,42 @@ msgstr "Event Log" #: app/modules/web/themes/material-blue/views/account/details.inc:103 #: app/modules/web/themes/material-blue/views/account/details.inc:105 msgid "ID" -msgstr "ID" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 msgid "Date / Time" -msgstr "Date / Time" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 msgid "Level" -msgstr "Level" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 msgid "Event" -msgstr "Event" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:109 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:40 msgid "Login" -msgstr "Login" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 msgid "Search for Events" -msgstr "Search for Events" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 msgid "Refresh" -msgstr "Refresh" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 msgid "Clear the event log out" -msgstr "Clear the event log out" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:94 #: app/modules/web/themes/material-blue/views/account/account.inc:51 @@ -1962,33 +1962,33 @@ msgstr "Clear the event log out" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "Files" -msgstr "Files" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:145 msgid "Search for File" -msgstr "Search for File" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:160 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:161 #: app/modules/web/themes/material-blue/views/account/files-list.inc:59 msgid "View File" -msgstr "View File" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:178 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:179 #: app/modules/web/themes/material-blue/views/account/files-list.inc:50 msgid "Download File" -msgstr "Download File" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:199 #: app/modules/web/themes/material-blue/views/account/files-list.inc:42 msgid "Delete File" -msgstr "Delete File" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 msgid "Preset Values" -msgstr "Preset Values" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:111 @@ -2015,7 +2015,7 @@ msgstr "Preset Values" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:164 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:166 msgid "Group" -msgstr "Group" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:110 @@ -2026,194 +2026,194 @@ msgstr "Group" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:146 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:148 msgid "Profile" -msgstr "Profile" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:96 msgid "Priority" -msgstr "Priority" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:137 msgid "Forced" -msgstr "Forced" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 msgid "Search for Value" -msgstr "Search for Value" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:69 msgid "Permission Preset" -msgstr "Permission Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "New Permission Preset" -msgstr "New Permission Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:89 msgid "Private Account Preset" -msgstr "Private Account Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 msgid "New Private Account Preset" -msgstr "New Private Account Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:105 msgid "Session Timeout Preset" -msgstr "Session Timeout Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 msgid "New Session Timeout Preset" -msgstr "New Session Timeout Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:120 msgid "Account Password Preset" -msgstr "Account Password Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 msgid "New Account Password Preset" -msgstr "New Account Password Preset" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 #: app/modules/web/Controllers/ItemPresetController.php:255 msgid "Edit Value" -msgstr "Edit Value" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 msgid "Delete Value" -msgstr "Delete Value" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:114 #: app/modules/web/themes/material-blue/inc/Icons.php:64 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:119 #: app/modules/web/themes/material-blue/views/notification/index.inc:3 msgid "Notifications" -msgstr "Notifications" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:129 #: app/modules/web/themes/material-blue/views/notification/notification.inc:44 #: app/modules/web/themes/material-blue/views/notification/notification.inc:52 msgid "Component" -msgstr "Component" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:153 #: app/modules/web/themes/material-blue/views/notification/notification.inc:133 #: app/modules/web/themes/material-blue/views/notification/notification.inc:137 msgid "Read" -msgstr "Read" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:154 #: app/modules/web/themes/material-blue/views/notification/notification.inc:128 msgid "Only Admins" -msgstr "Only Admins" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:171 msgid "Search for Notification" -msgstr "Search for Notification" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:187 #: app/modules/web/Controllers/NotificationController.php:204 msgid "New Notification" -msgstr "New Notification" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:204 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:205 #: app/modules/web/Controllers/NotificationController.php:121 msgid "View Notification" -msgstr "View Notification" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:234 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:235 msgid "Checkout Notification" -msgstr "Checkout Notification" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:252 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:253 #: app/modules/web/Controllers/NotificationController.php:238 msgid "Edit Notification" -msgstr "Edit Notification" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:269 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:270 msgid "Delete Notification" -msgstr "Delete Notification" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:96 #: app/modules/web/Controllers/Helpers/LayoutHelper.php:332 #: app/modules/web/themes/material-blue/views/plugin/index.inc:3 msgid "Plugins" -msgstr "Plugins" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:108 #: lib/SP/Plugin/PluginManager.php:208 lib/SP/Plugin/PluginManager.php:264 #: lib/SP/Plugin/PluginManager.php:422 msgid "Plugin" -msgstr "Plugin" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:125 msgid "Unavailable" -msgstr "Unavailable" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:141 msgid "Search for Plugin" -msgstr "Search for Plugin" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:156 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:157 #: app/modules/web/Controllers/PluginController.php:149 msgid "View Plugin" -msgstr "View Plugin" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:174 msgid "Enable" -msgstr "Enable" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:192 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:193 msgid "Disable" -msgstr "Disable" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:211 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:212 msgid "Reset Data" -msgstr "Reset Data" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:231 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:232 msgid "Delete Plugin" -msgstr "Delete Plugin" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 #: app/modules/web/themes/material-blue/views/account/account.inc:61 msgid "Links" -msgstr "Links" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:59 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:61 msgid "Creation Date" -msgstr "Creation Date" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:67 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:69 msgid "Expiry Date " -msgstr "Expiry Date " +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:45 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:49 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:53 msgid "Notify" -msgstr "Notify" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 #: app/modules/web/themes/material-blue/views/account/details.inc:20 @@ -2222,70 +2222,70 @@ msgstr "Notify" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:83 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:85 msgid "Visits" -msgstr "Visits" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:151 msgid "Search for Link" -msgstr "Search for Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:166 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:167 msgid "New Link" -msgstr "New Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:184 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:185 #: app/modules/web/Controllers/PublicLinkController.php:381 msgid "View Link" -msgstr "View Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:200 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:201 msgid "Renew Link" -msgstr "Renew Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:217 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:218 msgid "Delete Link" -msgstr "Delete Link" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:135 msgid "Search for Tag" -msgstr "Search for Tag" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:150 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:151 #: app/modules/web/Controllers/TagController.php:118 #: app/modules/web/themes/material-blue/views/account/account.inc:253 msgid "New Tag" -msgstr "New Tag" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:168 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:169 #: app/modules/web/Controllers/TagController.php:180 msgid "Edit Tag" -msgstr "Edit Tag" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:185 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:186 msgid "Delete Tag" -msgstr "Delete Tag" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 msgid "Tracks" -msgstr "Tracks" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 msgid "Date Unlocked" -msgstr "Date Unlocked" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 msgid "Source" -msgstr "Source" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 msgid "Search for track" -msgstr "Search for track" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:96 #: lib/SP/Services/CustomField/CustomFieldDefService.php:82 @@ -2297,33 +2297,33 @@ msgstr "Search for track" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:67 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:276 msgid "Users" -msgstr "Users" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:148 msgid "Search for User" -msgstr "Search for User" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:163 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:164 #: app/modules/web/Controllers/UserController.php:126 msgid "New User" -msgstr "New User" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:181 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:182 #: app/modules/web/Controllers/UserController.php:213 msgid "Edit User" -msgstr "Edit User" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:199 msgid "Delete User" -msgstr "Delete User" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:215 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:216 msgid "View User Details" -msgstr "View User Details" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:232 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:233 @@ -2331,7 +2331,7 @@ msgstr "View User Details" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:130 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:136 msgid "Change User's Password" -msgstr "Change User's Password" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 #: lib/SP/Services/CustomField/CustomFieldDefService.php:83 @@ -2340,253 +2340,253 @@ msgstr "Change User's Password" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 msgid "Groups" -msgstr "Groups" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 msgid "Search for Group" -msgstr "Search for Group" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 #: app/modules/web/Controllers/UserGroupController.php:127 msgid "New Group" -msgstr "New Group" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 #: app/modules/web/Controllers/UserGroupController.php:366 msgid "View Group" -msgstr "View Group" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 #: app/modules/web/Controllers/UserGroupController.php:200 msgid "Edit Group" -msgstr "Edit Group" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 msgid "Delete Group" -msgstr "Delete Group" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 msgid "Profiles" -msgstr "Profiles" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 msgid "Search for Profile" -msgstr "Search for Profile" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 #: app/modules/web/Controllers/UserProfileController.php:121 msgid "New Profile" -msgstr "New Profile" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 msgid "View Profile Details" -msgstr "View Profile Details" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 #: app/modules/web/Controllers/UserProfileController.php:190 msgid "Edit Profile" -msgstr "Edit Profile" +msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 msgid "Delete Profile" -msgstr "Delete Profile" +msgstr "" #: app/modules/web/Controllers/Helpers/LayoutHelper.php:263 #: app/modules/web/themes/material-blue/inc/Icons.php:57 msgid "Search" -msgstr "Search" +msgstr "" #: app/modules/web/Controllers/Helpers/LayoutHelper.php:346 #: app/modules/web/themes/material-blue/inc/Icons.php:60 #: app/modules/web/themes/material-blue/views/config/ldap.inc:31 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Configuration" -msgstr "Configuration" +msgstr "" #: app/modules/web/Controllers/InstallController.php:60 msgid "Module unavailable" -msgstr "Module unavailable" +msgstr "" #: app/modules/web/Controllers/InstallController.php:61 msgid "Without this module the application could not run correctly" -msgstr "Without this module the application could not run correctly" +msgstr "" #: app/modules/web/Controllers/InstallController.php:90 msgid "Installation finished" -msgstr "Installation finished" +msgstr "" #: app/modules/web/Controllers/ItemPresetController.php:85 msgid "Display Value" -msgstr "Display Value" +msgstr "" #: app/modules/web/Controllers/ItemPresetController.php:221 msgid "New Value" -msgstr "New Value" +msgstr "" #: app/modules/web/Controllers/ItemPresetController.php:295 #: app/modules/web/Controllers/ItemPresetController.php:298 msgid "Values deleted" -msgstr "Values deleted" +msgstr "" #: app/modules/web/Controllers/ItemPresetController.php:306 #: app/modules/web/Controllers/ItemPresetController.php:310 msgid "Value deleted" -msgstr "Value deleted" +msgstr "" #: app/modules/web/Controllers/ItemPresetController.php:342 #: app/modules/web/Controllers/ItemPresetController.php:347 msgid "Value created" -msgstr "Value created" +msgstr "" #: app/modules/web/Controllers/ItemPresetController.php:385 #: app/modules/web/Controllers/ItemPresetController.php:390 msgid "Value updated" -msgstr "Value updated" +msgstr "" #: app/modules/web/Controllers/ItemsController.php:140 msgid "There aren't any pending notifications" -msgstr "There aren't any pending notifications" +msgstr "" #: app/modules/web/Controllers/ItemsController.php:141 #, php-format msgid "There are pending notifications: %d" -msgstr "There are pending notifications: %d" +msgstr "" #: app/modules/web/Controllers/LoginController.php:125 msgid "Logout session" -msgstr "Logout session" +msgstr "" #: app/modules/web/Controllers/LoginController.php:127 msgid "Inactive time" -msgstr "Inactive time" +msgstr "" #: app/modules/web/Controllers/LoginController.php:128 msgid "Total time" -msgstr "Total time" +msgstr "" #: app/modules/web/Controllers/NotificationController.php:278 #: app/modules/web/Controllers/NotificationController.php:281 msgid "Notifications deleted" -msgstr "Notifications deleted" +msgstr "" #: app/modules/web/Controllers/NotificationController.php:293 #: app/modules/web/Controllers/NotificationController.php:297 msgid "Notification deleted" -msgstr "Notification deleted" +msgstr "" #: app/modules/web/Controllers/NotificationController.php:294 #: app/modules/web/Controllers/NotificationController.php:329 #: lib/SP/Providers/Notification/NotificationHandler.php:158 msgid "Notification" -msgstr "Notification" +msgstr "" #: app/modules/web/Controllers/NotificationController.php:328 #: app/modules/web/Controllers/NotificationController.php:332 msgid "Notification read" -msgstr "Notification read" +msgstr "" #: app/modules/web/Controllers/NotificationController.php:362 #: app/modules/web/Controllers/NotificationController.php:365 msgid "Notification created" -msgstr "Notification created" +msgstr "" #: app/modules/web/Controllers/NotificationController.php:399 #: app/modules/web/Controllers/NotificationController.php:402 msgid "Notification updated" -msgstr "Notification updated" +msgstr "" #: app/modules/web/Controllers/PluginController.php:214 #: app/modules/web/Controllers/PluginController.php:217 msgid "Plugin enabled" -msgstr "Plugin enabled" +msgstr "" #: app/modules/web/Controllers/PluginController.php:243 #: app/modules/web/Controllers/PluginController.php:246 #: lib/SP/Plugin/PluginManager.php:233 lib/SP/Plugin/PluginManager.php:441 msgid "Plugin disabled" -msgstr "Plugin disabled" +msgstr "" #: app/modules/web/Controllers/PluginController.php:273 #: app/modules/web/Controllers/PluginController.php:276 msgid "Plugin reset" -msgstr "Plugin reset" +msgstr "" #: app/modules/web/Controllers/PluginController.php:307 msgid "Plugins deleted" -msgstr "Plugins deleted" +msgstr "" #: app/modules/web/Controllers/PluginController.php:313 msgid "Plugin deleted" -msgstr "Plugin deleted" +msgstr "" #: app/modules/web/Controllers/PublicLinkController.php:124 msgid "New Public Link" -msgstr "New Public Link" +msgstr "" #: app/modules/web/Controllers/PublicLinkController.php:194 #: lib/SP/Services/Upgrade/UpgradePublicLink.php:90 msgid "Link updated" -msgstr "Link updated" +msgstr "" #: app/modules/web/Controllers/PublicLinkController.php:220 msgid "Edit Public Link" -msgstr "Edit Public Link" +msgstr "" #: app/modules/web/Controllers/PublicLinkController.php:261 #: app/modules/web/Controllers/PublicLinkController.php:264 msgid "Links deleted" -msgstr "Links deleted" +msgstr "" #: app/modules/web/Controllers/PublicLinkController.php:272 #: app/modules/web/Controllers/PublicLinkController.php:276 msgid "Link deleted" -msgstr "Link deleted" +msgstr "" #: app/modules/web/Controllers/PublicLinkController.php:306 #: app/modules/web/Controllers/PublicLinkController.php:345 msgid "Link created" -msgstr "Link created" +msgstr "" #: app/modules/web/Controllers/StatusController.php:95 msgid "Version unavailable" -msgstr "Version unavailable" +msgstr "" #: app/modules/web/Controllers/StatusController.php:142 msgid "Notifications not available" -msgstr "Notifications not available" +msgstr "" #: app/modules/web/Controllers/TagController.php:221 msgid "Tags deleted" -msgstr "Tags deleted" +msgstr "" #: app/modules/web/Controllers/TagController.php:322 msgid "View Tag" -msgstr "View Tag" +msgstr "" #: app/modules/web/Controllers/TrackController.php:121 msgid "Track unlocked" -msgstr "Track unlocked" +msgstr "" #: app/modules/web/Controllers/TrackController.php:149 msgid "Tracks cleared out" -msgstr "Tracks cleared out" +msgstr "" #: app/modules/web/Controllers/Traits/ConfigTrait.php:69 msgid "Configuration updated" -msgstr "Configuration updated" +msgstr "" #: app/modules/web/Controllers/Traits/ConfigTrait.php:73 msgid "Error while saving the configuration" -msgstr "Error while saving the configuration" +msgstr "" #: app/modules/web/Controllers/Traits/ItemTrait.php:135 #: app/modules/web/Controllers/Traits/ItemTrait.php:196 @@ -2614,28 +2614,28 @@ msgstr "Error while saving the configuration" #: lib/SP/Services/Import/XmlFileImport.php:82 #: lib/SP/Services/User/UserPassService.php:237 msgid "Internal error" -msgstr "Internal error" +msgstr "" #: app/modules/web/Controllers/Traits/ItemTrait.php:192 msgid "Error while updating custom field's data" -msgstr "Error while updating custom field's data" +msgstr "" #: app/modules/web/Controllers/UpgradeController.php:72 msgid "The updating need to be confirmed" -msgstr "The updating need to be confirmed" +msgstr "" #: app/modules/web/Controllers/UpgradeController.php:79 msgid "Wrong security code" -msgstr "Wrong security code" +msgstr "" #: app/modules/web/Controllers/UpgradeController.php:105 #: app/modules/web/themes/material-blue/views/login/index.inc:96 msgid "Application successfully updated" -msgstr "Application successfully updated" +msgstr "" #: app/modules/web/Controllers/UpgradeController.php:106 msgid "You will be redirected to log in within 5 seconds" -msgstr "You will be redirected to log in within 5 seconds" +msgstr "" #: app/modules/web/Controllers/UserController.php:250 #: app/modules/web/Controllers/UserController.php:381 @@ -2643,223 +2643,223 @@ msgstr "You will be redirected to log in within 5 seconds" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:72 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:261 msgid "Password Change" -msgstr "Password Change" +msgstr "" #: app/modules/web/Controllers/UserController.php:294 #: app/modules/web/Controllers/UserController.php:298 msgid "Users deleted" -msgstr "Users deleted" +msgstr "" #: app/modules/web/Controllers/UserController.php:306 #: app/modules/web/Controllers/UserController.php:311 msgid "User deleted" -msgstr "User deleted" +msgstr "" #: app/modules/web/Controllers/UserController.php:345 #: app/modules/web/Controllers/UserController.php:351 msgid "User added" -msgstr "User added" +msgstr "" #: app/modules/web/Controllers/UserController.php:412 #: app/modules/web/Controllers/UserController.php:419 msgid "User updated" -msgstr "User updated" +msgstr "" #: app/modules/web/Controllers/UserController.php:488 msgid "View User" -msgstr "View User" +msgstr "" #: app/modules/web/Controllers/UserGroupController.php:240 #: app/modules/web/Controllers/UserGroupController.php:243 msgid "Groups deleted" -msgstr "Groups deleted" +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:98 msgid "Wrong data" -msgstr "Wrong data" +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:103 msgid "Unable to reset the password" -msgstr "Unable to reset the password" +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:114 msgid "Password Recovery" -msgstr "Password Recovery" +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:115 msgid "Requested for" -msgstr "Requested for" +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:125 msgid "Request sent" -msgstr "Request sent" +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:126 msgid "You will receive an email to complete the request shortly." -msgstr "You will receive an email to complete the request shortly." +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:149 #: lib/SP/Services/Api/ApiService.php:99 #: lib/SP/Services/Auth/LoginService.php:147 #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:110 msgid "Attempts exceeded" -msgstr "Attempts exceeded" +msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:199 #: app/modules/web/Forms/AuthTokenForm.php:101 #: app/modules/web/Forms/UserForm.php:157 msgid "Password cannot be blank" -msgstr "Password cannot be blank" +msgstr "" #: app/modules/web/Controllers/UserProfileController.php:230 #: app/modules/web/Controllers/UserProfileController.php:233 msgid "Profiles deleted" -msgstr "Profiles deleted" +msgstr "" #: app/modules/web/Controllers/UserProfileController.php:242 #: app/modules/web/Controllers/UserProfileController.php:247 msgid "Profile deleted" -msgstr "Profile deleted" +msgstr "" #: app/modules/web/Controllers/UserProfileController.php:282 #: app/modules/web/Controllers/UserProfileController.php:286 msgid "Profile added" -msgstr "Profile added" +msgstr "" #: app/modules/web/Controllers/UserProfileController.php:325 #: app/modules/web/Controllers/UserProfileController.php:330 msgid "Profile updated" -msgstr "Profile updated" +msgstr "" #: app/modules/web/Controllers/UserProfileController.php:358 msgid "View Profile" -msgstr "View Profile" +msgstr "" #: app/modules/web/Controllers/UserSettingsGeneralController.php:78 msgid "Preferences updated" -msgstr "Preferences updated" +msgstr "" #: app/modules/web/Controllers/UserSettingsManagerController.php:98 msgid "Preferences" -msgstr "Preferences" +msgstr "" #: app/modules/web/Forms/AccountForm.php:132 msgid "A key is needed" -msgstr "A key is needed" +msgstr "" #: app/modules/web/Forms/AccountForm.php:172 msgid "An account name needed" -msgstr "An account name needed" +msgstr "" #: app/modules/web/Forms/AccountForm.php:176 #: app/modules/web/Forms/ClientForm.php:84 msgid "A client name needed" -msgstr "A client name needed" +msgstr "" #: app/modules/web/Forms/AccountForm.php:180 msgid "A category is needed" -msgstr "A category is needed" +msgstr "" #: app/modules/web/Forms/AuthTokenForm.php:91 msgid "User not set" -msgstr "User not set" +msgstr "" #: app/modules/web/Forms/AuthTokenForm.php:95 msgid "Action not set" -msgstr "Action not set" +msgstr "" #: app/modules/web/Forms/CategoryForm.php:83 msgid "A category name needed" -msgstr "A category name needed" +msgstr "" #: app/modules/web/Forms/CustomFieldDefForm.php:87 msgid "Field name not set" -msgstr "Field name not set" +msgstr "" #: app/modules/web/Forms/CustomFieldDefForm.php:91 msgid "Field type not set" -msgstr "Field type not set" +msgstr "" #: app/modules/web/Forms/CustomFieldDefForm.php:95 msgid "Field module not set" -msgstr "Field module not set" +msgstr "" #: app/modules/web/Forms/ItemsPresetForm.php:116 msgid "Value type not set or incorrect" -msgstr "Value type not set or incorrect" +msgstr "" #: app/modules/web/Forms/ItemsPresetForm.php:133 msgid "There aren't any defined permissions" -msgstr "There aren't any defined permissions" +msgstr "" #: app/modules/web/Forms/ItemsPresetForm.php:182 msgid "Invalid regular expression" -msgstr "Invalid regular expression" +msgstr "" #: app/modules/web/Forms/ItemsPresetForm.php:208 msgid "An element of type user, group or profile need to be set" -msgstr "An element of type user, group or profile need to be set" +msgstr "" #: app/modules/web/Forms/NotificationForm.php:98 msgid "A component is needed" -msgstr "A component is needed" +msgstr "" #: app/modules/web/Forms/NotificationForm.php:102 msgid "A type is needed" -msgstr "A type is needed" +msgstr "" #: app/modules/web/Forms/NotificationForm.php:112 msgid "A target is needed" -msgstr "A target is needed" +msgstr "" #: app/modules/web/Forms/PublicLinkForm.php:85 msgid "An account is needed" -msgstr "An account is needed" +msgstr "" #: app/modules/web/Forms/TagForm.php:82 msgid "A tag name is needed" -msgstr "A tag name is needed" +msgstr "" #: app/modules/web/Forms/UserForm.php:111 msgid "An username is needed" -msgstr "An username is needed" +msgstr "" #: app/modules/web/Forms/UserForm.php:115 msgid "A login is needed" -msgstr "A login is needed" +msgstr "" #: app/modules/web/Forms/UserForm.php:119 msgid "A profile is needed" -msgstr "A profile is needed" +msgstr "" #: app/modules/web/Forms/UserForm.php:123 msgid "A group is needed" -msgstr "A group is needed" +msgstr "" #: app/modules/web/Forms/UserForm.php:127 msgid "An email is needed" -msgstr "An email is needed" +msgstr "" #: app/modules/web/Forms/UserForm.php:179 msgid "Unable to delete, user in use" -msgstr "Unable to delete, user in use" +msgstr "" #: app/modules/web/Forms/UserGroupForm.php:84 msgid "A group name is needed" -msgstr "A group name is needed" +msgstr "" #: app/modules/web/Forms/UserProfileForm.php:116 msgid "A profile name is needed" -msgstr "A profile name is needed" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:31 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:47 msgid "Add" -msgstr "Add" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:32 msgid "View Details" -msgstr "View Details" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:34 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:76 @@ -2872,7 +2872,7 @@ msgstr "View Details" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:97 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:116 msgid "Edit" -msgstr "Edit" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:35 #: app/modules/web/themes/material-blue/inc/Icons.php:65 @@ -2882,107 +2882,107 @@ msgstr "Edit" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:235 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 msgid "Delete" -msgstr "Delete" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:36 msgid "Change Password" -msgstr "Change Password" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:37 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:221 msgid "Application Admin" -msgstr "Application Admin" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:38 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Accounts Admin" -msgstr "Accounts Admin" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:39 msgid "LDAP User" -msgstr "LDAP User" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:40 #: app/modules/web/themes/material-blue/views/config/mail.inc:159 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:280 msgid "Disabled" -msgstr "Disabled" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:41 msgid "Enabled" -msgstr "Enabled" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:42 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:198 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:58 msgid "Update" -msgstr "Update" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:43 msgid "Copy" -msgstr "Copy" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:45 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:97 msgid "Email" -msgstr "Email" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:49 msgid "Restore" -msgstr "Restore" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:51 msgid "Help" -msgstr "Help" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:52 msgid "Clear" -msgstr "Clear" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:53 msgid "Perform" -msgstr "Perform" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:54 msgid "Download" -msgstr "Download" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:55 msgid "Warning" -msgstr "Warning" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:56 msgid "Check" -msgstr "Check" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:63 msgid "Critical" -msgstr "Critical" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:66 msgid "Previous page" -msgstr "Previous page" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:67 msgid "Next page" -msgstr "Next page" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:68 msgid "First page" -msgstr "First page" +msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:69 msgid "Last page" -msgstr "Last page" +msgstr "" #: lib/SP/Bootstrap.php:293 #, php-format msgid "Required PHP version >= %s <= %s" -msgstr "Required PHP version >= %s <= %s" +msgstr "" #: lib/SP/Bootstrap.php:295 msgid "Please update the PHP version to run sysPass" -msgstr "Please update the PHP version to run sysPass" +msgstr "" #: lib/SP/Config/ConfigUtil.php:102 msgid "'/app/config' directory does not exist." @@ -2999,171 +2999,171 @@ msgstr "" #: lib/SP/Config/ConfigUtil.php:119 #, php-format msgid "Current: %s - Needed: 750" -msgstr "Current: %s - Needed: 750" +msgstr "" #: lib/SP/Core/Acl/Acl.php:294 lib/SP/Services/Auth/LoginService.php:660 msgid "N/A" -msgstr "N/A" +msgstr "" #: lib/SP/Core/Acl/Acl.php:299 msgid "Access denied" -msgstr "Access denied" +msgstr "" #: lib/SP/Core/Acl/Actions.php:177 msgid "Action not found" -msgstr "Action not found" +msgstr "" #: lib/SP/Core/Acl/UnauthorizedPageException.php:46 #: lib/SP/Util/ErrorUtil.php:157 msgid "You don't have permission to access this page" -msgstr "You don't have permission to access this page" +msgstr "" #: lib/SP/Core/Context/ContextBase.php:73 msgid "Unable to change password value" -msgstr "Unable to change password value" +msgstr "" #: lib/SP/Core/Context/ContextBase.php:103 #: lib/SP/Core/Context/ContextBase.php:126 msgid "Context already initialized" -msgstr "Context already initialized" +msgstr "" #: lib/SP/Core/Context/ContextBase.php:109 msgid "Invalid context" -msgstr "Invalid context" +msgstr "" #: lib/SP/Core/Context/ContextBase.php:154 msgid "Context not initialized" -msgstr "Context not initialized" +msgstr "" #: lib/SP/Core/Context/SessionContext.php:492 msgid "Session cannot be initialized" -msgstr "Session cannot be initialized" +msgstr "" #: lib/SP/Core/Crypt/OldCrypt.php:178 msgid "Crypto module cannot be loaded" -msgstr "Crypto module cannot be loaded" +msgstr "" #: lib/SP/Core/Crypt/OldCrypt.php:190 msgid "Error while creating the encrypted data" -msgstr "Error while creating the encrypted data" +msgstr "" #: lib/SP/Core/Events/Event.php:57 msgid "An object is needed" -msgstr "An object is needed" +msgstr "" #: lib/SP/Core/Events/EventDispatcherBase.php:85 msgid "Observer not initialized" -msgstr "Observer not initialized" +msgstr "" #: lib/SP/Core/UI/Theme.php:185 msgid "Invalid icons class" -msgstr "Invalid icons class" +msgstr "" #: lib/SP/Html/DataGrid/DataGridBase.php:302 lib/SP/Mvc/View/Template.php:128 #, php-format msgid "Unable to retrieve \"%s\" template: %s" -msgstr "Unable to retrieve \"%s\" template: %s" +msgstr "" #: lib/SP/Http/Address.php:49 lib/SP/Http/Address.php:51 #: lib/SP/Http/Address.php:68 lib/SP/Http/Address.php:70 #: lib/SP/Http/Address.php:90 lib/SP/Http/Address.php:109 msgid "Invalid IP" -msgstr "Invalid IP" +msgstr "" #: lib/SP/Http/Json.php:180 msgid "Encoding error" -msgstr "Encoding error" +msgstr "" #: lib/SP/Http/XMLRPCResponseParse.php:70 msgid "Invalid XML-RPC response" -msgstr "Invalid XML-RPC response" +msgstr "" #: lib/SP/Mvc/Controller/ControllerTrait.php:66 msgid "Session not started or timed out" -msgstr "Session not started or timed out" +msgstr "" #: lib/SP/Mvc/Controller/ControllerTrait.php:117 #: lib/SP/Mvc/Controller/ControllerTrait.php:131 msgid "Invalid Action" -msgstr "Invalid Action" +msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 #, php-format msgid "Password needs to be %d characters long" -msgstr "Password needs to be %d characters long" +msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 msgid "Password does not contain the required characters" -msgstr "Password does not contain the required characters" +msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 msgid "Password needs to contain letters" -msgstr "Password needs to contain letters" +msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 msgid "Password needs to contain lower case letters" -msgstr "Password needs to contain lower case letters" +msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 msgid "Password needs to contain upper case letters" -msgstr "Password needs to contain upper case letters" +msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 msgid "Password needs to contain numbers" -msgstr "Password needs to contain numbers" +msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 msgid "Password needs to contain symbols" -msgstr "Password needs to contain symbols" +msgstr "" #: lib/SP/Mvc/Model/QueryCondition.php:73 msgid "Invalid filter type" -msgstr "Invalid filter type" +msgstr "" #: lib/SP/Mvc/View/Components/SelectItemAdapter.php:96 #: lib/SP/Mvc/View/Components/SelectItemAdapter.php:158 msgid "Wrong object type" -msgstr "Wrong object type" +msgstr "" #: lib/SP/Mvc/View/Template.php:303 lib/SP/Mvc/View/Template.php:367 #, php-format msgid "Unable to retrieve \"%s\" variable" -msgstr "Unable to retrieve \"%s\" variable" +msgstr "" #: lib/SP/Mvc/View/Template.php:336 #, php-format msgid "Unable to unset \"%s\" variable" -msgstr "Unable to unset \"%s\" variable" +msgstr "" #: lib/SP/Mvc/View/Template.php:357 msgid "Template does not contain files" -msgstr "Template does not contain files" +msgstr "" #: lib/SP/Plugin/PluginManager.php:194 #, php-format msgid "Plugin version not compatible (%s)" -msgstr "Plugin version not compatible (%s)" +msgstr "" #: lib/SP/Plugin/PluginManager.php:206 lib/SP/Plugin/PluginManager.php:262 #, php-format msgid "Unable to load the \"%s\" plugin" -msgstr "Unable to load the \"%s\" plugin" +msgstr "" #: lib/SP/Plugin/PluginManager.php:297 msgid "Plugin available" -msgstr "Plugin available" +msgstr "" #: lib/SP/Plugin/PluginManager.php:308 msgid "Plugin unavailable" -msgstr "Plugin unavailable" +msgstr "" #: lib/SP/Plugin/PluginManager.php:341 msgid "Plugin loaded" -msgstr "Plugin loaded" +msgstr "" #: lib/SP/Plugin/PluginManager.php:366 msgid "New Plugin" -msgstr "New Plugin" +msgstr "" #: lib/SP/Plugin/PluginManager.php:394 msgid "Upgrading plugin" @@ -3180,37 +3180,37 @@ msgstr "" #: lib/SP/Providers/Auth/AuthProvider.php:220 msgid "Method unavailable" -msgstr "Method unavailable" +msgstr "" #: lib/SP/Providers/Auth/AuthProvider.php:224 msgid "Method already initialized" -msgstr "Method already initialized" +msgstr "" #: lib/SP/Providers/Auth/Ldap/Ldap.php:110 msgid "LDAP type not set" -msgstr "LDAP type not set" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:121 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:128 msgid "Error while searching the group RDN" -msgstr "Error while searching the group RDN" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:226 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:231 msgid "Error while searching the user on LDAP" -msgstr "Error while searching the user on LDAP" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:281 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:287 msgid "Error while searching objects in base DN" -msgstr "Error while searching objects in base DN" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:149 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:213 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:218 msgid "Unable to connect to LDAP server" -msgstr "Unable to connect to LDAP server" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:146 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:214 @@ -3223,21 +3223,21 @@ msgstr "Unable to connect to LDAP server" #: app/modules/web/themes/material-blue/views/config/mail.inc:69 #: app/modules/web/themes/material-blue/views/config/mail.inc:78 msgid "Server" -msgstr "Server" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:174 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:176 msgid "LDAP parameters are not set" -msgstr "LDAP parameters are not set" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:256 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:262 msgid "Connection error (BIND)" -msgstr "Connection error (BIND)" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:326 msgid "Error while disconnecting from LDAP server" -msgstr "Error while disconnecting from LDAP server" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 #: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 @@ -3245,63 +3245,63 @@ msgstr "Error while disconnecting from LDAP server" #: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:155 #: lib/SP/Providers/Auth/Ldap/LdapStd.php:111 msgid "User in group verified" -msgstr "User in group verified" +msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 #: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:145 #: lib/SP/Providers/Auth/Ldap/LdapStd.php:143 msgid "User does not belong to the group" -msgstr "User does not belong to the group" +msgstr "" #: lib/SP/Providers/Mail/MailHandler.php:153 #, php-format msgid "Event: %s" -msgstr "Event: %s" +msgstr "" #: lib/SP/Providers/Mail/MailHandler.php:161 #: lib/SP/Providers/Mail/MailHandler.php:163 #, php-format msgid "Performed by: %s (%s)" -msgstr "Performed by: %s (%s)" +msgstr "" #: lib/SP/Providers/Mail/MailHandler.php:166 #, php-format msgid "IP Address: %s" -msgstr "IP Address: %s" +msgstr "" #: lib/SP/Providers/Mail/MailProvider.php:94 msgid "Unable to initialize" -msgstr "Unable to initialize" +msgstr "" #: lib/SP/Repositories/Account/AccountFileRepository.php:80 msgid "Error while saving file" -msgstr "Error while saving file" +msgstr "" #: lib/SP/Repositories/Account/AccountFileRepository.php:282 msgid "Error while deleting the file" -msgstr "Error while deleting the file" +msgstr "" #: lib/SP/Repositories/Account/AccountFileRepository.php:305 #: lib/SP/Services/Account/AccountFileService.php:149 msgid "Error while deleting the files" -msgstr "Error while deleting the files" +msgstr "" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:144 msgid "Error while updating history" -msgstr "Error while updating history" +msgstr "" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:163 #: lib/SP/Repositories/Account/AccountRepository.php:323 #: lib/SP/Services/Account/AccountHistoryService.php:195 msgid "Error while deleting the account" -msgstr "Error while deleting the account" +msgstr "" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:293 #: lib/SP/Repositories/Account/AccountHistoryRepository.php:316 #: lib/SP/Repositories/Account/AccountRepository.php:503 #: lib/SP/Services/Account/AccountService.php:647 msgid "Error while deleting the accounts" -msgstr "Error while deleting the accounts" +msgstr "" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:437 #: lib/SP/Repositories/Account/AccountRepository.php:237 @@ -3310,197 +3310,197 @@ msgstr "Error while deleting the accounts" #: lib/SP/Services/Account/AccountHistoryService.php:236 #: lib/SP/Services/User/UserService.php:334 msgid "Error while updating the password" -msgstr "Error while updating the password" +msgstr "" #: lib/SP/Repositories/Account/AccountRepository.php:202 msgid "Error while creating the account" -msgstr "Error while creating the account" +msgstr "" #: lib/SP/Repositories/Account/AccountRepository.php:303 #: lib/SP/Services/Account/AccountService.php:613 msgid "Error on restoring the account" -msgstr "Error on restoring the account" +msgstr "" #: lib/SP/Repositories/Account/AccountRepository.php:384 #: lib/SP/Repositories/Account/AccountRepository.php:433 msgid "Error while updating the account" -msgstr "Error while updating the account" +msgstr "" #: lib/SP/Repositories/Account/AccountRepository.php:453 #: lib/SP/Repositories/Account/AccountRepository.php:625 #: lib/SP/Services/Account/AccountHistoryService.php:78 msgid "Error while retrieving account's data" -msgstr "Error while retrieving account's data" +msgstr "" #: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:74 msgid "Error while adding favorite" -msgstr "Error while adding favorite" +msgstr "" #: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:94 msgid "Error while deleting favorite" -msgstr "Error while deleting favorite" +msgstr "" #: lib/SP/Repositories/Account/AccountToTagRepository.php:97 msgid "Error while removing the account's tags" -msgstr "Error while removing the account's tags" +msgstr "" #: lib/SP/Repositories/Account/AccountToTagRepository.php:118 msgid "Error while adding the account's tags" -msgstr "Error while adding the account's tags" +msgstr "" #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:109 #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:142 #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:194 msgid "Error while deleting the account's groups" -msgstr "Error while deleting the account's groups" +msgstr "" #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:167 msgid "Error while updating the secondary groups" -msgstr "Error while updating the secondary groups" +msgstr "" #: lib/SP/Repositories/Account/AccountToUserRepository.php:79 #: lib/SP/Repositories/Account/AccountToUserRepository.php:135 msgid "Error while deleting the account users" -msgstr "Error while deleting the account users" +msgstr "" #: lib/SP/Repositories/Account/AccountToUserRepository.php:106 msgid "Error while updating the account users" -msgstr "Error while updating the account users" +msgstr "" #: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:224 #: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:312 msgid "The authorization already exist" -msgstr "The authorization already exist" +msgstr "" #: lib/SP/Repositories/Category/CategoryRepository.php:61 msgid "Duplicated category" -msgstr "Duplicated category" +msgstr "" #: lib/SP/Repositories/Category/CategoryRepository.php:71 msgid "Error while creating the category" -msgstr "Error while creating the category" +msgstr "" #: lib/SP/Repositories/Category/CategoryRepository.php:110 msgid "Duplicated category name" -msgstr "Duplicated category name" +msgstr "" #: lib/SP/Repositories/Category/CategoryRepository.php:128 msgid "Error while updating the category" -msgstr "Error while updating the category" +msgstr "" #: lib/SP/Repositories/Category/CategoryRepository.php:256 msgid "Error while deleting the categories" -msgstr "Error while deleting the categories" +msgstr "" #: lib/SP/Repositories/Category/CategoryRepository.php:278 msgid "Error while deleting the category" -msgstr "Error while deleting the category" +msgstr "" #: lib/SP/Repositories/Client/ClientRepository.php:63 #: lib/SP/Repositories/Client/ClientRepository.php:117 msgid "Duplicated client" -msgstr "Duplicated client" +msgstr "" #: lib/SP/Repositories/Client/ClientRepository.php:81 msgid "Error while creating the client" -msgstr "Error while creating the client" +msgstr "" #: lib/SP/Repositories/Client/ClientRepository.php:137 msgid "Error while updating the client" -msgstr "Error while updating the client" +msgstr "" #: lib/SP/Repositories/Client/ClientRepository.php:265 #: lib/SP/Services/Client/ClientService.php:132 msgid "Error while deleting the clients" -msgstr "Error while deleting the clients" +msgstr "" #: lib/SP/Repositories/Client/ClientRepository.php:284 msgid "Error while deleting the client" -msgstr "Error while deleting the client" +msgstr "" #: lib/SP/Repositories/Client/ClientRepository.php:346 msgid "Wrong filter" -msgstr "Wrong filter" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:78 msgid "Error while creating the custom field" -msgstr "Error while creating the custom field" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:121 #: lib/SP/Services/CustomField/CustomFieldDefService.php:170 #: lib/SP/Services/CustomField/CustomFieldDefService.php:198 msgid "Error while updating the custom field" -msgstr "Error while updating the custom field" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:162 msgid "Custom field not found" -msgstr "Custom field not found" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:242 msgid "Error while removing the custom fields" -msgstr "Error while removing the custom fields" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:262 msgid "Error while removing the custom field" -msgstr "Error while removing the custom field" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:63 msgid "Error while creating the field type" -msgstr "Error while creating the field type" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:99 msgid "Error while updating the field type" -msgstr "Error while updating the field type" +msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:181 #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:200 msgid "Error while deleting the field type" -msgstr "Error while deleting the field type" +msgstr "" #: lib/SP/Repositories/EventLog/EventlogRepository.php:53 msgid "Error while clearing the event log out" -msgstr "Error while clearing the event log out" +msgstr "" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:79 msgid "Error while creating the permission" -msgstr "Error while creating the permission" +msgstr "" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:118 msgid "Error while updating the permission" -msgstr "Error while updating the permission" +msgstr "" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:137 msgid "Error while removing the permission" -msgstr "Error while removing the permission" +msgstr "" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:262 msgid "Error while removing the permissions" -msgstr "Error while removing the permissions" +msgstr "" #: lib/SP/Repositories/Notification/NotificationRepository.php:80 msgid "Error while adding the notification" -msgstr "Error while adding the notification" +msgstr "" #: lib/SP/Repositories/Notification/NotificationRepository.php:120 #: lib/SP/Repositories/Notification/NotificationRepository.php:479 msgid "Error while updating the notification" -msgstr "Error while updating the notification" +msgstr "" #: lib/SP/Repositories/Notification/NotificationRepository.php:139 #: lib/SP/Repositories/Notification/NotificationRepository.php:158 msgid "Error while deleting the notification" -msgstr "Error while deleting the notification" +msgstr "" #: lib/SP/Repositories/Notification/NotificationRepository.php:181 #: lib/SP/Repositories/Notification/NotificationRepository.php:304 #: lib/SP/Services/Notification/NotificationService.php:144 #: lib/SP/Services/Notification/NotificationService.php:163 msgid "Error while deleting the notifications" -msgstr "Error while deleting the notifications" +msgstr "" #: lib/SP/Repositories/Notification/NotificationRepository.php:214 msgid "Error while retrieving notification" -msgstr "Error while retrieving notification" +msgstr "" #: lib/SP/Repositories/Notification/NotificationRepository.php:244 #: lib/SP/Repositories/Notification/NotificationRepository.php:516 @@ -3508,7 +3508,7 @@ msgstr "Error while retrieving notification" #: lib/SP/Repositories/Notification/NotificationRepository.php:583 #: lib/SP/Repositories/Notification/NotificationRepository.php:616 msgid "Error while retrieving the notifications" -msgstr "Error while retrieving the notifications" +msgstr "" #: lib/SP/Repositories/Plugin/PluginDataRepository.php:68 msgid "Error while adding plugin's data" @@ -3526,7 +3526,7 @@ msgstr "" #: lib/SP/Repositories/Plugin/PluginRepository.php:70 msgid "Error while adding the plugin" -msgstr "Error while adding the plugin" +msgstr "" #: lib/SP/Repositories/Plugin/PluginRepository.php:106 #: lib/SP/Repositories/Plugin/PluginRepository.php:354 @@ -3535,179 +3535,179 @@ msgstr "Error while adding the plugin" #: lib/SP/Repositories/Plugin/PluginRepository.php:414 #: lib/SP/Repositories/Plugin/PluginRepository.php:433 msgid "Error while updating the plugin" -msgstr "Error while updating the plugin" +msgstr "" #: lib/SP/Repositories/Plugin/PluginRepository.php:217 #: lib/SP/Services/Plugin/PluginService.php:139 msgid "Error while deleting the plugins" -msgstr "Error while deleting the plugins" +msgstr "" #: lib/SP/Repositories/Plugin/PluginRepository.php:237 msgid "Error while deleting the plugin" -msgstr "Error while deleting the plugin" +msgstr "" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:64 msgid "Error while removing the link" -msgstr "Error while removing the link" +msgstr "" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:256 msgid "Link already created" -msgstr "Link already created" +msgstr "" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:283 msgid "Error while creating the link" -msgstr "Error while creating the link" +msgstr "" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:342 #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:390 msgid "Error while updating the link" -msgstr "Error while updating the link" +msgstr "" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:425 msgid "Error while renewing link" -msgstr "Error while renewing link" +msgstr "" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:467 #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:508 #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:529 msgid "Error while retrieving the link" -msgstr "Error while retrieving the link" +msgstr "" #: lib/SP/Repositories/Tag/TagRepository.php:60 #: lib/SP/Repositories/Tag/TagRepository.php:108 msgid "Duplicated tag" -msgstr "Duplicated tag" +msgstr "" #: lib/SP/Repositories/Tag/TagRepository.php:69 msgid "Error while creating the tag" -msgstr "Error while creating the tag" +msgstr "" #: lib/SP/Repositories/Tag/TagRepository.php:118 msgid "Error while updating the tag" -msgstr "Error while updating the tag" +msgstr "" #: lib/SP/Repositories/Tag/TagRepository.php:243 #: lib/SP/Services/Tag/TagService.php:132 msgid "Error while removing the tags" -msgstr "Error while removing the tags" +msgstr "" #: lib/SP/Repositories/Tag/TagRepository.php:262 msgid "Error while removing the tag" -msgstr "Error while removing the tag" +msgstr "" #: lib/SP/Repositories/Track/TrackRepository.php:68 msgid "Error while creating track" -msgstr "Error while creating track" +msgstr "" #: lib/SP/Repositories/Track/TrackRepository.php:85 msgid "Error while removing the track" -msgstr "Error while removing the track" +msgstr "" #: lib/SP/Repositories/Track/TrackRepository.php:102 msgid "Error while updating the track" -msgstr "Error while updating the track" +msgstr "" #: lib/SP/Repositories/Track/TrackRepository.php:118 msgid "Error while clearing tracks out" -msgstr "Error while clearing tracks out" +msgstr "" #: lib/SP/Repositories/Track/TrackRepository.php:146 msgid "Error while retrieving the track" -msgstr "Error while retrieving the track" +msgstr "" #: lib/SP/Repositories/Track/TrackRepository.php:169 #: lib/SP/Repositories/Track/TrackRepository.php:202 msgid "Error while retrieving the tracks" -msgstr "Error while retrieving the tracks" +msgstr "" #: lib/SP/Repositories/User/UserPassRecoverRepository.php:89 msgid "Error while generating the recovering hash" -msgstr "Error while generating the recovering hash" +msgstr "" #: lib/SP/Repositories/User/UserPassRecoverRepository.php:115 msgid "Error while checking hash" -msgstr "Error while checking hash" +msgstr "" #: lib/SP/Repositories/User/UserRepository.php:64 #: lib/SP/Repositories/User/UserRepository.php:431 msgid "Duplicated user login/email" -msgstr "Duplicated user login/email" +msgstr "" #: lib/SP/Repositories/User/UserRepository.php:101 #: lib/SP/Repositories/User/UserRepository.php:678 #: lib/SP/Services/User/UserService.php:313 msgid "Error while updating the user" -msgstr "Error while updating the user" +msgstr "" #: lib/SP/Repositories/User/UserRepository.php:185 msgid "Error while deleting the user" -msgstr "Error while deleting the user" +msgstr "" #: lib/SP/Repositories/User/UserRepository.php:235 #: lib/SP/Repositories/User/UserRepository.php:552 msgid "Error while retrieving the user's data" -msgstr "Error while retrieving the user's data" +msgstr "" #: lib/SP/Repositories/User/UserRepository.php:354 #: lib/SP/Services/User/UserService.php:212 msgid "Error while deleting the users" -msgstr "Error while deleting the users" +msgstr "" #: lib/SP/Repositories/User/UserRepository.php:475 msgid "Error while creating the user" -msgstr "Error while creating the user" +msgstr "" #: lib/SP/Repositories/User/UserRepository.php:698 msgid "Error while updating the preferences" -msgstr "Error while updating the preferences" +msgstr "" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 msgid "Error while deleting the group" -msgstr "Error while deleting the group" +msgstr "" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 msgid "Duplicated group name" -msgstr "Duplicated group name" +msgstr "" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 msgid "Error while creating the group" -msgstr "Error while creating the group" +msgstr "" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 msgid "Error while updating the group" -msgstr "Error while updating the group" +msgstr "" #: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:111 msgid "Error while deleting the group users" -msgstr "Error while deleting the group users" +msgstr "" #: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:143 msgid "Error while setting users in the group" -msgstr "Error while setting users in the group" +msgstr "" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 msgid "Error while removing the profile" -msgstr "Error while removing the profile" +msgstr "" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 #: lib/SP/Services/UserProfile/UserProfileService.php:119 msgid "Error while removing the profiles" -msgstr "Error while removing the profiles" +msgstr "" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 msgid "Duplicated profile name" -msgstr "Duplicated profile name" +msgstr "" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 msgid "Error while creating the profile" -msgstr "Error while creating the profile" +msgstr "" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 #: lib/SP/Services/UserProfile/UserProfileService.php:146 msgid "Error while updating the profile" -msgstr "Error while updating the profile" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:74 #: lib/SP/Services/Account/AccountCryptService.php:81 @@ -3717,79 +3717,79 @@ msgstr "Error while updating the profile" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:88 #: lib/SP/Services/CustomField/CustomFieldCryptService.php:113 msgid "Update Master Password" -msgstr "Update Master Password" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:94 msgid "Error while updating the accounts' passwords" -msgstr "Error while updating the accounts' passwords" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:120 msgid "Error while retrieving the accounts' passwords" -msgstr "Error while retrieving the accounts' passwords" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:144 #, php-format msgid "Accounts updated: %d / %d" -msgstr "Accounts updated: %d / %d" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:153 #, php-format msgid "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:163 msgid "The record's master password does not match" -msgstr "The record's master password does not match" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:188 #: lib/SP/Services/Account/AccountCryptService.php:193 msgid "Error while updating the account's password" -msgstr "Error while updating the account's password" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:199 msgid "Errors" -msgstr "Errors" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:217 #: lib/SP/Services/Account/AccountCryptService.php:224 msgid "Update Master Password (H)" -msgstr "Update Master Password (H)" +msgstr "" #: lib/SP/Services/Account/AccountCryptService.php:240 msgid "Error while updating the accounts' passwords in history" -msgstr "Error while updating the accounts' passwords in history" +msgstr "" #: lib/SP/Services/Account/AccountFileService.php:168 msgid "File not found" -msgstr "File not found" +msgstr "" #: lib/SP/Services/Account/AccountService.php:170 #: lib/SP/Services/Account/AccountService.php:630 msgid "Account not found" -msgstr "Account not found" +msgstr "" #: lib/SP/Services/Account/AccountService.php:240 msgid "Master password not set" -msgstr "Master password not set" +msgstr "" #: lib/SP/Services/Account/AccountService.php:303 #: lib/SP/Services/Account/AccountService.php:703 #: lib/SP/Services/Account/AccountService.php:758 msgid "The account doesn't exist" -msgstr "The account doesn't exist" +msgstr "" #: lib/SP/Services/Api/ApiRequest.php:79 lib/SP/Services/Api/ApiRequest.php:113 #: lib/SP/Services/Api/ApiService.php:234 msgid "Invalid data" -msgstr "Invalid data" +msgstr "" #: lib/SP/Services/Api/ApiRequest.php:88 msgid "Invalid format" -msgstr "Invalid format" +msgstr "" #: lib/SP/Services/Api/ApiService.php:155 msgid "Wrong parameters" -msgstr "Wrong parameters" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:169 #: lib/SP/Services/Auth/LoginService.php:495 @@ -3799,562 +3799,553 @@ msgstr "Wrong parameters" #: lib/SP/Services/Auth/LoginService.php:675 #: lib/SP/Services/Auth/LoginService.php:683 msgid "Wrong login" -msgstr "Wrong login" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:237 #: lib/SP/Services/Auth/LoginService.php:244 msgid "User disabled" -msgstr "User disabled" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:296 msgid "Using temporary password" -msgstr "Using temporary password" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:309 #: lib/SP/Services/Auth/LoginService.php:315 #: lib/SP/Services/Auth/LoginService.php:335 #: lib/SP/Services/Auth/LoginService.php:341 msgid "Wrong master password" -msgstr "Wrong master password" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:357 msgid "Your previous password is needed" -msgstr "Your previous password is needed" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:369 msgid "The Master Password either is not saved or is wrong" -msgstr "The Master Password either is not saved or is wrong" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:491 #: lib/SP/Services/Auth/LoginService.php:569 msgid "LDAP Server" -msgstr "LDAP Server" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:513 #: lib/SP/Services/Auth/LoginService.php:521 msgid "Account expired" -msgstr "Account expired" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:529 #: lib/SP/Services/Auth/LoginService.php:537 msgid "User has no associated groups" -msgstr "User has no associated groups" +msgstr "" #: lib/SP/Services/Auth/LoginService.php:665 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:18 msgid "Authentication" -msgstr "Authentication" +msgstr "" #: lib/SP/Services/AuthToken/AuthTokenService.php:146 #: lib/SP/Services/AuthToken/AuthTokenService.php:284 #: lib/SP/Services/AuthToken/AuthTokenService.php:298 msgid "Token not found" -msgstr "Token not found" +msgstr "" #: lib/SP/Services/AuthToken/AuthTokenService.php:165 msgid "Error while removing the tokens" -msgstr "Error while removing the tokens" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:108 msgid "Make Backup" -msgstr "Make Backup" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:115 msgid "Error while doing the backup in compatibility mode" -msgstr "Error while doing the backup in compatibility mode" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:126 msgid "Error while doing the backup" -msgstr "Error while doing the backup" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:147 #, php-format msgid "Unable to create the backups directory (\"%s\")" -msgstr "Unable to create the backups directory (\"%s\")" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:152 msgid "Please, check the backup directory permissions" -msgstr "Please, check the backup directory permissions" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:226 msgid "Copying database" -msgstr "Copying database" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:358 #: lib/SP/Services/Backup/FileBackupService.php:382 msgid "Copying application" -msgstr "Copying application" +msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:377 msgid "This operation is only available on Linux environments" -msgstr "This operation is only available on Linux environments" +msgstr "" #: lib/SP/Services/Category/CategoryService.php:81 #: lib/SP/Services/Category/CategoryService.php:102 #: lib/SP/Services/Category/CategoryService.php:119 msgid "Category not found" -msgstr "Category not found" +msgstr "" #: lib/SP/Services/Category/CategoryService.php:138 msgid "Error while deleting categories" -msgstr "Error while deleting categories" +msgstr "" #: lib/SP/Services/Client/ClientService.php:81 #: lib/SP/Services/Client/ClientService.php:100 #: lib/SP/Services/Client/ClientService.php:115 msgid "Client not found" -msgstr "Client not found" +msgstr "" #: lib/SP/Services/Config/ConfigBackupService.php:121 #: lib/SP/Services/Config/ConfigBackupService.php:128 msgid "Unable to restore the configuration" -msgstr "Unable to restore the configuration" +msgstr "" #: lib/SP/Services/Config/ConfigService.php:71 #: lib/SP/Services/Config/ConfigService.php:156 #, php-format msgid "Parameter not found (%s)" -msgstr "Parameter not found (%s)" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:109 msgid "Generate temporary password" -msgstr "Generate temporary password" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:116 msgid "Error while generating the temporary password" -msgstr "Error while generating the temporary password" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:137 #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:187 msgid "Temporary password expired" -msgstr "Temporary password expired" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:166 msgid "Error while checking the temporary password" -msgstr "Error while checking the temporary password" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:238 #, php-format msgid "%s Master Password" -msgstr "%s Master Password" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:239 msgid "" "A new sysPass master password has been generated, so next time you log into " "the application it will be requested." msgstr "" -"A new sysPass master password has been generated, so next time you log into " -"the application it will be requested." #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:240 #, php-format msgid "The new Master Password is: %s" -msgstr "The new Master Password is: %s" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:241 #, php-format msgid "This password will be valid until: %s" -msgstr "This password will be valid until: %s" +msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:242 msgid "Please, don't forget to log in as soon as possible to save the changes." msgstr "" -"Please, don't forget to log in as soon as possible to save the changes." #: lib/SP/Services/CustomField/CustomFieldCryptService.php:73 msgid "There aren't any data from custom fields" -msgstr "There aren't any data from custom fields" +msgstr "" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:81 #: lib/SP/Services/CustomField/CustomFieldCryptService.php:89 msgid "Updating encrypted data" -msgstr "Updating encrypted data" +msgstr "" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:114 msgid "Records updated" -msgstr "Records updated" +msgstr "" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:115 msgid "Records not updated" -msgstr "Records not updated" +msgstr "" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:141 msgid "Error while updating the custom fields data" -msgstr "Error while updating the custom fields data" +msgstr "" #: lib/SP/Services/CustomField/CustomFieldDefService.php:114 msgid "Field not found" -msgstr "Field not found" +msgstr "" #: lib/SP/Services/CustomField/CustomFieldDefService.php:135 msgid "Error while deleting the fields" -msgstr "Error while deleting the fields" +msgstr "" #: lib/SP/Services/CustomField/CustomFieldTypeService.php:86 msgid "Field type not found" -msgstr "Field type not found" +msgstr "" #: lib/SP/Services/Export/XmlExportService.php:130 #: lib/SP/Storage/File/FileCacheBase.php:98 #, php-format msgid "Unable to create the directory (%s)" -msgstr "Unable to create the directory (%s)" +msgstr "" #: lib/SP/Services/Export/XmlExportService.php:204 msgid "Error while exporting" -msgstr "Error while exporting" +msgstr "" #: lib/SP/Services/Export/XmlExportService.php:271 msgid "Exporting categories" -msgstr "Exporting categories" +msgstr "" #: lib/SP/Services/Export/XmlExportService.php:383 msgid "Exporting clients" -msgstr "Exporting clients" +msgstr "" #: lib/SP/Services/Export/XmlExportService.php:429 msgid "Exporting tags" -msgstr "Exporting tags" +msgstr "" #: lib/SP/Services/Export/XmlExportService.php:473 msgid "Exporting accounts" -msgstr "Exporting accounts" +msgstr "" #: lib/SP/Services/Export/XmlExportService.php:583 msgid "Error while creating the XML file" -msgstr "Error while creating the XML file" +msgstr "" #: lib/SP/Services/Export/XmlVerifyService.php:112 #: lib/SP/Services/Import/XmlFileImport.php:84 msgid "Unable to process the XML file" -msgstr "Unable to process the XML file" +msgstr "" #: lib/SP/Services/Export/XmlVerifyService.php:183 #: lib/SP/Services/Import/SyspassImport.php:181 msgid "Error while checking integrity hash" -msgstr "Error while checking integrity hash" +msgstr "" #: lib/SP/Services/Export/XmlVerifyService.php:200 #: lib/SP/Services/Export/XmlVerifyService.php:230 #: lib/SP/Services/Import/SyspassImport.php:129 #: lib/SP/Services/Import/SyspassImport.php:153 msgid "Wrong encryption password" -msgstr "Wrong encryption password" +msgstr "" #: lib/SP/Services/Import/CsvImport.php:51 #, php-format msgid "Detected format: %s" -msgstr "Detected format: %s" +msgstr "" #: lib/SP/Services/Import/CsvImportBase.php:132 #: lib/SP/Services/Import/CsvImportBase.php:182 #, php-format msgid "Wrong number of fields (%d)" -msgstr "Wrong number of fields (%d)" +msgstr "" #: lib/SP/Services/Import/CsvImportBase.php:134 #: lib/SP/Services/Import/CsvImportBase.php:184 #, php-format msgid "Please, check the CSV file format in line %s" -msgstr "Please, check the CSV file format in line %s" +msgstr "" #: lib/SP/Services/Import/CsvImportBase.php:164 #: lib/SP/Services/Import/KeepassImport.php:105 #: lib/SP/Services/Import/SyspassImport.php:392 msgid "Account imported" -msgstr "Account imported" +msgstr "" #: lib/SP/Services/Import/CsvImportBase.php:172 msgid "Error while importing the account" -msgstr "Error while importing the account" +msgstr "" #: lib/SP/Services/Import/CsvImportBase.php:173 msgid "Error while processing line" -msgstr "Error while processing line" +msgstr "" #: lib/SP/Services/Import/FileImport.php:83 msgid "File successfully uploaded" -msgstr "File successfully uploaded" +msgstr "" #: lib/SP/Services/Import/FileImport.php:85 msgid "Please check the web server user permissions" -msgstr "Please check the web server user permissions" +msgstr "" #: lib/SP/Services/Import/FileImport.php:108 msgid "Please, check PHP configuration for upload files" -msgstr "Please, check PHP configuration for upload files" +msgstr "" #: lib/SP/Services/Import/ImportService.php:100 #, php-format msgid "Mime type not supported (\"%s\")" -msgstr "Mime type not supported (\"%s\")" +msgstr "" #: lib/SP/Services/Import/ImportService.php:102 msgid "Please, check the file format" -msgstr "Please, check the file format" +msgstr "" #: lib/SP/Services/Import/ImportTrait.php:111 msgid "Category Id not set. Unable to import account." -msgstr "Category Id not set. Unable to import account." +msgstr "" #: lib/SP/Services/Import/ImportTrait.php:115 msgid "Client Id not set. Unable to import account." -msgstr "Client Id not set. Unable to import account." +msgstr "" #: lib/SP/Services/Import/KeepassImport.php:60 msgid "KeePass XML Import" -msgstr "KeePass XML Import" +msgstr "" #: lib/SP/Services/Import/KeepassImport.php:93 #: lib/SP/Services/Import/SyspassImport.php:216 msgid "Category imported" -msgstr "Category imported" +msgstr "" #: lib/SP/Services/Import/SyspassImport.php:63 msgid "sysPass XML Import" -msgstr "sysPass XML Import" +msgstr "" #: lib/SP/Services/Import/SyspassImport.php:74 msgid "Encryption password not set" -msgstr "Encryption password not set" +msgstr "" #: lib/SP/Services/Import/SyspassImport.php:167 msgid "Data unencrypted" -msgstr "Data unencrypted" +msgstr "" #: lib/SP/Services/Import/SyspassImport.php:182 msgid "" "If you are importing an exported file from the same origin, the data could " "be compromised." msgstr "" -"If you are importing an exported file from the same origin, the data could " -"be compromised." #: lib/SP/Services/Import/SyspassImport.php:255 #: lib/SP/Services/Import/SyspassImport.php:295 msgid "Client imported" -msgstr "Client imported" +msgstr "" #: lib/SP/Services/Import/SyspassImport.php:331 msgid "Tag imported" -msgstr "Tag imported" +msgstr "" #: lib/SP/Services/Import/XmlFileImport.php:108 msgid "XML file not supported" -msgstr "XML file not supported" +msgstr "" #: lib/SP/Services/Import/XmlFileImport.php:110 msgid "Unable to guess the application which data was exported from" -msgstr "Unable to guess the application which data was exported from" +msgstr "" #: lib/SP/Services/Import/XmlImport.php:101 msgid "Format not detected" -msgstr "Format not detected" +msgstr "" #: lib/SP/Services/Import/XmlImport.php:109 msgid "Not implemented" -msgstr "Not implemented" +msgstr "" #: lib/SP/Services/Import/XmlImportBase.php:111 #: lib/SP/Services/Import/XmlImportTrait.php:80 msgid "Invalid Method" -msgstr "Invalid Method" +msgstr "" #: lib/SP/Services/Import/XmlImportBase.php:123 #: lib/SP/Services/Import/XmlImportTrait.php:70 msgid "Invalid XML format" -msgstr "Invalid XML format" +msgstr "" #: lib/SP/Services/Import/XmlImportBase.php:125 #: lib/SP/Services/Import/XmlImportTrait.php:72 #, php-format msgid "\"%s\" node doesn't exist" -msgstr "\"%s\" node doesn't exist" +msgstr "" #: lib/SP/Services/Install/Installer.php:111 msgid "Please, enter the admin username" -msgstr "Please, enter the admin username" +msgstr "" #: lib/SP/Services/Install/Installer.php:113 msgid "Admin user to log into the application" -msgstr "Admin user to log into the application" +msgstr "" #: lib/SP/Services/Install/Installer.php:118 msgid "Please, enter the admin's password" -msgstr "Please, enter the admin's password" +msgstr "" #: lib/SP/Services/Install/Installer.php:120 msgid "Application administrator's password" -msgstr "Application administrator's password" +msgstr "" #: lib/SP/Services/Install/Installer.php:125 msgid "Please, enter the Master Password" -msgstr "Please, enter the Master Password" +msgstr "" #: lib/SP/Services/Install/Installer.php:127 msgid "Master password to encrypt the passwords" -msgstr "Master password to encrypt the passwords" +msgstr "" #: lib/SP/Services/Install/Installer.php:132 msgid "Master password too short" -msgstr "Master password too short" +msgstr "" #: lib/SP/Services/Install/Installer.php:134 msgid "The Master Password length need to be at least 11 characters" -msgstr "The Master Password length need to be at least 11 characters" +msgstr "" #: lib/SP/Services/Install/Installer.php:139 msgid "Please, enter the database user" -msgstr "Please, enter the database user" +msgstr "" #: lib/SP/Services/Install/Installer.php:141 msgid "An user with database administrative rights" -msgstr "An user with database administrative rights" +msgstr "" #: lib/SP/Services/Install/Installer.php:146 msgid "Please, enter the database password" -msgstr "Please, enter the database password" +msgstr "" #: lib/SP/Services/Install/Installer.php:148 msgid "Database administrator's password" -msgstr "Database administrator's password" +msgstr "" #: lib/SP/Services/Install/Installer.php:153 msgid "Please, enter the database name" -msgstr "Please, enter the database name" +msgstr "" #: lib/SP/Services/Install/Installer.php:155 msgid "Application database name. eg. syspass" -msgstr "Application database name. eg. syspass" +msgstr "" #: lib/SP/Services/Install/Installer.php:160 msgid "Database name cannot contain \".\"" -msgstr "Database name cannot contain \".\"" +msgstr "" #: lib/SP/Services/Install/Installer.php:162 msgid "Please, remove dots in database name" -msgstr "Please, remove dots in database name" +msgstr "" #: lib/SP/Services/Install/Installer.php:167 msgid "Please, enter the database server" -msgstr "Please, enter the database server" +msgstr "" #: lib/SP/Services/Install/Installer.php:169 msgid "Server where the database will be installed" -msgstr "Server where the database will be installed" +msgstr "" #: lib/SP/Services/Install/Installer.php:324 #: lib/SP/Services/Install/Installer.php:375 msgid "Warn to developer" -msgstr "Warn to developer" +msgstr "" #: lib/SP/Services/Install/Installer.php:365 msgid "Error while creating 'admin' user" -msgstr "Error while creating 'admin' user" +msgstr "" #: lib/SP/Services/Install/MySQL.php:135 #, php-format msgid "Unable to check the sysPass user (%s)" -msgstr "Unable to check the sysPass user (%s)" +msgstr "" #: lib/SP/Services/Install/MySQL.php:137 msgid "Please, check the DB connection user rights" -msgstr "Please, check the DB connection user rights" +msgstr "" #: lib/SP/Services/Install/MySQL.php:181 #, php-format msgid "Error while creating the MySQL connection user '%s'" -msgstr "Error while creating the MySQL connection user '%s'" +msgstr "" #: lib/SP/Services/Install/MySQL.php:201 msgid "The database already exists" -msgstr "The database already exists" +msgstr "" #: lib/SP/Services/Install/MySQL.php:203 msgid "Please, enter a new database or delete the existing one" -msgstr "Please, enter a new database or delete the existing one" +msgstr "" #: lib/SP/Services/Install/MySQL.php:213 lib/SP/Services/Install/MySQL.php:329 #: lib/SP/Services/Install/MySQL.php:341 #, php-format msgid "Error while creating the DB ('%s')" -msgstr "Error while creating the DB ('%s')" +msgstr "" #: lib/SP/Services/Install/MySQL.php:215 lib/SP/Services/Install/MySQL.php:239 msgid "Please check the database user permissions" -msgstr "Please check the database user permissions" +msgstr "" #: lib/SP/Services/Install/MySQL.php:237 #, php-format msgid "Error while setting the database permissions ('%s')" -msgstr "Error while setting the database permissions ('%s')" +msgstr "" #: lib/SP/Services/Install/MySQL.php:251 msgid "The database does not exist" -msgstr "The database does not exist" +msgstr "" #: lib/SP/Services/Install/MySQL.php:253 msgid "You need to create it and assign the needed permissions" -msgstr "You need to create it and assign the needed permissions" +msgstr "" #: lib/SP/Services/Install/MySQL.php:309 #, php-format msgid "Error while selecting '%s' database (%s)" -msgstr "Error while selecting '%s' database (%s)" +msgstr "" #: lib/SP/Services/Install/MySQL.php:311 msgid "" "Unable to use the database to create the structure. Please check the " "permissions and it does not exist." msgstr "" -"Unable to use the database to create the structure. Please check the " -"permissions and it does not exist." #: lib/SP/Services/Install/MySQL.php:331 msgid "Error while creating database structure." -msgstr "Error while creating database structure." +msgstr "" #: lib/SP/Services/Install/MySQL.php:365 msgid "Please, try the installation again" -msgstr "Please, try the installation again" +msgstr "" #: lib/SP/Services/ItemPreset/ItemPresetService.php:86 #: lib/SP/Services/ItemPreset/ItemPresetService.php:107 msgid "Value not found" -msgstr "Value not found" +msgstr "" #: lib/SP/Services/ItemPreset/ItemPresetService.php:190 msgid "Error while deleting the values" -msgstr "Error while deleting the values" +msgstr "" #: lib/SP/Services/Ldap/LdapImportService.php:108 #: lib/SP/Services/Ldap/LdapImportService.php:189 msgid "Objects found" -msgstr "Objects found" +msgstr "" #: lib/SP/Services/Ldap/LdapImportService.php:133 #: lib/SP/Services/Ldap/LdapImportService.php:222 msgid "Imported from LDAP" -msgstr "Imported from LDAP" +msgstr "" #: lib/SP/Services/Mail/MailService.php:67 msgid "Mail test" -msgstr "Mail test" +msgstr "" #: lib/SP/Services/Mail/MailService.php:68 msgid "" "This is a test email in order to verify that the configuration is working " "right." msgstr "" -"This is a test email in order to verify that the configuration is working " -"right." #: lib/SP/Services/Notification/NotificationService.php:106 #: lib/SP/Services/Notification/NotificationService.php:125 #: lib/SP/Services/Notification/NotificationService.php:184 #: lib/SP/Services/Notification/NotificationService.php:214 msgid "Notification not found" -msgstr "Notification not found" +msgstr "" #: lib/SP/Services/Plugin/PluginDataService.php:103 #: lib/SP/Services/Plugin/PluginDataService.php:127 @@ -4372,7 +4363,7 @@ msgstr "" #: lib/SP/Services/Plugin/PluginService.php:260 #: lib/SP/Services/Plugin/PluginService.php:277 msgid "Plugin not found" -msgstr "Plugin not found" +msgstr "" #: lib/SP/Services/PublicLink/PublicLinkService.php:129 #: lib/SP/Services/PublicLink/PublicLinkService.php:152 @@ -4381,83 +4372,83 @@ msgstr "Plugin not found" #: lib/SP/Services/PublicLink/PublicLinkService.php:339 #: lib/SP/Services/PublicLink/PublicLinkService.php:360 msgid "Link not found" -msgstr "Link not found" +msgstr "" #: lib/SP/Services/PublicLink/PublicLinkService.php:245 msgid "Error while removing the links" -msgstr "Error while removing the links" +msgstr "" #: lib/SP/Services/Service.php:111 msgid "Rollback" -msgstr "Rollback" +msgstr "" #: lib/SP/Services/Service.php:117 msgid "Unable to start a transaction" -msgstr "Unable to start a transaction" +msgstr "" #: lib/SP/Services/Service.php:135 lib/SP/Services/Service.php:142 msgid "Error while retrieving master password from context" -msgstr "Error while retrieving master password from context" +msgstr "" #: lib/SP/Services/Service.php:162 lib/SP/Services/Service.php:166 msgid "Error while setting master password in context" -msgstr "Error while setting master password in context" +msgstr "" #: lib/SP/Services/Tag/TagService.php:81 lib/SP/Services/Tag/TagService.php:100 #: lib/SP/Services/Tag/TagService.php:117 msgid "Tag not found" -msgstr "Tag not found" +msgstr "" #: lib/SP/Services/Task/TaskService.php:85 msgid "Unable to create the lock file" -msgstr "Unable to create the lock file" +msgstr "" #: lib/SP/Services/Task/TaskService.php:94 msgid "Task not set within wait time" -msgstr "Task not set within wait time" +msgstr "" #: lib/SP/Services/Task/TaskService.php:183 msgid "Waiting for progress updating ..." -msgstr "Waiting for progress updating ..." +msgstr "" #: lib/SP/Services/Track/TrackService.php:94 #: lib/SP/Services/Track/TrackService.php:108 #: lib/SP/Services/Track/TrackService.php:135 msgid "Track not found" -msgstr "Track not found" +msgstr "" #: lib/SP/Services/Track/TrackService.php:169 #, php-format msgid "Attempts exceeded (%d/%d)" -msgstr "Attempts exceeded (%d/%d)" +msgstr "" #: lib/SP/Services/Track/TrackService.php:170 msgid "Seconds" -msgstr "Seconds" +msgstr "" #: lib/SP/Services/Track/TrackService.php:215 msgid "IP address not set" -msgstr "IP address not set" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeAppService.php:72 #: lib/SP/Services/Upgrade/UpgradeAppService.php:95 msgid "Update Application" -msgstr "Update Application" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeAppService.php:79 msgid "Error while applying the application update" -msgstr "Error while applying the application update" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeAppService.php:81 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:112 msgid "Please, check the event log for more details" -msgstr "Please, check the event log for more details" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:56 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:86 msgid "API authorizations update" -msgstr "API authorizations update" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:81 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:215 @@ -4465,33 +4456,33 @@ msgstr "API authorizations update" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:310 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:335 msgid "Update Configuration" -msgstr "Update Configuration" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:93 msgid "Parameter" -msgstr "Parameter" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:132 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:136 msgid "Error while updating the configuration" -msgstr "Error while updating the configuration" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:287 msgid "MIME type set for this extension" -msgstr "MIME type set for this extension" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:288 msgid "MIME type" -msgstr "MIME type" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:289 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:298 msgid "Extension" -msgstr "Extension" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:297 msgid "MIME type not found for this extension" -msgstr "MIME type not found for this extension" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:58 #: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:89 @@ -4502,31 +4493,31 @@ msgstr "MIME type not found for this extension" #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:222 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:268 msgid "Custom fields update" -msgstr "Custom fields update" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:95 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:126 msgid "Update DB" -msgstr "Update DB" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:102 msgid "Error while applying an auxiliary update" -msgstr "Error while applying an auxiliary update" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:110 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:181 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 msgid "Error while updating the database" -msgstr "Error while updating the database" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:158 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:160 msgid "Update file does not contain data" -msgstr "Update file does not contain data" +msgstr "" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:191 msgid "Database updating was completed successfully." -msgstr "Database updating was completed successfully." +msgstr "" #: lib/SP/Services/Upgrade/UpgradePlugin.php:49 #: lib/SP/Services/Upgrade/UpgradePlugin.php:58 @@ -4536,254 +4527,251 @@ msgstr "" #: lib/SP/Services/Upgrade/UpgradePublicLink.php:57 #: lib/SP/Services/Upgrade/UpgradePublicLink.php:103 msgid "Public links update" -msgstr "Public links update" +msgstr "" #: lib/SP/Services/User/UserPassService.php:261 #: lib/SP/Services/User/UserService.php:126 #: lib/SP/Services/User/UserService.php:157 #: lib/SP/Services/User/UserService.php:176 msgid "User does not exist" -msgstr "User does not exist" +msgstr "" #: lib/SP/Services/User/UserService.php:195 msgid "User not found" -msgstr "User not found" +msgstr "" #: lib/SP/Services/UserGroup/UserGroupService.php:85 #: lib/SP/Services/UserGroup/UserGroupService.php:103 #: lib/SP/Services/UserGroup/UserGroupService.php:192 #: lib/SP/Services/UserGroup/UserToUserGroupService.php:61 msgid "Group not found" -msgstr "Group not found" +msgstr "" #: lib/SP/Services/UserGroup/UserGroupService.php:120 msgid "Error while deleting the groups" -msgstr "Error while deleting the groups" +msgstr "" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:73 msgid "A request for changing your user password has been done." -msgstr "A request for changing your user password has been done." +msgstr "" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:75 msgid "In order to complete the process, please go to this URL:" -msgstr "In order to complete the process, please go to this URL:" +msgstr "" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:79 msgid "If you have not requested this action, please dismiss this message." -msgstr "If you have not requested this action, please dismiss this message." +msgstr "" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:94 #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:162 msgid "Wrong hash or expired" -msgstr "Wrong hash or expired" +msgstr "" #: lib/SP/Services/UserProfile/UserProfileService.php:70 #: lib/SP/Services/UserProfile/UserProfileService.php:102 msgid "Profile not found" -msgstr "Profile not found" +msgstr "" #: lib/SP/Services/Wiki/DokuWikiApi.php:69 msgid "Authentication error" -msgstr "Authentication error" +msgstr "" #: lib/SP/Services/Wiki/DokuWikiApiBase.php:198 msgid "Error while doing the query" -msgstr "Error while doing the query" +msgstr "" #: lib/SP/Services/Wiki/DokuWikiApiBase.php:230 msgid "Connection URL not set" -msgstr "Connection URL not set" +msgstr "" #: lib/SP/Storage/Database/Database.php:132 msgid "Blank query" -msgstr "Blank query" +msgstr "" #: lib/SP/Storage/Database/Database.php:249 msgid "Integrity constraint" -msgstr "Integrity constraint" +msgstr "" #: lib/SP/Storage/Database/MySQLHandler.php:101 #: lib/SP/Storage/Database/MySQLHandler.php:168 msgid "Please, check the connection parameters" -msgstr "Please, check the connection parameters" +msgstr "" #: lib/SP/Storage/Database/QueryData.php:338 msgid "Error while querying" -msgstr "Error while querying" +msgstr "" #: lib/SP/Storage/File/FileCachePacked.php:47 #, php-format msgid "Error while decompressing the file data (%s)" -msgstr "Error while decompressing the file data (%s)" +msgstr "" #: lib/SP/Storage/File/FileCachePacked.php:53 msgid "Error while retrieving the data" -msgstr "Error while retrieving the data" +msgstr "" #: lib/SP/Storage/File/FileCachePacked.php:72 #, php-format msgid "Error while compressing the file data (%s)" -msgstr "Error while compressing the file data (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:76 #: lib/SP/Storage/File/FileHandler.php:165 #, php-format msgid "Unable to read/write the file (%s)" -msgstr "Unable to read/write the file (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:101 #, php-format msgid "Unable to open the file (%s)" -msgstr "Unable to open the file (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:119 #, php-format msgid "Unable to obtain a lock (%s)" -msgstr "Unable to obtain a lock (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:134 #: lib/SP/Storage/File/FileHandler.php:148 #, php-format msgid "Unable to read from file (%s)" -msgstr "Unable to read from file (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:207 #, php-format msgid "Unable to close the file (%s)" -msgstr "Unable to close the file (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:261 #, php-format msgid "Unable to write in file (%s)" -msgstr "Unable to write in file (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:276 #, php-format msgid "File not found (%s)" -msgstr "File not found (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:301 #: lib/SP/Storage/File/FileHandler.php:356 #, php-format msgid "Unable to read/write file (%s)" -msgstr "Unable to read/write file (%s)" +msgstr "" #: lib/SP/Storage/File/FileHandler.php:328 #, php-format msgid "Unable to delete file (%s)" -msgstr "Unable to delete file (%s)" +msgstr "" #: lib/SP/Storage/File/XmlHandler.php:90 lib/SP/Storage/File/XmlHandler.php:310 msgid "XML node does not exist" -msgstr "XML node does not exist" +msgstr "" #: lib/SP/Storage/File/XmlHandler.php:168 msgid "There aren't any items to save" -msgstr "There aren't any items to save" +msgstr "" #: lib/SP/Util/Connection.php:157 msgid "Socket not initialized" -msgstr "Socket not initialized" +msgstr "" #: lib/SP/Util/Connection.php:164 msgid "Error while sending the data" -msgstr "Error while sending the data" +msgstr "" #: lib/SP/Util/ErrorUtil.php:149 msgid "Option unavailable" -msgstr "Option unavailable" +msgstr "" #: lib/SP/Util/ErrorUtil.php:169 lib/SP/Util/ErrorUtil.php:176 msgid "An exception occured" -msgstr "An exception occured" +msgstr "" #: lib/SP/Util/ImageUtil.php:65 msgid "Invalid image" -msgstr "Invalid image" +msgstr "" #: app/modules/web/themes/material-blue/views/_layouts/main.inc:25 msgid "Javascript is needed in order to run correctly" -msgstr "Javascript is needed in order to run correctly" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:80 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:141 msgid "User preferences" -msgstr "User preferences" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:84 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:87 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:163 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:166 msgid "Sign Out" -msgstr "Sign Out" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:179 #: app/modules/web/themes/material-blue/views/_partials/footer.inc:60 msgid "Demo" -msgstr "Demo" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 msgid "Tells whether the connection uses HTTPS or not." -msgstr "Tells whether the connection uses HTTPS or not." +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 msgid "" "Passwords sent from forms are encrypted using PKI, the remain data don't." msgstr "" -"Passwords sent from forms are encrypted using PKI, the remain data don't." #: app/modules/web/themes/material-blue/views/_partials/footer.inc:74 msgid "Help :: FAQ :: Changelog" -msgstr "Help :: FAQ :: Changelog" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:79 msgid "A cygnux.org project" -msgstr "A cygnux.org project" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:13 msgid "Special parameters" -msgstr "Special parameters" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:15 msgid "" "You could use either one or several special parameters separated by blank " "spaces" msgstr "" -"You could use either one or several special parameters separated by blank " -"spaces" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 msgid "Search for accounts which 'login' has access rights" -msgstr "Search for accounts which 'login' has access rights" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 msgid "Get the accounts in which user login \"login\" is the owner" -msgstr "Get the accounts in which user login \"login\" is the owner" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 msgid "Search for accounts which 'group_name' has access rights" -msgstr "Search for accounts which 'group_name' has access rights" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 msgid "Get the accounts in which main group \"group_name\" is set" -msgstr "Get the accounts in which main group \"group_name\" is set" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 msgid "Search for accounts which contain a file with the name 'file_name'" -msgstr "Search for accounts which contain a file with the name 'file_name'" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 msgid "Search for accounts by client name" -msgstr "Search for accounts by client name" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 msgid "Search for accounts by category name" -msgstr "Search for accounts by category name" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 msgid "Returns the account for the given ID" -msgstr "Returns the account for the given ID" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 msgid "Search for accounts name by regular expression" @@ -4791,20 +4779,20 @@ msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 msgid "Search for accounts with expired password" -msgstr "Search for accounts with expired password" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:27 msgid "Get private accounts for current user" -msgstr "Get private accounts for current user" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:28 msgid "Operator for special parameters" -msgstr "Operator for special parameters" +msgstr "" #: app/modules/web/themes/material-blue/views/_partials/no_records_found.inc:13 #: app/modules/web/themes/material-blue/views/account/search-index.inc:22 msgid "No records found" -msgstr "No records found" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:100 #: app/modules/web/themes/material-blue/views/account/account.inc:186 @@ -4816,7 +4804,7 @@ msgstr "No records found" #: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:76 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:46 msgid "Password (repeat)" -msgstr "Password (repeat)" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:128 #: app/modules/web/themes/material-blue/views/account/account-history.inc:168 @@ -4824,7 +4812,7 @@ msgstr "Password (repeat)" #: app/modules/web/themes/material-blue/views/account/account.inc:311 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:288 msgid "Select date" -msgstr "Select date" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-history.inc:26 #: app/modules/web/themes/material-blue/views/account/account-history.inc:160 @@ -4832,20 +4820,20 @@ msgstr "Select date" #: app/modules/web/themes/material-blue/views/account/account.inc:303 #: app/modules/web/themes/material-blue/views/account/account.inc:305 msgid "History" -msgstr "History" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-history.inc:37 #: app/modules/web/themes/material-blue/views/account/account.inc:56 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:32 msgid "Details" -msgstr "Details" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-history.inc:91 #: app/modules/web/themes/material-blue/views/account/account.inc:126 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:53 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 msgid "Select Category" -msgstr "Select Category" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-history.inc:144 #: app/modules/web/themes/material-blue/views/account/account-link.inc:93 @@ -4854,7 +4842,7 @@ msgstr "Select Category" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:182 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:189 msgid "Notes" -msgstr "Notes" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-history.inc:181 #: app/modules/web/themes/material-blue/views/account/account.inc:326 @@ -4863,7 +4851,7 @@ msgstr "Notes" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:314 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:316 msgid "Last Modification" -msgstr "Last Modification" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:33 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:66 @@ -4873,7 +4861,7 @@ msgstr "Last Modification" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:68 msgid "Select Users" -msgstr "Select Users" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:43 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:47 @@ -4885,7 +4873,7 @@ msgstr "Select Users" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:79 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 msgid "View" -msgstr "View" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:105 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:138 @@ -4894,7 +4882,7 @@ msgstr "View" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:68 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:86 msgid "Select Groups" -msgstr "Select Groups" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:188 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:126 @@ -4905,7 +4893,7 @@ msgstr "Select Groups" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 #: app/modules/web/themes/material-blue/views/notification/notification.inc:100 msgid "Select User" -msgstr "Select User" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:212 #: app/modules/web/themes/material-blue/views/config/encryption.inc:306 @@ -4916,123 +4904,123 @@ msgstr "Select User" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:171 msgid "Select Group" -msgstr "Select Group" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:236 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:201 msgid "Private" -msgstr "Private" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:254 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:218 msgid "Private for Group" -msgstr "Private for Group" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-request.inc:21 msgid "Request Account Modification" -msgstr "Request Account Modification" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-request.inc:65 msgid "Request description" -msgstr "Request description" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account-request.inc:87 msgid "Send" -msgstr "Send" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:46 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:145 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:30 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:236 msgid "Permissions" -msgstr "Permissions" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:100 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:43 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 msgid "Select Client" -msgstr "Select Client" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:245 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 msgid "Select Tags" -msgstr "Select Tags" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:294 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:35 msgid "Select Account" -msgstr "Select Account" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:334 #: app/modules/web/themes/material-blue/views/account/account.inc:336 #: app/modules/web/themes/material-blue/views/account/account.inc:340 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:206 msgid "Public Link" -msgstr "Public Link" +msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:348 #: app/modules/web/themes/material-blue/views/account/account.inc:350 #: app/modules/web/themes/material-blue/views/account/account.inc:354 msgid "Direct Link" -msgstr "Direct Link" +msgstr "" #: app/modules/web/themes/material-blue/views/account/details.inc:28 #: app/modules/web/themes/material-blue/views/account/details.inc:30 msgid "Date Added" -msgstr "Date Added" +msgstr "" #: app/modules/web/themes/material-blue/views/account/details.inc:66 #: app/modules/web/themes/material-blue/views/account/details.inc:68 msgid "Date Modified" -msgstr "Date Modified" +msgstr "" #: app/modules/web/themes/material-blue/views/account/details.inc:74 #: app/modules/web/themes/material-blue/views/account/details.inc:76 msgid "Editor" -msgstr "Editor" +msgstr "" #: app/modules/web/themes/material-blue/views/account/details.inc:84 #: app/modules/web/themes/material-blue/views/account/details.inc:86 msgid "Password Date" -msgstr "Password Date" +msgstr "" #: app/modules/web/themes/material-blue/views/account/files.inc:45 msgid "Drop files here (max. 5) or click to select" -msgstr "Drop files here (max. 5) or click to select" +msgstr "" #: app/modules/web/themes/material-blue/views/account/files.inc:47 #, php-format msgid "Maximum file size: %d MB" -msgstr "Maximum file size: %d MB" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:44 msgid "Search in Wiki" -msgstr "Search in Wiki" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:95 #, php-format msgid "Open link to: %s" -msgstr "Open link to: %s" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:123 msgid "Password Expired" -msgstr "Password Expired" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:137 msgid "Private Account (Group)" -msgstr "Private Account (Group)" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:162 msgid "Delete Favorite" -msgstr "Delete Favorite" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:172 msgid "Mark as Favorite" -msgstr "Mark as Favorite" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:195 msgid "Attachments" -msgstr "Attachments" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:208 msgid "Expiry Date" @@ -5041,58 +5029,58 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:222 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:233 msgid "Link to Wiki" -msgstr "Link to Wiki" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:225 msgid "View at Wiki" -msgstr "View at Wiki" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:70 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:76 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:254 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:255 msgid "Global search" -msgstr "Global search" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:89 msgid "Display All" -msgstr "Display All" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:96 msgid "Show Favorites" -msgstr "Show Favorites" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:101 msgid "Favorites Filtering" -msgstr "Favorites Filtering" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:120 msgid "Accounts per page" -msgstr "Accounts per page" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:128 msgid "More Filters" -msgstr "More Filters" +msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:134 msgid "Select Tag" -msgstr "Select Tag" +msgstr "" #: app/modules/web/themes/material-blue/views/account/viewpass.inc:30 msgid "Copy Username" -msgstr "Copy Username" +msgstr "" #: app/modules/web/themes/material-blue/views/account/viewpass.inc:48 msgid "Copy Password" -msgstr "Copy Password" +msgstr "" #: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:26 msgid "Data will be encrypted after saving" -msgstr "Data will be encrypted after saving" +msgstr "" #: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:31 msgid "Data will be unencrypted after saving" -msgstr "Data will be unencrypted after saving" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:18 #: app/modules/web/themes/material-blue/views/config/backup.inc:18 @@ -5101,81 +5089,79 @@ msgstr "Data will be unencrypted after saving" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:17 #, php-format msgid "The '%s' extension is unavailable" -msgstr "The '%s' extension is unavailable" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:23 msgid "This extension is needed to display passwords as images" -msgstr "This extension is needed to display passwords as images" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:36 msgid "Searching" -msgstr "Searching" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:42 #: app/modules/web/themes/material-blue/views/config/accounts.inc:62 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:64 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:84 msgid "Results per page" -msgstr "Results per page" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:48 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:70 msgid "Number of results per page to display when performing a search." -msgstr "Number of results per page to display when performing a search." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:82 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:35 msgid "Accounts password expiry" -msgstr "Accounts password expiry" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:83 msgid "Enables the accounts password expiry date." -msgstr "Enables the accounts password expiry date." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:91 msgid "Password expiry time" -msgstr "Password expiry time" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:97 msgid "Number of days for account's password expiry date." -msgstr "Number of days for account's password expiry date." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:109 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:43 msgid "Expire time (days)" -msgstr "Expire time (days)" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:128 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:103 msgid "Account name as link" -msgstr "Account name as link" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:129 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:105 msgid "Enables to use the account name as a link to account details." -msgstr "Enables to use the account name as a link to account details." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:145 msgid "Global searches" -msgstr "Global searches" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:146 msgid "" "Allows the users to do searches that includes all accounts, they won't be " "able to display the account details if they don't have permission." msgstr "" -"Allows the users to do searches that includes all accounts, they won't be " -"able to display the account details if they don't have permission." #: app/modules/web/themes/material-blue/views/config/accounts.inc:162 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:166 msgid "Image to show password" -msgstr "Image to show password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:164 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:168 msgid "Generate an image with a text of the account password." -msgstr "Generate an image with a text of the account password." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:166 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:170 @@ -5183,206 +5169,188 @@ msgid "" "Useful for environments where copying a password to clipboard is a security " "risk." msgstr "" -"Useful for environments where copying a password to clipboard is a security " -"risk." #: app/modules/web/themes/material-blue/views/config/accounts.inc:183 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:175 msgid "Results like Cards" -msgstr "Results like Cards" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:185 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:177 msgid "Displays account's search results on a card like format." -msgstr "Displays account's search results on a card like format." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:202 msgid "Secondary Groups Access" -msgstr "Secondary Groups Access" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:204 msgid "Grants access to users that are included in secondary groups." -msgstr "Grants access to users that are included in secondary groups." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:206 msgid "" "By default, user in a secondary group is granted if the secondary group is " "set as user's main group." msgstr "" -"By default, user in a secondary group is granted if the secondary group is " -"set as user's main group." #: app/modules/web/themes/material-blue/views/config/accounts.inc:217 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:412 msgid "Public Links" -msgstr "Public Links" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:236 msgid "Enable Public Links" -msgstr "Enable Public Links" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:238 msgid "Enables the ability to create public links to view an account's details" msgstr "" -"Enables the ability to create public links to view an account's details" #: app/modules/web/themes/material-blue/views/config/accounts.inc:240 msgid "Linked accounts will be visible by anyone that have the link." -msgstr "Linked accounts will be visible by anyone that have the link." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:242 msgid "" "In order to create links, users must have activated the option on their " "profiles." msgstr "" -"In order to create links, users must have activated the option on their " -"profiles." #: app/modules/web/themes/material-blue/views/config/accounts.inc:259 msgid "Use an image for password" -msgstr "Use an image for password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:261 msgid "The account password is shown as image." -msgstr "The account password is shown as image." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:270 msgid "Expire time" -msgstr "Expire time" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:281 msgid "Expire time (minutes)" -msgstr "Expire time (minutes)" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:287 #: app/modules/web/themes/material-blue/views/config/accounts.inc:298 msgid "Maximum visits" -msgstr "Maximum visits" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:325 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 msgid "Files management" -msgstr "Files management" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:326 msgid "Enables the uploading and downloading of accounts files." -msgstr "Enables the uploading and downloading of accounts files." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:334 #: app/modules/web/themes/material-blue/views/config/accounts.inc:348 msgid "Allowed MIME types" -msgstr "Allowed MIME types" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:340 msgid "Allowed file MIME types for uploading." -msgstr "Allowed file MIME types for uploading." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:343 msgid "" "In order to add more MIME types, you need to add them into mime.xml file " "within the config directory." msgstr "" -"In order to add more MIME types, you need to add them into mime.xml file " -"within the config directory." #: app/modules/web/themes/material-blue/views/config/accounts.inc:365 msgid "Maximum file size" -msgstr "Maximum file size" +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:371 msgid "Sets the maximum file size for uploading." -msgstr "Sets the maximum file size for uploading." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:375 msgid "Absolute maximum is 16MB." -msgstr "Absolute maximum is 16MB." +msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:388 msgid "Maximum file size in kilobytes" -msgstr "Maximum file size in kilobytes" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:23 msgid "This extension is needed to build the application's backup files" -msgstr "This extension is needed to build the application's backup files" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:37 #: app/modules/web/themes/material-blue/views/config/backup.inc:40 #: app/modules/web/themes/material-blue/views/config/backup.inc:118 #: app/modules/web/themes/material-blue/views/config/backup.inc:121 msgid "Result" -msgstr "Result" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:48 #: app/modules/web/themes/material-blue/views/config/backup.inc:51 #: app/modules/web/themes/material-blue/views/config/backup.inc:129 #: app/modules/web/themes/material-blue/views/config/backup.inc:132 msgid "Download Current" -msgstr "Download Current" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:58 msgid "DB Backup" -msgstr "DB Backup" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:65 msgid "sysPass Backup" -msgstr "sysPass Backup" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:88 msgid "" "The backup allows you to save and download sysPass database and application " "files including its configuration." msgstr "" -"The backup allows you to save and download sysPass database and application " -"files including its configuration." #: app/modules/web/themes/material-blue/views/config/backup.inc:90 msgid "" "With this method it's possible to either save all sysPass data in another " "place or use it to make the application portable." msgstr "" -"With this method it's possible to either save all sysPass data in another " -"place or use it to make the application portable." #: app/modules/web/themes/material-blue/views/config/backup.inc:109 #: app/modules/web/themes/material-blue/views/config/backup.inc:197 msgid "Export Accounts" -msgstr "Export Accounts" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:149 #: app/modules/web/themes/material-blue/views/config/backup.inc:157 msgid "Export Password" -msgstr "Export Password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:163 #: app/modules/web/themes/material-blue/views/config/backup.inc:172 msgid "Export Password (repeat)" -msgstr "Export Password (repeat)" +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:199 msgid "" "The accounts export allows you to save the accounts and their data in XML " "format to be imported in another sysPass instance." msgstr "" -"The accounts export allows you to save the accounts and their data in XML " -"format to be imported in another sysPass instance." #: app/modules/web/themes/material-blue/views/config/backup.inc:201 msgid "Exported items are accounts, clients, categories and tags." -msgstr "Exported items are accounts, clients, categories and tags." +msgstr "" #: app/modules/web/themes/material-blue/views/config/backup.inc:203 msgid "" "Accounts' password are exported in an encrypted way for better security." msgstr "" -"Accounts' password are exported in an encrypted way for better security." #: app/modules/web/themes/material-blue/views/config/backup.inc:205 msgid "" "It's possible to set an export password to save all the encrypted data in " "the XML file." msgstr "" -"It's possible to set an export password to save all the encrypted data in " -"the XML file." #: app/modules/web/themes/material-blue/views/config/encryption.inc:24 #: app/modules/web/themes/material-blue/views/config/encryption.inc:173 @@ -5393,128 +5361,121 @@ msgstr "" #: app/modules/web/themes/material-blue/views/login/index.inc:62 #: app/modules/web/themes/material-blue/views/login/index.inc:110 msgid "Master Password" -msgstr "Master Password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:31 #: app/modules/web/themes/material-blue/views/config/encryption.inc:34 #: app/modules/web/themes/material-blue/views/config/encryption.inc:219 #: app/modules/web/themes/material-blue/views/config/encryption.inc:222 msgid "Last change" -msgstr "Last change" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:42 #: app/modules/web/themes/material-blue/views/config/encryption.inc:51 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:148 msgid "Current Master Password" -msgstr "Current Master Password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:57 #: app/modules/web/themes/material-blue/views/config/encryption.inc:66 msgid "New Master Password" -msgstr "New Master Password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:72 #: app/modules/web/themes/material-blue/views/config/encryption.inc:81 msgid "New Master Password (repeat)" -msgstr "New Master Password (repeat)" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:96 msgid "You should save the new password on a secure place" -msgstr "You should save the new password on a secure place" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:100 msgid "All accounts passwords will be encrypted again." -msgstr "All accounts passwords will be encrypted again." +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:104 msgid "Users will need to enter the new Master Password." -msgstr "Users will need to enter the new Master Password." +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:108 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:136 #, php-format msgid "It will be updated %s accounts. This process could take some time long." msgstr "" -"It will be updated %s accounts. This process could take some time long." #: app/modules/web/themes/material-blue/views/config/encryption.inc:126 msgid "Do not modify accounts" -msgstr "Do not modify accounts" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:128 msgid "Sets a new Master Password without re-encrypting the accounts." -msgstr "Sets a new Master Password without re-encrypting the accounts." +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:145 msgid "Confirm change" -msgstr "Confirm change" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:147 msgid "" "Confirm the master password change after you have been read all the above " "warnings." msgstr "" -"Confirm the master password change after you have been read all the above " -"warnings." #: app/modules/web/themes/material-blue/views/config/encryption.inc:175 msgid "" "The Master Password is used to encrypt sysPass accounts passwords and keep " "them safe." msgstr "" -"The Master Password is used to encrypt sysPass accounts passwords and keep " -"them safe." #: app/modules/web/themes/material-blue/views/config/encryption.inc:177 msgid "" "It's advisable to change it from time to time and use a complex password " "that includes numbers, letters and symbols." msgstr "" -"It's advisable to change it from time to time and use a complex password " -"that includes numbers, letters and symbols." #: app/modules/web/themes/material-blue/views/config/encryption.inc:179 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:138 #, php-format msgid "You could get more info on: %s" -msgstr "You could get more info on: %s" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:189 msgid "Update master password hash" -msgstr "Update master password hash" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:209 #: app/modules/web/themes/material-blue/views/config/encryption.inc:349 msgid "Temporary Password" -msgstr "Temporary Password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:224 #: app/modules/web/themes/material-blue/views/config/encryption.inc:239 msgid "Not generated" -msgstr "Not generated" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:229 #: app/modules/web/themes/material-blue/views/config/encryption.inc:232 msgid "Valid until" -msgstr "Valid until" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:245 #: app/modules/web/themes/material-blue/views/config/encryption.inc:248 msgid "Attempts" -msgstr "Attempts" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:255 #: app/modules/web/themes/material-blue/views/config/encryption.inc:267 msgid "Life (s)" -msgstr "Life (s)" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:287 msgid "Send email" -msgstr "Send email" +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:289 msgid "Sends an email to all users or only to those whose group is selected." -msgstr "Sends an email to all users or only to those whose group is selected." +msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:351 msgid "" @@ -5522,45 +5483,40 @@ msgid "" "to enter it during login. By this way there is no need to tell them the real " "Master Password." msgstr "" -"The temporary password is used as a Master Password for the users that need " -"to enter it during login. By this way there is no need to tell them the real " -"Master Password." #: app/modules/web/themes/material-blue/views/config/encryption.inc:358 msgid "Generate" -msgstr "Generate" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:37 msgid "Use Auth Basic" -msgstr "Use Auth Basic" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:38 msgid "Use Auth Basic for authorizing accesses to the application" -msgstr "Use Auth Basic for authorizing accesses to the application" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:54 msgid "Use Auth Basic SSO" -msgstr "Use Auth Basic SSO" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:55 msgid "Use auto-login through Auth Basic" -msgstr "Use auto-login through Auth Basic" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:63 msgid "Domain" -msgstr "Domain" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:68 msgid "" "The domain will be added to sysPass user name for checking against the Auth " "Basic one." msgstr "" -"The domain will be added to sysPass user name for checking against the Auth " -"Basic one." #: app/modules/web/themes/material-blue/views/config/general-auth.inc:79 msgid "Domain name" -msgstr "Domain name" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:85 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:96 @@ -5569,22 +5525,22 @@ msgstr "Domain name" #: app/modules/web/themes/material-blue/views/config/ldap.inc:270 #: app/modules/web/themes/material-blue/views/config/ldap.inc:281 msgid "Default Group" -msgstr "Default Group" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:91 msgid "Sets the default users group for newly created SSO users" -msgstr "Sets the default users group for newly created SSO users" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:111 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:122 #: app/modules/web/themes/material-blue/views/config/ldap.inc:296 #: app/modules/web/themes/material-blue/views/config/ldap.inc:307 msgid "Default Profile" -msgstr "Default Profile" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:117 msgid "Sets the default profile for the newly created SSO users." -msgstr "Sets the default profile for the newly created SSO users." +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-events.inc:18 #: app/modules/web/themes/material-blue/views/config/general-events.inc:110 @@ -5594,27 +5550,27 @@ msgstr "Sets the default profile for the newly created SSO users." #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:78 #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:80 msgid "Events" -msgstr "Events" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-events.inc:37 msgid "Enable event log" -msgstr "Enable event log" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-events.inc:38 msgid "Saves the actions done by the application." -msgstr "Saves the actions done by the application." +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-events.inc:53 msgid "Enable Syslog" -msgstr "Enable Syslog" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-events.inc:69 msgid "Enable Remote Syslog" -msgstr "Enable Remote Syslog" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-events.inc:88 msgid "Hostname or IP address" -msgstr "Hostname or IP address" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-events.inc:94 #: app/modules/web/themes/material-blue/views/config/general-events.inc:104 @@ -5622,44 +5578,44 @@ msgstr "Hostname or IP address" #: app/modules/web/themes/material-blue/views/config/mail.inc:84 #: app/modules/web/themes/material-blue/views/config/mail.inc:94 msgid "Port" -msgstr "Port" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:17 msgid "Proxy" -msgstr "Proxy" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:36 msgid "Use Proxy" -msgstr "Use Proxy" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:37 msgid "Use a proxy server for checking out for updates and notifications." -msgstr "Use a proxy server for checking out for updates and notifications." +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:54 msgid "Proxy server" -msgstr "Proxy server" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:70 msgid "Proxy server port" -msgstr "Proxy server port" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:85 msgid "Proxy server user" -msgstr "Proxy server user" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:100 msgid "Proxy server password" -msgstr "Proxy server password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:23 msgid "This extension is needed to check for sysPass updates and notices" -msgstr "This extension is needed to check for sysPass updates and notices" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:31 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:21 msgid "Site" -msgstr "Site" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:37 #: app/modules/web/themes/material-blue/views/config/general-site.inc:51 @@ -5670,41 +5626,36 @@ msgstr "Site" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:33 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:35 msgid "Language" -msgstr "Language" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:42 msgid "" "Sets the global app language. You can set a per user language on preferences." msgstr "" -"Sets the global app language. You can set a per user language on preferences." #: app/modules/web/themes/material-blue/views/config/general-site.inc:46 msgid "" "To improve/add translations, you can get involved at https://poeditor.com/" "join/project/fmlsBuugyv" msgstr "" -"To improve/add translations, you can get involved at https://poeditor.com/" -"join/project/fmlsBuugyv" #: app/modules/web/themes/material-blue/views/config/general-site.inc:65 #: app/modules/web/themes/material-blue/views/config/general-site.inc:75 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:48 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:50 msgid "Visual Theme" -msgstr "Visual Theme" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:70 msgid "" "Sets the global application visual theme. You can set a per user visual " "theme on preferences." msgstr "" -"Sets the global application visual theme. You can set a per user visual " -"theme on preferences." #: app/modules/web/themes/material-blue/views/config/general-site.inc:89 #: app/modules/web/themes/material-blue/views/config/general-site.inc:101 msgid "Session timeout (s)" -msgstr "Session timeout (s)" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:107 #: app/modules/web/themes/material-blue/views/config/general-site.inc:123 @@ -5719,278 +5670,260 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:142 msgid "Force HTTPS" -msgstr "Force HTTPS" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:143 msgid "It forces the use of HTTPS on all the connections" -msgstr "It forces the use of HTTPS on all the connections" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:158 msgid "Enable debug" -msgstr "Enable debug" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:159 msgid "" "Displays some information about application configuration and performance." msgstr "" -"Displays some information about application configuration and performance." #: app/modules/web/themes/material-blue/views/config/general-site.inc:174 msgid "Maintenance mode" -msgstr "Maintenance mode" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:175 msgid "" "In this mode nobody can log into the application. To disable it, you need to " "either modify the configuration file or unset on the site tab." msgstr "" -"In this mode nobody can log into the application. To disable it, you need to " -"either modify the configuration file or unset on the site tab." #: app/modules/web/themes/material-blue/views/config/general-site.inc:190 msgid "Check for updates" -msgstr "Check for updates" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:191 msgid "Check for application updates (only for administrators)." -msgstr "Check for application updates (only for administrators)." +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:206 msgid "Check for notifications" -msgstr "Check for notifications" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:207 msgid "" "Check if there are either sysPass security or warning notices (only for " "administrators)." msgstr "" -"Check if there are either sysPass security or warning notices (only for " -"administrators)." #: app/modules/web/themes/material-blue/views/config/general-site.inc:222 msgid "Encrypt Session" -msgstr "Encrypt Session" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:224 msgid "Encrypt PHP session data" -msgstr "Encrypt PHP session data" +msgstr "" #: app/modules/web/themes/material-blue/views/config/general-site.inc:225 msgid "" "This feature increases the PHP sessions security, because the stored data " "won't be readable." msgstr "" -"This feature increases the PHP sessions security, because the stored data " -"won't be readable." #: app/modules/web/themes/material-blue/views/config/import.inc:18 #: app/modules/web/themes/material-blue/views/config/import.inc:113 msgid "CSV/XML Import" -msgstr "CSV/XML Import" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:24 #: app/modules/web/themes/material-blue/views/config/import.inc:35 msgid "Default User" -msgstr "Default User" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:30 msgid "Sets the default user for the accounts imported." -msgstr "Sets the default user for the accounts imported." +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:58 msgid "Sets the default group for the accounts imported." -msgstr "Sets the default group for the accounts imported." +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:83 msgid "Drop files here or click to select" -msgstr "Drop files here or click to select" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:115 msgid "" "Allows to import Accounts, Categories and Clients from XML or CSV files." msgstr "" -"Allows to import Accounts, Categories and Clients from XML or CSV files." #: app/modules/web/themes/material-blue/views/config/import.inc:117 msgid "Supported XML file formats are: sysPass, KeePass and KeePassX" -msgstr "Supported XML file formats are: sysPass, KeePass and KeePassX" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:119 msgid "Drag & Drop the file into the import zone or click over the arrow." -msgstr "Drag & Drop the file into the import zone or click over the arrow." +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:121 msgid "" "For KeePass or KeePassX files, client name will be KeePass or KeePassX and " "category name like groups name." msgstr "" -"For KeePass or KeePassX files, client name will be KeePass or KeePassX and " -"category name like groups name." #: app/modules/web/themes/material-blue/views/config/import.inc:123 msgid "The CSV import file requires the following format:" -msgstr "The CSV import file requires the following format:" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:125 msgid "" "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" "\"notes\"" msgstr "" -"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" -"\"notes\"" #: app/modules/web/themes/material-blue/views/config/import.inc:127 msgid "" "In all cases, if the client or category do not exist they will be created " "automatically." msgstr "" -"In all cases, if the client or category do not exist they will be created " -"automatically." #: app/modules/web/themes/material-blue/views/config/import.inc:135 msgid "XML" -msgstr "XML" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:141 #: app/modules/web/themes/material-blue/views/config/import.inc:156 msgid "Import Password" -msgstr "Import Password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:146 msgid "It's only needed for sysPass XML files that have been encrypted." -msgstr "It's only needed for sysPass XML files that have been encrypted." +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:168 msgid "" "It's only needed for sysPass XML files that have been encrypted with a " "different master password from the current one." msgstr "" -"It's only needed for sysPass XML files that have been encrypted with a " -"different master password from the current one." #: app/modules/web/themes/material-blue/views/config/import.inc:186 msgid "CSV" -msgstr "CSV" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:192 #: app/modules/web/themes/material-blue/views/config/import.inc:208 msgid "CSV delimiter" -msgstr "CSV delimiter" +msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:198 msgid "It's only needed for CSV files." -msgstr "It's only needed for CSV files." +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:20 msgid "Application Information" -msgstr "Application Information" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:26 #: app/modules/web/themes/material-blue/views/config/info.inc:29 msgid "sysPass version" -msgstr "sysPass version" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:42 #: app/modules/web/themes/material-blue/views/config/info.inc:45 msgid "Database" -msgstr "Database" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:56 #: app/modules/web/themes/material-blue/views/config/info.inc:59 msgid "PHP" -msgstr "PHP" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:63 msgid "Extensions" -msgstr "Extensions" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:67 msgid "Unavailable extensions" -msgstr "Unavailable extensions" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:71 msgid "Used Memory" -msgstr "Used Memory" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:75 msgid "Download rate" -msgstr "Download rate" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:78 msgid "OP Cache" -msgstr "OP Cache" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:97 #: app/modules/web/themes/material-blue/views/config/info.inc:100 msgid "Configuration Backup" -msgstr "Configuration Backup" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:110 #: app/modules/web/themes/material-blue/views/config/info.inc:192 #, php-format msgid "Download %s" -msgstr "Download %s" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:124 msgid "Tells whether the language is available or not." -msgstr "Tells whether the language is available or not." +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:128 msgid "" "If it is not installed, you would need install the right operating system " "locales. More info at Wiki." msgstr "" -"If it is not installed, you would need install the right operating system " -"locales. More info at Wiki." #: app/modules/web/themes/material-blue/views/config/info.inc:140 #: app/modules/web/themes/material-blue/views/config/info.inc:150 msgid "Encrypted Session" -msgstr "Encrypted Session" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:145 msgid "Tells whether the session data are encrypted in the server side or not" -msgstr "Tells whether the session data are encrypted in the server side or not" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:157 #: app/modules/web/themes/material-blue/views/config/info.inc:160 msgid "Loaded Plugins" -msgstr "Loaded Plugins" +msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:183 #: app/modules/web/themes/material-blue/views/config/info.inc:186 msgid "Log file" -msgstr "Log file" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:23 msgid "This extension is needed to connect to the LDAP server" -msgstr "This extension is needed to connect to the LDAP server" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:54 msgid "Enable LDAP" -msgstr "Enable LDAP" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:56 msgid "Enables authentication against an LDAP server." -msgstr "Enables authentication against an LDAP server." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:58 msgid "This method will use MySQL as fallback." -msgstr "This method will use MySQL as fallback." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:76 msgid "Enables the connection over TLS" -msgstr "Enables the connection over TLS" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:85 #: app/modules/web/themes/material-blue/views/config/ldap.inc:87 #: app/modules/web/themes/material-blue/views/config/ldap.inc:91 msgid "Server Type" -msgstr "Server Type" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:108 msgid "Hostname or IP address of LDAP server." -msgstr "Hostname or IP address of LDAP server." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:112 #: app/modules/web/themes/material-blue/views/config/ldap.inc:145 @@ -5998,899 +5931,881 @@ msgstr "Hostname or IP address of LDAP server." #: app/modules/web/themes/material-blue/views/config/ldap.inc:248 #: app/modules/web/themes/material-blue/views/config/wiki.inc:130 msgid "Examples:" -msgstr "Examples:" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:135 msgid "Bind User" -msgstr "Bind User" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:141 msgid "User to connect to LDAP service." -msgstr "User to connect to LDAP service." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:167 msgid "Bind Password" -msgstr "Bind Password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:173 msgid "LDAP connection user's password" -msgstr "LDAP connection user's password" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:194 msgid "" "This isn't the real LDAP password. You should set the real one before " "checking or importing LDAP objects" msgstr "" -"This isn't the real LDAP password. You should set the real one before " -"checking or importing LDAP objects" #: app/modules/web/themes/material-blue/views/config/ldap.inc:202 #: app/modules/web/themes/material-blue/views/config/ldap.inc:228 msgid "Search base" -msgstr "Search base" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:208 msgid "LDAP base to perform the LDAP users search." -msgstr "LDAP base to perform the LDAP users search." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:240 msgid "LDAP group which user must belong to for granting to log in." -msgstr "LDAP group which user must belong to for granting to log in." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:244 msgid "This group needs to be placed in the LDAP search base." -msgstr "This group needs to be placed in the LDAP search base." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:276 msgid "Sets the default users group for newly created LDAP users" -msgstr "Sets the default users group for newly created LDAP users" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:302 msgid "Sets the default profile for the newly created LDAP users." -msgstr "Sets the default profile for the newly created LDAP users." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:354 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:535 msgid "Import" -msgstr "Import" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:360 #: app/modules/web/themes/material-blue/views/config/ldap.inc:371 msgid "Login Attribute" -msgstr "Login Attribute" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:366 msgid "Defines the attribute for the user's login when importing." -msgstr "Defines the attribute for the user's login when importing." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:385 #: app/modules/web/themes/material-blue/views/config/ldap.inc:396 msgid "Name Attribute" -msgstr "Name Attribute" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:391 msgid "Defines the attribute for the user's name when importing." -msgstr "Defines the attribute for the user's name when importing." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:423 msgid "Import Groups" -msgstr "Import Groups" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:432 #: app/modules/web/themes/material-blue/views/config/ldap.inc:443 msgid "Group Name Attribute" -msgstr "Group Name Attribute" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:438 msgid "Defines the attribute for the user group name when importing." -msgstr "Defines the attribute for the user group name when importing." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:455 #: app/modules/web/themes/material-blue/views/config/ldap.inc:471 msgid "Filter" -msgstr "Filter" +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:461 msgid "Filter for importing LDAP users or groups." -msgstr "Filter for importing LDAP users or groups." +msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:502 msgid "Import users from LDAP" -msgstr "Import users from LDAP" +msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:41 #: app/modules/web/themes/material-blue/views/config/mail.inc:42 msgid "Enable email notifications" -msgstr "Enable email notifications" +msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:58 msgid "Enable requests by email" -msgstr "Enable requests by email" +msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:60 msgid "" "Allows users to request for either modifications to existing accounts or " "access to accounts which they have no rights on." msgstr "" -"Allows users to request for either modifications to existing accounts or " -"access to accounts which they have no rights on." #: app/modules/web/themes/material-blue/views/config/mail.inc:113 msgid "Enable Authentication" -msgstr "Enable Authentication" +msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:152 #: app/modules/web/themes/material-blue/views/config/mail.inc:155 msgid "Security" -msgstr "Security" +msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:169 #: app/modules/web/themes/material-blue/views/config/mail.inc:178 msgid "Sender email address" -msgstr "Sender email address" +msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:184 #: app/modules/web/themes/material-blue/views/config/mail.inc:187 msgid "Recipients" -msgstr "Recipients" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:22 msgid "This extension is needed to connect with DokuWiki" -msgstr "This extension is needed to connect with DokuWiki" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:35 msgid "DokuWiki API" -msgstr "DokuWiki API" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:54 msgid "Enable DokuWiki API" -msgstr "Enable DokuWiki API" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:56 msgid "Enables DokuWiki XML-RPC API for Wiki links." -msgstr "Enables DokuWiki XML-RPC API for Wiki links." +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:58 msgid "" "In order to get this feature working, you should enable Wiki links for " "accounts filtering" msgstr "" -"In order to get this feature working, you should enable Wiki links for " -"accounts filtering" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:68 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:92 msgid "API URL" -msgstr "API URL" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:74 msgid "DokuWiki API URL" -msgstr "DokuWiki API URL" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:78 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:108 #: app/modules/web/themes/material-blue/views/config/wiki.inc:64 #: app/modules/web/themes/material-blue/views/config/wiki.inc:99 msgid "Example:" -msgstr "Example:" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:98 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:123 msgid "Base URL" -msgstr "Base URL" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:104 msgid "DokuWiki base URL" -msgstr "DokuWiki base URL" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:135 msgid "User for connecting to the DokuWiki API." -msgstr "User for connecting to the DokuWiki API." +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:168 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:186 msgid "Namespace" -msgstr "Namespace" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:174 msgid "Namespace used to search pages." -msgstr "Namespace used to search pages." +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:41 msgid "Enable Wiki links" -msgstr "Enable Wiki links" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:42 msgid "" "Enables the option to add a link to search for results in an external Wiki." msgstr "" -"Enables the option to add a link to search for results in an external Wiki." #: app/modules/web/themes/material-blue/views/config/wiki.inc:50 #: app/modules/web/themes/material-blue/views/config/wiki.inc:79 msgid "Wiki search URL" -msgstr "Wiki search URL" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:56 msgid "URL that Wiki uses for making an entry searching." -msgstr "URL that Wiki uses for making an entry searching." +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:60 msgid "The client's name is used as parameter." -msgstr "The client's name is used as parameter." +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:85 #: app/modules/web/themes/material-blue/views/config/wiki.inc:114 msgid "Wiki page URL" -msgstr "Wiki page URL" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:91 msgid "URL that Wiki uses for accessing to the entry details." -msgstr "URL that Wiki uses for accessing to the entry details." +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:95 msgid "Account's name is used as parameter of Wiki search variable." -msgstr "Account's name is used as parameter of Wiki search variable." +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:120 #: app/modules/web/themes/material-blue/views/config/wiki.inc:135 msgid "Account name prefix" -msgstr "Account name prefix" +msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:126 msgid "Prefix to determine which accounts have a link to the Wiki." -msgstr "Prefix to determine which accounts have a link to the Wiki." +msgstr "" #: app/modules/web/themes/material-blue/views/error/error-database.inc:23 #: app/modules/web/themes/material-blue/views/error/error-database.inc:25 #: app/modules/web/themes/material-blue/views/install/index.inc:184 #: app/modules/web/themes/material-blue/views/install/index.inc:186 msgid "Install" -msgstr "Install" +msgstr "" #: app/modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:21 msgid "Filter ON" -msgstr "Filter ON" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:17 #, php-format msgid "Installation %s" -msgstr "Installation %s" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:28 msgid "sysPass Admin" -msgstr "sysPass Admin" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:37 msgid "sysPass admin user" -msgstr "sysPass admin user" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:45 msgid "sysPass administrator's login" -msgstr "sysPass administrator's login" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:79 msgid "DB Configuration" -msgstr "DB Configuration" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:89 msgid "DB access user" -msgstr "DB access user" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:97 msgid "An user with MySQL admin rights" -msgstr "An user with MySQL admin rights" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:105 msgid "DB access password" -msgstr "DB access password" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:114 #: app/modules/web/themes/material-blue/views/install/index.inc:122 msgid "sysPass database name" -msgstr "sysPass database name" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:131 msgid "sysPass database server" -msgstr "sysPass database server" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:139 msgid "Server name to install sysPass database" -msgstr "Server name to install sysPass database" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:160 msgid "Hosting Mode" -msgstr "Hosting Mode" +msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:167 msgid "It does not create or verify the user's permissions on the DB" -msgstr "It does not create or verify the user's permissions on the DB" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:39 msgid "Others" -msgstr "Others" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 msgid "Creator" -msgstr "Creator" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:263 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:265 msgid "Delete History" -msgstr "Delete History" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:51 msgid "Select Action" -msgstr "Select Action" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:28 #: app/modules/web/themes/material-blue/views/notification/notification.inc:111 msgid "Options" -msgstr "Options" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:81 msgid "Refresh Authorization" -msgstr "Refresh Authorization" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:87 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:89 msgid "Token" -msgstr "Token" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/client.inc:63 msgid "Sets whether the client is visible by all users" -msgstr "Sets whether the client is visible by all users" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/client.inc:66 msgid "" "By default, clients assigned to accounts only will be visible by users who " "are granted to access to the accounts." msgstr "" -"By default, clients assigned to accounts only will be visible by users who " -"are granted to access to the accounts." #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:39 msgid "Field name" -msgstr "Field name" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:74 msgid "Help Text" -msgstr "Help Text" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:81 msgid "Field's help" -msgstr "Field's help" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:94 msgid "Required" -msgstr "Required" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:21 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:29 msgid "Length" -msgstr "Length" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:49 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 msgid "Score" -msgstr "Score" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:64 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:71 msgid "Regular Expression" -msgstr "Regular Expression" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:91 msgid "Include Numbers" -msgstr "Include Numbers" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:106 msgid "Include Letters" -msgstr "Include Letters" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:121 msgid "Include Symbols" -msgstr "Include Symbols" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:136 msgid "Include Uppercase" -msgstr "Include Uppercase" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:151 msgid "Include Lowercase" -msgstr "Include Lowercase" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:37 msgid "Accounts will be only visible by the user." -msgstr "Accounts will be only visible by the user." +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:39 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:59 msgid "Administrators won't be able to display the accounts." -msgstr "Administrators won't be able to display the accounts." +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:57 msgid "" "Accounts will be only visible by the user and users belonging to the main " "group." msgstr "" -"Accounts will be only visible by the user and users belonging to the main " -"group." #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:21 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 msgid "IP Address" -msgstr "IP Address" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:34 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:42 msgid "Timeout" -msgstr "Timeout" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:153 msgid "Select Profile" -msgstr "Select Profile" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:103 msgid "" "Assignment priority if values match with others assigned by user, group or " "profile." msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:116 msgid "Assignment Priority" -msgstr "Assignment Priority" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:139 msgid "Enforces the values to be set either on creating or updating an item." -msgstr "Enforces the values to be set either on creating or updating an item." +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:141 msgid "Values will be merged with the existing ones." -msgstr "Values will be merged with the existing ones." +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:91 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:93 msgid "Hash" -msgstr "Hash" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:99 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:101 msgid "URL" -msgstr "URL" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:109 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:111 msgid "Use" -msgstr "Use" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:55 msgid "Full username" -msgstr "Full username" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:70 msgid "Session login" -msgstr "Session login" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:81 msgid "SSO Login " -msgstr "SSO Login " +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:90 msgid "Session login with SSO" -msgstr "Session login with SSO" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:106 msgid "Email address" -msgstr "Email address" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:223 msgid "Application administrator" -msgstr "Application administrator" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:242 msgid "Accounts administrator" -msgstr "Accounts administrator" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:263 msgid "Force password change" -msgstr "Force password change" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:296 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:298 msgid "Entries" -msgstr "Entries" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:305 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:307 msgid "Last Access" -msgstr "Last Access" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:323 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:325 msgid "Master Password Date" -msgstr "Master Password Date" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:332 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:334 msgid "Used in" -msgstr "Used in" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:98 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:100 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:592 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:594 msgid "Used by" -msgstr "Used by" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:119 msgid "(*) Listed in group" -msgstr "(*) Listed in group" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:35 msgid "Management" -msgstr "Management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 msgid "Create new account" -msgstr "Create new account" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 msgid "View account details" -msgstr "View account details" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 msgid "View account password" -msgstr "View account password" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 msgid "View History" -msgstr "View History" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:99 msgid "View account history" -msgstr "View account history" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:117 msgid "Edit account" -msgstr "Edit account" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:133 msgid "Edit Password" -msgstr "Edit Password" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Edit account password" -msgstr "Edit account password" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 msgid "Remove account" -msgstr "Remove account" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:168 msgid "View account files" -msgstr "View account files" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:184 msgid "Share Link" -msgstr "Share Link" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:185 msgid "Share link to account" -msgstr "Share link to account" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:202 msgid "Create private account" -msgstr "Create private account" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:219 msgid "Create private account for group" -msgstr "Create private account for group" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:237 msgid "Assign permissions" -msgstr "Assign permissions" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 msgid "Users management" -msgstr "Users management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 msgid "Groups management" -msgstr "Groups management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:311 msgid "Profiles management" -msgstr "Profiles management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:328 msgid "Categories management" -msgstr "Categories management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:345 msgid "Tags management" -msgstr "Tags management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 msgid "Customers management" -msgstr "Customers management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 msgid "Custom fields management" -msgstr "Custom fields management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:396 msgid "API authorizations management" -msgstr "API authorizations management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:413 msgid "Links management" -msgstr "Links management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:430 msgid "Accounts management" -msgstr "Accounts management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Default Values" -msgstr "Default Values" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:464 msgid "Default Values Management" -msgstr "Default Values Management" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:485 msgid "General Configuration" -msgstr "General Configuration" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:502 msgid "Encryption options" -msgstr "Encryption options" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:519 msgid "Make a backup and export" -msgstr "Make a backup and export" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 msgid "Make accounts import" -msgstr "Make accounts import" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:557 msgid "View event log" -msgstr "View event log" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:585 msgid "Profile name" -msgstr "Profile name" +msgstr "" #: app/modules/web/themes/material-blue/views/login/index.inc:51 msgid "Previous Password" -msgstr "Previous Password" +msgstr "" #: app/modules/web/themes/material-blue/views/login/index.inc:80 msgid "Sign in" -msgstr "Sign in" +msgstr "" #: app/modules/web/themes/material-blue/views/login/index.inc:89 msgid "Forgot password?" -msgstr "Forgot password?" +msgstr "" #: app/modules/web/themes/material-blue/views/main/update.inc:42 msgid "Updated" -msgstr "Updated" +msgstr "" #: app/modules/web/themes/material-blue/views/main/update.inc:49 msgid "Error while checking for updates" -msgstr "Error while checking for updates" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:17 #, php-format msgid "Update %s" -msgstr "Update %s" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:24 msgid "DB Update" -msgstr "DB Update" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:26 msgid "Application Update" -msgstr "Application Update" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:34 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:34 msgid "Security Code" -msgstr "Security Code" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:42 msgid "" "This code is set in sysPass config file within the tag name \"upgradekey\"" msgstr "" -"This code is set in sysPass config file within the tag name \"upgradekey\"" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:52 msgid "" "Some orphaned items have been found. Please, modify those items or enter the " "default IDs for them." msgstr "" -"Some orphaned items have been found. Please, modify those items or enter the " -"default IDs for them." #: app/modules/web/themes/material-blue/views/main/upgrade.inc:54 msgid "If items IDs are not set, they will be created." -msgstr "If items IDs are not set, they will be created." +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:80 msgid "Enter a valid user ID for the accounts" -msgstr "Enter a valid user ID for the accounts" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:91 msgid "Enter a valid category ID for the accounts" -msgstr "Enter a valid category ID for the accounts" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:102 msgid "Enter a valid client ID for the accounts" -msgstr "Enter a valid client ID for the accounts" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:114 msgid "Enter a valid group ID for the users" -msgstr "Enter a valid group ID for the users" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:124 msgid "Enter a valid profile ID for the users" -msgstr "Enter a valid profile ID for the users" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:134 msgid "" "This update uses a new encryption schema, so it will be needed to reencrypt " "the whole encrypted data." msgstr "" -"This update uses a new encryption schema, so it will be needed to reencrypt " -"the whole encrypted data." #: app/modules/web/themes/material-blue/views/main/upgrade.inc:157 msgid "Enter a valid user login" -msgstr "Enter a valid user login" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:172 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:41 msgid "I've done a full sysPass backup" -msgstr "I've done a full sysPass backup" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:189 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:49 msgid "Please, wait while the process is running" -msgstr "Please, wait while the process is running" +msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:200 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:60 msgid "Start Update" -msgstr "Start Update" +msgstr "" #: app/modules/web/themes/material-blue/views/notification/notification.inc:115 msgid "Global notification" -msgstr "Global notification" +msgstr "" #: app/modules/web/themes/material-blue/views/notification/notification.inc:124 msgid "Only for application administrators" -msgstr "Only for application administrators" +msgstr "" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:36 msgid "Plugin name" -msgstr "Plugin name" +msgstr "" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:48 msgid "Plugin version" -msgstr "Plugin version" +msgstr "" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:53 msgid "Compatible Version" -msgstr "Compatible Version" +msgstr "" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:61 msgid "sysPass compatible version" -msgstr "sysPass compatible version" +msgstr "" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:66 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:43 msgid "Author" -msgstr "Author" +msgstr "" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:73 msgid "Plugin author" -msgstr "Plugin author" +msgstr "" #: app/modules/web/themes/material-blue/views/upgrade/index.inc:15 msgid "The application needs to be updated" -msgstr "The application needs to be updated" +msgstr "" #: app/modules/web/themes/material-blue/views/upgrade/index.inc:20 msgid "Please enter the security code to start the upgrade" -msgstr "Please enter the security code to start the upgrade" +msgstr "" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:8 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:18 msgid "Request Password Change" -msgstr "Request Password Change" +msgstr "" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:32 msgid "User's Email" -msgstr "User's Email" +msgstr "" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:43 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:59 msgid "Go back to login" -msgstr "Go back to login" +msgstr "" #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:65 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:67 msgid "Change" -msgstr "Change" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:121 msgid "Sort search results by views" -msgstr "Sort search results by views" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:123 msgid "Sorts accounts search results by the number of account's views" -msgstr "Sorts accounts search results by the number of account's views" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:139 msgid "Navigation bar on top" -msgstr "Navigation bar on top" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:141 msgid "Displays a navigation bar on top of the search results." -msgstr "Displays a navigation bar on top of the search results." +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:157 msgid "Show Hidden Actions" -msgstr "Show Hidden Actions" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:159 msgid "Always display hidden actions on the accounts search page." -msgstr "Always display hidden actions on the accounts search page." +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:193 msgid "In-App Notifications" -msgstr "In-App Notifications" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:195 msgid "Enables the active In-App notifications polling" -msgstr "Enables the active In-App notifications polling" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:212 msgid "Show Filters" -msgstr "Show Filters" +msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:214 msgid "Displays the additional filters selection on the accounts search." -msgstr "Displays the additional filters selection on the accounts search." +msgstr "" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:20 msgid "View Wiki" -msgstr "View Wiki" +msgstr "" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:26 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:35 msgid "Page not found" -msgstr "Page not found" +msgstr "" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:28 #, php-format msgid "Search results of '%s'" -msgstr "Search results of '%s'" +msgstr "" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:31 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:41 msgid "Page" -msgstr "Page" +msgstr "" #~ msgid "\"/config\" directory does not exist." #~ msgstr "\"/config\" directory does not exist." From 9aeb14916bcd04c875e3d05fb4e33517c14fb379 Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 9 Sep 2020 01:44:23 +0900 Subject: [PATCH 08/36] [WIP] update sysPass application translate to Japanese --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 659 -> 31501 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 908 +++++++++++----------- 2 files changed, 456 insertions(+), 452 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 88a3d35c12f1a69da9e87916999d54385eab0bc2..250cf5a9f59563b554dff341337a154f9b9ae64d 100644 GIT binary patch literal 31501 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 delta 79 zcmeDE#yFYP;+_!8R0bem1Y#K=RsmvWAl3n55U>E^NG1jbOCSwW0|S$vyZEzPC>R)8 MnVN34b!BA&0E&1C$N&HU diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index cb8afa85..714916c3 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-04-29 01:28+0200\n" -"PO-Revision-Date: 2020-09-08 01:55+0900\n" +"PO-Revision-Date: 2020-09-09 22:34+0900\n" "Last-Translator: magcho \n" "Language-Team: language@syspass.org\n" "Language: ja_JP\n" @@ -22,7 +22,7 @@ msgstr "" #: app/modules/api/Controllers/AccountController.php:74 msgid "Account displayed" -msgstr "" +msgstr "アカウントを表示" #: app/modules/api/Controllers/AccountController.php:75 #: app/modules/api/Controllers/AccountController.php:107 @@ -80,7 +80,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:576 #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:29 msgid "Name" -msgstr "" +msgstr "Name" #: app/modules/api/Controllers/AccountController.php:76 #: app/modules/api/Controllers/AccountController.php:108 @@ -122,13 +122,13 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:45 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 msgid "Client" -msgstr "" +msgstr "Client" #: app/modules/api/Controllers/AccountController.php:106 #: app/modules/web/Controllers/AccountController.php:667 #: app/modules/web/Controllers/AccountController.php:727 msgid "Password viewed" -msgstr "" +msgstr "パスワードを表示しました" #: app/modules/api/Controllers/AccountController.php:142 #: app/modules/api/Controllers/AccountController.php:148 @@ -139,21 +139,21 @@ msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:220 #: app/modules/web/Controllers/UserPassResetController.php:228 msgid "Password updated" -msgstr "" +msgstr "パスワードを更新しました" #: app/modules/api/Controllers/AccountController.php:192 #: app/modules/api/Controllers/AccountController.php:198 #: app/modules/web/Controllers/AccountController.php:842 #: app/modules/web/Controllers/AccountController.php:853 msgid "Account created" -msgstr "" +msgstr "アカウントを作成しました" #: app/modules/api/Controllers/AccountController.php:243 #: app/modules/api/Controllers/AccountController.php:249 #: app/modules/web/Controllers/AccountController.php:891 #: app/modules/web/Controllers/AccountController.php:902 msgid "Account updated" -msgstr "" +msgstr "アカウントを更新しました" #: app/modules/api/Controllers/AccountController.php:318 #: app/modules/api/Controllers/AccountController.php:324 @@ -164,36 +164,36 @@ msgstr "" #: app/modules/web/Controllers/AccountManagerController.php:156 #: app/modules/web/Controllers/AccountManagerController.php:161 msgid "Account removed" -msgstr "" +msgstr "アカウントを削除しました" #: app/modules/api/Controllers/CategoryController.php:66 msgid "Category displayed" -msgstr "" +msgstr "カテゴリーを表示しました" #: app/modules/api/Controllers/CategoryController.php:95 #: app/modules/api/Controllers/CategoryController.php:100 #: app/modules/web/Controllers/CategoryController.php:280 #: app/modules/web/Controllers/CategoryController.php:284 msgid "Category added" -msgstr "" +msgstr "カテゴリーを追加しました" #: app/modules/api/Controllers/CategoryController.php:125 #: app/modules/api/Controllers/CategoryController.php:130 #: app/modules/web/Controllers/CategoryController.php:324 #: app/modules/web/Controllers/CategoryController.php:328 msgid "Category updated" -msgstr "" +msgstr "カテゴリーを更新しました" #: app/modules/api/Controllers/CategoryController.php:154 #: app/modules/api/Controllers/CategoryController.php:159 #: app/modules/web/Controllers/CategoryController.php:242 #: app/modules/web/Controllers/CategoryController.php:246 msgid "Category deleted" -msgstr "" +msgstr "カテゴリーを削除しました" #: app/modules/api/Controllers/ClientController.php:67 msgid "Client displayed" -msgstr "" +msgstr "クライアントを表示しました" #: app/modules/api/Controllers/ClientController.php:97 #: app/modules/api/Controllers/ClientController.php:102 @@ -201,55 +201,55 @@ msgstr "" #: app/modules/web/Controllers/ClientController.php:279 #: lib/SP/Services/Import/KeepassImport.php:79 msgid "Client added" -msgstr "" +msgstr "クライアントを追加しました" #: app/modules/api/Controllers/ClientController.php:128 #: app/modules/api/Controllers/ClientController.php:133 #: app/modules/web/Controllers/ClientController.php:315 #: app/modules/web/Controllers/ClientController.php:319 msgid "Client updated" -msgstr "" +msgstr "クライアントを更新しました" #: app/modules/api/Controllers/ClientController.php:157 #: app/modules/api/Controllers/ClientController.php:162 #: app/modules/web/Controllers/ClientController.php:239 #: app/modules/web/Controllers/ClientController.php:243 msgid "Client deleted" -msgstr "" +msgstr "クライアントを削除しました" #: app/modules/api/Controllers/ConfigController.php:59 #: app/modules/web/Controllers/ConfigBackupController.php:70 msgid "Application and database backup completed successfully" -msgstr "" +msgstr "アプリケーションとデーベースのバックアップが完了しました" #: app/modules/api/Controllers/ConfigController.php:60 #: app/modules/api/Controllers/ConfigController.php:85 #: app/modules/api/Controllers/Help/ConfigHelp.php:43 #: app/modules/api/Controllers/Help/ConfigHelp.php:54 msgid "Path" -msgstr "" +msgstr "Path" #: app/modules/api/Controllers/ConfigController.php:63 #: app/modules/web/Controllers/ConfigBackupController.php:73 msgid "Backup process finished" -msgstr "" +msgstr "バックアップが完了しました" #: app/modules/api/Controllers/ConfigController.php:84 #: app/modules/web/Controllers/ConfigBackupController.php:98 msgid "sysPass XML export" -msgstr "" +msgstr "sysPass XML export" #: app/modules/api/Controllers/ConfigController.php:93 #: app/modules/api/Controllers/ConfigController.php:96 #: app/modules/web/Controllers/ConfigBackupController.php:108 #: app/modules/web/Controllers/ConfigBackupController.php:136 msgid "Export process finished" -msgstr "" +msgstr "エクスポートが完了しました" #: app/modules/api/Controllers/ControllerBase.php:150 #: lib/SP/Services/Api/ApiService.php:189 msgid "Unauthorized access" -msgstr "" +msgstr "Unauthorized access" #: app/modules/api/Controllers/Help/AccountHelp.php:43 #: app/modules/api/Controllers/Help/AccountHelp.php:54 @@ -257,17 +257,17 @@ msgstr "" #: app/modules/api/Controllers/Help/AccountHelp.php:105 #: app/modules/api/Controllers/Help/AccountHelp.php:144 msgid "Account Id" -msgstr "" +msgstr "アカウントID" #: app/modules/api/Controllers/Help/AccountHelp.php:55 #: app/modules/api/Controllers/Help/AccountHelp.php:68 #: app/modules/api/Controllers/Help/AccountHelp.php:81 msgid "Token's password" -msgstr "" +msgstr "Token's password" #: app/modules/api/Controllers/Help/AccountHelp.php:56 msgid "Send details in the response" -msgstr "" +msgstr "Send details in the response" #: app/modules/api/Controllers/Help/AccountHelp.php:69 #: app/modules/api/Controllers/Help/AccountHelp.php:85 @@ -300,7 +300,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/login/index.inc:106 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:34 msgid "Password" -msgstr "" +msgstr "Password" #: app/modules/api/Controllers/Help/AccountHelp.php:70 #: app/modules/api/Controllers/Help/AccountHelp.php:91 @@ -312,7 +312,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/details.inc:96 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:274 msgid "Password Expiry Date" -msgstr "" +msgstr "パスワードの有効期限" #: app/modules/api/Controllers/Help/AccountHelp.php:82 #: app/modules/api/Controllers/Help/AccountHelp.php:106 @@ -322,7 +322,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/account-request.inc:39 #: app/modules/web/themes/material-blue/views/account/account.inc:88 msgid "Account name" -msgstr "" +msgstr "アカウント名" #: app/modules/api/Controllers/Help/AccountHelp.php:83 #: app/modules/api/Controllers/Help/AccountHelp.php:107 @@ -330,7 +330,7 @@ msgstr "" #: app/modules/api/Controllers/Help/CategoryHelp.php:66 #: app/modules/api/Controllers/Help/CategoryHelp.php:91 msgid "Category Id" -msgstr "" +msgstr "カテゴリーID" #: app/modules/api/Controllers/Help/AccountHelp.php:84 #: app/modules/api/Controllers/Help/AccountHelp.php:108 @@ -338,21 +338,21 @@ msgstr "" #: app/modules/api/Controllers/Help/ClientHelp.php:67 #: app/modules/api/Controllers/Help/ClientHelp.php:93 msgid "Client Id" -msgstr "" +msgstr "クライアントID" #: app/modules/api/Controllers/Help/AccountHelp.php:86 #: app/modules/api/Controllers/Help/AccountHelp.php:109 #: app/modules/web/themes/material-blue/views/account/account-history.inc:124 #: app/modules/web/themes/material-blue/views/account/account.inc:166 msgid "Access user" -msgstr "" +msgstr "アクセスを許可するユーザー" #: app/modules/api/Controllers/Help/AccountHelp.php:87 #: app/modules/api/Controllers/Help/AccountHelp.php:110 #: app/modules/web/themes/material-blue/views/account/account-history.inc:110 #: app/modules/web/themes/material-blue/views/account/account.inc:153 msgid "Access URL or IP" -msgstr "" +msgstr "ウェブサイトのURL or IP" #: app/modules/api/Controllers/Help/AccountHelp.php:88 #: app/modules/api/Controllers/Help/AccountHelp.php:111 @@ -360,7 +360,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/account-link.inc:103 #: app/modules/web/themes/material-blue/views/account/account.inc:233 msgid "Notes about the account" -msgstr "" +msgstr "アカウントに関するメモ" #: app/modules/api/Controllers/Help/AccountHelp.php:89 #: app/modules/api/Controllers/Help/AccountHelp.php:112 @@ -368,14 +368,14 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:131 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:35 msgid "Private Account" -msgstr "" +msgstr "プライベートアカウント" #: app/modules/api/Controllers/Help/AccountHelp.php:90 #: app/modules/api/Controllers/Help/AccountHelp.php:113 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:246 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:55 msgid "Private Account for Group" -msgstr "" +msgstr "プライベートグループアカウント" #: app/modules/api/Controllers/Help/AccountHelp.php:92 #: app/modules/api/Controllers/Help/AccountHelp.php:115 @@ -383,12 +383,12 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:285 #: app/modules/web/themes/material-blue/views/account/viewpass.inc:19 msgid "Linked Account" -msgstr "" +msgstr "関連するアカウント" #: app/modules/api/Controllers/Help/AccountHelp.php:93 #: app/modules/api/Controllers/Help/AccountHelp.php:116 msgid "Array with tags id" -msgstr "" +msgstr "タグID" #: app/modules/api/Controllers/Help/AccountHelp.php:94 #: app/modules/api/Controllers/Help/AccountHelp.php:117 @@ -396,7 +396,7 @@ msgstr "" #: app/modules/api/Controllers/Help/UserGroupHelp.php:67 #: app/modules/api/Controllers/Help/UserGroupHelp.php:93 msgid "Group Id" -msgstr "" +msgstr "グループID" #: app/modules/api/Controllers/Help/AccountHelp.php:128 #: app/modules/api/Controllers/Help/CategoryHelp.php:79 @@ -405,7 +405,7 @@ msgstr "" #: app/modules/api/Controllers/Help/UserGroupHelp.php:81 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:34 msgid "Text to search for" -msgstr "" +msgstr "検索" #: app/modules/api/Controllers/Help/AccountHelp.php:129 #: app/modules/api/Controllers/Help/CategoryHelp.php:80 @@ -413,47 +413,47 @@ msgstr "" #: app/modules/api/Controllers/Help/TagHelp.php:78 #: app/modules/api/Controllers/Help/UserGroupHelp.php:82 msgid "Number of results to display" -msgstr "" +msgstr "1ページあたりの表示数" #: app/modules/api/Controllers/Help/AccountHelp.php:130 msgid "Category Id to filter on" -msgstr "" +msgstr "カテゴリーIDで検索" #: app/modules/api/Controllers/Help/AccountHelp.php:131 msgid "Client Id to filter on" -msgstr "" +msgstr "クライアントIDで検索" #: app/modules/api/Controllers/Help/AccountHelp.php:132 msgid "Array with tags id for filtering" -msgstr "" +msgstr "タグIDで検索" #: app/modules/api/Controllers/Help/AccountHelp.php:133 msgid "Filtering operator" -msgstr "" +msgstr "Filtering operator" #: app/modules/api/Controllers/Help/CategoryHelp.php:54 #: app/modules/api/Controllers/Help/CategoryHelp.php:67 #: app/modules/web/themes/material-blue/views/itemshow/category.inc:37 msgid "Category name" -msgstr "" +msgstr "カテゴリー名" #: app/modules/api/Controllers/Help/CategoryHelp.php:55 #: app/modules/api/Controllers/Help/CategoryHelp.php:68 #: app/modules/web/themes/material-blue/views/itemshow/category.inc:50 msgid "Category description" -msgstr "" +msgstr "カテゴリーの説明" #: app/modules/api/Controllers/Help/ClientHelp.php:54 #: app/modules/api/Controllers/Help/ClientHelp.php:68 #: app/modules/web/themes/material-blue/views/itemshow/client.inc:37 msgid "Client name" -msgstr "" +msgstr "クライアント名" #: app/modules/api/Controllers/Help/ClientHelp.php:55 #: app/modules/api/Controllers/Help/ClientHelp.php:69 #: app/modules/web/themes/material-blue/views/itemshow/client.inc:51 msgid "Client description" -msgstr "" +msgstr "クライアントの説明" #: app/modules/api/Controllers/Help/ClientHelp.php:56 #: app/modules/api/Controllers/Help/ClientHelp.php:70 @@ -462,87 +462,87 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/client.inc:76 #: app/modules/web/themes/material-blue/views/notification/notification.inc:119 msgid "Global" -msgstr "" +msgstr "グローバル" #: app/modules/api/Controllers/Help/TagHelp.php:43 #: app/modules/api/Controllers/Help/TagHelp.php:65 #: app/modules/api/Controllers/Help/TagHelp.php:89 msgid "Tag Id" -msgstr "" +msgstr "タグID" #: app/modules/api/Controllers/Help/TagHelp.php:54 #: app/modules/api/Controllers/Help/TagHelp.php:66 #: app/modules/web/themes/material-blue/views/itemshow/tag.inc:36 msgid "Tag name" -msgstr "" +msgstr "タグ名" #: app/modules/api/Controllers/Help/UserGroupHelp.php:54 #: app/modules/api/Controllers/Help/UserGroupHelp.php:68 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:40 msgid "Group name" -msgstr "" +msgstr "グループ名" #: app/modules/api/Controllers/Help/UserGroupHelp.php:55 #: app/modules/api/Controllers/Help/UserGroupHelp.php:69 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:54 msgid "Group description" -msgstr "" +msgstr "グループの説明" #: app/modules/api/Controllers/Help/UserGroupHelp.php:56 #: app/modules/api/Controllers/Help/UserGroupHelp.php:70 msgid "Array with users Id" -msgstr "" +msgstr "ユーザーID" #: app/modules/api/Controllers/TagController.php:65 msgid "Tag displayed" -msgstr "" +msgstr "タグを表示しました" #: app/modules/api/Controllers/TagController.php:93 #: app/modules/api/Controllers/TagController.php:98 #: app/modules/web/Controllers/TagController.php:259 msgid "Tag added" -msgstr "" +msgstr "タグを追加しました" #: app/modules/api/Controllers/TagController.php:122 #: app/modules/api/Controllers/TagController.php:127 #: app/modules/web/Controllers/TagController.php:294 msgid "Tag updated" -msgstr "" +msgstr "タグを更新しました" #: app/modules/api/Controllers/TagController.php:151 #: app/modules/api/Controllers/TagController.php:156 #: app/modules/web/Controllers/TagController.php:229 msgid "Tag removed" -msgstr "" +msgstr "タグを削除しました" #: app/modules/api/Controllers/UserGroupController.php:65 msgid "Group viewed" -msgstr "" +msgstr "グループを表示しました" #: app/modules/api/Controllers/UserGroupController.php:95 #: app/modules/api/Controllers/UserGroupController.php:100 #: app/modules/web/Controllers/UserGroupController.php:290 #: app/modules/web/Controllers/UserGroupController.php:294 msgid "Group added" -msgstr "" +msgstr "グループを追加しました" #: app/modules/api/Controllers/UserGroupController.php:126 #: app/modules/api/Controllers/UserGroupController.php:132 #: app/modules/web/Controllers/UserGroupController.php:333 #: app/modules/web/Controllers/UserGroupController.php:338 msgid "Group updated" -msgstr "" +msgstr "グループを更新しました" #: app/modules/api/Controllers/UserGroupController.php:156 #: app/modules/api/Controllers/UserGroupController.php:162 #: app/modules/web/Controllers/UserGroupController.php:251 #: app/modules/web/Controllers/UserGroupController.php:256 msgid "Group deleted" -msgstr "" +msgstr "グループを削除しました" #: app/modules/api/Init.php:156 msgid "Updating needed" -msgstr "" +msgstr "更新が必要です" #: app/modules/web/Controllers/AccountController.php:169 #: app/modules/web/Controllers/AccountController.php:236 @@ -554,11 +554,11 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:32 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:67 msgid "Account Details" -msgstr "" +msgstr "アカウントの詳細" #: app/modules/web/Controllers/AccountController.php:262 msgid "Link viewed" -msgstr "" +msgstr "Link viewed" #: app/modules/web/Controllers/AccountController.php:263 #: app/modules/web/Controllers/AccountController.php:668 @@ -582,51 +582,51 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:29 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:31 msgid "Account" -msgstr "" +msgstr "アカウント" #: app/modules/web/Controllers/AccountController.php:265 msgid "Agent" -msgstr "" +msgstr "エージェント" #: app/modules/web/Controllers/AccountController.php:266 msgid "HTTPS" -msgstr "" +msgstr "HTTPS" #: app/modules/web/Controllers/AccountController.php:266 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:215 msgid "ON" -msgstr "" +msgstr "ON" #: app/modules/web/Controllers/AccountController.php:266 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 msgid "OFF" -msgstr "" +msgstr "OFF" #: app/modules/web/Controllers/AccountController.php:267 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 msgid "IP" -msgstr "" +msgstr "IP" #: app/modules/web/Controllers/AccountController.php:268 #: app/modules/web/Controllers/AccountController.php:1084 #: app/modules/web/Controllers/PublicLinkController.php:273 #: lib/SP/Services/Upgrade/UpgradePublicLink.php:91 msgid "Link" -msgstr "" +msgstr "Link" #: app/modules/web/Controllers/AccountController.php:301 #: app/modules/web/Controllers/AccountController.php:353 #: app/modules/web/Controllers/Helpers/LayoutHelper.php:276 msgid "New Account" -msgstr "" +msgstr "アカウントの追加" #: app/modules/web/Controllers/AccountController.php:407 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 #: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:24 msgid "Edit Account" -msgstr "" +msgstr "アカウントの編集" #: app/modules/web/Controllers/AccountController.php:462 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 @@ -636,25 +636,25 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 msgid "Remove Account" -msgstr "" +msgstr "アカウントの削除" #: app/modules/web/Controllers/AccountController.php:515 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 msgid "Edit Account Password" -msgstr "" +msgstr "アカウントのパスワードを変更" #: app/modules/web/Controllers/AccountController.php:771 #: app/modules/web/Controllers/AccountController.php:808 msgid "Password copied" -msgstr "" +msgstr "パスワードをコピーしました" #: app/modules/web/Controllers/AccountController.php:979 #: app/modules/web/Controllers/AccountController.php:990 #: app/modules/web/Controllers/AccountHistoryManagerController.php:165 #: app/modules/web/Controllers/AccountHistoryManagerController.php:170 msgid "Account restored" -msgstr "" +msgstr "アカウントを復元しました" #: app/modules/web/Controllers/AccountController.php:1019 #: app/modules/web/Controllers/AccountController.php:1022 @@ -663,12 +663,12 @@ msgstr "" #: app/modules/web/Controllers/AccountManagerController.php:142 #: app/modules/web/Controllers/AccountManagerController.php:145 msgid "Accounts removed" -msgstr "" +msgstr "アカウントを削除しました" #: app/modules/web/Controllers/AccountController.php:1063 #: app/modules/web/Forms/NotificationForm.php:106 msgid "A description is needed" -msgstr "" +msgstr "説明を入力してください" #: app/modules/web/Controllers/AccountController.php:1079 #: lib/SP/Providers/Notification/NotificationHandler.php:127 @@ -676,11 +676,11 @@ msgstr "" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:49 #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:51 msgid "Request" -msgstr "" +msgstr "リクエスト" #: app/modules/web/Controllers/AccountController.php:1080 msgid "Requester" -msgstr "" +msgstr "Requester" #: app/modules/web/Controllers/AccountController.php:1083 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 @@ -694,29 +694,29 @@ msgstr "" #: app/modules/web/themes/material-blue/views/notification/notification.inc:72 #: app/modules/web/themes/material-blue/views/notification/notification.inc:82 msgid "Description" -msgstr "" +msgstr "Description" #: app/modules/web/Controllers/AccountController.php:1099 msgid "Request done" -msgstr "" +msgstr "リクエストを送信しました" #: app/modules/web/Controllers/AccountFavoriteController.php:57 msgid "Favorite added" -msgstr "" +msgstr "お気に入りに追加しました" #: app/modules/web/Controllers/AccountFavoriteController.php:77 msgid "Favorite deleted" -msgstr "" +msgstr "お気に入りから削除しました" #: app/modules/web/Controllers/AccountFileController.php:83 #: app/modules/web/Controllers/AccountFileController.php:146 msgid "File does not exist" -msgstr "" +msgstr "ファイルが存在しません" #: app/modules/web/Controllers/AccountFileController.php:96 #: app/modules/web/Controllers/AccountFileController.php:112 msgid "File viewed" -msgstr "" +msgstr "ファイルを表示しました" #: app/modules/web/Controllers/AccountFileController.php:97 #: app/modules/web/Controllers/AccountFileController.php:113 @@ -731,11 +731,11 @@ msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:133 #: app/modules/web/themes/material-blue/views/config/import.inc:80 msgid "File" -msgstr "" +msgstr "ファイル" #: app/modules/web/Controllers/AccountFileController.php:126 msgid "File not supported for preview" -msgstr "" +msgstr "このファイルはプレビューできません" #: app/modules/web/Controllers/AccountFileController.php:151 #: app/modules/web/Controllers/ConfigBackupController.php:164 @@ -744,43 +744,43 @@ msgstr "" #: app/modules/web/Controllers/ConfigGeneralController.php:211 #: app/modules/web/Controllers/ConfigGeneralController.php:252 msgid "File downloaded" -msgstr "" +msgstr "ダウンロード" #: app/modules/web/Controllers/AccountFileController.php:197 msgid "INVALID QUERY" -msgstr "" +msgstr "クエリーの文法エラー" #: app/modules/web/Controllers/AccountFileController.php:203 msgid "There aren't any allowed MIME types" -msgstr "" +msgstr "このMIME typeは許可されていません" #: app/modules/web/Controllers/AccountFileController.php:218 msgid "Invalid file" -msgstr "" +msgstr "不正なファイルです" #: app/modules/web/Controllers/AccountFileController.php:220 #, php-format msgid "File: %s" -msgstr "" +msgstr "File: %s" #: app/modules/web/Controllers/AccountFileController.php:232 msgid "File size exceeded" -msgstr "" +msgstr "ファイルが大きすぎます" #: app/modules/web/Controllers/AccountFileController.php:234 #, php-format msgid "Maximum size: %d KB" -msgstr "" +msgstr "ファイルサイズの上限: %d KB" #: app/modules/web/Controllers/AccountFileController.php:240 #: lib/SP/Services/Import/FileImport.php:106 msgid "Internal error while reading the file" -msgstr "" +msgstr "ファイルの読み込みエラーです" #: app/modules/web/Controllers/AccountFileController.php:252 #: app/modules/web/Controllers/AccountFileController.php:261 msgid "File saved" -msgstr "" +msgstr "ファイルを保存しました" #: app/modules/web/Controllers/AccountFileController.php:256 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 @@ -798,23 +798,23 @@ msgstr "" #: app/modules/web/themes/material-blue/views/notification/notification.inc:31 #: app/modules/web/themes/material-blue/views/notification/notification.inc:39 msgid "Type" -msgstr "" +msgstr "Type" #: app/modules/web/Controllers/AccountFileController.php:257 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Size" -msgstr "" +msgstr "Size" #: app/modules/web/Controllers/AccountFileController.php:295 #: lib/SP/Services/Import/FileImport.php:95 msgid "File type not allowed" -msgstr "" +msgstr "この種類のファイルは許可されていません" #: app/modules/web/Controllers/AccountFileController.php:297 #: lib/SP/Services/Import/FileImport.php:97 #, php-format msgid "MIME type: %s" -msgstr "" +msgstr "MIME type: %s" #: app/modules/web/Controllers/AccountFileController.php:316 #: app/modules/web/Controllers/AccountHistoryManagerController.php:71 @@ -907,62 +907,62 @@ msgstr "" #: lib/SP/Core/Acl/UnauthorizedActionException.php:47 #: lib/SP/Util/ErrorUtil.php:161 msgid "You don't have permission to do this operation" -msgstr "" +msgstr "この操作を行う権限がありません" #: app/modules/web/Controllers/AccountFileController.php:379 #: app/modules/web/Controllers/AccountFileController.php:382 msgid "Files deleted" -msgstr "" +msgstr "ファイルを削除しました" #: app/modules/web/Controllers/AccountFileController.php:387 msgid "File deleted" -msgstr "" +msgstr "ファイルを削除しました" #: app/modules/web/Controllers/AccountFileController.php:393 msgid "File Deleted" -msgstr "" +msgstr "ファイルを削除しました" #: app/modules/web/Controllers/AccountFileController.php:431 msgid "Files management disabled" -msgstr "" +msgstr "ファイル管理機能は使えません" #: app/modules/web/Controllers/AccountFileController.php:450 msgid "There are no linked files for the account" -msgstr "" +msgstr "このアカウントに紐づいているファイルはありません" #: app/modules/web/Controllers/AccountManagerController.php:198 #: app/modules/web/Controllers/AccountManagerController.php:201 #: lib/SP/Services/Account/AccountCryptService.php:198 msgid "Accounts updated" -msgstr "" +msgstr "アカウントを更新しました" #: app/modules/web/Controllers/AccountManagerController.php:223 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 msgid "Bulk Update" -msgstr "" +msgstr "複数件更新" #: app/modules/web/Controllers/AuthTokenController.php:124 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "New Authorization" -msgstr "" +msgstr "New Authorization" #: app/modules/web/Controllers/AuthTokenController.php:191 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Edit Authorization" -msgstr "" +msgstr "Edit Authorization" #: app/modules/web/Controllers/AuthTokenController.php:234 #: app/modules/web/Controllers/AuthTokenController.php:237 msgid "Authorizations deleted" -msgstr "" +msgstr "Authorizations deleted" #: app/modules/web/Controllers/AuthTokenController.php:247 #: app/modules/web/Controllers/AuthTokenController.php:251 msgid "Authorization deleted" -msgstr "" +msgstr "Authorization deleted" #: app/modules/web/Controllers/AuthTokenController.php:248 #: app/modules/web/Controllers/AuthTokenController.php:324 @@ -970,44 +970,44 @@ msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:376 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:72 msgid "Authorization" -msgstr "" +msgstr "Authorization" #: app/modules/web/Controllers/AuthTokenController.php:285 msgid "Authorization added" -msgstr "" +msgstr "Authorization added" #: app/modules/web/Controllers/AuthTokenController.php:323 #: app/modules/web/Controllers/AuthTokenController.php:332 #: app/modules/web/Controllers/AuthTokenController.php:339 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 msgid "Authorization updated" -msgstr "" +msgstr "Authorization updated" #: app/modules/web/Controllers/AuthTokenController.php:367 msgid "View Authorization" -msgstr "" +msgstr "View Authorization" #: app/modules/web/Controllers/AuthTokenController.php:375 msgid "Authorization viewed" -msgstr "" +msgstr "Authorization viewed" #: app/modules/web/Controllers/CategoryController.php:120 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 #: app/modules/web/themes/material-blue/views/account/account.inc:135 msgid "New Category" -msgstr "" +msgstr "カテゴリの追加" #: app/modules/web/Controllers/CategoryController.php:186 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 msgid "Edit Category" -msgstr "" +msgstr "カテゴリーの編集" #: app/modules/web/Controllers/CategoryController.php:229 #: app/modules/web/Controllers/CategoryController.php:232 msgid "Categories deleted" -msgstr "" +msgstr "カテゴリーの削除" #: app/modules/web/Controllers/CategoryController.php:243 #: app/modules/web/Controllers/CategoryController.php:281 @@ -1026,53 +1026,53 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:63 msgid "Category" -msgstr "" +msgstr "カテゴリー" #: app/modules/web/Controllers/CategoryController.php:356 msgid "View Category" -msgstr "" +msgstr "カテゴリーを表示" #: app/modules/web/Controllers/ClientController.php:121 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 #: app/modules/web/themes/material-blue/views/account/account.inc:109 msgid "New Client" -msgstr "" +msgstr "クライアントを追加" #: app/modules/web/Controllers/ClientController.php:187 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 msgid "Edit Client" -msgstr "" +msgstr "クライアントを編集" #: app/modules/web/Controllers/ClientController.php:228 #: app/modules/web/Controllers/ClientController.php:231 msgid "Clients deleted" -msgstr "" +msgstr "クライアントを削除" #: app/modules/web/Controllers/ClientController.php:347 msgid "View Client" -msgstr "" +msgstr "クライアントを表示" #: app/modules/web/Controllers/ConfigAccountController.php:74 msgid "Maximum size per file is 16MB" -msgstr "" +msgstr "ファイルの最大サイズは16MBです" #: app/modules/web/Controllers/ConfigAccountController.php:82 msgid "Files enabled" -msgstr "" +msgstr "ファイルを有効化しました" #: app/modules/web/Controllers/ConfigAccountController.php:87 msgid "Files disabled" -msgstr "" +msgstr "ファイルを無効化しました" #: app/modules/web/Controllers/ConfigAccountController.php:100 msgid "Public links enabled" -msgstr "" +msgstr "共有リンクを有効化" #: app/modules/web/Controllers/ConfigAccountController.php:105 msgid "Public links disabled" -msgstr "" +msgstr "共有リンクを無効化" #: app/modules/web/Controllers/ConfigBackupController.php:59 #: app/modules/web/Controllers/ConfigBackupController.php:197 @@ -1088,18 +1088,18 @@ msgstr "" #: app/modules/web/Forms/UserForm.php:153 #: app/modules/web/Forms/UserForm.php:171 msgid "Ey, this is a DEMO!!" -msgstr "" +msgstr "これはデモです!" #: app/modules/web/Controllers/ConfigBackupController.php:92 #: app/modules/web/Controllers/UserPassResetController.php:203 #: app/modules/web/Forms/AccountForm.php:136 #: app/modules/web/Forms/UserForm.php:161 msgid "Passwords do not match" -msgstr "" +msgstr "パスワードが一致しません" #: app/modules/web/Controllers/ConfigBackupController.php:123 msgid "Verification of exported data finished" -msgstr "" +msgstr "エクスポートが完了しました" #: app/modules/web/Controllers/ConfigBackupController.php:124 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:124 @@ -1110,24 +1110,24 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:61 #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:41 msgid "Version" -msgstr "" +msgstr "Version" #: app/modules/web/Controllers/ConfigBackupController.php:125 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 #: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:21 #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:106 msgid "Encrypted" -msgstr "" +msgstr "Encrypted" #: app/modules/web/Controllers/ConfigBackupController.php:125 #: app/modules/web/themes/material-blue/views/config/info.inc:152 msgid "Yes" -msgstr "" +msgstr "Yes" #: app/modules/web/Controllers/ConfigBackupController.php:125 #: app/modules/web/themes/material-blue/views/config/info.inc:152 msgid "No" -msgstr "" +msgstr "No" #: app/modules/web/Controllers/ConfigBackupController.php:126 #: app/modules/web/Controllers/ConfigManagerController.php:203 @@ -1138,21 +1138,21 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:33 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:429 msgid "Accounts" -msgstr "" +msgstr "アカウント" #: app/modules/web/Controllers/ConfigBackupController.php:127 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 #: lib/SP/Services/CustomField/CustomFieldDefService.php:81 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:361 msgid "Clients" -msgstr "" +msgstr "クライアント" #: app/modules/web/Controllers/ConfigBackupController.php:128 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 #: lib/SP/Services/CustomField/CustomFieldDefService.php:80 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:327 msgid "Categories" -msgstr "" +msgstr "カテゴリー" #: app/modules/web/Controllers/ConfigBackupController.php:129 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:94 @@ -1161,19 +1161,19 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:109 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:344 msgid "Tags" -msgstr "" +msgstr "タグ" #: app/modules/web/Controllers/ConfigDokuWikiController.php:66 msgid "Missing DokuWiki parameters" -msgstr "" +msgstr "DokuWikiの文法ではありません" #: app/modules/web/Controllers/ConfigDokuWikiController.php:78 msgid "DokuWiki enabled" -msgstr "" +msgstr "DokuWikiを有効化" #: app/modules/web/Controllers/ConfigDokuWikiController.php:83 msgid "DokuWiki disabled" -msgstr "" +msgstr "DokuWikiを無効化" #: app/modules/web/Controllers/ConfigEncryptionController.php:80 #: app/modules/web/Controllers/ConfigEncryptionController.php:180 @@ -1183,7 +1183,7 @@ msgstr "" #: lib/SP/Services/User/UpdatedMasterPassException.php:46 #: lib/SP/Util/ErrorUtil.php:165 msgid "Master password updated" -msgstr "" +msgstr "マスターパスワードを更新しました" #: app/modules/web/Controllers/ConfigEncryptionController.php:81 #: app/modules/web/Controllers/ConfigEncryptionController.php:181 @@ -1191,197 +1191,199 @@ msgstr "" #: lib/SP/Services/User/UpdatedMasterPassException.php:46 #: lib/SP/Util/ErrorUtil.php:166 msgid "Please, restart the session for update it" -msgstr "" +msgstr "変更を適用するにはログインし直してください" #: app/modules/web/Controllers/ConfigEncryptionController.php:88 msgid "Master password not entered" -msgstr "" +msgstr "マスターパスワードが入力されていません" #: app/modules/web/Controllers/ConfigEncryptionController.php:95 msgid "The password update must be confirmed" -msgstr "" +msgstr "入力されたパスワードが一致しません" #: app/modules/web/Controllers/ConfigEncryptionController.php:102 msgid "Passwords are the same" -msgstr "" +msgstr "入力されたパスワードが一致しました" #: app/modules/web/Controllers/ConfigEncryptionController.php:109 msgid "Master passwords do not match" -msgstr "" +msgstr "マスターパスワードが一致しません" #: app/modules/web/Controllers/ConfigEncryptionController.php:116 msgid "The current master password does not match" -msgstr "" +msgstr "現在のマスターパスワードと一致しません" #: app/modules/web/Controllers/ConfigEncryptionController.php:123 #: app/modules/web/themes/material-blue/views/config/encryption.inc:91 msgid "Maintenance mode not enabled" -msgstr "" +msgstr "メンテナンスモードが有効化されていません" #: app/modules/web/Controllers/ConfigEncryptionController.php:124 #: app/modules/web/themes/material-blue/views/config/encryption.inc:91 msgid "Please, enable it to avoid unwanted behavior from other sessions" msgstr "" +"他のユーザーがログインしていると予想外の変更が行われる可能性があるのでメンテ" +"ナンスモードを有効化してください" #: app/modules/web/Controllers/ConfigEncryptionController.php:174 msgid "Error while saving the Master Password's hash" -msgstr "" +msgstr "マスターパスワードのハッシュを保存する時にエラーが発生しました" #: app/modules/web/Controllers/ConfigEncryptionController.php:201 #: app/modules/web/Controllers/ConfigEncryptionController.php:203 msgid "Master password hash updated" -msgstr "" +msgstr "マスターパスワードのハッシュを更新しました" #: app/modules/web/Controllers/ConfigEncryptionController.php:210 msgid "Error while updating the master password hash" -msgstr "" +msgstr "マスターパスワードのハッシュを更新する時にエラーが発生しました" #: app/modules/web/Controllers/ConfigEncryptionController.php:239 #: app/modules/web/Controllers/ConfigEncryptionController.php:249 #: app/modules/web/Controllers/ConfigEncryptionController.php:255 msgid "Temporary password generated" -msgstr "" +msgstr "仮マスターパスワードの発行" #: app/modules/web/Controllers/ConfigEncryptionController.php:240 #: app/modules/web/Controllers/ConfigMailController.php:164 #: app/modules/web/Controllers/ConfigMailController.php:170 #: lib/SP/Services/Mail/MailService.php:150 msgid "Email sent" -msgstr "" +msgstr "メールの送信" #: app/modules/web/Controllers/ConfigEncryptionController.php:250 #: lib/SP/Services/Mail/MailService.php:82 #: lib/SP/Services/Mail/MailService.php:160 msgid "Error while sending the email" -msgstr "" +msgstr "メールの送信ん失敗しました" #: app/modules/web/Controllers/ConfigGeneralController.php:102 msgid "Missing remote syslog parameters" -msgstr "" +msgstr "remote syslogの設定を確認してください" #: app/modules/web/Controllers/ConfigGeneralController.php:110 msgid "Remote syslog enabled" -msgstr "" +msgstr "remote syslogを有効化しました" #: app/modules/web/Controllers/ConfigGeneralController.php:115 msgid "Remote syslog disabled" -msgstr "" +msgstr "remote syslogを無効にしました" #: app/modules/web/Controllers/ConfigGeneralController.php:128 msgid "Missing Proxy parameters " -msgstr "" +msgstr "Proxy設定を確認してください " #: app/modules/web/Controllers/ConfigGeneralController.php:142 msgid "Proxy enabled" -msgstr "" +msgstr "Proxyを有効化しました" #: app/modules/web/Controllers/ConfigGeneralController.php:147 msgid "Proxy disabled" -msgstr "" +msgstr "Proxyを無効にしました" #: app/modules/web/Controllers/ConfigGeneralController.php:166 msgid "Auth Basic enabled" -msgstr "" +msgstr "Basic認証を有効化しました" #: app/modules/web/Controllers/ConfigGeneralController.php:172 msgid "Auth Basic disabled" -msgstr "" +msgstr "Basic認証を無効にしました" #: app/modules/web/Controllers/ConfigImportController.php:80 msgid "Accounts imported" -msgstr "" +msgstr "アカウントのインポート" #: app/modules/web/Controllers/ConfigImportController.php:86 #: app/modules/web/Controllers/ConfigLdapController.php:279 msgid "Import finished" -msgstr "" +msgstr "インポートが完了しました" #: app/modules/web/Controllers/ConfigImportController.php:87 #: app/modules/web/Controllers/ConfigImportController.php:94 #: lib/SP/Services/Backup/FileBackupService.php:128 #: lib/SP/Services/Export/XmlExportService.php:206 msgid "Please check out the event log for more details" -msgstr "" +msgstr "詳細はevent logを確認してください" #: app/modules/web/Controllers/ConfigImportController.php:93 msgid "No accounts were imported" -msgstr "" +msgstr "インポートできるアカウントがありません" #: app/modules/web/Controllers/ConfigLdapController.php:76 #: app/modules/web/Controllers/ConfigLdapController.php:152 #: app/modules/web/Controllers/ConfigLdapController.php:191 msgid "Missing LDAP parameters" -msgstr "" +msgstr "LDAP設定を確認してください" #: app/modules/web/Controllers/ConfigLdapController.php:95 msgid "LDAP enabled" -msgstr "" +msgstr "LDAPを有効化しました" #: app/modules/web/Controllers/ConfigLdapController.php:100 msgid "LDAP disabled" -msgstr "" +msgstr "LDAPを無効にしました" #: app/modules/web/Controllers/ConfigLdapController.php:102 #: app/modules/web/Controllers/ConfigMailController.php:114 msgid "No changes" -msgstr "" +msgstr "変更はありません" #: app/modules/web/Controllers/ConfigLdapController.php:126 #: app/modules/web/Controllers/ConfigLdapController.php:257 msgid "Wrong LDAP parameters" -msgstr "" +msgstr "LDAP設定を確認してください" #: app/modules/web/Controllers/ConfigLdapController.php:162 #: app/modules/web/Controllers/ConfigLdapController.php:207 msgid "Results" -msgstr "" +msgstr "Results" #: app/modules/web/Controllers/ConfigLdapController.php:167 #: app/modules/web/Controllers/ConfigLdapController.php:213 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:99 msgid "LDAP connection OK" -msgstr "" +msgstr "LDAP connection OK" #: app/modules/web/Controllers/ConfigLdapController.php:168 #: app/modules/web/Controllers/ConfigLdapController.php:214 #, php-format msgid "Objects found: %d" -msgstr "" +msgstr "Objects found: %d" #: app/modules/web/Controllers/ConfigLdapController.php:264 msgid "LDAP Import" -msgstr "" +msgstr "LDAP Import" #: app/modules/web/Controllers/ConfigLdapController.php:283 msgid "There aren't any objects to synchronize" -msgstr "" +msgstr "There aren't any objects to synchronize" #: app/modules/web/Controllers/ConfigLdapController.php:288 msgid "LDAP users import finished" -msgstr "" +msgstr "LDAPからユーザーをインポートしました" #: app/modules/web/Controllers/ConfigLdapController.php:290 #, php-format msgid "Imported users: %d / %d" -msgstr "" +msgstr "Imported users: %d / %d" #: app/modules/web/Controllers/ConfigLdapController.php:291 #, php-format msgid "Errors: %d" -msgstr "" +msgstr "Errors: %d" #: app/modules/web/Controllers/ConfigMailController.php:77 #: app/modules/web/Controllers/ConfigMailController.php:150 msgid "Missing Mail parameters" -msgstr "" +msgstr "メール設定を確認してください" #: app/modules/web/Controllers/ConfigMailController.php:105 msgid "Mail enabled" -msgstr "" +msgstr "メールを有効化しました" #: app/modules/web/Controllers/ConfigMailController.php:112 msgid "Mail disabled" -msgstr "" +msgstr "メールを無効にしました" #: app/modules/web/Controllers/ConfigMailController.php:165 #: lib/SP/Services/Mail/MailService.php:151 @@ -1390,7 +1392,7 @@ msgstr "" #: app/modules/web/Controllers/ConfigMailController.php:171 msgid "Please, check your inbox" -msgstr "" +msgstr "届いたメールを確認してください" #: app/modules/web/Controllers/ConfigManagerController.php:173 #: app/modules/web/themes/material-blue/views/install/index.inc:144 @@ -1398,94 +1400,94 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:484 msgid "General" -msgstr "" +msgstr "一般" #: app/modules/web/Controllers/ConfigManagerController.php:218 #: app/modules/web/themes/material-blue/views/config/wiki.inc:22 msgid "Wiki" -msgstr "" +msgstr "Wiki" #: app/modules/web/Controllers/ConfigManagerController.php:245 msgid "LDAP" -msgstr "" +msgstr "LDAP" #: app/modules/web/Controllers/ConfigManagerController.php:271 #: app/modules/web/themes/material-blue/views/config/mail.inc:18 msgid "Mail" -msgstr "" +msgstr "メール" #: app/modules/web/Controllers/ConfigManagerController.php:312 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:501 msgid "Encryption" -msgstr "" +msgstr "Encryption" #: app/modules/web/Controllers/ConfigManagerController.php:340 #: app/modules/web/themes/material-blue/views/config/backup.inc:68 msgid "There aren't any backups available" -msgstr "" +msgstr "バックアップが作成されていません" #: app/modules/web/Controllers/ConfigManagerController.php:350 #: app/modules/web/themes/material-blue/views/config/backup.inc:142 msgid "No export file found" -msgstr "" +msgstr "エクスポートできる項目がありません" #: app/modules/web/Controllers/ConfigManagerController.php:353 #: app/modules/web/themes/material-blue/views/config/backup.inc:31 #: app/modules/web/themes/material-blue/views/config/backup.inc:86 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:518 msgid "Backup" -msgstr "" +msgstr "Backup" #: app/modules/web/Controllers/ConfigManagerController.php:376 msgid "Import Accounts" -msgstr "" +msgstr "Import Accounts" #: app/modules/web/Controllers/ConfigManagerController.php:398 msgid "Not installed" -msgstr "" +msgstr "インストールされていません" #: app/modules/web/Controllers/ConfigManagerController.php:408 #: app/modules/web/themes/material-blue/inc/Icons.php:62 msgid "Information" -msgstr "" +msgstr "Information" #: app/modules/web/Controllers/ConfigWikiController.php:64 msgid "Missing Wiki parameters" -msgstr "" +msgstr "Wikiの文法エラー" #: app/modules/web/Controllers/ConfigWikiController.php:74 msgid "Wiki enabled" -msgstr "" +msgstr "Wikiを有効化しました" #: app/modules/web/Controllers/ConfigWikiController.php:79 msgid "Wiki disabled" -msgstr "" +msgstr "Wikiを無効にしました" #: app/modules/web/Controllers/CustomFieldController.php:121 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "New Field" -msgstr "" +msgstr "新規項目" #: app/modules/web/Controllers/CustomFieldController.php:185 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Edit Field" -msgstr "" +msgstr "項目の編集" #: app/modules/web/Controllers/CustomFieldController.php:223 #: app/modules/web/Controllers/CustomFieldController.php:226 msgid "Fields deleted" -msgstr "" +msgstr "項目の削除" #: app/modules/web/Controllers/CustomFieldController.php:232 msgid "Field deleted" -msgstr "" +msgstr "項目の削除" #: app/modules/web/Controllers/CustomFieldController.php:264 #: app/modules/web/Controllers/CustomFieldController.php:268 msgid "Field added" -msgstr "" +msgstr "項目の追加" #: app/modules/web/Controllers/CustomFieldController.php:265 #: app/modules/web/Controllers/CustomFieldController.php:306 @@ -1493,7 +1495,7 @@ msgstr "" #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:190 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:254 msgid "Field" -msgstr "" +msgstr "項目" #: app/modules/web/Controllers/CustomFieldController.php:305 #: app/modules/web/Controllers/CustomFieldController.php:309 @@ -1502,24 +1504,24 @@ msgstr "" #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:189 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:253 msgid "Field updated" -msgstr "" +msgstr "項目を更新" #: app/modules/web/Controllers/CustomFieldController.php:337 msgid "View Field" -msgstr "" +msgstr "項目を表示" #: app/modules/web/Controllers/ErrorController.php:109 msgid "Application on maintenance" -msgstr "" +msgstr "現在メンテナンス中です" #: app/modules/web/Controllers/ErrorController.php:110 msgid "It will be running shortly" -msgstr "" +msgstr "もうしばらくお待ちください" #: app/modules/web/Controllers/ErrorController.php:125 #: lib/SP/Services/Install/MySQL.php:363 msgid "Error while checking the database" -msgstr "" +msgstr "データベースのチェック時にエラーが見つかりました" #: app/modules/web/Controllers/ErrorController.php:126 #: app/modules/web/Controllers/ErrorController.php:142 @@ -1532,7 +1534,7 @@ msgstr "" #: lib/SP/Util/ErrorUtil.php:170 lib/SP/Util/ErrorUtil.php:177 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:17 msgid "Please contact to the administrator" -msgstr "" +msgstr "管理者に連絡して対応を依頼してください" #: app/modules/web/Controllers/ErrorController.php:141 #: lib/SP/Services/Install/MySQL.php:99 @@ -1541,17 +1543,17 @@ msgstr "" #: lib/SP/Storage/Database/MySQLHandler.php:166 #: lib/SP/Storage/Database/MySQLHandler.php:178 msgid "Unable to connect to DB" -msgstr "" +msgstr "データベースにつながりません" #: app/modules/web/Controllers/EventlogController.php:134 #: app/modules/web/Controllers/EventlogController.php:137 msgid "Event log cleared" -msgstr "" +msgstr "Event logを削除します" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:89 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:90 msgid "View Current" -msgstr "" +msgstr "現在" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 @@ -1579,7 +1581,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:60 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:231 msgid "Back" -msgstr "" +msgstr "Back" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 @@ -1589,29 +1591,29 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 msgid "Restore account from this point" -msgstr "" +msgstr "この時点のアカウントを復元する" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 #: app/modules/web/themes/material-blue/inc/Icons.php:50 #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:150 msgid "Save" -msgstr "" +msgstr "Save" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 msgid "Update Public Link" -msgstr "" +msgstr "共有リンクを更新しました" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 msgid "Delete Public Link" -msgstr "" +msgstr "共有リンクを削除しました" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 msgid "Create Public Link" -msgstr "" +msgstr "共有リンクを作成しました" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 @@ -1620,29 +1622,29 @@ msgstr "" #: app/modules/web/themes/material-blue/inc/Icons.php:33 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 msgid "View password" -msgstr "" +msgstr "パスワードを表示" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:440 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:441 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:485 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:486 msgid "Copy Password to Clipboard" -msgstr "" +msgstr "パスワードをコピー" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 msgid "Copy Account" -msgstr "" +msgstr "アカウントを複製" #: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:75 msgid "Account Password" -msgstr "" +msgstr "アカウントのパスワード" #: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:102 #: lib/SP/Core/Acl/AccountPermissionException.php:46 #: lib/SP/Util/ErrorUtil.php:153 msgid "You don't have permission to access this account" -msgstr "" +msgstr "このアカウントにアクセスする権限がありません" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:186 #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:187 @@ -1651,15 +1653,15 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:243 msgid "Sort by Client" -msgstr "" +msgstr "クライアント名順" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:250 msgid "Sort by Name" -msgstr "" +msgstr "名前順" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:257 msgid "Sort by Category" -msgstr "" +msgstr "カテゴリー名順" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:263 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 @@ -1717,11 +1719,11 @@ msgstr "" #: app/modules/web/themes/material-blue/views/notification/notification.inc:96 #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:22 msgid "User" -msgstr "" +msgstr "ユーザー" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:264 msgid "Sort by Username" -msgstr "" +msgstr "ユーザー名順" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:270 #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:61 @@ -1732,11 +1734,11 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:145 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:91 msgid "URL / IP" -msgstr "" +msgstr "URL / IP" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:271 msgid "Sort by URL / IP" -msgstr "" +msgstr "URL / IP順" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:79 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:80 @@ -1769,14 +1771,14 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 msgid "Delete Selected" -msgstr "" +msgstr "選択項目を削除しました" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:184 #: app/modules/web/themes/material-blue/views/account/details.inc:48 #: app/modules/web/themes/material-blue/views/account/details.inc:50 msgid "Owner" -msgstr "" +msgstr "オーナー" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:208 @@ -1785,16 +1787,16 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:93 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:95 msgid "Main Group" -msgstr "" +msgstr "Main Group" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 msgid "Search for Account" -msgstr "" +msgstr "アカウント検索" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 msgid "Accounts (H)" -msgstr "" +msgstr "アカウントの変更履歴" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:127 @@ -1807,26 +1809,26 @@ msgstr "" #: app/modules/web/themes/material-blue/views/notification/notification.inc:66 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:42 msgid "Date" -msgstr "" +msgstr "日付" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:131 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:109 msgid "Status" -msgstr "" +msgstr "ステータス" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:129 msgid "Modified" -msgstr "" +msgstr "変更" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:130 msgid "Removed" -msgstr "" +msgstr "削除" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 msgid "Account Restore" -msgstr "" +msgstr "戻す" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 @@ -1838,79 +1840,79 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:44 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 msgid "Action" -msgstr "" +msgstr "アクション" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 msgid "Search for Token" -msgstr "" +msgstr "検索用のトークン" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:174 msgid "View Authorization token" -msgstr "" +msgstr "トークンを表示する" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:207 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:208 msgid "Delete Authorization" -msgstr "" +msgstr "許可を取り消す" #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 msgid "Search for Category" -msgstr "" +msgstr "カテゴリーを検索する" #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 msgid "Delete Category" -msgstr "" +msgstr "カテゴリーを削除" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 msgid "YES" -msgstr "" +msgstr "YES" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 msgid "NO" -msgstr "" +msgstr "NO" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 msgid "Search for Client" -msgstr "" +msgstr "クライアントを検索" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 msgid "Delete Client" -msgstr "" +msgstr "クライアントを削除" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 #: app/modules/web/themes/material-blue/views/account/account.inc:41 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 msgid "Custom Fields" -msgstr "" +msgstr "カスタムフィールド" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:61 msgid "Module" -msgstr "" +msgstr "モジュール" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:110 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:112 msgid "Properties" -msgstr "" +msgstr "プロパティ" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:144 msgid "Search for Field" -msgstr "" +msgstr "フィールドを検索" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:194 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:195 msgid "Delete Field" -msgstr "" +msgstr "フィールドを削除" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 #: app/modules/web/themes/material-blue/views/eventlog/index.inc:3 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:556 msgid "Event Log" -msgstr "" +msgstr "Event Log" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 #: app/modules/web/Controllers/ItemPresetController.php:307 @@ -1919,42 +1921,42 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/details.inc:103 #: app/modules/web/themes/material-blue/views/account/details.inc:105 msgid "ID" -msgstr "" +msgstr "ID" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:100 msgid "Date / Time" -msgstr "" +msgstr "Date / Time" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:101 msgid "Level" -msgstr "" +msgstr "Level" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:102 msgid "Event" -msgstr "" +msgstr "Event" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:109 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:40 msgid "Login" -msgstr "" +msgstr "ログイン" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 msgid "Search for Events" -msgstr "" +msgstr "イベントを検索" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:181 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:182 #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:178 #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:179 msgid "Refresh" -msgstr "" +msgstr "Refresh" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:200 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:201 msgid "Clear the event log out" -msgstr "" +msgstr "Event logをクリア" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:94 #: app/modules/web/themes/material-blue/views/account/account.inc:51 @@ -1962,33 +1964,33 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "Files" -msgstr "" +msgstr "ファイル" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:145 msgid "Search for File" -msgstr "" +msgstr "ファイルを検索" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:160 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:161 #: app/modules/web/themes/material-blue/views/account/files-list.inc:59 msgid "View File" -msgstr "" +msgstr "ファイルを表示" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:178 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:179 #: app/modules/web/themes/material-blue/views/account/files-list.inc:50 msgid "Download File" -msgstr "" +msgstr "ファイルをダウンロード" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:199 #: app/modules/web/themes/material-blue/views/account/files-list.inc:42 msgid "Delete File" -msgstr "" +msgstr "ファイルを削除" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:97 msgid "Preset Values" -msgstr "" +msgstr "プリセット" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:111 @@ -2015,7 +2017,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:164 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:166 msgid "Group" -msgstr "" +msgstr "グループ" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:110 @@ -2026,17 +2028,17 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:146 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:148 msgid "Profile" -msgstr "" +msgstr "プロファイル" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:96 msgid "Priority" -msgstr "" +msgstr "プロパティー" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:137 msgid "Forced" -msgstr "" +msgstr "Forced" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 msgid "Search for Value" @@ -2049,34 +2051,34 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "New Permission Preset" -msgstr "" +msgstr "新規権限のプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:89 msgid "Private Account Preset" -msgstr "" +msgstr "プライベートアカウントのプリセット" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:188 msgid "New Private Account Preset" -msgstr "" +msgstr "新しいプライベートアカウントのプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:105 msgid "Session Timeout Preset" -msgstr "" +msgstr "セッションの有効期限のプリセット" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:212 msgid "New Session Timeout Preset" -msgstr "" +msgstr "新しいセッションの有効期限のプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:120 msgid "Account Password Preset" -msgstr "" +msgstr "アカウントのパスワードのプリセット" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:236 msgid "New Account Password Preset" -msgstr "" +msgstr "新しいアカウントのパスワードのプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 @@ -2094,7 +2096,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:119 #: app/modules/web/themes/material-blue/views/notification/index.inc:3 msgid "Notifications" -msgstr "" +msgstr "通知" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:129 #: app/modules/web/themes/material-blue/views/notification/notification.inc:44 @@ -2106,28 +2108,28 @@ msgstr "" #: app/modules/web/themes/material-blue/views/notification/notification.inc:133 #: app/modules/web/themes/material-blue/views/notification/notification.inc:137 msgid "Read" -msgstr "" +msgstr "Read" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:154 #: app/modules/web/themes/material-blue/views/notification/notification.inc:128 msgid "Only Admins" -msgstr "" +msgstr "Only Admins" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:171 msgid "Search for Notification" -msgstr "" +msgstr "通知を検索" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:187 #: app/modules/web/Controllers/NotificationController.php:204 msgid "New Notification" -msgstr "" +msgstr "新しい通知" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:204 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:205 #: app/modules/web/Controllers/NotificationController.php:121 msgid "View Notification" -msgstr "" +msgstr "通知を表示" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:234 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:235 @@ -2149,21 +2151,21 @@ msgstr "" #: app/modules/web/Controllers/Helpers/LayoutHelper.php:332 #: app/modules/web/themes/material-blue/views/plugin/index.inc:3 msgid "Plugins" -msgstr "" +msgstr "Plugins" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:108 #: lib/SP/Plugin/PluginManager.php:208 lib/SP/Plugin/PluginManager.php:264 #: lib/SP/Plugin/PluginManager.php:422 msgid "Plugin" -msgstr "" +msgstr "Plugin" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:125 msgid "Unavailable" -msgstr "" +msgstr "利用できません" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:141 msgid "Search for Plugin" -msgstr "" +msgstr "プラグインを検索" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:156 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:157 @@ -2174,12 +2176,12 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:174 msgid "Enable" -msgstr "" +msgstr "Enable" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:192 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:193 msgid "Disable" -msgstr "" +msgstr "Disable" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:211 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:212 @@ -2189,31 +2191,31 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:231 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:232 msgid "Delete Plugin" -msgstr "" +msgstr "プラグインを削除" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 #: app/modules/web/themes/material-blue/views/account/account.inc:61 msgid "Links" -msgstr "" +msgstr "Links" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:59 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:61 msgid "Creation Date" -msgstr "" +msgstr "作成日" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:67 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:69 msgid "Expiry Date " -msgstr "" +msgstr "有効期限" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:45 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:49 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:53 msgid "Notify" -msgstr "" +msgstr "通知" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 #: app/modules/web/themes/material-blue/views/account/details.inc:20 @@ -2222,54 +2224,54 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:83 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:85 msgid "Visits" -msgstr "" +msgstr "閲覧者" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:151 msgid "Search for Link" -msgstr "" +msgstr "共有リンクを検索" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:166 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:167 msgid "New Link" -msgstr "" +msgstr "共有リンクを発行" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:184 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:185 #: app/modules/web/Controllers/PublicLinkController.php:381 msgid "View Link" -msgstr "" +msgstr "共有リンクを閲覧" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:200 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:201 msgid "Renew Link" -msgstr "" +msgstr "共有リンクを再発行" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:217 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:218 msgid "Delete Link" -msgstr "" +msgstr "共有リンクを削除" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:135 msgid "Search for Tag" -msgstr "" +msgstr "タグを検索" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:150 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:151 #: app/modules/web/Controllers/TagController.php:118 #: app/modules/web/themes/material-blue/views/account/account.inc:253 msgid "New Tag" -msgstr "" +msgstr "新規タグを作成" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:168 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:169 #: app/modules/web/Controllers/TagController.php:180 msgid "Edit Tag" -msgstr "" +msgstr "タグを編集" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:185 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:186 msgid "Delete Tag" -msgstr "" +msgstr "タグを削除" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 msgid "Tracks" @@ -2297,33 +2299,33 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:67 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:276 msgid "Users" -msgstr "" +msgstr "ユーザー" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:148 msgid "Search for User" -msgstr "" +msgstr "ユーザーを検索" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:163 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:164 #: app/modules/web/Controllers/UserController.php:126 msgid "New User" -msgstr "" +msgstr "新規ユーザーを作成" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:181 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:182 #: app/modules/web/Controllers/UserController.php:213 msgid "Edit User" -msgstr "" +msgstr "ユーザーを編集" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:199 msgid "Delete User" -msgstr "" +msgstr "ユーザーを削除" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:215 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:216 msgid "View User Details" -msgstr "" +msgstr "ユーザー情報を表示" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:232 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:233 @@ -2340,89 +2342,89 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 msgid "Groups" -msgstr "" +msgstr "グループ" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 msgid "Search for Group" -msgstr "" +msgstr "グループを検索" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 #: app/modules/web/Controllers/UserGroupController.php:127 msgid "New Group" -msgstr "" +msgstr "新規グループを作成" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 #: app/modules/web/Controllers/UserGroupController.php:366 msgid "View Group" -msgstr "" +msgstr "グループを表示" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 #: app/modules/web/Controllers/UserGroupController.php:200 msgid "Edit Group" -msgstr "" +msgstr "グループを編集" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 msgid "Delete Group" -msgstr "" +msgstr "グループを削除" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 msgid "Profiles" -msgstr "" +msgstr "プロファイル" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 msgid "Search for Profile" -msgstr "" +msgstr "プロファイルを検索" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 #: app/modules/web/Controllers/UserProfileController.php:121 msgid "New Profile" -msgstr "" +msgstr "新規プロファイルを作成" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:169 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:170 msgid "View Profile Details" -msgstr "" +msgstr "プロファイルの詳細を表示" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 #: app/modules/web/Controllers/UserProfileController.php:190 msgid "Edit Profile" -msgstr "" +msgstr "プロファイルを編集" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 msgid "Delete Profile" -msgstr "" +msgstr "プロファイルを削除" #: app/modules/web/Controllers/Helpers/LayoutHelper.php:263 #: app/modules/web/themes/material-blue/inc/Icons.php:57 msgid "Search" -msgstr "" +msgstr "検索" #: app/modules/web/Controllers/Helpers/LayoutHelper.php:346 #: app/modules/web/themes/material-blue/inc/Icons.php:60 #: app/modules/web/themes/material-blue/views/config/ldap.inc:31 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Configuration" -msgstr "" +msgstr "設定" #: app/modules/web/Controllers/InstallController.php:60 msgid "Module unavailable" -msgstr "" +msgstr "利用できるモジュールがありません" #: app/modules/web/Controllers/InstallController.php:61 msgid "Without this module the application could not run correctly" -msgstr "" +msgstr "sysPassの動作に必要なモジュールが不足しています" #: app/modules/web/Controllers/InstallController.php:90 msgid "Installation finished" -msgstr "" +msgstr "インストールが完了しました" #: app/modules/web/Controllers/ItemPresetController.php:85 msgid "Display Value" @@ -2454,107 +2456,107 @@ msgstr "" #: app/modules/web/Controllers/ItemsController.php:140 msgid "There aren't any pending notifications" -msgstr "" +msgstr "お知らせはありません" #: app/modules/web/Controllers/ItemsController.php:141 #, php-format msgid "There are pending notifications: %d" -msgstr "" +msgstr "お知らせが%d件あります" #: app/modules/web/Controllers/LoginController.php:125 msgid "Logout session" -msgstr "" +msgstr "ログアウト" #: app/modules/web/Controllers/LoginController.php:127 msgid "Inactive time" -msgstr "" +msgstr "ログイン時間" #: app/modules/web/Controllers/LoginController.php:128 msgid "Total time" -msgstr "" +msgstr "合計時間" #: app/modules/web/Controllers/NotificationController.php:278 #: app/modules/web/Controllers/NotificationController.php:281 msgid "Notifications deleted" -msgstr "" +msgstr "通知を削除" #: app/modules/web/Controllers/NotificationController.php:293 #: app/modules/web/Controllers/NotificationController.php:297 msgid "Notification deleted" -msgstr "" +msgstr "通知を削除しました" #: app/modules/web/Controllers/NotificationController.php:294 #: app/modules/web/Controllers/NotificationController.php:329 #: lib/SP/Providers/Notification/NotificationHandler.php:158 msgid "Notification" -msgstr "" +msgstr "通知" #: app/modules/web/Controllers/NotificationController.php:328 #: app/modules/web/Controllers/NotificationController.php:332 msgid "Notification read" -msgstr "" +msgstr "既読にする" #: app/modules/web/Controllers/NotificationController.php:362 #: app/modules/web/Controllers/NotificationController.php:365 msgid "Notification created" -msgstr "" +msgstr "通知を作成しました" #: app/modules/web/Controllers/NotificationController.php:399 #: app/modules/web/Controllers/NotificationController.php:402 msgid "Notification updated" -msgstr "" +msgstr "通知を更新しました" #: app/modules/web/Controllers/PluginController.php:214 #: app/modules/web/Controllers/PluginController.php:217 msgid "Plugin enabled" -msgstr "" +msgstr "プラグインを有効化しました" #: app/modules/web/Controllers/PluginController.php:243 #: app/modules/web/Controllers/PluginController.php:246 #: lib/SP/Plugin/PluginManager.php:233 lib/SP/Plugin/PluginManager.php:441 msgid "Plugin disabled" -msgstr "" +msgstr "プラグインを無効にしました" #: app/modules/web/Controllers/PluginController.php:273 #: app/modules/web/Controllers/PluginController.php:276 msgid "Plugin reset" -msgstr "" +msgstr "プラグインをリセット" #: app/modules/web/Controllers/PluginController.php:307 msgid "Plugins deleted" -msgstr "" +msgstr "プラグインを削除しました" #: app/modules/web/Controllers/PluginController.php:313 msgid "Plugin deleted" -msgstr "" +msgstr "プラグインを削除しました" #: app/modules/web/Controllers/PublicLinkController.php:124 msgid "New Public Link" -msgstr "" +msgstr "共有リンクを発行しました" #: app/modules/web/Controllers/PublicLinkController.php:194 #: lib/SP/Services/Upgrade/UpgradePublicLink.php:90 msgid "Link updated" -msgstr "" +msgstr "共有リンクを更新しました" #: app/modules/web/Controllers/PublicLinkController.php:220 msgid "Edit Public Link" -msgstr "" +msgstr "共有リンクを編集" #: app/modules/web/Controllers/PublicLinkController.php:261 #: app/modules/web/Controllers/PublicLinkController.php:264 msgid "Links deleted" -msgstr "" +msgstr "共有リンクを削除しました" #: app/modules/web/Controllers/PublicLinkController.php:272 #: app/modules/web/Controllers/PublicLinkController.php:276 msgid "Link deleted" -msgstr "" +msgstr "共有リンクを削除しました" #: app/modules/web/Controllers/PublicLinkController.php:306 #: app/modules/web/Controllers/PublicLinkController.php:345 msgid "Link created" -msgstr "" +msgstr "共有リンクを発行しました" #: app/modules/web/Controllers/StatusController.php:95 msgid "Version unavailable" @@ -2566,11 +2568,11 @@ msgstr "" #: app/modules/web/Controllers/TagController.php:221 msgid "Tags deleted" -msgstr "" +msgstr "タグを削除しました" #: app/modules/web/Controllers/TagController.php:322 msgid "View Tag" -msgstr "" +msgstr "タグを表示" #: app/modules/web/Controllers/TrackController.php:121 msgid "Track unlocked" @@ -2586,7 +2588,7 @@ msgstr "" #: app/modules/web/Controllers/Traits/ConfigTrait.php:73 msgid "Error while saving the configuration" -msgstr "" +msgstr "設定を保存中にエラーが発生しました" #: app/modules/web/Controllers/Traits/ItemTrait.php:135 #: app/modules/web/Controllers/Traits/ItemTrait.php:196 @@ -2614,11 +2616,11 @@ msgstr "" #: lib/SP/Services/Import/XmlFileImport.php:82 #: lib/SP/Services/User/UserPassService.php:237 msgid "Internal error" -msgstr "" +msgstr "Internal error" #: app/modules/web/Controllers/Traits/ItemTrait.php:192 msgid "Error while updating custom field's data" -msgstr "" +msgstr "カスタムフィールドを更新中にエラーが発生しました" #: app/modules/web/Controllers/UpgradeController.php:72 msgid "The updating need to be confirmed" @@ -2626,16 +2628,16 @@ msgstr "" #: app/modules/web/Controllers/UpgradeController.php:79 msgid "Wrong security code" -msgstr "" +msgstr "セキュリティーコードが一致しません" #: app/modules/web/Controllers/UpgradeController.php:105 #: app/modules/web/themes/material-blue/views/login/index.inc:96 msgid "Application successfully updated" -msgstr "" +msgstr "アプリケーションのアップデートが完了しました" #: app/modules/web/Controllers/UpgradeController.php:106 msgid "You will be redirected to log in within 5 seconds" -msgstr "" +msgstr "5秒後にログイン画面に移ります" #: app/modules/web/Controllers/UserController.php:250 #: app/modules/web/Controllers/UserController.php:381 @@ -2643,36 +2645,36 @@ msgstr "" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:72 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:261 msgid "Password Change" -msgstr "" +msgstr "パスワードを変更" #: app/modules/web/Controllers/UserController.php:294 #: app/modules/web/Controllers/UserController.php:298 msgid "Users deleted" -msgstr "" +msgstr "ユーザーを削除" #: app/modules/web/Controllers/UserController.php:306 #: app/modules/web/Controllers/UserController.php:311 msgid "User deleted" -msgstr "" +msgstr "ユーザーを削除" #: app/modules/web/Controllers/UserController.php:345 #: app/modules/web/Controllers/UserController.php:351 msgid "User added" -msgstr "" +msgstr "ユーザーを追加" #: app/modules/web/Controllers/UserController.php:412 #: app/modules/web/Controllers/UserController.php:419 msgid "User updated" -msgstr "" +msgstr "ユーザーを更新" #: app/modules/web/Controllers/UserController.php:488 msgid "View User" -msgstr "" +msgstr "ユーザーを表示" #: app/modules/web/Controllers/UserGroupController.php:240 #: app/modules/web/Controllers/UserGroupController.php:243 msgid "Groups deleted" -msgstr "" +msgstr "グループを削除しました" #: app/modules/web/Controllers/UserPassResetController.php:98 msgid "Wrong data" @@ -2680,7 +2682,7 @@ msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:103 msgid "Unable to reset the password" -msgstr "" +msgstr "パスワードリセットはできません" #: app/modules/web/Controllers/UserPassResetController.php:114 msgid "Password Recovery" @@ -2692,56 +2694,56 @@ msgstr "" #: app/modules/web/Controllers/UserPassResetController.php:125 msgid "Request sent" -msgstr "" +msgstr "リクエストを送信" #: app/modules/web/Controllers/UserPassResetController.php:126 msgid "You will receive an email to complete the request shortly." -msgstr "" +msgstr "リクエストの完了まであと少しです。届いたメールを確認してください。" #: app/modules/web/Controllers/UserPassResetController.php:149 #: lib/SP/Services/Api/ApiService.php:99 #: lib/SP/Services/Auth/LoginService.php:147 #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:110 msgid "Attempts exceeded" -msgstr "" +msgstr "試行回数を超えました" #: app/modules/web/Controllers/UserPassResetController.php:199 #: app/modules/web/Forms/AuthTokenForm.php:101 #: app/modules/web/Forms/UserForm.php:157 msgid "Password cannot be blank" -msgstr "" +msgstr "パスワードを空欄にすることはできません" #: app/modules/web/Controllers/UserProfileController.php:230 #: app/modules/web/Controllers/UserProfileController.php:233 msgid "Profiles deleted" -msgstr "" +msgstr "プロファイルを削除しました" #: app/modules/web/Controllers/UserProfileController.php:242 #: app/modules/web/Controllers/UserProfileController.php:247 msgid "Profile deleted" -msgstr "" +msgstr "プロファイルを削除しました" #: app/modules/web/Controllers/UserProfileController.php:282 #: app/modules/web/Controllers/UserProfileController.php:286 msgid "Profile added" -msgstr "" +msgstr "プロファイルを作成しました" #: app/modules/web/Controllers/UserProfileController.php:325 #: app/modules/web/Controllers/UserProfileController.php:330 msgid "Profile updated" -msgstr "" +msgstr "プロファイルを更新しました" #: app/modules/web/Controllers/UserProfileController.php:358 msgid "View Profile" -msgstr "" +msgstr "プロファイルを表示" #: app/modules/web/Controllers/UserSettingsGeneralController.php:78 msgid "Preferences updated" -msgstr "" +msgstr "設定を更新しました" #: app/modules/web/Controllers/UserSettingsManagerController.php:98 msgid "Preferences" -msgstr "" +msgstr "設定" #: app/modules/web/Forms/AccountForm.php:132 msgid "A key is needed" @@ -2749,36 +2751,36 @@ msgstr "" #: app/modules/web/Forms/AccountForm.php:172 msgid "An account name needed" -msgstr "" +msgstr "アカウント名を空欄にすることはできません" #: app/modules/web/Forms/AccountForm.php:176 #: app/modules/web/Forms/ClientForm.php:84 msgid "A client name needed" -msgstr "" +msgstr "クライアント名を空欄にすることはできません" #: app/modules/web/Forms/AccountForm.php:180 msgid "A category is needed" -msgstr "" +msgstr "カテゴリー名を空欄にすることはできません" #: app/modules/web/Forms/AuthTokenForm.php:91 msgid "User not set" -msgstr "" +msgstr "ユーザーが選択されていません" #: app/modules/web/Forms/AuthTokenForm.php:95 msgid "Action not set" -msgstr "" +msgstr "アクションが選択されていません" #: app/modules/web/Forms/CategoryForm.php:83 msgid "A category name needed" -msgstr "" +msgstr "カテゴリー名を空欄にすることはできません" #: app/modules/web/Forms/CustomFieldDefForm.php:87 msgid "Field name not set" -msgstr "" +msgstr "フィールド名を空欄にすることはできません" #: app/modules/web/Forms/CustomFieldDefForm.php:91 msgid "Field type not set" -msgstr "" +msgstr "フィールドタイプを空欄にすることはできません" #: app/modules/web/Forms/CustomFieldDefForm.php:95 msgid "Field module not set" @@ -2790,7 +2792,7 @@ msgstr "" #: app/modules/web/Forms/ItemsPresetForm.php:133 msgid "There aren't any defined permissions" -msgstr "" +msgstr "権限設定を空欄にすることはできません" #: app/modules/web/Forms/ItemsPresetForm.php:182 msgid "Invalid regular expression" @@ -2798,7 +2800,7 @@ msgstr "" #: app/modules/web/Forms/ItemsPresetForm.php:208 msgid "An element of type user, group or profile need to be set" -msgstr "" +msgstr "ユーザー・グループ・プロファイルのいずれかを設定してください" #: app/modules/web/Forms/NotificationForm.php:98 msgid "A component is needed" @@ -2806,39 +2808,39 @@ msgstr "" #: app/modules/web/Forms/NotificationForm.php:102 msgid "A type is needed" -msgstr "" +msgstr "Typeを空欄にすることはできません" #: app/modules/web/Forms/NotificationForm.php:112 msgid "A target is needed" -msgstr "" +msgstr "ターゲットを空欄にすることはできません" #: app/modules/web/Forms/PublicLinkForm.php:85 msgid "An account is needed" -msgstr "" +msgstr "アカウントを空欄にすることはできません" #: app/modules/web/Forms/TagForm.php:82 msgid "A tag name is needed" -msgstr "" +msgstr "タグ名を空欄にすることはできません" #: app/modules/web/Forms/UserForm.php:111 msgid "An username is needed" -msgstr "" +msgstr "ユーザー名を空欄にすることはできません" #: app/modules/web/Forms/UserForm.php:115 msgid "A login is needed" -msgstr "" +msgstr "ログインが必要です" #: app/modules/web/Forms/UserForm.php:119 msgid "A profile is needed" -msgstr "" +msgstr "プロファイルを空欄にすることはできません" #: app/modules/web/Forms/UserForm.php:123 msgid "A group is needed" -msgstr "" +msgstr "グループを空欄にすることはできません" #: app/modules/web/Forms/UserForm.php:127 msgid "An email is needed" -msgstr "" +msgstr "メールアドレスを空欄にすることはできません" #: app/modules/web/Forms/UserForm.php:179 msgid "Unable to delete, user in use" @@ -2846,20 +2848,20 @@ msgstr "" #: app/modules/web/Forms/UserGroupForm.php:84 msgid "A group name is needed" -msgstr "" +msgstr "グループ名を空欄にすることはできません" #: app/modules/web/Forms/UserProfileForm.php:116 msgid "A profile name is needed" -msgstr "" +msgstr "プロファイル名を空欄にすることはできません" #: app/modules/web/themes/material-blue/inc/Icons.php:31 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:47 msgid "Add" -msgstr "" +msgstr "Add" #: app/modules/web/themes/material-blue/inc/Icons.php:32 msgid "View Details" -msgstr "" +msgstr "View Details" #: app/modules/web/themes/material-blue/inc/Icons.php:34 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:76 @@ -2872,7 +2874,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:97 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:116 msgid "Edit" -msgstr "" +msgstr "Edit" #: app/modules/web/themes/material-blue/inc/Icons.php:35 #: app/modules/web/themes/material-blue/inc/Icons.php:65 @@ -2882,145 +2884,147 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:235 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 msgid "Delete" -msgstr "" +msgstr "Delete" #: app/modules/web/themes/material-blue/inc/Icons.php:36 msgid "Change Password" -msgstr "" +msgstr "Change Password" #: app/modules/web/themes/material-blue/inc/Icons.php:37 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:221 msgid "Application Admin" -msgstr "" +msgstr "Application Admin" #: app/modules/web/themes/material-blue/inc/Icons.php:38 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Accounts Admin" -msgstr "" +msgstr "Accounts Admin" #: app/modules/web/themes/material-blue/inc/Icons.php:39 msgid "LDAP User" -msgstr "" +msgstr "LDAP User" #: app/modules/web/themes/material-blue/inc/Icons.php:40 #: app/modules/web/themes/material-blue/views/config/mail.inc:159 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:280 msgid "Disabled" -msgstr "" +msgstr "Disabled" #: app/modules/web/themes/material-blue/inc/Icons.php:41 msgid "Enabled" -msgstr "" +msgstr "Enabled" #: app/modules/web/themes/material-blue/inc/Icons.php:42 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:198 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:58 msgid "Update" -msgstr "" +msgstr "Update" #: app/modules/web/themes/material-blue/inc/Icons.php:43 msgid "Copy" -msgstr "" +msgstr "Copy" #: app/modules/web/themes/material-blue/inc/Icons.php:45 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:97 msgid "Email" -msgstr "" +msgstr "Email" #: app/modules/web/themes/material-blue/inc/Icons.php:49 msgid "Restore" -msgstr "" +msgstr "Restore" #: app/modules/web/themes/material-blue/inc/Icons.php:51 msgid "Help" -msgstr "" +msgstr "Help" #: app/modules/web/themes/material-blue/inc/Icons.php:52 msgid "Clear" -msgstr "" +msgstr "Clear" #: app/modules/web/themes/material-blue/inc/Icons.php:53 msgid "Perform" -msgstr "" +msgstr "Perform" #: app/modules/web/themes/material-blue/inc/Icons.php:54 msgid "Download" -msgstr "" +msgstr "Download" #: app/modules/web/themes/material-blue/inc/Icons.php:55 msgid "Warning" -msgstr "" +msgstr "Warning" #: app/modules/web/themes/material-blue/inc/Icons.php:56 msgid "Check" -msgstr "" +msgstr "Check" #: app/modules/web/themes/material-blue/inc/Icons.php:63 msgid "Critical" -msgstr "" +msgstr "Critical" #: app/modules/web/themes/material-blue/inc/Icons.php:66 msgid "Previous page" -msgstr "" +msgstr "Previous page" #: app/modules/web/themes/material-blue/inc/Icons.php:67 msgid "Next page" -msgstr "" +msgstr "Next page" #: app/modules/web/themes/material-blue/inc/Icons.php:68 msgid "First page" -msgstr "" +msgstr "First page" #: app/modules/web/themes/material-blue/inc/Icons.php:69 msgid "Last page" -msgstr "" +msgstr "Last page" #: lib/SP/Bootstrap.php:293 #, php-format msgid "Required PHP version >= %s <= %s" -msgstr "" +msgstr "Required PHP version >= %s <= %s" #: lib/SP/Bootstrap.php:295 msgid "Please update the PHP version to run sysPass" msgstr "" +"お使いのサーバーはsysPassの推奨PHPバージョンを満たしていません。PHPのアップ" +"デートを検討してください" #: lib/SP/Config/ConfigUtil.php:102 msgid "'/app/config' directory does not exist." -msgstr "" +msgstr "'/app/config' ディレクトリが存在しません。" #: lib/SP/Config/ConfigUtil.php:108 msgid "Unable to write into '/app/config' directory" -msgstr "" +msgstr "'/app/config' ディレクトリに書き込むことができませんでした" #: lib/SP/Config/ConfigUtil.php:117 msgid "'/app/config' directory permissions are wrong" -msgstr "" +msgstr "'/app/config' ディレクトリのパーミッション設定が間違っています" #: lib/SP/Config/ConfigUtil.php:119 #, php-format msgid "Current: %s - Needed: 750" -msgstr "" +msgstr "Current: %s - Needed: 750" #: lib/SP/Core/Acl/Acl.php:294 lib/SP/Services/Auth/LoginService.php:660 msgid "N/A" -msgstr "" +msgstr "N/A" #: lib/SP/Core/Acl/Acl.php:299 msgid "Access denied" -msgstr "" +msgstr "Access denied" #: lib/SP/Core/Acl/Actions.php:177 msgid "Action not found" -msgstr "" +msgstr "Action not found" #: lib/SP/Core/Acl/UnauthorizedPageException.php:46 #: lib/SP/Util/ErrorUtil.php:157 msgid "You don't have permission to access this page" -msgstr "" +msgstr "このページにアクセスする権限がありません" #: lib/SP/Core/Context/ContextBase.php:73 msgid "Unable to change password value" -msgstr "" +msgstr "パスワードを変更することはできませんん" #: lib/SP/Core/Context/ContextBase.php:103 #: lib/SP/Core/Context/ContextBase.php:126 @@ -3090,31 +3094,31 @@ msgstr "" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 #, php-format msgid "Password needs to be %d characters long" -msgstr "" +msgstr "パスワードは%d文字以上にしてください" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:77 msgid "Password does not contain the required characters" -msgstr "" +msgstr "パスワードに必要な文字種が含まれていません" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:82 msgid "Password needs to contain letters" -msgstr "" +msgstr "パスワードにはアルファベットを含める必要があります" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:86 msgid "Password needs to contain lower case letters" -msgstr "" +msgstr "パスワードには小文字を含める必要があります" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:90 msgid "Password needs to contain upper case letters" -msgstr "" +msgstr "パスワードには大文字を含める必要があります" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:95 msgid "Password needs to contain numbers" -msgstr "" +msgstr "パスワードには数字を含める必要があります" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:99 msgid "Password needs to contain symbols" -msgstr "" +msgstr "パスワードには記号を含める必要がります" #: lib/SP/Mvc/Model/QueryCondition.php:73 msgid "Invalid filter type" From 87680fb681c9c1f4ddb3ae8abc163a623050e85a Mon Sep 17 00:00:00 2001 From: magcho Date: Sat, 12 Sep 2020 20:43:49 +0900 Subject: [PATCH 09/36] [WIP] translation sysPass application --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 31501 -> 81480 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 934 ++++++++++++---------- 2 files changed, 506 insertions(+), 428 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 250cf5a9f59563b554dff341337a154f9b9ae64d..e330e522a44278040d82d85a04fe2d377b38cbca 100644 GIT binary patch literal 81480 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ⅇv;`D6Gl&1QdQo0mLHoS#oVw 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 diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index 714916c3..d52677f9 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-04-29 01:28+0200\n" -"PO-Revision-Date: 2020-09-09 22:34+0900\n" +"PO-Revision-Date: 2020-09-11 22:08+0900\n" "Last-Translator: magcho \n" "Language-Team: language@syspass.org\n" "Language: ja_JP\n" @@ -1487,7 +1487,7 @@ msgstr "項目の削除" #: app/modules/web/Controllers/CustomFieldController.php:264 #: app/modules/web/Controllers/CustomFieldController.php:268 msgid "Field added" -msgstr "項目の追加" +msgstr "カスタムフィールドを作成しました" #: app/modules/web/Controllers/CustomFieldController.php:265 #: app/modules/web/Controllers/CustomFieldController.php:306 @@ -2208,7 +2208,7 @@ msgstr "作成日" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:67 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:69 msgid "Expiry Date " -msgstr "有効期限" +msgstr "有効期限 " #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:45 @@ -3141,46 +3141,46 @@ msgstr "" #: lib/SP/Mvc/View/Template.php:357 msgid "Template does not contain files" -msgstr "" +msgstr "テンプレートにファイルが含まれていません" #: lib/SP/Plugin/PluginManager.php:194 #, php-format msgid "Plugin version not compatible (%s)" -msgstr "" +msgstr "このバージョンのsysPassとプラグインの互換性がありません (%s)" #: lib/SP/Plugin/PluginManager.php:206 lib/SP/Plugin/PluginManager.php:262 #, php-format msgid "Unable to load the \"%s\" plugin" -msgstr "" +msgstr "プラグイン “%s” の読み込みに失敗しました" #: lib/SP/Plugin/PluginManager.php:297 msgid "Plugin available" -msgstr "" +msgstr "プラグインを有効化" #: lib/SP/Plugin/PluginManager.php:308 msgid "Plugin unavailable" -msgstr "" +msgstr "プラグインを無効化" #: lib/SP/Plugin/PluginManager.php:341 msgid "Plugin loaded" -msgstr "" +msgstr "プラグインを読み込み" #: lib/SP/Plugin/PluginManager.php:366 msgid "New Plugin" -msgstr "" +msgstr "新規プラグイン" #: lib/SP/Plugin/PluginManager.php:394 msgid "Upgrading plugin" -msgstr "" +msgstr "プラグインの更新" #: lib/SP/Plugin/PluginManager.php:411 msgid "Plugin upgraded" -msgstr "" +msgstr "プラグインの更新が完了しました" #: lib/SP/Plugin/PluginManager.php:420 #, php-format msgid "Unable to upgrade the \"%s\" plugin" -msgstr "" +msgstr "プラグイン \"%s\" の更新に失敗しました" #: lib/SP/Providers/Auth/AuthProvider.php:220 msgid "Method unavailable" @@ -3227,7 +3227,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:69 #: app/modules/web/themes/material-blue/views/config/mail.inc:78 msgid "Server" -msgstr "" +msgstr "Server" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:174 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:176 @@ -3260,52 +3260,52 @@ msgstr "" #: lib/SP/Providers/Mail/MailHandler.php:153 #, php-format msgid "Event: %s" -msgstr "" +msgstr "Event: %s" #: lib/SP/Providers/Mail/MailHandler.php:161 #: lib/SP/Providers/Mail/MailHandler.php:163 #, php-format msgid "Performed by: %s (%s)" -msgstr "" +msgstr "Performed by: %s (%s)" #: lib/SP/Providers/Mail/MailHandler.php:166 #, php-format msgid "IP Address: %s" -msgstr "" +msgstr "IP Address: %s" #: lib/SP/Providers/Mail/MailProvider.php:94 msgid "Unable to initialize" -msgstr "" +msgstr "初期化できませんでした" #: lib/SP/Repositories/Account/AccountFileRepository.php:80 msgid "Error while saving file" -msgstr "" +msgstr "ファイルの保存時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountFileRepository.php:282 msgid "Error while deleting the file" -msgstr "" +msgstr "ファイルの削除にエラーが発生しました" #: lib/SP/Repositories/Account/AccountFileRepository.php:305 #: lib/SP/Services/Account/AccountFileService.php:149 msgid "Error while deleting the files" -msgstr "" +msgstr "ファイルの削除にエラーが発生しました" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:144 msgid "Error while updating history" -msgstr "" +msgstr "ファイル履歴の更新にエラーが発生しました" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:163 #: lib/SP/Repositories/Account/AccountRepository.php:323 #: lib/SP/Services/Account/AccountHistoryService.php:195 msgid "Error while deleting the account" -msgstr "" +msgstr "アカウントの削除にエラーが発生しました" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:293 #: lib/SP/Repositories/Account/AccountHistoryRepository.php:316 #: lib/SP/Repositories/Account/AccountRepository.php:503 #: lib/SP/Services/Account/AccountService.php:647 msgid "Error while deleting the accounts" -msgstr "" +msgstr "アカウント削除時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountHistoryRepository.php:437 #: lib/SP/Repositories/Account/AccountRepository.php:237 @@ -3314,113 +3314,113 @@ msgstr "" #: lib/SP/Services/Account/AccountHistoryService.php:236 #: lib/SP/Services/User/UserService.php:334 msgid "Error while updating the password" -msgstr "" +msgstr "パスワードの更新時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountRepository.php:202 msgid "Error while creating the account" -msgstr "" +msgstr "アカウント作成時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountRepository.php:303 #: lib/SP/Services/Account/AccountService.php:613 msgid "Error on restoring the account" -msgstr "" +msgstr "アカウント復元時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountRepository.php:384 #: lib/SP/Repositories/Account/AccountRepository.php:433 msgid "Error while updating the account" -msgstr "" +msgstr "アカウント更新時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountRepository.php:453 #: lib/SP/Repositories/Account/AccountRepository.php:625 #: lib/SP/Services/Account/AccountHistoryService.php:78 msgid "Error while retrieving account's data" -msgstr "" +msgstr "アカウントのデータ復元時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:74 msgid "Error while adding favorite" -msgstr "" +msgstr "お気に入り追加時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:94 msgid "Error while deleting favorite" -msgstr "" +msgstr "お気に入り解除時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToTagRepository.php:97 msgid "Error while removing the account's tags" -msgstr "" +msgstr "タグを外す時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToTagRepository.php:118 msgid "Error while adding the account's tags" -msgstr "" +msgstr "タグを追加する時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:109 #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:142 #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:194 msgid "Error while deleting the account's groups" -msgstr "" +msgstr "グループへの追加時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:167 msgid "Error while updating the secondary groups" -msgstr "" +msgstr "グループからの解除時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToUserRepository.php:79 #: lib/SP/Repositories/Account/AccountToUserRepository.php:135 msgid "Error while deleting the account users" -msgstr "" +msgstr "ユーザーの解除時にエラーが発生しました" #: lib/SP/Repositories/Account/AccountToUserRepository.php:106 msgid "Error while updating the account users" -msgstr "" +msgstr "ユーザーの更新時にエラーが発生しました" #: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:224 #: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:312 msgid "The authorization already exist" -msgstr "" +msgstr "すでに許可されています" #: lib/SP/Repositories/Category/CategoryRepository.php:61 msgid "Duplicated category" -msgstr "" +msgstr "このカテゴリーはすでに存在します" #: lib/SP/Repositories/Category/CategoryRepository.php:71 msgid "Error while creating the category" -msgstr "" +msgstr "カテゴリー追加時にエラーが発生しました" #: lib/SP/Repositories/Category/CategoryRepository.php:110 msgid "Duplicated category name" -msgstr "" +msgstr "このカテゴリー名はすでに存在します" #: lib/SP/Repositories/Category/CategoryRepository.php:128 msgid "Error while updating the category" -msgstr "" +msgstr "カテゴリーの更新時にエラーが発生しました" #: lib/SP/Repositories/Category/CategoryRepository.php:256 msgid "Error while deleting the categories" -msgstr "" +msgstr "カテゴリーの削除時にエラーが発生しました" #: lib/SP/Repositories/Category/CategoryRepository.php:278 msgid "Error while deleting the category" -msgstr "" +msgstr "カテゴリーの削除時にエラーが発生しました" #: lib/SP/Repositories/Client/ClientRepository.php:63 #: lib/SP/Repositories/Client/ClientRepository.php:117 msgid "Duplicated client" -msgstr "" +msgstr "すでにこのクライアントは存在しています" #: lib/SP/Repositories/Client/ClientRepository.php:81 msgid "Error while creating the client" -msgstr "" +msgstr "クライアント作成時にエラーが発生しました" #: lib/SP/Repositories/Client/ClientRepository.php:137 msgid "Error while updating the client" -msgstr "" +msgstr "クライアント更新時にエラーが発生しました" #: lib/SP/Repositories/Client/ClientRepository.php:265 #: lib/SP/Services/Client/ClientService.php:132 msgid "Error while deleting the clients" -msgstr "" +msgstr "クライアントの削除時にエラーが発生しました" #: lib/SP/Repositories/Client/ClientRepository.php:284 msgid "Error while deleting the client" -msgstr "" +msgstr "クライアントの削除時にエラーが発生しました" #: lib/SP/Repositories/Client/ClientRepository.php:346 msgid "Wrong filter" @@ -3428,25 +3428,25 @@ msgstr "" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:78 msgid "Error while creating the custom field" -msgstr "" +msgstr "カスタフィールドの作成時にエラーが発生しました" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:121 #: lib/SP/Services/CustomField/CustomFieldDefService.php:170 #: lib/SP/Services/CustomField/CustomFieldDefService.php:198 msgid "Error while updating the custom field" -msgstr "" +msgstr "カスタムフィールドの更新時にエラーが発生しました" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:162 msgid "Custom field not found" -msgstr "" +msgstr "カスタムフィ-ルドが存在しません" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:242 msgid "Error while removing the custom fields" -msgstr "" +msgstr "かスタムフィールドの削除時にエラーが発生しました" #: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:262 msgid "Error while removing the custom field" -msgstr "" +msgstr "カスタムフィールドの削除時にエラーが発生しました" #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:63 msgid "Error while creating the field type" @@ -3467,40 +3467,40 @@ msgstr "" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:79 msgid "Error while creating the permission" -msgstr "" +msgstr "言言の設定j" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:118 msgid "Error while updating the permission" -msgstr "" +msgstr "権限の設定時にエラーが発生しました" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:137 msgid "Error while removing the permission" -msgstr "" +msgstr "権限の解除時にエラーが発生しました" #: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:262 msgid "Error while removing the permissions" -msgstr "" +msgstr "権限の解除時にエラーが発生しました" #: lib/SP/Repositories/Notification/NotificationRepository.php:80 msgid "Error while adding the notification" -msgstr "" +msgstr "通知を追加する時にエラーが発生しました" #: lib/SP/Repositories/Notification/NotificationRepository.php:120 #: lib/SP/Repositories/Notification/NotificationRepository.php:479 msgid "Error while updating the notification" -msgstr "" +msgstr "通知を更新する時にエラーが発生しました" #: lib/SP/Repositories/Notification/NotificationRepository.php:139 #: lib/SP/Repositories/Notification/NotificationRepository.php:158 msgid "Error while deleting the notification" -msgstr "" +msgstr "通知の削除時にエラーが発生しました" #: lib/SP/Repositories/Notification/NotificationRepository.php:181 #: lib/SP/Repositories/Notification/NotificationRepository.php:304 #: lib/SP/Services/Notification/NotificationService.php:144 #: lib/SP/Services/Notification/NotificationService.php:163 msgid "Error while deleting the notifications" -msgstr "" +msgstr "通知の削除時にエラーが発生しました" #: lib/SP/Repositories/Notification/NotificationRepository.php:214 msgid "Error while retrieving notification" @@ -3516,21 +3516,21 @@ msgstr "" #: lib/SP/Repositories/Plugin/PluginDataRepository.php:68 msgid "Error while adding plugin's data" -msgstr "" +msgstr "プラグイン追加時にエラーが発生しました" #: lib/SP/Repositories/Plugin/PluginDataRepository.php:97 msgid "Error while updating plugin's data" -msgstr "" +msgstr "プラグイイン更新時にエラーが発生しました" #: lib/SP/Repositories/Plugin/PluginDataRepository.php:116 #: lib/SP/Repositories/Plugin/PluginDataRepository.php:136 #: lib/SP/Repositories/Plugin/PluginDataRepository.php:242 msgid "Error while deleting plugin's data" -msgstr "" +msgstr "プラグイン削除時にエラーが発生しました" #: lib/SP/Repositories/Plugin/PluginRepository.php:70 msgid "Error while adding the plugin" -msgstr "" +msgstr "プラグイン追加時にエラーが発生しました" #: lib/SP/Repositories/Plugin/PluginRepository.php:106 #: lib/SP/Repositories/Plugin/PluginRepository.php:354 @@ -3539,33 +3539,33 @@ msgstr "" #: lib/SP/Repositories/Plugin/PluginRepository.php:414 #: lib/SP/Repositories/Plugin/PluginRepository.php:433 msgid "Error while updating the plugin" -msgstr "" +msgstr "プラグイン更新時にエラーが発生しました" #: lib/SP/Repositories/Plugin/PluginRepository.php:217 #: lib/SP/Services/Plugin/PluginService.php:139 msgid "Error while deleting the plugins" -msgstr "" +msgstr "プラグイン削除時にエラーが発生しました" #: lib/SP/Repositories/Plugin/PluginRepository.php:237 msgid "Error while deleting the plugin" -msgstr "" +msgstr "プラグイン削除時にエラーが発生しました" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:64 msgid "Error while removing the link" -msgstr "" +msgstr "関連するアカウント削除時にエラーが発生しました" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:256 msgid "Link already created" -msgstr "" +msgstr "このアカウントはすでに追加済みです" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:283 msgid "Error while creating the link" -msgstr "" +msgstr "関連するアカウント削除時にエラーが発生しました" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:342 #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:390 msgid "Error while updating the link" -msgstr "" +msgstr "関連するアカウント更新時にエラーが発生しました" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:425 msgid "Error while renewing link" @@ -3580,24 +3580,24 @@ msgstr "" #: lib/SP/Repositories/Tag/TagRepository.php:60 #: lib/SP/Repositories/Tag/TagRepository.php:108 msgid "Duplicated tag" -msgstr "" +msgstr "このタグはすでに追加されています" #: lib/SP/Repositories/Tag/TagRepository.php:69 msgid "Error while creating the tag" -msgstr "" +msgstr "タグ作成時にエラーが発生しました" #: lib/SP/Repositories/Tag/TagRepository.php:118 msgid "Error while updating the tag" -msgstr "" +msgstr "タグ更新時にエラーが発生しました" #: lib/SP/Repositories/Tag/TagRepository.php:243 #: lib/SP/Services/Tag/TagService.php:132 msgid "Error while removing the tags" -msgstr "" +msgstr "タグ削除時にエラーが発生しました" #: lib/SP/Repositories/Tag/TagRepository.php:262 msgid "Error while removing the tag" -msgstr "" +msgstr "タグ削除時にエラーが発生しました" #: lib/SP/Repositories/Track/TrackRepository.php:68 msgid "Error while creating track" @@ -3641,11 +3641,11 @@ msgstr "" #: lib/SP/Repositories/User/UserRepository.php:678 #: lib/SP/Services/User/UserService.php:313 msgid "Error while updating the user" -msgstr "" +msgstr "ユーザーの更新時にエラーが発生しました" #: lib/SP/Repositories/User/UserRepository.php:185 msgid "Error while deleting the user" -msgstr "" +msgstr "ユーザーの削除時にエラーが発生しました" #: lib/SP/Repositories/User/UserRepository.php:235 #: lib/SP/Repositories/User/UserRepository.php:552 @@ -3655,63 +3655,63 @@ msgstr "" #: lib/SP/Repositories/User/UserRepository.php:354 #: lib/SP/Services/User/UserService.php:212 msgid "Error while deleting the users" -msgstr "" +msgstr "ユーザーの削除時にエラーが発生しました" #: lib/SP/Repositories/User/UserRepository.php:475 msgid "Error while creating the user" -msgstr "" +msgstr "ユーザーの作成時にエラーが発生しました" #: lib/SP/Repositories/User/UserRepository.php:698 msgid "Error while updating the preferences" -msgstr "" +msgstr "設定の更新時にエラーが発生しました" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:62 msgid "Error while deleting the group" -msgstr "" +msgstr "グループの削除時にエラーが発生しました" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:306 #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:351 msgid "Duplicated group name" -msgstr "" +msgstr "この名前のグループはすでに存在しています" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:315 msgid "Error while creating the group" -msgstr "" +msgstr "グループ作成時にエラーが発生しました" #: lib/SP/Repositories/UserGroup/UserGroupRepository.php:361 msgid "Error while updating the group" -msgstr "" +msgstr "グループの更新時にエラーが発生しました" #: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:111 msgid "Error while deleting the group users" -msgstr "" +msgstr "グループの削除時にエラーが発生しました" #: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:143 msgid "Error while setting users in the group" -msgstr "" +msgstr "グループへユーザーを追加する時にエラーが発生しました" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:79 msgid "Error while removing the profile" -msgstr "" +msgstr "プロファイルの削除時にエラーが発生しました" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 #: lib/SP/Services/UserProfile/UserProfileService.php:119 msgid "Error while removing the profiles" -msgstr "" +msgstr "プロファイルの削除時にエラーが発生しました" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:230 #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:275 msgid "Duplicated profile name" -msgstr "" +msgstr "この名前のプロファイルはすでに存在します" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:239 msgid "Error while creating the profile" -msgstr "" +msgstr "プロファイルの作成時にエラーが発生しました" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 #: lib/SP/Services/UserProfile/UserProfileService.php:146 msgid "Error while updating the profile" -msgstr "" +msgstr "プロファイルの更新時にエラーが発生しました" #: lib/SP/Services/Account/AccountCryptService.php:74 #: lib/SP/Services/Account/AccountCryptService.php:81 @@ -3721,79 +3721,79 @@ msgstr "" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:88 #: lib/SP/Services/CustomField/CustomFieldCryptService.php:113 msgid "Update Master Password" -msgstr "" +msgstr "マスターパスワードの更新" #: lib/SP/Services/Account/AccountCryptService.php:94 msgid "Error while updating the accounts' passwords" -msgstr "" +msgstr "パスワードの更新時にエラーが発生しました" #: lib/SP/Services/Account/AccountCryptService.php:120 msgid "Error while retrieving the accounts' passwords" -msgstr "" +msgstr "パスワードの復元時にエラーが発生しました" #: lib/SP/Services/Account/AccountCryptService.php:144 #, php-format msgid "Accounts updated: %d / %d" -msgstr "" +msgstr "Accounts updated: %d / %d" #: lib/SP/Services/Account/AccountCryptService.php:153 #, php-format msgid "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -msgstr "" +msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" #: lib/SP/Services/Account/AccountCryptService.php:163 msgid "The record's master password does not match" -msgstr "" +msgstr "データベース上のマスターパスワードのハッシュ値と一致しません" #: lib/SP/Services/Account/AccountCryptService.php:188 #: lib/SP/Services/Account/AccountCryptService.php:193 msgid "Error while updating the account's password" -msgstr "" +msgstr "パスワードの更新時にエラーが発生しました" #: lib/SP/Services/Account/AccountCryptService.php:199 msgid "Errors" -msgstr "" +msgstr "エラー" #: lib/SP/Services/Account/AccountCryptService.php:217 #: lib/SP/Services/Account/AccountCryptService.php:224 msgid "Update Master Password (H)" -msgstr "" +msgstr "マスターパスワードの変更履歴" #: lib/SP/Services/Account/AccountCryptService.php:240 msgid "Error while updating the accounts' passwords in history" -msgstr "" +msgstr "パスワード履歴の更新時にエラーが発生しました" #: lib/SP/Services/Account/AccountFileService.php:168 msgid "File not found" -msgstr "" +msgstr "ファイルが存在しません" #: lib/SP/Services/Account/AccountService.php:170 #: lib/SP/Services/Account/AccountService.php:630 msgid "Account not found" -msgstr "" +msgstr "アカウントが存在しません" #: lib/SP/Services/Account/AccountService.php:240 msgid "Master password not set" -msgstr "" +msgstr "マスターパスワ-ドが入力されていません" #: lib/SP/Services/Account/AccountService.php:303 #: lib/SP/Services/Account/AccountService.php:703 #: lib/SP/Services/Account/AccountService.php:758 msgid "The account doesn't exist" -msgstr "" +msgstr "アカウントが存在しません" #: lib/SP/Services/Api/ApiRequest.php:79 lib/SP/Services/Api/ApiRequest.php:113 #: lib/SP/Services/Api/ApiService.php:234 msgid "Invalid data" -msgstr "" +msgstr "Invalid data" #: lib/SP/Services/Api/ApiRequest.php:88 msgid "Invalid format" -msgstr "" +msgstr "Invalid format" #: lib/SP/Services/Api/ApiService.php:155 msgid "Wrong parameters" -msgstr "" +msgstr "Wrong parameters" #: lib/SP/Services/Auth/LoginService.php:169 #: lib/SP/Services/Auth/LoginService.php:495 @@ -3803,36 +3803,37 @@ msgstr "" #: lib/SP/Services/Auth/LoginService.php:675 #: lib/SP/Services/Auth/LoginService.php:683 msgid "Wrong login" -msgstr "" +msgstr "Wrong login" #: lib/SP/Services/Auth/LoginService.php:237 #: lib/SP/Services/Auth/LoginService.php:244 msgid "User disabled" -msgstr "" +msgstr "ユーザーを無効化" #: lib/SP/Services/Auth/LoginService.php:296 msgid "Using temporary password" -msgstr "" +msgstr "仮パスワードを利用する" #: lib/SP/Services/Auth/LoginService.php:309 #: lib/SP/Services/Auth/LoginService.php:315 #: lib/SP/Services/Auth/LoginService.php:335 #: lib/SP/Services/Auth/LoginService.php:341 msgid "Wrong master password" -msgstr "" +msgstr "マスターパスワードが一致しません" #: lib/SP/Services/Auth/LoginService.php:357 msgid "Your previous password is needed" -msgstr "" +msgstr "前のマスターパスワードが必要です" #: lib/SP/Services/Auth/LoginService.php:369 msgid "The Master Password either is not saved or is wrong" msgstr "" +"マスターパスワードが未設定か入力されたマスターパスワ-ドが間違っています" #: lib/SP/Services/Auth/LoginService.php:491 #: lib/SP/Services/Auth/LoginService.php:569 msgid "LDAP Server" -msgstr "" +msgstr "LDAP Server" #: lib/SP/Services/Auth/LoginService.php:513 #: lib/SP/Services/Auth/LoginService.php:521 @@ -3842,26 +3843,26 @@ msgstr "" #: lib/SP/Services/Auth/LoginService.php:529 #: lib/SP/Services/Auth/LoginService.php:537 msgid "User has no associated groups" -msgstr "" +msgstr "ユーザーはどのグループにも属していません" #: lib/SP/Services/Auth/LoginService.php:665 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:18 msgid "Authentication" -msgstr "" +msgstr "Authentication" #: lib/SP/Services/AuthToken/AuthTokenService.php:146 #: lib/SP/Services/AuthToken/AuthTokenService.php:284 #: lib/SP/Services/AuthToken/AuthTokenService.php:298 msgid "Token not found" -msgstr "" +msgstr "トークンがありません" #: lib/SP/Services/AuthToken/AuthTokenService.php:165 msgid "Error while removing the tokens" -msgstr "" +msgstr "トークン削除時にエラーが発生しました" #: lib/SP/Services/Backup/FileBackupService.php:108 msgid "Make Backup" -msgstr "" +msgstr "バックアップの作成" #: lib/SP/Services/Backup/FileBackupService.php:115 msgid "Error while doing the backup in compatibility mode" @@ -3869,69 +3870,69 @@ msgstr "" #: lib/SP/Services/Backup/FileBackupService.php:126 msgid "Error while doing the backup" -msgstr "" +msgstr "バックアップ作成時にエラーが発生しました" #: lib/SP/Services/Backup/FileBackupService.php:147 #, php-format msgid "Unable to create the backups directory (\"%s\")" -msgstr "" +msgstr "このディレクトリにはバックアップを作成できません (\"%s\")" #: lib/SP/Services/Backup/FileBackupService.php:152 msgid "Please, check the backup directory permissions" -msgstr "" +msgstr "“backup”ディレクトリのパーミッションを確認してください" #: lib/SP/Services/Backup/FileBackupService.php:226 msgid "Copying database" -msgstr "" +msgstr "データベースのコピー" #: lib/SP/Services/Backup/FileBackupService.php:358 #: lib/SP/Services/Backup/FileBackupService.php:382 msgid "Copying application" -msgstr "" +msgstr "アプリケーションのコピー" #: lib/SP/Services/Backup/FileBackupService.php:377 msgid "This operation is only available on Linux environments" -msgstr "" +msgstr "この操作はLinux以外の環境ではできません" #: lib/SP/Services/Category/CategoryService.php:81 #: lib/SP/Services/Category/CategoryService.php:102 #: lib/SP/Services/Category/CategoryService.php:119 msgid "Category not found" -msgstr "" +msgstr "カテゴリーが存在しません" #: lib/SP/Services/Category/CategoryService.php:138 msgid "Error while deleting categories" -msgstr "" +msgstr "カテゴリー削除時にエラーが発生しました" #: lib/SP/Services/Client/ClientService.php:81 #: lib/SP/Services/Client/ClientService.php:100 #: lib/SP/Services/Client/ClientService.php:115 msgid "Client not found" -msgstr "" +msgstr "クライアントが存在しません" #: lib/SP/Services/Config/ConfigBackupService.php:121 #: lib/SP/Services/Config/ConfigBackupService.php:128 msgid "Unable to restore the configuration" -msgstr "" +msgstr "設定を復元することはできません" #: lib/SP/Services/Config/ConfigService.php:71 #: lib/SP/Services/Config/ConfigService.php:156 #, php-format msgid "Parameter not found (%s)" -msgstr "" +msgstr "Parameter not found (%s)" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:109 msgid "Generate temporary password" -msgstr "" +msgstr "仮パスワードを発行する" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:116 msgid "Error while generating the temporary password" -msgstr "" +msgstr "仮パスワードの発行時にエラーが発生しました" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:137 #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:187 msgid "Temporary password expired" -msgstr "" +msgstr "仮パスワードの有効期限" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:166 msgid "Error while checking the temporary password" @@ -3940,31 +3941,33 @@ msgstr "" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:238 #, php-format msgid "%s Master Password" -msgstr "" +msgstr "%s マスターパスワード" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:239 msgid "" "A new sysPass master password has been generated, so next time you log into " "the application it will be requested." msgstr "" +"マスターパスワードが変更されました。次回ログイン時に新しいマスターパスワード" +"の入力が必要になります。" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:240 #, php-format msgid "The new Master Password is: %s" -msgstr "" +msgstr "新しいマスターパスワードは %s" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:241 #, php-format msgid "This password will be valid until: %s" -msgstr "" +msgstr "このパスワードの有効期限は%sです" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:242 msgid "Please, don't forget to log in as soon as possible to save the changes." -msgstr "" +msgstr "パスワード変更後はできるだけすみやかに再度ログインしてください。" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:73 msgid "There aren't any data from custom fields" -msgstr "" +msgstr "カスタムフィールドは存在しません" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:81 #: lib/SP/Services/CustomField/CustomFieldCryptService.php:89 @@ -3981,15 +3984,15 @@ msgstr "" #: lib/SP/Services/CustomField/CustomFieldCryptService.php:141 msgid "Error while updating the custom fields data" -msgstr "" +msgstr "カスタムフィールドの更新時にエラーが発生しました" #: lib/SP/Services/CustomField/CustomFieldDefService.php:114 msgid "Field not found" -msgstr "" +msgstr "フィールドが見つかりませんでした" #: lib/SP/Services/CustomField/CustomFieldDefService.php:135 msgid "Error while deleting the fields" -msgstr "" +msgstr "フィールドの削除時にエラーが発生しました" #: lib/SP/Services/CustomField/CustomFieldTypeService.php:86 msgid "Field type not found" @@ -3999,36 +4002,36 @@ msgstr "" #: lib/SP/Storage/File/FileCacheBase.php:98 #, php-format msgid "Unable to create the directory (%s)" -msgstr "" +msgstr "ディレクトリーが作成できませんでした (%s)" #: lib/SP/Services/Export/XmlExportService.php:204 msgid "Error while exporting" -msgstr "" +msgstr "エクスポート時にエラーが発生しました" #: lib/SP/Services/Export/XmlExportService.php:271 msgid "Exporting categories" -msgstr "" +msgstr "カテゴリーをエクスポート中" #: lib/SP/Services/Export/XmlExportService.php:383 msgid "Exporting clients" -msgstr "" +msgstr "クライアントをエクスポート中" #: lib/SP/Services/Export/XmlExportService.php:429 msgid "Exporting tags" -msgstr "" +msgstr "タグをエクスポート中" #: lib/SP/Services/Export/XmlExportService.php:473 msgid "Exporting accounts" -msgstr "" +msgstr "アカウントをエクスポート中" #: lib/SP/Services/Export/XmlExportService.php:583 msgid "Error while creating the XML file" -msgstr "" +msgstr "XMLファイルを作成中" #: lib/SP/Services/Export/XmlVerifyService.php:112 #: lib/SP/Services/Import/XmlFileImport.php:84 msgid "Unable to process the XML file" -msgstr "" +msgstr "XMLファイルを作成できません" #: lib/SP/Services/Export/XmlVerifyService.php:183 #: lib/SP/Services/Import/SyspassImport.php:181 @@ -4057,94 +4060,99 @@ msgstr "" #: lib/SP/Services/Import/CsvImportBase.php:184 #, php-format msgid "Please, check the CSV file format in line %s" -msgstr "" +msgstr "CSV ファイルの%s行目のフォーマットが破損しています" #: lib/SP/Services/Import/CsvImportBase.php:164 #: lib/SP/Services/Import/KeepassImport.php:105 #: lib/SP/Services/Import/SyspassImport.php:392 msgid "Account imported" -msgstr "" +msgstr "アカウントをインポートしました" #: lib/SP/Services/Import/CsvImportBase.php:172 msgid "Error while importing the account" -msgstr "" +msgstr "アカウントのインポート時にエラーが発生しました" #: lib/SP/Services/Import/CsvImportBase.php:173 msgid "Error while processing line" -msgstr "" +msgstr "処理中にエラーが発生しました" #: lib/SP/Services/Import/FileImport.php:83 msgid "File successfully uploaded" -msgstr "" +msgstr "ファイルのアップロードが完了しました" #: lib/SP/Services/Import/FileImport.php:85 msgid "Please check the web server user permissions" -msgstr "" +msgstr "webサーバーの所有者権限設定を確認してください" #: lib/SP/Services/Import/FileImport.php:108 msgid "Please, check PHP configuration for upload files" -msgstr "" +msgstr "ファイルアップロードに関するPHP設定を確認してください" #: lib/SP/Services/Import/ImportService.php:100 #, php-format msgid "Mime type not supported (\"%s\")" -msgstr "" +msgstr "このMIME Typeはサポートしていません(“%s”)" #: lib/SP/Services/Import/ImportService.php:102 msgid "Please, check the file format" -msgstr "" +msgstr "ファイルのフォーマットを確認してください" #: lib/SP/Services/Import/ImportTrait.php:111 msgid "Category Id not set. Unable to import account." msgstr "" +"カテゴリーIDが設定されていないためアカウントをインポートできませんでした。" #: lib/SP/Services/Import/ImportTrait.php:115 msgid "Client Id not set. Unable to import account." msgstr "" +"クライアントIDが設定されていないためアカウントをインポートできませんでした。" #: lib/SP/Services/Import/KeepassImport.php:60 msgid "KeePass XML Import" -msgstr "" +msgstr "KeePassのXMLファイルをインポートする" #: lib/SP/Services/Import/KeepassImport.php:93 #: lib/SP/Services/Import/SyspassImport.php:216 msgid "Category imported" -msgstr "" +msgstr "カテゴリーをインポートしました" #: lib/SP/Services/Import/SyspassImport.php:63 msgid "sysPass XML Import" -msgstr "" +msgstr "sysPassのXMLファイルをインポートする" #: lib/SP/Services/Import/SyspassImport.php:74 msgid "Encryption password not set" -msgstr "" +msgstr "パスワードが設定されていません" #: lib/SP/Services/Import/SyspassImport.php:167 msgid "Data unencrypted" -msgstr "" +msgstr "データが暗号化されていません" #: lib/SP/Services/Import/SyspassImport.php:182 msgid "" "If you are importing an exported file from the same origin, the data could " "be compromised." msgstr "" +"異なるオリジンで生成されたデータをインポートするとデータが破損する場合があり" +"ます。" #: lib/SP/Services/Import/SyspassImport.php:255 #: lib/SP/Services/Import/SyspassImport.php:295 msgid "Client imported" -msgstr "" +msgstr "クライアントをインポートしました" #: lib/SP/Services/Import/SyspassImport.php:331 msgid "Tag imported" -msgstr "" +msgstr "タグをインポートしました" #: lib/SP/Services/Import/XmlFileImport.php:108 msgid "XML file not supported" -msgstr "" +msgstr "XMLファイルに対応していません" #: lib/SP/Services/Import/XmlFileImport.php:110 msgid "Unable to guess the application which data was exported from" msgstr "" +"このデータをエクスポートしたアプリケーションの種類が判別できませんでした" #: lib/SP/Services/Import/XmlImport.php:101 msgid "Format not detected" @@ -4172,7 +4180,7 @@ msgstr "" #: lib/SP/Services/Install/Installer.php:111 msgid "Please, enter the admin username" -msgstr "" +msgstr "adminユーザー名を入力してください" #: lib/SP/Services/Install/Installer.php:113 msgid "Admin user to log into the application" @@ -4180,67 +4188,67 @@ msgstr "" #: lib/SP/Services/Install/Installer.php:118 msgid "Please, enter the admin's password" -msgstr "" +msgstr "adminユーザーのパスワードを入力してください" #: lib/SP/Services/Install/Installer.php:120 msgid "Application administrator's password" -msgstr "" +msgstr "アプリケーション管理者のパスワードを入力してください" #: lib/SP/Services/Install/Installer.php:125 msgid "Please, enter the Master Password" -msgstr "" +msgstr "マスターパスワードを入力してください" #: lib/SP/Services/Install/Installer.php:127 msgid "Master password to encrypt the passwords" -msgstr "" +msgstr "マスターパスワードにより全てのパスワードが暗号化された形で保存されます" #: lib/SP/Services/Install/Installer.php:132 msgid "Master password too short" -msgstr "" +msgstr "マスターパスワードが短すぎます" #: lib/SP/Services/Install/Installer.php:134 msgid "The Master Password length need to be at least 11 characters" -msgstr "" +msgstr "マスターパスワードは11文字以上にしてください" #: lib/SP/Services/Install/Installer.php:139 msgid "Please, enter the database user" -msgstr "" +msgstr "データベース接続のためのユーザー名を入力してください" #: lib/SP/Services/Install/Installer.php:141 msgid "An user with database administrative rights" -msgstr "" +msgstr "データベースの管理者権限を持つユーザー" #: lib/SP/Services/Install/Installer.php:146 msgid "Please, enter the database password" -msgstr "" +msgstr "データベース接続のためのパスワードを入力してください" #: lib/SP/Services/Install/Installer.php:148 msgid "Database administrator's password" -msgstr "" +msgstr "データベースの管理者権限を持つユーザーのパスワードを入力してください" #: lib/SP/Services/Install/Installer.php:153 msgid "Please, enter the database name" -msgstr "" +msgstr "データベース名を入力してください" #: lib/SP/Services/Install/Installer.php:155 msgid "Application database name. eg. syspass" -msgstr "" +msgstr "sysPassで利用するデータベースです(例: sysPass)" #: lib/SP/Services/Install/Installer.php:160 msgid "Database name cannot contain \".\"" -msgstr "" +msgstr "データベース名に「.」を含めることはできません" #: lib/SP/Services/Install/Installer.php:162 msgid "Please, remove dots in database name" -msgstr "" +msgstr "データベース名にピリオドを含めることはできません" #: lib/SP/Services/Install/Installer.php:167 msgid "Please, enter the database server" -msgstr "" +msgstr "データベースのホスト名を入力してください" #: lib/SP/Services/Install/Installer.php:169 msgid "Server where the database will be installed" -msgstr "" +msgstr "データベースがインストールされているサーバーのホスト名" #: lib/SP/Services/Install/Installer.php:324 #: lib/SP/Services/Install/Installer.php:375 @@ -4249,16 +4257,16 @@ msgstr "" #: lib/SP/Services/Install/Installer.php:365 msgid "Error while creating 'admin' user" -msgstr "" +msgstr "adminユーザー作成中にエラーが発生しました" #: lib/SP/Services/Install/MySQL.php:135 #, php-format msgid "Unable to check the sysPass user (%s)" -msgstr "" +msgstr "ユーザーのチェック時中にエラーが発生しました(%s)" #: lib/SP/Services/Install/MySQL.php:137 msgid "Please, check the DB connection user rights" -msgstr "" +msgstr "データベースとのコネクションを確認してください" #: lib/SP/Services/Install/MySQL.php:181 #, php-format @@ -4267,34 +4275,34 @@ msgstr "" #: lib/SP/Services/Install/MySQL.php:201 msgid "The database already exists" -msgstr "" +msgstr "この名前のデータベースはすでに存在しています" #: lib/SP/Services/Install/MySQL.php:203 msgid "Please, enter a new database or delete the existing one" -msgstr "" +msgstr "異なるデータベース名を使用するか、既存のデータベースを削除してください" #: lib/SP/Services/Install/MySQL.php:213 lib/SP/Services/Install/MySQL.php:329 #: lib/SP/Services/Install/MySQL.php:341 #, php-format msgid "Error while creating the DB ('%s')" -msgstr "" +msgstr "データベース作成時にエラーが発生しました(%s)" #: lib/SP/Services/Install/MySQL.php:215 lib/SP/Services/Install/MySQL.php:239 msgid "Please check the database user permissions" -msgstr "" +msgstr "データベースのパーミッションを確認してください" #: lib/SP/Services/Install/MySQL.php:237 #, php-format msgid "Error while setting the database permissions ('%s')" -msgstr "" +msgstr "データベースのパーミッション設定時にエラーが発生しました(%s)" #: lib/SP/Services/Install/MySQL.php:251 msgid "The database does not exist" -msgstr "" +msgstr "データベースが存在しません" #: lib/SP/Services/Install/MySQL.php:253 msgid "You need to create it and assign the needed permissions" -msgstr "" +msgstr "データベースに適切なパーミッションを持ったユーザーを作成してください" #: lib/SP/Services/Install/MySQL.php:309 #, php-format @@ -4306,14 +4314,16 @@ msgid "" "Unable to use the database to create the structure. Please check the " "permissions and it does not exist." msgstr "" +"データベースの構築に失敗しました。適切なパーミッションが設定されているか確認" +"してください。" #: lib/SP/Services/Install/MySQL.php:331 msgid "Error while creating database structure." -msgstr "" +msgstr "データベース構築時にエラーが発生しました。" #: lib/SP/Services/Install/MySQL.php:365 msgid "Please, try the installation again" -msgstr "" +msgstr "もういちど最初からインストール作業を行ってください" #: lib/SP/Services/ItemPreset/ItemPresetService.php:86 #: lib/SP/Services/ItemPreset/ItemPresetService.php:107 @@ -4332,31 +4342,33 @@ msgstr "" #: lib/SP/Services/Ldap/LdapImportService.php:133 #: lib/SP/Services/Ldap/LdapImportService.php:222 msgid "Imported from LDAP" -msgstr "" +msgstr "LDAPをインポートしました" #: lib/SP/Services/Mail/MailService.php:67 msgid "Mail test" -msgstr "" +msgstr "メールのテスト" #: lib/SP/Services/Mail/MailService.php:68 msgid "" "This is a test email in order to verify that the configuration is working " "right." msgstr "" +"本メールはsysPassのメール設定が正しく機能しているかを確認するためのテストメー" +"ルです。" #: lib/SP/Services/Notification/NotificationService.php:106 #: lib/SP/Services/Notification/NotificationService.php:125 #: lib/SP/Services/Notification/NotificationService.php:184 #: lib/SP/Services/Notification/NotificationService.php:214 msgid "Notification not found" -msgstr "" +msgstr "通知はありません" #: lib/SP/Services/Plugin/PluginDataService.php:103 #: lib/SP/Services/Plugin/PluginDataService.php:127 #: lib/SP/Services/Plugin/PluginDataService.php:171 #: lib/SP/Services/Plugin/PluginDataService.php:189 msgid "Plugin's data not found" -msgstr "" +msgstr "プラグインデータがありません" #: lib/SP/Services/Plugin/PluginService.php:94 #: lib/SP/Services/Plugin/PluginService.php:155 @@ -4367,7 +4379,7 @@ msgstr "" #: lib/SP/Services/Plugin/PluginService.php:260 #: lib/SP/Services/Plugin/PluginService.php:277 msgid "Plugin not found" -msgstr "" +msgstr "プラグインはありません" #: lib/SP/Services/PublicLink/PublicLinkService.php:129 #: lib/SP/Services/PublicLink/PublicLinkService.php:152 @@ -4376,36 +4388,36 @@ msgstr "" #: lib/SP/Services/PublicLink/PublicLinkService.php:339 #: lib/SP/Services/PublicLink/PublicLinkService.php:360 msgid "Link not found" -msgstr "" +msgstr "関連しているアカウントはありません" #: lib/SP/Services/PublicLink/PublicLinkService.php:245 msgid "Error while removing the links" -msgstr "" +msgstr "関連するアカウントを解除する時にエラーが発生しました" #: lib/SP/Services/Service.php:111 msgid "Rollback" -msgstr "" +msgstr "Rollback" #: lib/SP/Services/Service.php:117 msgid "Unable to start a transaction" -msgstr "" +msgstr "トランザクションを開始できません" #: lib/SP/Services/Service.php:135 lib/SP/Services/Service.php:142 msgid "Error while retrieving master password from context" -msgstr "" +msgstr "マスターパスワードの復元時にエラーが発生しました" #: lib/SP/Services/Service.php:162 lib/SP/Services/Service.php:166 msgid "Error while setting master password in context" -msgstr "" +msgstr "マスターパスワードの設定時にエラーが発生しました" #: lib/SP/Services/Tag/TagService.php:81 lib/SP/Services/Tag/TagService.php:100 #: lib/SP/Services/Tag/TagService.php:117 msgid "Tag not found" -msgstr "" +msgstr "タグが見つかりません" #: lib/SP/Services/Task/TaskService.php:85 msgid "Unable to create the lock file" -msgstr "" +msgstr "ロックファイルが生成できません" #: lib/SP/Services/Task/TaskService.php:94 msgid "Task not set within wait time" @@ -4413,13 +4425,13 @@ msgstr "" #: lib/SP/Services/Task/TaskService.php:183 msgid "Waiting for progress updating ..." -msgstr "" +msgstr "アップデート中です、しばらくお待ちください…" #: lib/SP/Services/Track/TrackService.php:94 #: lib/SP/Services/Track/TrackService.php:108 #: lib/SP/Services/Track/TrackService.php:135 msgid "Track not found" -msgstr "" +msgstr "トラックがありません" #: lib/SP/Services/Track/TrackService.php:169 #, php-format @@ -4428,31 +4440,31 @@ msgstr "" #: lib/SP/Services/Track/TrackService.php:170 msgid "Seconds" -msgstr "" +msgstr "秒" #: lib/SP/Services/Track/TrackService.php:215 msgid "IP address not set" -msgstr "" +msgstr "IPアドレスがありません" #: lib/SP/Services/Upgrade/UpgradeAppService.php:72 #: lib/SP/Services/Upgrade/UpgradeAppService.php:95 msgid "Update Application" -msgstr "" +msgstr "アプリケーションのアップデート" #: lib/SP/Services/Upgrade/UpgradeAppService.php:79 msgid "Error while applying the application update" -msgstr "" +msgstr "アプリケーションのアプデートを開始できませんでした" #: lib/SP/Services/Upgrade/UpgradeAppService.php:81 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:112 msgid "Please, check the event log for more details" -msgstr "" +msgstr "event logを確認してください" #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:56 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:86 msgid "API authorizations update" -msgstr "" +msgstr "API認証の更新" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:81 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:215 @@ -4460,33 +4472,33 @@ msgstr "" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:310 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:335 msgid "Update Configuration" -msgstr "" +msgstr "設定の更新" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:93 msgid "Parameter" -msgstr "" +msgstr "パラメ-ター" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:132 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:136 msgid "Error while updating the configuration" -msgstr "" +msgstr "設定の更新時にエラーが発生しました" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:287 msgid "MIME type set for this extension" -msgstr "" +msgstr "この拡張子に設定されたMIME Type" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:288 msgid "MIME type" -msgstr "" +msgstr "MIME Type" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:289 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:298 msgid "Extension" -msgstr "" +msgstr "Extension" #: lib/SP/Services/Upgrade/UpgradeConfigService.php:297 msgid "MIME type not found for this extension" -msgstr "" +msgstr "この拡張子に対応するMIME Typeが見つかりませんでした" #: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:58 #: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:89 @@ -4497,12 +4509,12 @@ msgstr "" #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:222 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:268 msgid "Custom fields update" -msgstr "" +msgstr "カスタムフィールドの更新" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:95 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:126 msgid "Update DB" -msgstr "" +msgstr "データベースの更新" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:102 msgid "Error while applying an auxiliary update" @@ -4512,78 +4524,78 @@ msgstr "" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:181 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 msgid "Error while updating the database" -msgstr "" +msgstr "データベースの更新中にエラーが発生しました" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:158 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:160 msgid "Update file does not contain data" -msgstr "" +msgstr "アップロードされたファイルにデータがありません" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:191 msgid "Database updating was completed successfully." -msgstr "" +msgstr "データベースは正常に更新されました。" #: lib/SP/Services/Upgrade/UpgradePlugin.php:49 #: lib/SP/Services/Upgrade/UpgradePlugin.php:58 msgid "Plugins upgrade" -msgstr "" +msgstr "プラグインのアップデート" #: lib/SP/Services/Upgrade/UpgradePublicLink.php:57 #: lib/SP/Services/Upgrade/UpgradePublicLink.php:103 msgid "Public links update" -msgstr "" +msgstr "共有リンクの再発行" #: lib/SP/Services/User/UserPassService.php:261 #: lib/SP/Services/User/UserService.php:126 #: lib/SP/Services/User/UserService.php:157 #: lib/SP/Services/User/UserService.php:176 msgid "User does not exist" -msgstr "" +msgstr "ユーザーが存在しません" #: lib/SP/Services/User/UserService.php:195 msgid "User not found" -msgstr "" +msgstr "ユーザーが見つかりません" #: lib/SP/Services/UserGroup/UserGroupService.php:85 #: lib/SP/Services/UserGroup/UserGroupService.php:103 #: lib/SP/Services/UserGroup/UserGroupService.php:192 #: lib/SP/Services/UserGroup/UserToUserGroupService.php:61 msgid "Group not found" -msgstr "" +msgstr "グループが見つかりません" #: lib/SP/Services/UserGroup/UserGroupService.php:120 msgid "Error while deleting the groups" -msgstr "" +msgstr "グループ削除時にエラーが発生しました" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:73 msgid "A request for changing your user password has been done." -msgstr "" +msgstr "ユーザーパスワードの変更リクエストが完了しました。" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:75 msgid "In order to complete the process, please go to this URL:" -msgstr "" +msgstr "処理が完了しました。以下のURLにアクセスしてください:" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:79 msgid "If you have not requested this action, please dismiss this message." -msgstr "" +msgstr "この操作に見覚えがない場合はこのままこのメッセージを閉じてください。" #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:94 #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:162 msgid "Wrong hash or expired" -msgstr "" +msgstr "ハッシュが一致しないもしくは、有効期限切れです" #: lib/SP/Services/UserProfile/UserProfileService.php:70 #: lib/SP/Services/UserProfile/UserProfileService.php:102 msgid "Profile not found" -msgstr "" +msgstr "プロファイルが見つかりません" #: lib/SP/Services/Wiki/DokuWikiApi.php:69 msgid "Authentication error" -msgstr "" +msgstr "認証エラー" #: lib/SP/Services/Wiki/DokuWikiApiBase.php:198 msgid "Error while doing the query" -msgstr "" +msgstr "検索中にエラーが発生しました" #: lib/SP/Services/Wiki/DokuWikiApiBase.php:230 msgid "Connection URL not set" @@ -4600,7 +4612,7 @@ msgstr "" #: lib/SP/Storage/Database/MySQLHandler.php:101 #: lib/SP/Storage/Database/MySQLHandler.php:168 msgid "Please, check the connection parameters" -msgstr "" +msgstr "接続設定を確認してください" #: lib/SP/Storage/Database/QueryData.php:338 msgid "Error while querying" @@ -4655,7 +4667,7 @@ msgstr "" #: lib/SP/Storage/File/FileHandler.php:276 #, php-format msgid "File not found (%s)" -msgstr "" +msgstr "ファイルが見つかりませんでした(%s)" #: lib/SP/Storage/File/FileHandler.php:301 #: lib/SP/Storage/File/FileHandler.php:356 @@ -4703,41 +4715,43 @@ msgstr "" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:80 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:141 msgid "User preferences" -msgstr "" +msgstr "ユーザー設定" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:84 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:87 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:163 #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:166 msgid "Sign Out" -msgstr "" +msgstr "サインアウト" #: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:179 #: app/modules/web/themes/material-blue/views/_partials/footer.inc:60 msgid "Demo" -msgstr "" +msgstr "デモ" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 msgid "Tells whether the connection uses HTTPS or not." -msgstr "" +msgstr "接続にHTTPSを利用しているかを通知します。" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 msgid "" "Passwords sent from forms are encrypted using PKI, the remain data don't." msgstr "" +"ブラウザからサーバーに送信されるパスワードはすべてPKIで暗号化された後に送信さ" +"れますが、パスワード以外の情報はそのまま送信されます。" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:74 msgid "Help :: FAQ :: Changelog" -msgstr "" +msgstr "Help :: FAQ :: Changelog" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:79 msgid "A cygnux.org project" -msgstr "" +msgstr "A cygnux.org project" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:13 msgid "Special parameters" -msgstr "" +msgstr "Special parameters" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:15 msgid "" @@ -4796,7 +4810,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/_partials/no_records_found.inc:13 #: app/modules/web/themes/material-blue/views/account/search-index.inc:22 msgid "No records found" -msgstr "" +msgstr "該当するものはありません" #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:100 #: app/modules/web/themes/material-blue/views/account/account.inc:186 @@ -4808,7 +4822,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:76 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:46 msgid "Password (repeat)" -msgstr "" +msgstr "Password (repeat)" #: app/modules/web/themes/material-blue/views/account/account-editpass.inc:128 #: app/modules/web/themes/material-blue/views/account/account-history.inc:168 @@ -4816,7 +4830,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:311 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:288 msgid "Select date" -msgstr "" +msgstr "日付選択" #: app/modules/web/themes/material-blue/views/account/account-history.inc:26 #: app/modules/web/themes/material-blue/views/account/account-history.inc:160 @@ -4824,20 +4838,20 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/account.inc:303 #: app/modules/web/themes/material-blue/views/account/account.inc:305 msgid "History" -msgstr "" +msgstr "履歴" #: app/modules/web/themes/material-blue/views/account/account-history.inc:37 #: app/modules/web/themes/material-blue/views/account/account.inc:56 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:32 msgid "Details" -msgstr "" +msgstr "詳細" #: app/modules/web/themes/material-blue/views/account/account-history.inc:91 #: app/modules/web/themes/material-blue/views/account/account.inc:126 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:53 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 msgid "Select Category" -msgstr "" +msgstr "カテゴリーを選択" #: app/modules/web/themes/material-blue/views/account/account-history.inc:144 #: app/modules/web/themes/material-blue/views/account/account-link.inc:93 @@ -4846,7 +4860,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:182 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:189 msgid "Notes" -msgstr "" +msgstr "メモ" #: app/modules/web/themes/material-blue/views/account/account-history.inc:181 #: app/modules/web/themes/material-blue/views/account/account.inc:326 @@ -4855,7 +4869,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:314 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:316 msgid "Last Modification" -msgstr "" +msgstr "最終編集" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:33 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:66 @@ -4865,7 +4879,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:68 msgid "Select Users" -msgstr "" +msgstr "選択中のユーザー" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:43 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:47 @@ -4877,7 +4891,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:79 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 msgid "View" -msgstr "" +msgstr "表示" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:105 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:138 @@ -4886,7 +4900,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:68 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:86 msgid "Select Groups" -msgstr "" +msgstr "グループを選択" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:188 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:126 @@ -4897,7 +4911,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 #: app/modules/web/themes/material-blue/views/notification/notification.inc:100 msgid "Select User" -msgstr "" +msgstr "ユーザーを選択" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:212 #: app/modules/web/themes/material-blue/views/config/encryption.inc:306 @@ -4908,80 +4922,80 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:171 msgid "Select Group" -msgstr "" +msgstr "グループを選択" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:236 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:201 msgid "Private" -msgstr "" +msgstr "プライベート" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:254 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:218 msgid "Private for Group" -msgstr "" +msgstr "プライベートグループ" #: app/modules/web/themes/material-blue/views/account/account-request.inc:21 msgid "Request Account Modification" -msgstr "" +msgstr "アカウントの修正をリクエスト" #: app/modules/web/themes/material-blue/views/account/account-request.inc:65 msgid "Request description" -msgstr "" +msgstr "リクエストの概要" #: app/modules/web/themes/material-blue/views/account/account-request.inc:87 msgid "Send" -msgstr "" +msgstr "送信" #: app/modules/web/themes/material-blue/views/account/account.inc:46 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:145 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:30 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:236 msgid "Permissions" -msgstr "" +msgstr "Permissions" #: app/modules/web/themes/material-blue/views/account/account.inc:100 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:43 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 msgid "Select Client" -msgstr "" +msgstr "クライアントを選択" #: app/modules/web/themes/material-blue/views/account/account.inc:245 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 msgid "Select Tags" -msgstr "" +msgstr "タグを選択" #: app/modules/web/themes/material-blue/views/account/account.inc:294 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:35 msgid "Select Account" -msgstr "" +msgstr "アカウントを選択" #: app/modules/web/themes/material-blue/views/account/account.inc:334 #: app/modules/web/themes/material-blue/views/account/account.inc:336 #: app/modules/web/themes/material-blue/views/account/account.inc:340 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:206 msgid "Public Link" -msgstr "" +msgstr "共有リンク" #: app/modules/web/themes/material-blue/views/account/account.inc:348 #: app/modules/web/themes/material-blue/views/account/account.inc:350 #: app/modules/web/themes/material-blue/views/account/account.inc:354 msgid "Direct Link" -msgstr "" +msgstr "ダイレクトリンク" #: app/modules/web/themes/material-blue/views/account/details.inc:28 #: app/modules/web/themes/material-blue/views/account/details.inc:30 msgid "Date Added" -msgstr "" +msgstr "日付を追加しました" #: app/modules/web/themes/material-blue/views/account/details.inc:66 #: app/modules/web/themes/material-blue/views/account/details.inc:68 msgid "Date Modified" -msgstr "" +msgstr "日付を変更しました" #: app/modules/web/themes/material-blue/views/account/details.inc:74 #: app/modules/web/themes/material-blue/views/account/details.inc:76 msgid "Editor" -msgstr "" +msgstr "Editor" #: app/modules/web/themes/material-blue/views/account/details.inc:84 #: app/modules/web/themes/material-blue/views/account/details.inc:86 @@ -4991,76 +5005,77 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/files.inc:45 msgid "Drop files here (max. 5) or click to select" msgstr "" +"ファイルをドラッグアンドドロップ(Max 5 files) / クリックしてファイルを選択" #: app/modules/web/themes/material-blue/views/account/files.inc:47 #, php-format msgid "Maximum file size: %d MB" -msgstr "" +msgstr "最大ファイルサイズ: %d MB" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:44 msgid "Search in Wiki" -msgstr "" +msgstr "Wiki検索" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:95 #, php-format msgid "Open link to: %s" -msgstr "" +msgstr "Open link to: %s" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:123 msgid "Password Expired" -msgstr "" +msgstr "パスワードの有効期限" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:137 msgid "Private Account (Group)" -msgstr "" +msgstr "プライベートアカウント(グループ)" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:162 msgid "Delete Favorite" -msgstr "" +msgstr "お気に入りの解除" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:172 msgid "Mark as Favorite" -msgstr "" +msgstr "お気に入りに追加" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:195 msgid "Attachments" -msgstr "" +msgstr "添付" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:208 msgid "Expiry Date" -msgstr "" +msgstr "有効期限" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:222 #: app/modules/web/themes/material-blue/views/account/search-rows.inc:233 msgid "Link to Wiki" -msgstr "" +msgstr "Wikiへのリンク" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:225 msgid "View at Wiki" -msgstr "" +msgstr "Wikiを表示" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:70 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:76 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:254 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:255 msgid "Global search" -msgstr "" +msgstr "Global search" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:89 msgid "Display All" -msgstr "" +msgstr "Display All" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:96 msgid "Show Favorites" -msgstr "" +msgstr "お気に入りを表示" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:101 msgid "Favorites Filtering" -msgstr "" +msgstr "お気に入りから検索" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:120 msgid "Accounts per page" -msgstr "" +msgstr "1画面あたりの表示数" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:128 msgid "More Filters" @@ -5068,23 +5083,23 @@ msgstr "" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:134 msgid "Select Tag" -msgstr "" +msgstr "タグの選択" #: app/modules/web/themes/material-blue/views/account/viewpass.inc:30 msgid "Copy Username" -msgstr "" +msgstr "ユーザー名をコピー" #: app/modules/web/themes/material-blue/views/account/viewpass.inc:48 msgid "Copy Password" -msgstr "" +msgstr "パスワードをコピー" #: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:26 msgid "Data will be encrypted after saving" -msgstr "" +msgstr "データは暗号化処理をした後保存されます" #: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:31 msgid "Data will be unencrypted after saving" -msgstr "" +msgstr "データは暗号化されずに保存されます" #: app/modules/web/themes/material-blue/views/config/accounts.inc:18 #: app/modules/web/themes/material-blue/views/config/backup.inc:18 @@ -5093,79 +5108,82 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:17 #, php-format msgid "The '%s' extension is unavailable" -msgstr "" +msgstr "“%s” プラグインが動作していません" #: app/modules/web/themes/material-blue/views/config/accounts.inc:23 msgid "This extension is needed to display passwords as images" msgstr "" +"このプラグインはパスワードを文字ではなく画像として表示するために必要です" #: app/modules/web/themes/material-blue/views/config/accounts.inc:36 msgid "Searching" -msgstr "" +msgstr "検索中" #: app/modules/web/themes/material-blue/views/config/accounts.inc:42 #: app/modules/web/themes/material-blue/views/config/accounts.inc:62 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:64 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:84 msgid "Results per page" -msgstr "" +msgstr "Results per page" #: app/modules/web/themes/material-blue/views/config/accounts.inc:48 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:70 msgid "Number of results per page to display when performing a search." -msgstr "" +msgstr "1画面あたりの検索結果の表示数。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:82 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:35 msgid "Accounts password expiry" -msgstr "" +msgstr "アカウントのパスワードの有効期限" #: app/modules/web/themes/material-blue/views/config/accounts.inc:83 msgid "Enables the accounts password expiry date." -msgstr "" +msgstr "アカウントのパスワードに有効期限を設定しました。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:91 msgid "Password expiry time" -msgstr "" +msgstr "パスワードの有効期限" #: app/modules/web/themes/material-blue/views/config/accounts.inc:97 msgid "Number of days for account's password expiry date." -msgstr "" +msgstr "パスワードの有効期限。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:109 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:43 msgid "Expire time (days)" -msgstr "" +msgstr "有効期限(日)" #: app/modules/web/themes/material-blue/views/config/accounts.inc:128 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:103 msgid "Account name as link" -msgstr "" +msgstr "アカウント名のリンク" #: app/modules/web/themes/material-blue/views/config/accounts.inc:129 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:105 msgid "Enables to use the account name as a link to account details." -msgstr "" +msgstr "アカウント名をリンクにする。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:145 msgid "Global searches" -msgstr "" +msgstr "グローバル検索" #: app/modules/web/themes/material-blue/views/config/accounts.inc:146 msgid "" "Allows the users to do searches that includes all accounts, they won't be " "able to display the account details if they don't have permission." msgstr "" +"全てのアカウントから検索できますが、アカウントの詳細を閲覧できるのは権限を" +"持ったユーザーのみです。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:162 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:166 msgid "Image to show password" -msgstr "" +msgstr "パスワードを画像で表示する" #: app/modules/web/themes/material-blue/views/config/accounts.inc:164 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:168 msgid "Generate an image with a text of the account password." -msgstr "" +msgstr "パスワードを文字ではなく画像として表示します。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:166 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:170 @@ -5173,20 +5191,22 @@ msgid "" "Useful for environments where copying a password to clipboard is a security " "risk." msgstr "" +"パスワードをクリップボードにコピーすることは、場合によってはセキュリティーリ" +"スクにつながります。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:183 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:175 msgid "Results like Cards" -msgstr "" +msgstr "カード表示" #: app/modules/web/themes/material-blue/views/config/accounts.inc:185 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:177 msgid "Displays account's search results on a card like format." -msgstr "" +msgstr "アカウントを四角いカードスタイルで表示します。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:202 msgid "Secondary Groups Access" -msgstr "" +msgstr "Secondary Groups Access" #: app/modules/web/themes/material-blue/views/config/accounts.inc:204 msgid "Grants access to users that are included in secondary groups." @@ -5201,160 +5221,174 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/accounts.inc:217 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:412 msgid "Public Links" -msgstr "" +msgstr "共有リンク" #: app/modules/web/themes/material-blue/views/config/accounts.inc:236 msgid "Enable Public Links" -msgstr "" +msgstr "共有リンクを有効化" #: app/modules/web/themes/material-blue/views/config/accounts.inc:238 msgid "Enables the ability to create public links to view an account's details" -msgstr "" +msgstr "共有リンク機能を有効化します" #: app/modules/web/themes/material-blue/views/config/accounts.inc:240 msgid "Linked accounts will be visible by anyone that have the link." -msgstr "" +msgstr "共有リンクを知っている全てのユーザーがアクセスできるようになります。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:242 msgid "" "In order to create links, users must have activated the option on their " "profiles." msgstr "" +"共有リンクを作成するには各ユーザーの個人設定から有効化する必要があります。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:259 msgid "Use an image for password" -msgstr "" +msgstr "パスワードを画像で表示する" #: app/modules/web/themes/material-blue/views/config/accounts.inc:261 msgid "The account password is shown as image." -msgstr "" +msgstr "アカウントのパスワードを文字ではなく画像で表示します。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:270 msgid "Expire time" -msgstr "" +msgstr "有効期限" #: app/modules/web/themes/material-blue/views/config/accounts.inc:281 msgid "Expire time (minutes)" -msgstr "" +msgstr "有効期限(分)" #: app/modules/web/themes/material-blue/views/config/accounts.inc:287 #: app/modules/web/themes/material-blue/views/config/accounts.inc:298 msgid "Maximum visits" -msgstr "" +msgstr "最大閲覧数" #: app/modules/web/themes/material-blue/views/config/accounts.inc:325 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 msgid "Files management" -msgstr "" +msgstr "ファイル管理" #: app/modules/web/themes/material-blue/views/config/accounts.inc:326 msgid "Enables the uploading and downloading of accounts files." -msgstr "" +msgstr "ファイルのアップロード・ダウンロード機能を有効化します。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:334 #: app/modules/web/themes/material-blue/views/config/accounts.inc:348 msgid "Allowed MIME types" -msgstr "" +msgstr "このMIME Typeを許可する" #: app/modules/web/themes/material-blue/views/config/accounts.inc:340 msgid "Allowed file MIME types for uploading." -msgstr "" +msgstr "このMIME Typeのアップロードは許可されています。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:343 msgid "" "In order to add more MIME types, you need to add them into mime.xml file " "within the config directory." msgstr "" +"MIME Typebの設定を変更するには“config”ディレクトリ内の”mime.xml”ファイルを編" +"集してください。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:365 msgid "Maximum file size" -msgstr "" +msgstr "最大ファイルサイズ" #: app/modules/web/themes/material-blue/views/config/accounts.inc:371 msgid "Sets the maximum file size for uploading." -msgstr "" +msgstr "アップロードできる最大ファイルサイズ。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:375 msgid "Absolute maximum is 16MB." -msgstr "" +msgstr "設定できる上限値は16MBです。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:388 msgid "Maximum file size in kilobytes" -msgstr "" +msgstr "最大ファイルサイズはKB(キロバイト)で設定してください" #: app/modules/web/themes/material-blue/views/config/backup.inc:23 msgid "This extension is needed to build the application's backup files" msgstr "" +"このエクステンションはアプリケーションのバックアップを作成するために必要です" #: app/modules/web/themes/material-blue/views/config/backup.inc:37 #: app/modules/web/themes/material-blue/views/config/backup.inc:40 #: app/modules/web/themes/material-blue/views/config/backup.inc:118 #: app/modules/web/themes/material-blue/views/config/backup.inc:121 msgid "Result" -msgstr "" +msgstr "Result" #: app/modules/web/themes/material-blue/views/config/backup.inc:48 #: app/modules/web/themes/material-blue/views/config/backup.inc:51 #: app/modules/web/themes/material-blue/views/config/backup.inc:129 #: app/modules/web/themes/material-blue/views/config/backup.inc:132 msgid "Download Current" -msgstr "" +msgstr "ダウンロード" #: app/modules/web/themes/material-blue/views/config/backup.inc:58 msgid "DB Backup" -msgstr "" +msgstr "DB Backup" #: app/modules/web/themes/material-blue/views/config/backup.inc:65 msgid "sysPass Backup" -msgstr "" +msgstr "sysPass Backup" #: app/modules/web/themes/material-blue/views/config/backup.inc:88 msgid "" "The backup allows you to save and download sysPass database and application " "files including its configuration." msgstr "" +"sysPassのアプリケーション構成とデータベースのバックアップファイルを作成・ダウ" +"ンロードできます。" #: app/modules/web/themes/material-blue/views/config/backup.inc:90 msgid "" "With this method it's possible to either save all sysPass data in another " "place or use it to make the application portable." msgstr "" +"sysPass全体のバックアップを作成し、別の場所に同じsysPassサーバーを構築するこ" +"とやそのままUSBなどにコピーしてオフラインで利用することができます。" #: app/modules/web/themes/material-blue/views/config/backup.inc:109 #: app/modules/web/themes/material-blue/views/config/backup.inc:197 msgid "Export Accounts" -msgstr "" +msgstr "Export Accounts" #: app/modules/web/themes/material-blue/views/config/backup.inc:149 #: app/modules/web/themes/material-blue/views/config/backup.inc:157 msgid "Export Password" -msgstr "" +msgstr "Export Password" #: app/modules/web/themes/material-blue/views/config/backup.inc:163 #: app/modules/web/themes/material-blue/views/config/backup.inc:172 msgid "Export Password (repeat)" -msgstr "" +msgstr "Export Password (repeat)" #: app/modules/web/themes/material-blue/views/config/backup.inc:199 msgid "" "The accounts export allows you to save the accounts and their data in XML " "format to be imported in another sysPass instance." msgstr "" +"アカウント情報をXML形式でエクスポートして、他のsysPassにインポートすることが" +"できます。" #: app/modules/web/themes/material-blue/views/config/backup.inc:201 msgid "Exported items are accounts, clients, categories and tags." -msgstr "" +msgstr "アカウント・クライアント・カテゴリー・タグをエクスポートします。" #: app/modules/web/themes/material-blue/views/config/backup.inc:203 msgid "" "Accounts' password are exported in an encrypted way for better security." msgstr "" +"エクスポート時に全てのアカウントのパスワードは暗号化された状態でエクスポート" +"されます。" #: app/modules/web/themes/material-blue/views/config/backup.inc:205 msgid "" "It's possible to set an export password to save all the encrypted data in " "the XML file." msgstr "" +"エクスポートパスワードを用いて全てのデータを暗号化した状態でXMLファイルにエク" +"スポートすることができます。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:24 #: app/modules/web/themes/material-blue/views/config/encryption.inc:173 @@ -5365,48 +5399,51 @@ msgstr "" #: app/modules/web/themes/material-blue/views/login/index.inc:62 #: app/modules/web/themes/material-blue/views/login/index.inc:110 msgid "Master Password" -msgstr "" +msgstr "マスターパスワード" #: app/modules/web/themes/material-blue/views/config/encryption.inc:31 #: app/modules/web/themes/material-blue/views/config/encryption.inc:34 #: app/modules/web/themes/material-blue/views/config/encryption.inc:219 #: app/modules/web/themes/material-blue/views/config/encryption.inc:222 msgid "Last change" -msgstr "" +msgstr "最終変更" #: app/modules/web/themes/material-blue/views/config/encryption.inc:42 #: app/modules/web/themes/material-blue/views/config/encryption.inc:51 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:148 msgid "Current Master Password" -msgstr "" +msgstr "Current Master Password" #: app/modules/web/themes/material-blue/views/config/encryption.inc:57 #: app/modules/web/themes/material-blue/views/config/encryption.inc:66 msgid "New Master Password" -msgstr "" +msgstr "New Master Password" #: app/modules/web/themes/material-blue/views/config/encryption.inc:72 #: app/modules/web/themes/material-blue/views/config/encryption.inc:81 msgid "New Master Password (repeat)" -msgstr "" +msgstr "New Master Password (repeat)" #: app/modules/web/themes/material-blue/views/config/encryption.inc:96 msgid "You should save the new password on a secure place" -msgstr "" +msgstr "パスワードは安全な方法で保存されます" #: app/modules/web/themes/material-blue/views/config/encryption.inc:100 msgid "All accounts passwords will be encrypted again." -msgstr "" +msgstr "保存されている全てのパスワードを再暗号化します。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:104 msgid "Users will need to enter the new Master Password." msgstr "" +"全てのユーザーはログイン時に新しいマスターパスワードの入力を求められるように" +"なります。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:108 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:136 #, php-format msgid "It will be updated %s accounts. This process could take some time long." msgstr "" +"現在%s個目のアカウントを処理中です。処理の完了までしばらくお待ちください。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:126 msgid "Do not modify accounts" @@ -5414,7 +5451,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:128 msgid "Sets a new Master Password without re-encrypting the accounts." -msgstr "" +msgstr "アカウントを再暗号化せずにマスターパスワードを変更します。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:145 msgid "Confirm change" @@ -5425,18 +5462,23 @@ msgid "" "Confirm the master password change after you have been read all the above " "warnings." msgstr "" +"上記の説明を全て読みマスターパスワードを変更することによって起こる影響を理解" +"した上で処理を行ってください。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:175 msgid "" "The Master Password is used to encrypt sysPass accounts passwords and keep " "them safe." msgstr "" +"マスターパスワードはsysPassのアカウント情報を暗号化する際に用いられます。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:177 msgid "" "It's advisable to change it from time to time and use a complex password " "that includes numbers, letters and symbols." msgstr "" +"パスワードには英数字のほか記号を含めるなど複雑なものにすることをおすすめしま" +"す。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:179 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:138 @@ -5446,17 +5488,17 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:189 msgid "Update master password hash" -msgstr "" +msgstr "マスターパスワードのハッシュを再生成" #: app/modules/web/themes/material-blue/views/config/encryption.inc:209 #: app/modules/web/themes/material-blue/views/config/encryption.inc:349 msgid "Temporary Password" -msgstr "" +msgstr "仮パスワード" #: app/modules/web/themes/material-blue/views/config/encryption.inc:224 #: app/modules/web/themes/material-blue/views/config/encryption.inc:239 msgid "Not generated" -msgstr "" +msgstr "生成されていません" #: app/modules/web/themes/material-blue/views/config/encryption.inc:229 #: app/modules/web/themes/material-blue/views/config/encryption.inc:232 @@ -5475,11 +5517,11 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/encryption.inc:287 msgid "Send email" -msgstr "" +msgstr "メールを送信する" #: app/modules/web/themes/material-blue/views/config/encryption.inc:289 msgid "Sends an email to all users or only to those whose group is selected." -msgstr "" +msgstr "全てのユーザーまたは、選択したグループに" #: app/modules/web/themes/material-blue/views/config/encryption.inc:351 msgid "" @@ -5487,40 +5529,43 @@ msgid "" "to enter it during login. By this way there is no need to tell them the real " "Master Password." msgstr "" +"本来ならばsysPassを利用する全てのユーザーにマスターパスワードを教えなければな" +"りませんが、期限付きの仮マスターパスワードを利用すれば本当のマスターパスワー" +"ドの代わりにこれを教えればいいので安心して利用できます。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:358 msgid "Generate" -msgstr "" +msgstr "生成" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:37 msgid "Use Auth Basic" -msgstr "" +msgstr "Basic認証" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:38 msgid "Use Auth Basic for authorizing accesses to the application" -msgstr "" +msgstr "Basic認証でアプリケーションにアクセスできるようにします" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:54 msgid "Use Auth Basic SSO" -msgstr "" +msgstr "SSO" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:55 msgid "Use auto-login through Auth Basic" -msgstr "" +msgstr "Basic認証を用いて自動ログインする" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:63 msgid "Domain" -msgstr "" +msgstr "Domain" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:68 msgid "" "The domain will be added to sysPass user name for checking against the Auth " "Basic one." -msgstr "" +msgstr "Basic認証のためのドメイン設定" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:79 msgid "Domain name" -msgstr "" +msgstr "ドメイン名" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:85 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:96 @@ -5529,22 +5574,25 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:270 #: app/modules/web/themes/material-blue/views/config/ldap.inc:281 msgid "Default Group" -msgstr "" +msgstr "Default Group" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:91 msgid "Sets the default users group for newly created SSO users" msgstr "" +"新しく作成したSSOユーザーが自動的に追加されるデフォルトユーザーグループを設定" +"します" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:111 #: app/modules/web/themes/material-blue/views/config/general-auth.inc:122 #: app/modules/web/themes/material-blue/views/config/ldap.inc:296 #: app/modules/web/themes/material-blue/views/config/ldap.inc:307 msgid "Default Profile" -msgstr "" +msgstr "デフォルトプロファイル" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:117 msgid "Sets the default profile for the newly created SSO users." msgstr "" +"SSOから追加されたユーザーは全てこのデフォルトプロファイルが適用されます。" #: app/modules/web/themes/material-blue/views/config/general-events.inc:18 #: app/modules/web/themes/material-blue/views/config/general-events.inc:110 @@ -5554,27 +5602,27 @@ msgstr "" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:78 #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:80 msgid "Events" -msgstr "" +msgstr "Events" #: app/modules/web/themes/material-blue/views/config/general-events.inc:37 msgid "Enable event log" -msgstr "" +msgstr "Enable event log" #: app/modules/web/themes/material-blue/views/config/general-events.inc:38 msgid "Saves the actions done by the application." -msgstr "" +msgstr "アプリケーションの動作を保存します" #: app/modules/web/themes/material-blue/views/config/general-events.inc:53 msgid "Enable Syslog" -msgstr "" +msgstr "Enable Syslog" #: app/modules/web/themes/material-blue/views/config/general-events.inc:69 msgid "Enable Remote Syslog" -msgstr "" +msgstr "Enable Remote Syslog" #: app/modules/web/themes/material-blue/views/config/general-events.inc:88 msgid "Hostname or IP address" -msgstr "" +msgstr "Hostname or IP address" #: app/modules/web/themes/material-blue/views/config/general-events.inc:94 #: app/modules/web/themes/material-blue/views/config/general-events.inc:104 @@ -5582,44 +5630,45 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/mail.inc:84 #: app/modules/web/themes/material-blue/views/config/mail.inc:94 msgid "Port" -msgstr "" +msgstr "Port" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:17 msgid "Proxy" -msgstr "" +msgstr "Proxy" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:36 msgid "Use Proxy" -msgstr "" +msgstr "Use Proxy" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:37 msgid "Use a proxy server for checking out for updates and notifications." msgstr "" +"sysPassとメール通知を行う際にプロキシサーバ-を経由させることができます。" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:54 msgid "Proxy server" -msgstr "" +msgstr "Proxy server" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:70 msgid "Proxy server port" -msgstr "" +msgstr "Proxy server port" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:85 msgid "Proxy server user" -msgstr "" +msgstr "Proxy server user" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:100 msgid "Proxy server password" -msgstr "" +msgstr "Proxy server password" #: app/modules/web/themes/material-blue/views/config/general-site.inc:23 msgid "This extension is needed to check for sysPass updates and notices" -msgstr "" +msgstr "このエクステンションはsysPassの更新と通知機能のために必要です。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:31 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:21 msgid "Site" -msgstr "" +msgstr "Site" #: app/modules/web/themes/material-blue/views/config/general-site.inc:37 #: app/modules/web/themes/material-blue/views/config/general-site.inc:51 @@ -5630,116 +5679,131 @@ msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:33 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:35 msgid "Language" -msgstr "" +msgstr "言語" #: app/modules/web/themes/material-blue/views/config/general-site.inc:42 msgid "" "Sets the global app language. You can set a per user language on preferences." msgstr "" +"sysPass全体の言語設定です、これの他にユーザー自身の個人設定から表示される言語" +"を変更することもできます。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:46 msgid "" "To improve/add translations, you can get involved at https://poeditor.com/" "join/project/fmlsBuugyv" msgstr "" +"探している言語がありませんか?よろしければこちらから翻訳に協力してくださいま" +"せんか?https://poeditor.com/join/project/fmlsBuugyv" #: app/modules/web/themes/material-blue/views/config/general-site.inc:65 #: app/modules/web/themes/material-blue/views/config/general-site.inc:75 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:48 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:50 msgid "Visual Theme" -msgstr "" +msgstr "テーマ" #: app/modules/web/themes/material-blue/views/config/general-site.inc:70 msgid "" "Sets the global application visual theme. You can set a per user visual " "theme on preferences." msgstr "" +"sysPass全体のテーマを設定です。これの他にユーザー自身の個人設定からもテーマを" +"変更することができます。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:89 #: app/modules/web/themes/material-blue/views/config/general-site.inc:101 msgid "Session timeout (s)" -msgstr "" +msgstr "セッションの有効期限(秒)" #: app/modules/web/themes/material-blue/views/config/general-site.inc:107 #: app/modules/web/themes/material-blue/views/config/general-site.inc:123 msgid "Application URL" -msgstr "" +msgstr "Application URL" #: app/modules/web/themes/material-blue/views/config/general-site.inc:112 msgid "" "Sets the application URL when accessing through a reverse proxy or load " "balancer." msgstr "" +"sysPassにアクセスできるURLを設定してください、リバースプロキシやロードバラン" +"サを用いている場合に必要な設定です。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:142 msgid "Force HTTPS" -msgstr "" +msgstr "Force HTTPS" #: app/modules/web/themes/material-blue/views/config/general-site.inc:143 msgid "It forces the use of HTTPS on all the connections" -msgstr "" +msgstr "HTTP通信を全てHTTPSにリダイレクトします" #: app/modules/web/themes/material-blue/views/config/general-site.inc:158 msgid "Enable debug" -msgstr "" +msgstr "デバッグを有効化" #: app/modules/web/themes/material-blue/views/config/general-site.inc:159 msgid "" "Displays some information about application configuration and performance." -msgstr "" +msgstr "アプリケーションの構成と動作に関する詳細情報を表示するようになります。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:174 msgid "Maintenance mode" -msgstr "" +msgstr "メンテナンスモード" #: app/modules/web/themes/material-blue/views/config/general-site.inc:175 msgid "" "In this mode nobody can log into the application. To disable it, you need to " "either modify the configuration file or unset on the site tab." msgstr "" +"このモードを有効化したユーザー以外は誰もログインできなくなります、メンテナン" +"スモードを解除するには設定から無効化する、もしくは”config”ディレクトリ内の設" +"定ファイルから直接メンテナンスモードを無効化してください。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:190 msgid "Check for updates" -msgstr "" +msgstr "アップデートを確認" #: app/modules/web/themes/material-blue/views/config/general-site.inc:191 msgid "Check for application updates (only for administrators)." -msgstr "" +msgstr "新しいsysPassがないか確認をします(adminユーザーのみが実行できます)。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:206 msgid "Check for notifications" -msgstr "" +msgstr "通知を確認" #: app/modules/web/themes/material-blue/views/config/general-site.inc:207 msgid "" "Check if there are either sysPass security or warning notices (only for " "administrators)." msgstr "" +"sysPassにセキュリティー上の問題が見つかった場合adminユーザーに通知が届きま" +"す。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:222 msgid "Encrypt Session" -msgstr "" +msgstr "セッションを暗号化" #: app/modules/web/themes/material-blue/views/config/general-site.inc:224 msgid "Encrypt PHP session data" -msgstr "" +msgstr "PHPのセッションを暗号化します" #: app/modules/web/themes/material-blue/views/config/general-site.inc:225 msgid "" "This feature increases the PHP sessions security, because the stored data " "won't be readable." msgstr "" +"PHPのセッション情報を暗号化することでより安全にsysPassを利用することができま" +"す。" #: app/modules/web/themes/material-blue/views/config/import.inc:18 #: app/modules/web/themes/material-blue/views/config/import.inc:113 msgid "CSV/XML Import" -msgstr "" +msgstr "CSV/XML Import" #: app/modules/web/themes/material-blue/views/config/import.inc:24 #: app/modules/web/themes/material-blue/views/config/import.inc:35 msgid "Default User" -msgstr "" +msgstr "Default User" #: app/modules/web/themes/material-blue/views/config/import.inc:30 msgid "Sets the default user for the accounts imported." @@ -5751,65 +5815,77 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:83 msgid "Drop files here or click to select" -msgstr "" +msgstr "ファイルをドラッグ&ドロップするか、クリックして選択してください" #: app/modules/web/themes/material-blue/views/config/import.inc:115 msgid "" "Allows to import Accounts, Categories and Clients from XML or CSV files." msgstr "" +"アカウント・カテゴリー。クライアントをXML / CSVファイルからインポートすること" +"を許可する。" #: app/modules/web/themes/material-blue/views/config/import.inc:117 msgid "Supported XML file formats are: sysPass, KeePass and KeePassX" -msgstr "" +msgstr "sysPass, KeePass, KeePassX形式のXMLファイルに対応しています" #: app/modules/web/themes/material-blue/views/config/import.inc:119 msgid "Drag & Drop the file into the import zone or click over the arrow." -msgstr "" +msgstr "ファイルをドラッグ&ドロップしてください" #: app/modules/web/themes/material-blue/views/config/import.inc:121 msgid "" "For KeePass or KeePassX files, client name will be KeePass or KeePassX and " "category name like groups name." msgstr "" +"KeePass/KeePassXからアカウントをインポートした際に自動的にKeePass/KeePassXと" +"いうカテゴリーが追加されます。" #: app/modules/web/themes/material-blue/views/config/import.inc:123 msgid "The CSV import file requires the following format:" -msgstr "" +msgstr "読み込ませるCSVファイルのラベルは以下のようにしてください。" #: app/modules/web/themes/material-blue/views/config/import.inc:125 msgid "" "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" "\"notes\"" msgstr "" +"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\"" #: app/modules/web/themes/material-blue/views/config/import.inc:127 msgid "" "In all cases, if the client or category do not exist they will be created " "automatically." msgstr "" +"インポート時にsysPassに存在しないカテゴリー名・クライアント名は自動的に" +"sysPassに追加されます。" #: app/modules/web/themes/material-blue/views/config/import.inc:135 msgid "XML" -msgstr "" +msgstr "XML" #: app/modules/web/themes/material-blue/views/config/import.inc:141 #: app/modules/web/themes/material-blue/views/config/import.inc:156 msgid "Import Password" -msgstr "" +msgstr "Import Password" #: app/modules/web/themes/material-blue/views/config/import.inc:146 msgid "It's only needed for sysPass XML files that have been encrypted." msgstr "" +"暗号化オプションを用いてsysPassからエクスポートしたXMLファイルの場合はエクス" +"ポート時に指定したエクスポートパスワードが必要です。" #: app/modules/web/themes/material-blue/views/config/import.inc:168 msgid "" "It's only needed for sysPass XML files that have been encrypted with a " "different master password from the current one." msgstr "" +"これはエクスポート後マスターパスワードを変更した場合など、エクスポート時と現" +"在のsysPassのマスターパスワードが異なるときに必要です。" #: app/modules/web/themes/material-blue/views/config/import.inc:186 msgid "CSV" -msgstr "" +msgstr "CSV" #: app/modules/web/themes/material-blue/views/config/import.inc:192 #: app/modules/web/themes/material-blue/views/config/import.inc:208 @@ -5818,7 +5894,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/import.inc:198 msgid "It's only needed for CSV files." -msgstr "" +msgstr "対応しているのはCSVファイルのみです。" #: app/modules/web/themes/material-blue/views/config/info.inc:20 msgid "Application Information" @@ -5827,25 +5903,25 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:26 #: app/modules/web/themes/material-blue/views/config/info.inc:29 msgid "sysPass version" -msgstr "" +msgstr "sysPass version" #: app/modules/web/themes/material-blue/views/config/info.inc:42 #: app/modules/web/themes/material-blue/views/config/info.inc:45 msgid "Database" -msgstr "" +msgstr "データベース" #: app/modules/web/themes/material-blue/views/config/info.inc:56 #: app/modules/web/themes/material-blue/views/config/info.inc:59 msgid "PHP" -msgstr "" +msgstr "PHP" #: app/modules/web/themes/material-blue/views/config/info.inc:63 msgid "Extensions" -msgstr "" +msgstr "拡張機能" #: app/modules/web/themes/material-blue/views/config/info.inc:67 msgid "Unavailable extensions" -msgstr "" +msgstr "拡張機能が利用できません" #: app/modules/web/themes/material-blue/views/config/info.inc:71 msgid "Used Memory" @@ -5853,7 +5929,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:75 msgid "Download rate" -msgstr "" +msgstr "ダウンロード速度" #: app/modules/web/themes/material-blue/views/config/info.inc:78 msgid "OP Cache" @@ -5862,72 +5938,74 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/info.inc:97 #: app/modules/web/themes/material-blue/views/config/info.inc:100 msgid "Configuration Backup" -msgstr "" +msgstr "設定のバックアップ" #: app/modules/web/themes/material-blue/views/config/info.inc:110 #: app/modules/web/themes/material-blue/views/config/info.inc:192 #, php-format msgid "Download %s" -msgstr "" +msgstr "Download %s" #: app/modules/web/themes/material-blue/views/config/info.inc:124 msgid "Tells whether the language is available or not." -msgstr "" +msgstr "利用可能な言語を表示します。" #: app/modules/web/themes/material-blue/views/config/info.inc:128 msgid "" "If it is not installed, you would need install the right operating system " "locales. More info at Wiki." msgstr "" +"お使いのサーバーのsystem localesに対象の言語が存在する必要があります。詳細は" +"Wikiを確認してください。" #: app/modules/web/themes/material-blue/views/config/info.inc:140 #: app/modules/web/themes/material-blue/views/config/info.inc:150 msgid "Encrypted Session" -msgstr "" +msgstr "暗号化済みセッション" #: app/modules/web/themes/material-blue/views/config/info.inc:145 msgid "Tells whether the session data are encrypted in the server side or not" -msgstr "" +msgstr "セッションの暗号化状況を表示します。" #: app/modules/web/themes/material-blue/views/config/info.inc:157 #: app/modules/web/themes/material-blue/views/config/info.inc:160 msgid "Loaded Plugins" -msgstr "" +msgstr "ロード済みのプラグイン" #: app/modules/web/themes/material-blue/views/config/info.inc:183 #: app/modules/web/themes/material-blue/views/config/info.inc:186 msgid "Log file" -msgstr "" +msgstr "ログファイル" #: app/modules/web/themes/material-blue/views/config/ldap.inc:23 msgid "This extension is needed to connect to the LDAP server" -msgstr "" +msgstr "LDAPさーばーに接続するための機能拡張です" #: app/modules/web/themes/material-blue/views/config/ldap.inc:54 msgid "Enable LDAP" -msgstr "" +msgstr "LDAPが有効です" #: app/modules/web/themes/material-blue/views/config/ldap.inc:56 msgid "Enables authentication against an LDAP server." -msgstr "" +msgstr "LDAPサーバーを用いた認証を有効化します。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:58 msgid "This method will use MySQL as fallback." -msgstr "" +msgstr "有効化できない場合はMySQLを用いた認証に切り替わります。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:76 msgid "Enables the connection over TLS" -msgstr "" +msgstr "TLSで暗号化する" #: app/modules/web/themes/material-blue/views/config/ldap.inc:85 #: app/modules/web/themes/material-blue/views/config/ldap.inc:87 #: app/modules/web/themes/material-blue/views/config/ldap.inc:91 msgid "Server Type" -msgstr "" +msgstr "Server Type" #: app/modules/web/themes/material-blue/views/config/ldap.inc:108 msgid "Hostname or IP address of LDAP server." -msgstr "" +msgstr "LDAPサーバーのホスト名 or IPアドレス" #: app/modules/web/themes/material-blue/views/config/ldap.inc:112 #: app/modules/web/themes/material-blue/views/config/ldap.inc:145 @@ -5935,7 +6013,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:248 #: app/modules/web/themes/material-blue/views/config/wiki.inc:130 msgid "Examples:" -msgstr "" +msgstr "例:" #: app/modules/web/themes/material-blue/views/config/ldap.inc:135 msgid "Bind User" @@ -5943,7 +6021,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:141 msgid "User to connect to LDAP service." -msgstr "" +msgstr "LDAPサーバに接続するためのユーザー。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:167 msgid "Bind Password" @@ -5951,7 +6029,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:173 msgid "LDAP connection user's password" -msgstr "" +msgstr "LDAPサーバーに接続するためのパスワード" #: app/modules/web/themes/material-blue/views/config/ldap.inc:194 msgid "" From af5a283b650cfda1b03118566d273282958378db Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 13 Sep 2020 00:53:55 +0900 Subject: [PATCH 10/36] [update] application translation --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 81480 -> 93658 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 327 +++++++++++----------- 2 files changed, 168 insertions(+), 159 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index e330e522a44278040d82d85a04fe2d377b38cbca..a36f8527f218ad269989b561085437dc71b5757e 100644 GIT binary patch delta 31796 zcmb822YeRA7Pogv=$+8(OPAiHHvvJAUIYXcLJ}Ynl9)mhc}b%5>ME~-ND-wd%}@nI z6dN|MV6Pzo?5Lm!!uR}lCJ?;$e&6rg-(8+LXU?3NIdf)q_Z7WwTn_*2^ZdcD%7j1a zaCHfHoT{)`EysB_zvEo)A+6(V8s#|M;bvF{{s`;CtFQ^IKiY93;2p3mjD_XlEGs{1 zxdm20e;AgAA4BYd&RMH)?sA;_s3-&F@IhD+J_g&tolqToZ|kqZQpgc^J5E7Z2UdfP zVI_FGWi*uCELa>ag+<|NSdjjm%@j(a*a?fkBTx-JM2s=|#!wEs zSPq1m`B*pz&Vaq)Td)8uJJ#4&f$FC*42DtYNTD_C3R!w56*hzSL#_FXj(e;?G$=fH5d8Y=Ybp>k<6ECi204dhsmg0lW341>ML zn*sELO2*MpGa3)o;dCemOQ9S*2AjeSup;~bY63q(<;Eqbffbuz{M3Y+`OQ!h3ih%U z!=M^WfCb<*sHF(P{BSAMT0ROjlXsyU<-n2fFDSdg6HWaHC_f3XFq{G#!`V;~+6qbf zpmUUhMtlNlrr$sfpzK?~g76k7yWY@Wd#IUBf|~hsI20~{T9WUe zcH3!KT>JkI3QD4U_nL;)pw_q%REJ%m91pULf||h;7=VkRI@|^|po6dwJPH-5cc79u z8_Mn~RQuwSSTg!|>QK-~J6jHcg^?#f4d6a2r$Y^75mW@$*!pd-Hu7Ou7iK{Xpm3by z)P!YV0NxCnz&oHKkpY86Da@l#1U>>a!Zns#p+b8A7K3j=b^Hm`j84PO(4B17x+~N~ zdO@`t4U5A`R-O*!XFgQFD<%_vDb}NqHrW_AFoqt~r`9IE{nusHn5@{$~NM^QM@9Ets4E#zrXNw^AXUvG!%_zkFY;4`S? z`W2Rdh3+#Er~nnws!(T2WBa+y>R~E?64g3pJ3LP}_4p z)POcXMPxVB8ovu0!;`Qn3`@orYzZ5}8L%0A8rFax!M^Z3Y^VL-EyZN<3@FF@U`coa zYR2C}4d@4`8T|vxz(T2xQw3ImYS$KOK!ad)IMUWng#ly_YJ2X2+OD6$YTEx-C^Ujq zrx?TDQ2RF4av{74c`H3xf0AGgnU>0lui}3K*KyQX}Jlx7Np!_@m1Mr}gzl7@NAE<#< znL+$j=rF@P-|vKKI16e9PeOHg)arkL0pz0h8%K?y+TRW}kyuy-&Vl9Nde{W+gBoZK ztO5(oG%vArW(G}1{ZOc*B&ZQS4&`_+)XYx8I`D58fHfX44sU@~k;g%`3qnm`HPi$S z!B#K}Dmg36GTXKn)WGfuQjp_Cuo~P6W%wRc!z)k&Yso;B19w7om=67=fdS-~p}#ax zxm0Af*%fVITjVIH2&{rN;2|jc;FlCM((p9XupyM;a9ABqgBn-}YQ(#t?6Y7^SUBB8 zs1cOoflw1lfC2ajRIcoX8u-^x{w~7;+W(a^%(kit^Hb3nYTLDh+IF3+JOI+b83}bD zjj{TPPzOp9)V7=jwf4)cek0U5k_ok~U$Q(7D{B9LL!kl{7hwlj`a$EUA1sSJ25KNF zumqd~HNZ!q&Vw~jc3W)yVW@-ZT^IqshML&#Py@XPbjg_XNO z84iP*!8oV^B*1Vu%jz>MmqB&78p_X3DElK;e;jH_PeBblY!2~P$0aCKhBcu=*9mH* zL!d%^56llIKn-Xzl;iuYyZ~y(kHJcCGb{jKfr`{IsH6BpsQ#`(4WP_i;(srNYI9A8 z^PmRs2rK}%KsnwC)$z-)AUqCb_X*She}-+~pHTa|={(c^cBqI9hH4)J6`5oxzZvt0 zzh?Fbib8ND)LK3T6@h(F4UaSm+UZP(XED z4eBA%6l%bIp?1#*SQaM2BJd$7`(;oAS_jL*olxyxgE}X&9wGk9-m55Xf)yS$C)h1e z`cY6%t0br;SO#^3u7~RQh^_w&Mj-zM6`5iyj9nF|jygd38*Uj7byCg=TE$uzK(P-h zq@O~q?RT&YJPX6%WvG4cgv?rpK|fMZNmT}xgDs&V)EjC5!=NUR2o>RUs7M8uQjmj{ zmK&f3unlTPd!a)17F0;jKy`2t%0bD;Owv|{>aaCb$h%qnV5n^x2jw>fs=o&y6A3zV zDJT>Rpd4<1TC43)9Ug^BmX9p6ppxwztN{Onno-HeO}na=Ens={y`W}(x78;=`FjwS z)Bb;$fP!aIp zZSXmG3;YANg{{|`nNNlRezf)ILvxYWN8B&uUl;ITI?| zPeLWv&ro(3EDJnkmZUsX2UVc9Z+)naJ3{4BA1jZB%CTT91vyNDaySF3qXkfFzaCbC z`=K0s0A-&I<@hJ4c9)HH zPy<*t+1z`S-rhPG}fz^PDU@Oa>Fet|( zC}^!FLdnytJRfRik3%)w2{oWspdxe<%03&a{ROKpu*pQU9Q0=n<);lS2nWDIaQG(H zUu!)Eg&a*`vioDGng0aU;bm9|mfC7UTL~&BYFgHV zTB1f!?K;6?u&>nzN7_OxRA^>E%^(D|)+eDFoP~W95$9%o=xx#nJbJvL6LC zunAV52#X@mvRnWeXwX?fK@C3M z^Kdx&cVTr{H`9E0+zJ~Z-wR0>X9a8kZ`o!1-z(C;vxGt|_&mG`egx~lD^LTgz1zG# z_l3QYli)4z0PF@Y!#1$X9`pQ9g>8{H!n@$ta1iXY*Z5lu+aT|T!MYTFq@aCSW*@)( z!OBnv$xK)hro&S3VW?z$%Idd4CEJTI488)j=C4CV?l_eHUttAUe!uw*sVP*1@7hoN z6|&hVv?gm{S@;E%{+wm07t9(rgKF3h>iM4twbo1E1h@k>h7}K(-O&>&>F$K(VGL9f z&xD0x#sT7AhQeYL>UgcK*bUX-FsuwuLfM^z>M;DE$$@%Mk?Rg`hPOjSEC>~`rBIPs z3roNaP<}FD2l$!{H4^ub`R4#dVI|}NP#sN#>R^H8!*DS2N~qBP2(={Vpmxz^sBKvI zMH7JvP&w5IR)fQ!29gA2A55d5kuHG&xW-nzWcdzME_?>%_!}tupJ5Al6;^~T4x1#s z9csY$K@D&^)Qo3A*)50ivjws=L1!NYjpV5138)!;1r?dIR{q_}S72%MgK?1l6u5l-)opM?%?6f*R0lSWNrhqo9zig&Ns*s3bWA{eeL(#R;gH{SGy=OHlUC z5o1>ZO0EKx0}bH)us!Sucf)eGCYBp5TJr4u$Cm7U-OB^*3s0tODMwVSH2SX)KG}LZL zhZ^u|sC}IYHRHG7o%tN+bJ!iZ_3LIEPlN4{LvT1e4mH90ZxH`Z6gs|P_Wv~46?r$* zTAhbAVUah@iPadkM~;G3;A*%6?uYU-=$L8081_Ye2eyKh-ZJg_Lq%vVEC~0!Mf^4L z7g1>D@4}nlx3D@a^0ryi2CzPITPXW6P}!USm1Ogv2D%ce!-G&c^ee0b|Aexy`i@zu z)=>RL1u3YbDNrGK6so~y%Xck*x2*WC89-;KcKu-q7zdRj_d^ZjVW=hA1(hSmU{!bt z%74Z841=91=)f5VN5Gjd4Sonq!r{kFQjUjBkf*{h_%v(-H$%L;6^wMUV!r7_oRu?JlI|Pe+z{|RQv?BmKR_NSmUWgV!QHG;L_ z?UwOS_76i1WF0IFcf#WE0E~cd!gBCS%im#H?f=4`n6;}8!;xDAFD;FczwV zB&ZpsLoLO}Py_hf)_)HxBL5B5VZ^7VT?42IwukYsFAQowzd%7r@sZ`a(vF#JK3gvC8+i-VI4RCYCy?Q$@wUh zpQm8~?f(N5G^3Y&1%uB;k$km~? zT{Ebp?q)e07NCD;5(PC(g6b$8s-uNa*&2eH!4{~2y$w6SY&Zc1&iF^EGY=|9&O$9| z<+Emu2f$9q^DJM5vdi~9@eilaih>-sgG!FUP#w>-`lV1I-2^qzqfjCI(AIx%>%)F9 zeriD3wS%(jZT0uShR9PPYwxW8!S4UfD3m%=*(E|P!6H~6u7(BStFRk<=SSkNP?r43jO=#U8#xs!d0vE?K^D9RUW7V& zNB(T=w_1Jz)nV8#W*gRkItLoSBCt2qz=pymFb-;0tqfAoh)zK5$4@OIel>D`%ej_E zEHA;n*tb4s?9!kHegJla;lG)u=PmFSFIYCbXzcE>e9ZEF%VK}aKkMI%g0eCL%F#Bcfn-BPr0ykC zKMAUX6;Po*W*KqW*xdyOpkEJVch0izKgQpkmXAY4@Kcfgog!CE#~qe1%s}C zHs_$w8U2^7C{oDv52OmPB>K9Rtzkvvo=~B`2abhvtbE$CWMS9OskX2>_2Zxho(9$N zLMT6v1u5vD*$L(FB-9M9K#ja|5fg!$Py-nP%fN9^p-i>)&qFO)7L;ARqNam3Q1U>i zj>kYfOX4hpOKf2Wl;iiUoDEwb7c6F$rae@{$(Bo@cFRtvH9uqZwThci-wM@Xf2ek& zpe8!gavh|UMjBqigsLpO3AsAdz;1(D^HFdqjDbbrc~}m*B~8RCKy_Fh z7KgW3{Q#%|-C^Z%u&4HaECn^#4mE%iP!7L^a`2~>^OrJ9Qw7RVTUY|#3S~bO%1^B2 zLaW~j<@Xh+2z+4c{}Sonsa)DP>;&bY57dk&L1p(WsH}a^az0e@EP+a@jZnF=6KY`l zV0ri|)DnIHm0KmsxK2LU1}Z7r!=Mx+DJZm~p=LB524E^&3|GMWVVwxqe>YqU<*;B` zGqYxvU7?b9pp_><&G>%U6t0D};CrwF{H-kee-4Er@Qi_wC@Guk>lYs_$5^R@G7oz1TKaL;J~V`^8_qf%`DBPAO)@M zXHX;j+VTge8T|>B3vPAS|4pYXtcu*vG8W#9JO?Tg2cZ1C3^jpwEkB3ycLvJtH>lhS zUZkJ_T!lK5!)ur|YiD^kls+9sz&%!f4637Fpdxe$Dl!!UHff>O{z0hSu^B444?|7p zTgU)|&L0%C7H&<$(oiF<3H6X^1hph7P}^~ht=|geaIfX3P#s-@O6JnF%)qKbos{jY zoC@_!Sq^Jz|G!K@4NgIAt6!jIRH(LVK0=`$O6{Rey6KjgFc$eI*aVKKV;nzZxd+P6 zX{e+Qt821<5Nw2;4C`wDuc4p_yb3$Ok6=AmsvZWgEmQ>VhDz3XQ2Toa)c$@QYE3Uf z`Elx-fs}$_h~1#Jc~7XN?hO^;{xGOejG&;I&4Y@-%djW>9O|i9^ClD8R!}qQ1C?Ac zR!)NcfdrK!8=;c)0Mvj!fg1Q3s3j`Z!1%A%fc>vEj6TCXbkT_p$7LsIa~}i@@K4m z4^)Hqt^QLhpM{#huTUpknZ`!$1{L}!r~yxaisZdeyJjZzmoiA96p9_NAUp!q(VI{q zJ`UyROQ^N`7V3!3f!aprp$1&2iFxeSgzBgvl)e+xS$~IR3RL7gr~w4up`h$OZw*>E zb^U)AY#8i|egRbdNvLg9zL{|_6iUAsD&+52{sy%a6`C7;U-$}gBGd$KZeb?c9zYN>vMW3~TlwsxKMDAJ+!bKN%P>|P3+A-@K@zza~jrFC1=@p$MvwDNCI2UfRs zCNc}4B6ticBIVngrM(?0*9MF9?@Xqk5zdENlWmqKq1NsS)LK{TV3Mmjlzs^GlNKs+ zi>>|u9ESWE)Va}&N2hXY6jVRsEayW1`~Nu#O1hm;4);N2|A$c9@D$Y1`#01;3UxB9 z0+szup&~U1YNoTH2DA%mpx;5Yb32;}mbL8Enfqn1yCxaR?`){uu)=Z^)Wlw}Jl4hT|Ibip<`*o>bT!%96zZsK1r@^1 zP>y@Tx^T2*8q@$cTD}Ao(NCfLegoCvlMnWxBa6AQtawU|bwNNwM2(@;H zpl0xe)&B)G;1b=9U46^WQ2L=z1BkQoOsMvcTK!I|KLY6|=zK;&Bl{KVsdfo!=4E=A zm&B@2C*aLc18WC0umMmVPKHX(IaYoIs>7{N_HSB#4Rvy!hZLB|Qwu50k%|X-&>fBfYHPFLQ6MYBz|NQ?H zg%KzU^>Ur3;8-{lhTrBoaWD-|fj`6hVN7pVfBn<>7Cr)}_c14AiQCQRc5kQ|J_EHq z_dreT6R2Hv&N93&`(K6?C@3lFTQ-K8VGF2+w?Qq*Sg0A^3*~4ERHWuZb+p3j_d&IL z3(Ef~csu+9DjB=>GfULFANyZx6^%kC(`=}Yo`zcE?bh&J%kQB=U7){lP#kIi4PZyu z25NgH!8UL;)DnFNHQ>?%%s}fvowU6M1dYRZ6xt4{P)o5HD)jC^*Z&t3;$b)BPoV}{ zWsq6hTcDQeVW@{y$-$~P8Di=?Ky~~8Yyh7QQqYLsgBrl!a1?Ahlo_~$ z7V4q$(lFNvz`}Q!ecuo&sYY7Phnn#VP#v6uieRPTW&-VC67o}UG%P>DylV!NDBOx- zE7XjCgUN8rNHen!;2`8dcbcqT2b&>(26Ye>8Ra@#U>T@$|I|CKzO82;q{{0iDKLyS3BNzeejWOBZ0cx!WK_y)(RC3OQay$nryLUk) z@lh!IZ=eRAf2@(4!=A`@KrPWKsAPN}-mK?;HU(|B%8_Q1Cz`ao^B{#L#dYM^&R z4P+a<7w&_aaqV$tY5GDf&Ha`ca2fJKsHLbHW%_FXgX*{|1?|^6ph6jMxeRLiJP$Rq zU!Z1IHrmXfE7Zs55GX%$q3l*eb@Z~;zXvtrY?ucBg6d~R4EtXrePA~=) zphDaVYNVZ^208}n44(@%z(=7v*aT&N#PThu^WY<>rKmX3WPJcuMXqbvJxDk%-BL^`KtO+QYVR1Z)JC zLbW>pnQ)MQ$J=#W6hCR$_L@$)NI0jN)kUK(gwZtE8GW04{H0Xnzo0Hw&nd_KK4s1N z1N4v4Hl1>1sEBD&jL{)*{^g;6E{y#*UIsYjX!o!7$efbS9-LgH9Le2?dm!=x^nX!4 zVoaR|ly$YI?lQNodkn7qSp}Ox-2JTW3S09caw+}(#tJy=5q_hhuC06%`6%U=;e+rE z>-<^D3E1aeA5o}4okFW?GIuzW(Y1`WJb(P_TigD7*o=FKQ9HpowjvXrLU|0XqS12h z;y8E&evSSl`YzUXyLGBp>%w&Q3Hn>G{gAs4bsdoFP|m&9qictJCyJ@mY0FMQS1642 zFKI_R*)~{2<%72Twe4uJ8MIny+5ceY6FdKu1DDQ?Z!=It9!`wVB{OcAR=Dmg> ze}Q5t_gTu}*oC;0tkEC%*ogi+$+7VWkm>yXlwgzgHu>iExuqw&)Q{)S%HeaJoXvHlfM=3cMZO34ek zk6XDvHiKy}1D(EXFCo94r(HI>k$Ku8I!CF$4<1JUJmm*y-w*jwD0w@PoO*sW?--W zopv})wQMg? zbzgDkUNuZ1=zMOK+pP1A$lu{W*X;(*=g9YRx3;#0u`OoHE3M6DEB{7aW6IO4zXG)L zuqniVs&aQnUc_xK=3g1*KelnMI>Qkuw{QRbzXVP` zu?`DSr)wp3y4IpEMty&{jrJd-OW8}E;B33avbxd0A9*88Mm2l}32(D{;zk_gGv zWl$arZ=wMouue zUowBpK_3_7k1!gC!?m`uJZz7H_t7t;(a*3g^*=%v{R`+yAwPj#L*$v1TT}M~aujug zx%Hp(YXnbI_X~G^%6uq0&A9V(KY*+&$nOjMJrDlT3Bo`OJ0n-;*2O2jGmAQY+;GBe zgAuS7cGJ;SUS|Z;adueQ)mEs|0o35hCpQkX}^>EVRTt=9Jl}9|B%zqxJRRC z1v}XW8LHs=47n?fbfwt30Oe8WYQlb2_bJ@Ro!{D0<(%a{h`aSGzRk+#u}iV#yC@%{t{Qho$|q>IN9`%+UawGi8o3lUMPVu&gxxRb zZ$o~B@$z&haFYsde^cC<;ysDl6qY=&^JduLAe*aiRFo*ToHW%Y(g^P zT8X@bdR;l(!>zv}R@YR||4x22*^9C*2Fs9-Sc7@+Rpjz?plb&8yR4H)>N;}IvvMEm zzozr=Y${)kLR~&L0dR=q#)ID!?1@!*^C&I7B#(4~*cPO9dehPhkoa@?c z;JjiRc113a?K$Mdl&jbX$*eAIBB^`J+Fp>7t2Da&*mZ)sZo)2@FHb`$x7f-fwy|`& z=2Y^gl~vtJ@BhzIu||zy?$y)|DkqPw ztgY;WgA&-!uyu*Bj4fA3zlHKT*bck>xej6BJmu2(??rt{eg7}S_(dA6gon9nQ_g`u z!CLS>JK_&skSy(&MuS zg@)V-l+Sa&OXURQQ#h)ET){dVg-*YEorJy7SLgm5xg4{JN7t2``8W^2)zodb?LMPi z8~sb%&A7Xue+q7e!K(bBYdLoshP8aj{IM1J11lHDsjmCr&*-NZ(YZuj{2;^#9e!Qy4snqBI6B_i>C%z!%ZYrmh0qW}U`U{)oB* z=qp2q4s)-n=yX+vcW}2eqVpc*v$S7_{mtARuC-CTxF%rmItDGEuD`fXa<{OC`DpY6 zb!l)bcU?P}L+Gv|AIJ7d*c3)lch&kqbY7+Ww+eZ#By0*`|Frt=!d)DrTdmV>RLrLQ zGx`Bmmz~F<{G7(7IfENT`KlCLkD=51WCXSv_a4fdZM&uT`3iXw_mk)vaG#?b^eFsE zVU6#CMz+J-VOhKkqyBd8(#XGKr>hk_jc%(Eon*?ozQCpoV!I=v!jnF;ANqYx6Da zOZ^L0ZVMaZzh^$;AEa?%?%lRh?S~=fUf)t!MdRn-1@r@9ORv`Cv-@fH3>-mSL>?bItZj4ZN^(Ds@fz-PX8s%+7$2je40nBuZ-w_` zFbBSC8*f0aikuJm2g-%Gr_yc!_nX|ssnhir<+I#ZuzMT%E$s4M4A z*xGY>ZdI8y6QC7ZXT`kDDHt5}O=5E-of8Zh9bPVoV@4IVLF(86WKzlCg?Q zh@TJ}KOvBk;MY%%%pH1DZ|vYH#q*9K*?VY6-F(SSGd~>M+YQFWB}`4WZfKkob6;vq za!O!)LQ)_mmadWllM|w2$Hzw5*Rkwx_W8J6h1y>G7f(;bz9k;yRut#$X*xJkJVyH5{9$Bd6mjZ0}9h>DA4v6BOl zz8lgc@1*_J%3ZoVtELr84osa$e3D|ws>paHm}zMPr-fy{1^fhQ>XjPazC>(H-u&{q z4gWQ>;fOEXQj-%|4&}peyfOhV?9MBriEzx+-0(X+l46JinHW1ow1NB|YJa``R5u2= z4BV;!*8fpL*Zq&Ewj7)TiJcVsg+DJGfhNp9-Be%G9! z$$2}p=;&C*A~KFx#-%8B$@J~-1K*WN3v+B3XN)dkQtF7HxXe*^pLGk`FngWGv}u1WKYB8lT;cjkNXzNflXE4`{K>Y8W=hH4j4_o^dnw>{{vkkBsNMV^Op`>anS}ckBlRjgMq+R%G=WY-EnVz?8_iSaTi+ z;u1KEnE)vllbpFSvVdDuUdE-7@VBmnwhT7jsEk?|8^oL&h@Q3Mi9NJzO> z+tuln%7aDeue^6|i;0g(ij2$Ujr-G^kUXha-evQSB?nq1kmXT+%*;%0(=(F)9yEUj z`b68p0Bx#nx!cbBGkJPd-{OXoq4%(1gN8c2BawWce#r%GEUWX|+ zm9haFpTv2k0A`M!GTj}{5yQ%{@)KfG*r~C}f$ zffzp@{T%R925T0;9;*ocvMI-oPhA@HQ*c1uba(p1+XPLCCF*_RqvBGdV*>qRQncf* z%L!9slA_qP*E9oCCy&c(F?9OmaS3tPTilVzbIi72M3Z$4Rf?y1a!O=eTrSPwR5#h1 zGHqIi=mbthRy7c1o)OGrN=#Dh`0MW$q-36_W9}(*Yxm6Wr~R0(KsW!K_Kx4*C_H{b z%0%z4``<6Aou22+_uiOUs~FqodIIFk{I<;`t($U(MA6$z%rw0O@%Lp^k^3@Xavf#v zYn6BOfd(bD%6cf6$5Maq+~kPNzaMCpuM26GoERAu<0#?$l2+S)wB~tdNN!5~e>tQx z>(8zpHdb#~{%ZcO*M?+gU?PtPdsK7?)RjWV2;}Hv0S8WH8##k|4{`?aisJv_hj={a zc68=F8NI_Ab3!WLIL?z}qEeG$Q>F)^$ZP-XNr_BS4)Rz^|teG4}~%w*cCNsexXR zQ~1b8iAgqMZ}WQG&Ac8vL-hhXFqMGBP6+3{CEhFHjSjMzavx*4k1(FAQ(|ML;)P1y zS#x*Ujc+Bn-xcxxVWT$}Ysf)hn(mds&H!sH(8QU2?qj#rLlR)i{T zf|SS!=C!Ss-7u44rq}XjuBzsJz4C=}G>TW&_)D1k0+Bg$)nvB-hi^h^ig)^niC&-8 zJu?@qKAJBd$6~LwhrCN`M|p$SeP1k^XgGK13?Zy-*N1BBXs|BXZ5q6Wkn2}3Bu%|H z*3T+Lu>3b9uiH~qid^4QnRh%j(e1652WL1-ksDe*C{lPUO1@F)Z%C_3@t-zEh?&Ci zq0ID-Zb+!Yi=V!P{FgodJ;*L6pDmfqpZ+Re{%-o>^YU-%5;UJkdfYp?F}>lFltG*9 z&#jG0xb}6yQ$ZWzT0^^K_|PB+{!>dIw791CTYJ4X4KCO!(7btv)~zzvZu&FdfBn8* z@oX@xtUnuqd1lMvGn)>c-nQ=avN@Thx4+>=*xhed+IID>$#p`%gt^7Me|Bb6$XJ(^z9B0kGb?>ZR>reg83(g6LRo3ghE6nh z%X=pdlr4XD#q(#L*_f5a{}yMZy_l8uc-HK6$2)Sqq8EDpP%-25%&(BIRyz93tc-bCY1?u#9?D+3lS1}} z`8lh0Wo2y1O5dK9z9}nxzYH=C_)XAI*q^g$^V!Fj{o5w};q0Z1e|h%O6GXyd@PBsoleUbXd2_SU7v!uu zoRv0De$u?GG)D69nN2&hmu?TeP}{AV*>-oBTipKuXV8Asy=l9udl4^{_Xh4s)4R{L zk8gWAw##}??r&GXtgE+re;_kw|5~?zS(40$4zv!ddFq9SbC#~knT`K#S!wBtP6jK% z>h8&zO`+z?)jyBtE@Z?^X{qaWs8|y_Q6M4GFB#M(Od?l&6K{- zYx>I0687^t_iMWJ#R#wK(E{F|ul(LT$4}VPyO-rW`2?dqwQm6%G%I64R)&|A{=6Ue zy(aEv8A1mGZpF}>wcX<0#iQ%Gp4ps9`e&s*X#Cvpk$i*j-@lkMAAj|^uu{wYJ-A(+ zWz1K|I=wm0TmDAx^8e#wc*~nr%9!JeS?4@4KYPLc>_scQqi+ri*D>vV{bu=~pReRi zhT@dRibP)Lcl7Mp*(*=4dHRMr^EDi}_7u2otYrMxiILZ-X~=IW_6LKk%4ypIc|N7- z<@6()2$MF)*Kd|9Y!-*}%j^Toz8`kOdFEB|zx;hx0Vf}_`ZC8e} zm+ob{#)G2?nr zU(fc*na49^p?A*@4GOa}&9=;(@k5yF9sZ$MX?u#?_)%W<+DCcz&Zl#>?z-`teB+O| zd;Rv_M&73BA+D|D8Mc{XNr%C{{TTz_Ho0Gr{x^8&rIv2f%r`Eb z4hvrU@+N?b{dHgKyEd;HJf*H3G0&Kzz^)xHRR5RroD;(2Ehqok42~$y3?8~X1^h!t zCzE-P%G`hTV7UJt;hou2{I;~i|Id$g|IFcJ;8}9;e|@v>T@mg^=Jx`7!z28|L@$cZ z`IDQU{o*38*};mTU`Mw|=&#~#mAw}VyORqP$e#NQudJcE?cFA!ai!dfMboxjdxr_} zUm1BRj7=A+RN7taz4v9Y(t7`6&t89j*t?;$ThuL=J)g6cQ{;w+&)#ii+y`9WL1H_% zT&PJ|H{Cn%T@kzDd!H%mM!5BP3p{mr9j{EepX|B3@zXu@QaN|L_sxllp}OVW$cP&{ zGH*Pgl=AL$KH(dNN>p$smb~^I?+oRiZ5+|)(Y-jZuz0+pV8!g zdfIRMP@zh0g9y$YPN}E$sLGh*ACCt^u^rtS%Db{>)Ar>oc=E=N`_OHb+;JuB=fC~P z5AmPzSXu7u>@+5s{SXgOPWt&;mh}ChZk64^)$BJ6;p4p~?b%a@4*L%`y>8svJ@iIp zw_3=n?55Yb;Y*)>|J!$e=tRIR8#?H^MfbL<;^uRQ_(#2chxfl7a`(=)x62zJ1pYJb z-!G@n=Dq^)YO*GDUpu;3Se5PHx~e-l`2X9(b{+>=X*>}B^#*)HCwY%pVshs2q3i`~ zbBFA2CEi&5hxy(uRoyRKug9U%VOeR5LTl@}72Dbm1M~i@?*aa|+5fay$iB`!V6T5A z@r2sR!`gdqN0l+#Oxa&^o`Ku>{~%kCvxA90oBa^4Hw)yz{|0gX^HYSga(C`08XKKC z&daM({6jmcyHTS~?RzFGEz^9kV3B($_#ani*YXLp@dk^b|M@$H8r}H9z^={SxNvXX z8g4JwyYgv)+)Z|G!2KdDoG+qn+5wf_?cUFO%a=R+5bp{8XUF5r@NvKNY^do?ZiT(k zb==p(LzBq!F569R($)q|ZwclrltkI~-R#xZf5|}5N^N@V%t78dv0LPoej_6ER0DQh z-v;j4cGuqKc%(0R`t%3ju; znV&*JeH**a}I6?7xK%WGSQnzVA8h4CB8-q94?lK!tL*MC(po}akc z{k>xDO!O-X1J9jJC{((&TRya^wfjRwqI2!l*k7yMEnm4c`?-H>H^Q!u&VY)0ceQcr z=xC9pRyT+Jv99b4wJy_Ie%qqMduBnwtO5-&yuP z(cT>tZhmM9Wp#G%p5%Yn`oHmA`w8TRZ{2IZv}7-Qlu1=% j9uK)*36nQ#Z}r+dO!&OZ%2?$;Z0AYL{S7DghnxQcN;KgZ delta 21512 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 diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index d52677f9..fe3a2a1a 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-04-29 01:28+0200\n" -"PO-Revision-Date: 2020-09-11 22:08+0900\n" +"PO-Revision-Date: 2020-09-13 00:53+0900\n" "Last-Translator: magcho \n" "Language-Team: language@syspass.org\n" "Language: ja_JP\n" @@ -6057,20 +6057,24 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:276 msgid "Sets the default users group for newly created LDAP users" msgstr "" +"LDAPからインポートされたユーザーは全てデフォルトに指定したグループに追加され" +"ます" #: app/modules/web/themes/material-blue/views/config/ldap.inc:302 msgid "Sets the default profile for the newly created LDAP users." msgstr "" +"LDAPからインポートされたユーザーにはデフォルトに指定したプロファイルが適用さ" +"れます。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:354 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:535 msgid "Import" -msgstr "" +msgstr "インポート" #: app/modules/web/themes/material-blue/views/config/ldap.inc:360 #: app/modules/web/themes/material-blue/views/config/ldap.inc:371 msgid "Login Attribute" -msgstr "" +msgstr "Login Attribute" #: app/modules/web/themes/material-blue/views/config/ldap.inc:366 msgid "Defines the attribute for the user's login when importing." @@ -6087,71 +6091,73 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/ldap.inc:423 msgid "Import Groups" -msgstr "" +msgstr "インポートグループ" #: app/modules/web/themes/material-blue/views/config/ldap.inc:432 #: app/modules/web/themes/material-blue/views/config/ldap.inc:443 msgid "Group Name Attribute" -msgstr "" +msgstr "グループ名引数" #: app/modules/web/themes/material-blue/views/config/ldap.inc:438 msgid "Defines the attribute for the user group name when importing." -msgstr "" +msgstr "インポート時にユーザーグループ名を引数で指定する" #: app/modules/web/themes/material-blue/views/config/ldap.inc:455 #: app/modules/web/themes/material-blue/views/config/ldap.inc:471 msgid "Filter" -msgstr "" +msgstr "フィルター" #: app/modules/web/themes/material-blue/views/config/ldap.inc:461 msgid "Filter for importing LDAP users or groups." -msgstr "" +msgstr "LDAPユーザーのフィルタリング" #: app/modules/web/themes/material-blue/views/config/ldap.inc:502 msgid "Import users from LDAP" -msgstr "" +msgstr "LDAPからユーザーをインポートする" #: app/modules/web/themes/material-blue/views/config/mail.inc:41 #: app/modules/web/themes/material-blue/views/config/mail.inc:42 msgid "Enable email notifications" -msgstr "" +msgstr "メール通知を有効化" #: app/modules/web/themes/material-blue/views/config/mail.inc:58 msgid "Enable requests by email" -msgstr "" +msgstr "メールのリクエストを有効化" #: app/modules/web/themes/material-blue/views/config/mail.inc:60 msgid "" "Allows users to request for either modifications to existing accounts or " "access to accounts which they have no rights on." msgstr "" +"ユーザーからアカウントの情報の変更リクエスト・アクセス権限リクエストを受け取" +"れるようになります。" #: app/modules/web/themes/material-blue/views/config/mail.inc:113 msgid "Enable Authentication" -msgstr "" +msgstr "認証を有効化" #: app/modules/web/themes/material-blue/views/config/mail.inc:152 #: app/modules/web/themes/material-blue/views/config/mail.inc:155 msgid "Security" -msgstr "" +msgstr "セキュリティー" #: app/modules/web/themes/material-blue/views/config/mail.inc:169 #: app/modules/web/themes/material-blue/views/config/mail.inc:178 msgid "Sender email address" -msgstr "" +msgstr "送信元アドレス" #: app/modules/web/themes/material-blue/views/config/mail.inc:184 #: app/modules/web/themes/material-blue/views/config/mail.inc:187 msgid "Recipients" -msgstr "" +msgstr "受信者" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:22 msgid "This extension is needed to connect with DokuWiki" -msgstr "" +msgstr "DokuWikiに接続するためには専用のextensionが必要です" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:35 msgid "DokuWiki API" -msgstr "" +msgstr "DokuWiki API" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:54 msgid "Enable DokuWiki API" @@ -6159,65 +6165,67 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:56 msgid "Enables DokuWiki XML-RPC API for Wiki links." -msgstr "" +msgstr "DokuWikiの XML-RPC APIを用いたリンクを有効化する。" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:58 msgid "" "In order to get this feature working, you should enable Wiki links for " "accounts filtering" msgstr "" +"この機能を有効化するにはアカウントのフィルタリング設定からWikiリンクを有効化" +"する必要があります" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:68 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:92 msgid "API URL" -msgstr "" +msgstr "API URL" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:74 msgid "DokuWiki API URL" -msgstr "" +msgstr "DokuWiki API URL" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:78 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:108 #: app/modules/web/themes/material-blue/views/config/wiki.inc:64 #: app/modules/web/themes/material-blue/views/config/wiki.inc:99 msgid "Example:" -msgstr "" +msgstr "Example:" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:98 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:123 msgid "Base URL" -msgstr "" +msgstr "Base URL" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:104 msgid "DokuWiki base URL" -msgstr "" +msgstr "DokuWiki base URL" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:135 msgid "User for connecting to the DokuWiki API." -msgstr "" +msgstr "DokuWiki APIに接続します。" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:168 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:186 msgid "Namespace" -msgstr "" +msgstr "Namespace" #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:174 msgid "Namespace used to search pages." -msgstr "" +msgstr "ネームスペースを用いて検索する。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:41 msgid "Enable Wiki links" -msgstr "" +msgstr "Wikiリンクを有効化" #: app/modules/web/themes/material-blue/views/config/wiki.inc:42 msgid "" "Enables the option to add a link to search for results in an external Wiki." -msgstr "" +msgstr "Wikiから検索リンクを有効化するにはこのオプションを有効化します。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:50 #: app/modules/web/themes/material-blue/views/config/wiki.inc:79 msgid "Wiki search URL" -msgstr "" +msgstr "Wiki search URL" #: app/modules/web/themes/material-blue/views/config/wiki.inc:56 msgid "URL that Wiki uses for making an entry searching." @@ -6230,7 +6238,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:85 #: app/modules/web/themes/material-blue/views/config/wiki.inc:114 msgid "Wiki page URL" -msgstr "" +msgstr "Wiki page URL" #: app/modules/web/themes/material-blue/views/config/wiki.inc:91 msgid "URL that Wiki uses for accessing to the entry details." @@ -6243,7 +6251,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/config/wiki.inc:120 #: app/modules/web/themes/material-blue/views/config/wiki.inc:135 msgid "Account name prefix" -msgstr "" +msgstr "Account name prefix" #: app/modules/web/themes/material-blue/views/config/wiki.inc:126 msgid "Prefix to determine which accounts have a link to the Wiki." @@ -6254,136 +6262,136 @@ msgstr "" #: app/modules/web/themes/material-blue/views/install/index.inc:184 #: app/modules/web/themes/material-blue/views/install/index.inc:186 msgid "Install" -msgstr "" +msgstr "Install" #: app/modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:21 msgid "Filter ON" -msgstr "" +msgstr "Filter ON" #: app/modules/web/themes/material-blue/views/install/index.inc:17 #, php-format msgid "Installation %s" -msgstr "" +msgstr "Installation %s" #: app/modules/web/themes/material-blue/views/install/index.inc:28 msgid "sysPass Admin" -msgstr "" +msgstr "sysPass Admin" #: app/modules/web/themes/material-blue/views/install/index.inc:37 msgid "sysPass admin user" -msgstr "" +msgstr "sysPass admin user" #: app/modules/web/themes/material-blue/views/install/index.inc:45 msgid "sysPass administrator's login" -msgstr "" +msgstr "sysPass administrator's login" #: app/modules/web/themes/material-blue/views/install/index.inc:79 msgid "DB Configuration" -msgstr "" +msgstr "DB設定" #: app/modules/web/themes/material-blue/views/install/index.inc:89 msgid "DB access user" -msgstr "" +msgstr "DBアクセスユーザー" #: app/modules/web/themes/material-blue/views/install/index.inc:97 msgid "An user with MySQL admin rights" -msgstr "" +msgstr "MySQLのadmin権限を持ったユーザー" #: app/modules/web/themes/material-blue/views/install/index.inc:105 msgid "DB access password" -msgstr "" +msgstr "DBアクセスのためのパスワード" #: app/modules/web/themes/material-blue/views/install/index.inc:114 #: app/modules/web/themes/material-blue/views/install/index.inc:122 msgid "sysPass database name" -msgstr "" +msgstr "sysPassに利用するデータベース名" #: app/modules/web/themes/material-blue/views/install/index.inc:131 msgid "sysPass database server" -msgstr "" +msgstr "DBホスト名" #: app/modules/web/themes/material-blue/views/install/index.inc:139 msgid "Server name to install sysPass database" -msgstr "" +msgstr "sysPassのDBに使用するDBサーバーのホスト名" #: app/modules/web/themes/material-blue/views/install/index.inc:160 msgid "Hosting Mode" -msgstr "" +msgstr "Hosting Mode" #: app/modules/web/themes/material-blue/views/install/index.inc:167 msgid "It does not create or verify the user's permissions on the DB" -msgstr "" +msgstr "データベースを作成できませんでした、パーミッションを確認してください" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:39 msgid "Others" -msgstr "" +msgstr "Others" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 msgid "Creator" -msgstr "" +msgstr "Creator" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:263 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:265 msgid "Delete History" -msgstr "" +msgstr "Delete History" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:51 msgid "Select Action" -msgstr "" +msgstr "Select Action" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:28 #: app/modules/web/themes/material-blue/views/notification/notification.inc:111 msgid "Options" -msgstr "" +msgstr "Options" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:81 msgid "Refresh Authorization" -msgstr "" +msgstr "Refresh Authorization" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:87 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:89 msgid "Token" -msgstr "" +msgstr "Token" #: app/modules/web/themes/material-blue/views/itemshow/client.inc:63 msgid "Sets whether the client is visible by all users" -msgstr "" +msgstr "クライアントが全てのユーザーに表示されるかどうかを設定できます" #: app/modules/web/themes/material-blue/views/itemshow/client.inc:66 msgid "" "By default, clients assigned to accounts only will be visible by users who " "are granted to access to the accounts." -msgstr "" +msgstr "デフォルトでは権限が付与されたユーザーのみが閲覧できます" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:39 msgid "Field name" -msgstr "" +msgstr "フィールド名" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:74 msgid "Help Text" -msgstr "" +msgstr "Help Text" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:81 msgid "Field's help" -msgstr "" +msgstr "フィールドの概要" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:94 msgid "Required" -msgstr "" +msgstr "Required" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:21 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:29 msgid "Length" -msgstr "" +msgstr "Length" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:49 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 msgid "Score" -msgstr "" +msgstr "Score" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:64 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:71 @@ -6392,23 +6400,23 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:91 msgid "Include Numbers" -msgstr "" +msgstr "数字" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:106 msgid "Include Letters" -msgstr "" +msgstr "英字" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:121 msgid "Include Symbols" -msgstr "" +msgstr "記号" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:136 msgid "Include Uppercase" -msgstr "" +msgstr "大文字" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:151 msgid "Include Lowercase" -msgstr "" +msgstr "小文字" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:37 msgid "Accounts will be only visible by the user." @@ -6417,28 +6425,28 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:39 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:59 msgid "Administrators won't be able to display the accounts." -msgstr "" +msgstr "管理者はアカウントを表示できません。" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:57 msgid "" "Accounts will be only visible by the user and users belonging to the main " "group." -msgstr "" +msgstr "メイングループに設定されているユーザーのみが閲覧できます。" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:21 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 msgid "IP Address" -msgstr "" +msgstr "IP Address" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:34 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:42 msgid "Timeout" -msgstr "" +msgstr "Timeout" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:153 msgid "Select Profile" -msgstr "" +msgstr "Select Profile" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:103 msgid "" @@ -6461,92 +6469,92 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:91 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:93 msgid "Hash" -msgstr "" +msgstr "Hash" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:99 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:101 msgid "URL" -msgstr "" +msgstr "URL" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:109 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:111 msgid "Use" -msgstr "" +msgstr "Use" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:55 msgid "Full username" -msgstr "" +msgstr "Full username" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:70 msgid "Session login" -msgstr "" +msgstr "Session login" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:81 msgid "SSO Login " -msgstr "" +msgstr "SSO Login " #: app/modules/web/themes/material-blue/views/itemshow/user.inc:90 msgid "Session login with SSO" -msgstr "" +msgstr "Session login with SSO" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:106 msgid "Email address" -msgstr "" +msgstr "Email address" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:223 msgid "Application administrator" -msgstr "" +msgstr "Application administrator" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:242 msgid "Accounts administrator" -msgstr "" +msgstr "Accounts administrator" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:263 msgid "Force password change" -msgstr "" +msgstr "Force password change" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:296 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:298 msgid "Entries" -msgstr "" +msgstr "Entries" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:305 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:307 msgid "Last Access" -msgstr "" +msgstr "Last Access" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:323 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:325 msgid "Master Password Date" -msgstr "" +msgstr "Master Password Date" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:332 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:334 msgid "Used in" -msgstr "" +msgstr "Used in" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:98 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:100 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:592 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:594 msgid "Used by" -msgstr "" +msgstr "Used by" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:119 msgid "(*) Listed in group" -msgstr "" +msgstr "(*) Listed in group" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:35 msgid "Management" -msgstr "" +msgstr "Management" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 msgid "Create new account" -msgstr "" +msgstr "新規アカウントの作成" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 msgid "View account details" -msgstr "" +msgstr "アカウントの詳細を表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 msgid "View account password" @@ -6562,158 +6570,159 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:117 msgid "Edit account" -msgstr "" +msgstr "アカウントの編集" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:133 msgid "Edit Password" -msgstr "" +msgstr "パスワードの編集" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Edit account password" -msgstr "" +msgstr "アカウントのパスワードを変更" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 msgid "Remove account" -msgstr "" +msgstr "アカウントの削除" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:168 msgid "View account files" -msgstr "" +msgstr "アカウントのファイルを表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:184 msgid "Share Link" -msgstr "" +msgstr "共有リンク" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:185 msgid "Share link to account" -msgstr "" +msgstr "アカウントの共有リンク" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:202 msgid "Create private account" -msgstr "" +msgstr "プライベートアカウントを作成" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:219 msgid "Create private account for group" -msgstr "" +msgstr "プライベートグループアカウントを作成" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:237 msgid "Assign permissions" -msgstr "" +msgstr "権限付与" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 msgid "Users management" -msgstr "" +msgstr "ユーザー管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 msgid "Groups management" -msgstr "" +msgstr "グループ管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:311 msgid "Profiles management" -msgstr "" +msgstr "プロファイル管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:328 msgid "Categories management" -msgstr "" +msgstr "カテゴリー管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:345 msgid "Tags management" -msgstr "" +msgstr "タグ管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 msgid "Customers management" -msgstr "" +msgstr "カスタマー管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 msgid "Custom fields management" -msgstr "" +msgstr "カスタムフィールド管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:396 msgid "API authorizations management" -msgstr "" +msgstr "API認証管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:413 msgid "Links management" -msgstr "" +msgstr "共有リンク管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:430 msgid "Accounts management" -msgstr "" +msgstr "アカウント管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 msgid "Default Values" -msgstr "" +msgstr "Default Values" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:464 msgid "Default Values Management" -msgstr "" +msgstr "Default Values 管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:485 msgid "General Configuration" -msgstr "" +msgstr "全体設定" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:502 msgid "Encryption options" -msgstr "" +msgstr "暗号化オプション" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:519 msgid "Make a backup and export" -msgstr "" +msgstr "バックアップの作成とエクスポート" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 msgid "Make accounts import" -msgstr "" +msgstr "アカウントをインポート" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:557 msgid "View event log" -msgstr "" +msgstr "event logを表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:585 msgid "Profile name" -msgstr "" +msgstr "プロファイル名" #: app/modules/web/themes/material-blue/views/login/index.inc:51 msgid "Previous Password" -msgstr "" +msgstr "前のパスワード" #: app/modules/web/themes/material-blue/views/login/index.inc:80 msgid "Sign in" -msgstr "" +msgstr "サインイン" #: app/modules/web/themes/material-blue/views/login/index.inc:89 msgid "Forgot password?" -msgstr "" +msgstr "パスワードを忘れた場合" #: app/modules/web/themes/material-blue/views/main/update.inc:42 msgid "Updated" -msgstr "" +msgstr "更新しました" #: app/modules/web/themes/material-blue/views/main/update.inc:49 msgid "Error while checking for updates" -msgstr "" +msgstr "アップデート中時にエラーが発生しました" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:17 #, php-format msgid "Update %s" -msgstr "" +msgstr "Update %s" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:24 msgid "DB Update" -msgstr "" +msgstr "DB Update" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:26 msgid "Application Update" -msgstr "" +msgstr "Application Update" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:34 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:34 msgid "Security Code" -msgstr "" +msgstr "セキュリティーコード" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:42 msgid "" "This code is set in sysPass config file within the tag name \"upgradekey\"" msgstr "" +"セキュリティーコードはsysPasの設定ファイルの”upgradekey”に記載されています" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:52 msgid "" @@ -6753,114 +6762,114 @@ msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:157 msgid "Enter a valid user login" -msgstr "" +msgstr "有効なユーザーでログインしてください" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:172 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:41 msgid "I've done a full sysPass backup" -msgstr "" +msgstr "バックアップが完了しました" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:189 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:49 msgid "Please, wait while the process is running" -msgstr "" +msgstr "処理中です、しばらくお待ちください" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:200 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:60 msgid "Start Update" -msgstr "" +msgstr "アップデート開始" #: app/modules/web/themes/material-blue/views/notification/notification.inc:115 msgid "Global notification" -msgstr "" +msgstr "グローバル通知" #: app/modules/web/themes/material-blue/views/notification/notification.inc:124 msgid "Only for application administrators" -msgstr "" +msgstr "アプリケーション管理者のみ" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:36 msgid "Plugin name" -msgstr "" +msgstr "プラグイン名" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:48 msgid "Plugin version" -msgstr "" +msgstr "プラグインバージョン" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:53 msgid "Compatible Version" -msgstr "" +msgstr "互換性のあるバージョン" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:61 msgid "sysPass compatible version" -msgstr "" +msgstr "動作が確認されているsysPassのバージョン" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:66 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:43 msgid "Author" -msgstr "" +msgstr "開発者" #: app/modules/web/themes/material-blue/views/plugin/plugin.inc:73 msgid "Plugin author" -msgstr "" +msgstr "プラグインの開発者" #: app/modules/web/themes/material-blue/views/upgrade/index.inc:15 msgid "The application needs to be updated" -msgstr "" +msgstr "このアプリケーションはアップデートが必要です" #: app/modules/web/themes/material-blue/views/upgrade/index.inc:20 msgid "Please enter the security code to start the upgrade" -msgstr "" +msgstr "アップグレード後にセキュリティーコードを入力してください" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:8 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:18 msgid "Request Password Change" -msgstr "" +msgstr "パスワード変更リクエスト" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:32 msgid "User's Email" -msgstr "" +msgstr "ユーザーのメールアドレス" #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:43 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:59 msgid "Go back to login" -msgstr "" +msgstr "ログイン画面に戻る" #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:65 #: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:67 msgid "Change" -msgstr "" +msgstr "変更" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:121 msgid "Sort search results by views" -msgstr "" +msgstr "並び替え" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:123 msgid "Sorts accounts search results by the number of account's views" -msgstr "" +msgstr "アカウント順で並び替え" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:139 msgid "Navigation bar on top" -msgstr "" +msgstr "ナビゲーションバーは画面上部にあります" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:141 msgid "Displays a navigation bar on top of the search results." -msgstr "" +msgstr "検索結果の上にナビゲーションバーを表示します。" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:157 msgid "Show Hidden Actions" -msgstr "" +msgstr "表示・非表示" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:159 msgid "Always display hidden actions on the accounts search page." -msgstr "" +msgstr "アカウント検索ページで表示・非表示を切り替えることを許可します。" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:193 msgid "In-App Notifications" -msgstr "" +msgstr "アプリ内通知" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:195 msgid "Enables the active In-App notifications polling" -msgstr "" +msgstr "アプリ内通知を確認します" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:212 msgid "Show Filters" @@ -6868,26 +6877,26 @@ msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:214 msgid "Displays the additional filters selection on the accounts search." -msgstr "" +msgstr "詳しい検索" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:20 msgid "View Wiki" -msgstr "" +msgstr "View Wiki" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:26 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:35 msgid "Page not found" -msgstr "" +msgstr "Page not found" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:28 #, php-format msgid "Search results of '%s'" -msgstr "" +msgstr "Search results of '%s'" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:31 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:41 msgid "Page" -msgstr "" +msgstr "Page" #~ msgid "\"/config\" directory does not exist." #~ msgstr "\"/config\" directory does not exist." From 830810de66d339a366b49eecece16f610d0d01bc Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 13 Sep 2020 01:59:35 +0900 Subject: [PATCH 11/36] =?UTF-8?q?[fix]=20=E3=80=8C=E6=A4=9C=E7=B4=A2?= =?UTF-8?q?=E3=80=8D=E3=81=AE=E7=BF=BB=E8=A8=B3=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 93658 -> 95832 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 82 ++++++++++++---------- 2 files changed, 44 insertions(+), 38 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index a36f8527f218ad269989b561085437dc71b5757e..b29d97b8313527ed45df31178e64e1fda121d435 100644 GIT binary patch delta 25842 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 delta 23890 zcmZA92Yim#|NrspCXrY{gxC^$?-`p0wQBEGdsC{l>b8p71W~F+snMbuM60M#Z7H=| zt3~WmMJc8HUhn&S{QmyG>+!hyJfE}Axz2SZ>395kJNWFmVE=F7K?^*t>Or2D1JmU3 zyw8F??^zw?dfwXho>v>!VL0B#g7^Z9W5Eudml0cG1op+uIM(6?=6Z}Ie>Y~pUyyo! z@1|vV9X;2rJ=c)Bv}v`~{{b&e+NGLNFiZ#A28g8<;&%^~PdaoQ+=FWH6Kcj6to)%F+}W)l6RKW8OoNqB6O2VIpgn4(gHZjCL)D*S z@d^xOd~Y)eb?`NY;rFO5JdNt$4ywZ!s2$1J#pM@6by(ee1GVz5*c3-$eLRFIFrurg zpB*($G4v-VQH4Z#tbsgwZ#b63(Wqzs85Y1@I0LVuIv)C_=Z(Z27=z`zxg8jSTEP2Q z2|q&ha|(0g4J?YG-P!+4B+7MnD{6q+s*b1z15hjSV?O*4E8s5FgdSox%+bU1qOc;W zU0aL$qjqkFbjtEjDcjCz(KJ>AyjKpmdEs18e`CLU{cK-GT> zwerargiBFdzY=wp)?p~_K~3bKpM*~RX-tmwd$|cTLLJ5qs1@}>4LB0j!E96qi?9T) z!Yp_KwSe2Gv+)!)u{6D1Khda_mqRVcU)Ks+q8jwZ6gUF)DEt_Vvr*4-0cs^jP#s;v zw)hxTuUQ{g-UijrU`&bcU@;tr+Mx}|q4#_HNodB$P%FKNn#cpx1cLgyl}4cQqfqrr zV+htn)vJ$zXOCK0f7HrHVhfywdL)-oZ`*ZDtM~tJ5;{c5`niTVQO~$2YQP$(j+>g@ zQ7d={qi`l_z>TO0eS@L6AGK45QHS^{s@@A!`?UReWQ_0SBcYjAGn->d;@+qUyk+qO z)I?^Wc3_#6Z^XRByD>i|p(c=WfagVHI7VSPERL;EJ24UcsYy&FkqYOdX1L7UfZEy} zm2&(b|4b9qd8FZ3Zr(e25R8us0nsO?Vx{vCEm3P z6Hpz@!SuKkwUUjfLz!shdr$)$L9P4>>iz!%HPAiO057aO)lgSI18M>Vkp=p_vLtk9 z>Y*BT#0=OEHIXr>*Yg9^gjS(;WGm_!AHiaH8cSgEVf2M%un3OAlDHak<0)*253!Qo z|5|UmQ#=aQ@pepy$51Q2gqqMFs1^N(;TSsH^Ri=hRJ)3(2{pxB*w)J5#VF!9)a$tg z^}3$LoO=JClPHQg-fUzo6d<7rbx<9=Y4Lc}fXgrn_hJD|!orw}AO4zXIaJ53EgpsH=Oc{5 zZ!Erm8s|UM#IlcK|CNXt<$k`mLp2bq^Wnc3g}L8z9oEDg#NANs z{HO&iMJ-?_mc=C0;fx&XUfa5;iFNjqP{%VcCvHYn{2A5oIcj2Mn5fP`JJf&^Fz{$F zig+&u9u4X&r5fkniV9efxI1bGmSAq&iK_3vKteMO8t)nwK~-#xxo`w(V)3XMZ$;Hl z!e~r6!R=5{RL5_i7Bm>6a6am+Y(-7{cT|7RFooX#Y!lsU6^+3Z6hpmsWl*nORg0S- z4ZOCf4^kJ)?}PfF3`M<`V^Pn3uH~;meMb^dul2X)QOu(E|00P<3Z7sLW|-tUYJ?HQ zT~HHw8^driYJv+;--BhSdh4xxH|j%m1T*6AsD(X1P4o%sLl^u$?HS+8NJ2Bug_>b$ zi)*1OwnVL<8)^cBF$l+6{zP*QYQUwaem0}(@3H)&s7HDQHSy$=*?$cjMj{(VqqeRp zYNpLmTiqFhu{UZ$15q81ws;z9#fva2uEP|#54BSVQJ>K zRMZ6KV+vf4>UcA1;Jp}vM^W{DMNRNetbqTZ-tQ7qUHb;89chMY-xIYn!%+QBoXY-d zW%J1h#l@&+`3Y(Vwxb&EN1cJ=sF`0ub#&LtU!WdQ+7H~o*-$$ajcQj4HBN2RqpNQ= z_LIm$MsrMw{V@cGqdI&KGvhQYfGbe1*$^54YNln+Dgl;6sypw2`*hT#UxkKdqn z^0Ijs!-$_@HNF3-XY)ICA-;{jp|-rm9De7=VOSGyVH+$u*X_ha)U#cP zn&1+14W=YcK<(I0RDVY?E#rHCkMP#u-T3|PhD#;6Y4q27}2sKeC{ zHGv_hLp&VS?=&+WwenRKC!k*yz9pf74qJsYSdI7ws^bE2?hzG3y*4qZjv8Vpwnx?L zj_I(km5)SCbSmob&ci7D3iZg(#tVdMh$1*?h5Z;$$EH5By-=Ab^I zD^UaQvGTK+k@zucXVNTm^|GS|ib3_)+8l)XQcm_;#&V1zV>@a~&!C>|Wemrgm>i#> z-g__JJ?rEc*eTSZ3dc-X2DL-=Q4?s1TEGz04o^Vslz%n}b+Fi6g_^)d)QS>OTXqPw zr8iImJVAAkZjn2**-!(PM{Rj6%WsByO$VU*eH%62d&olk-V_qrifO10SD~KOCe(oY zQHSM}nS?rQ_b?LwL9Hm=hpt@?vovNVzbwW658suSOzy?4ZMt6 zd7i~?>uaF4z7DFxx~LVm#k|-9HQ}kK6@Q58cLi#~Yf+DIBkIt9iD8WIC6dsV9KbAi z6tz`1Q3KsaZE4UFH$Vhxhw`K9$DqnvU}@}bX1-D zPt*$Lp*s8owS@`hL42L~5^4oSm%5dfLY;|9s2yp7C9ypg!D*=ex1x6HGM2>@AG7}| zi20Zwk=Pp*FT$eu9hSg*sFg%5bLI6hC-HF94#Z(S{2XiI-&hgLFLx^+h*89|F%N!$ zx$(quznjqmGPDzsD_lWk%tzb~3*%T+!?hM4LOt7usKfLOwR5Rfy7xajY6pv09D}O& zI%st^t za23>9dfnm@hemZCs6gTqB_2VYWEbikkqSOy)3Bw zBB+64P%Ey3npjKZb@zLHNa*z#hFbARRL4_M9WF#2u1`=C_{uzlTImH;y_=|dk5F$% zn$>QgXbd7QkNUpEpcW8|f%m^L39YnyAcGx1O=OO_4Ao#Gs)KD7@4+0zKcaT*8fs}M>3 zCovdbUTn<`9)s#|n#GGzTe{Zbt*H9@P&;uP z182d!iK_q5;$-XGPKBW!Sw>X5QtQ}%9hNF ~v_)-6PJxD*TGIxLFEP-o>o)I=lJ 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\n" "Language-Team: language@syspass.org\n" "Language: ja_JP\n" @@ -345,7 +345,7 @@ msgstr "クライアントID" #: app/modules/web/themes/material-blue/views/account/account-history.inc:124 #: app/modules/web/themes/material-blue/views/account/account.inc:166 msgid "Access user" -msgstr "アクセスを許可するユーザー" +msgstr "ログインユーザー名" #: app/modules/api/Controllers/Help/AccountHelp.php:87 #: app/modules/api/Controllers/Help/AccountHelp.php:110 @@ -619,7 +619,7 @@ msgstr "Link" #: app/modules/web/Controllers/AccountController.php:353 #: app/modules/web/Controllers/Helpers/LayoutHelper.php:276 msgid "New Account" -msgstr "アカウントの追加" +msgstr "新規アカウントの作成" #: app/modules/web/Controllers/AccountController.php:407 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 @@ -636,7 +636,7 @@ msgstr "アカウントの編集" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 msgid "Remove Account" -msgstr "アカウントの削除" +msgstr "アカウントを削除" #: app/modules/web/Controllers/AccountController.php:515 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 @@ -1026,7 +1026,7 @@ msgstr "カテゴリーの削除" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:63 msgid "Category" -msgstr "カテゴリー" +msgstr "Category" #: app/modules/web/Controllers/CategoryController.php:356 msgid "View Category" @@ -1719,7 +1719,7 @@ msgstr "カテゴリー名順" #: app/modules/web/themes/material-blue/views/notification/notification.inc:96 #: app/modules/web/themes/material-blue/views/userpassreset/request.inc:22 msgid "User" -msgstr "ユーザー" +msgstr "User" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:264 msgid "Sort by Username" @@ -2017,7 +2017,7 @@ msgstr "プリセット" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:164 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:166 msgid "Group" -msgstr "グループ" +msgstr "Group" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:110 @@ -2299,7 +2299,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:67 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:276 msgid "Users" -msgstr "ユーザー" +msgstr "Users" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:148 msgid "Search for User" @@ -2939,7 +2939,7 @@ msgstr "Help" #: app/modules/web/themes/material-blue/inc/Icons.php:52 msgid "Clear" -msgstr "Clear" +msgstr "クリア" #: app/modules/web/themes/material-blue/inc/Icons.php:53 msgid "Perform" @@ -4731,14 +4731,15 @@ msgstr "デモ" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 msgid "Tells whether the connection uses HTTPS or not." -msgstr "接続にHTTPSを利用しているかを通知します。" +msgstr "赤く表示される場合はHTTPS通信ではありません。" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 msgid "" "Passwords sent from forms are encrypted using PKI, the remain data don't." msgstr "" "ブラウザからサーバーに送信されるパスワードはすべてPKIで暗号化された後に送信さ" -"れますが、パスワード以外の情報はそのまま送信されます。" +"れますが、HTTPの場合はパスワード以外の情報だけはそのまま送信されます。HTTPSの" +"場合は全ての情報が暗号化されています。" #: app/modules/web/themes/material-blue/views/_partials/footer.inc:74 msgid "Help :: FAQ :: Changelog" @@ -4751,61 +4752,66 @@ msgstr "A cygnux.org project" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:13 msgid "Special parameters" -msgstr "Special parameters" +msgstr "高度な検索" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:15 msgid "" "You could use either one or several special parameters separated by blank " "spaces" msgstr "" +"以下の検索クエリで高度な検索ができます、各クエリをスペースで区切ると複数条件" +"で検索できます。" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 msgid "Search for accounts which 'login' has access rights" msgstr "" +"‘login’というユーザー名のアカウントがアクセスできるアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 msgid "Get the accounts in which user login \"login\" is the owner" -msgstr "" +msgstr "‘login’という名前のユーザーが作成したアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 msgid "Search for accounts which 'group_name' has access rights" -msgstr "" +msgstr "‘group_name’という名前のグループがアクセスできるアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 msgid "Get the accounts in which main group \"group_name\" is set" msgstr "" +"‘group_name’という名前のグループをmain groupに設定しているアカウントを検索し" +"ます" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 msgid "Search for accounts which contain a file with the name 'file_name'" -msgstr "" +msgstr "‘file_name’という名前のファイルが添付されているアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 msgid "Search for accounts by client name" -msgstr "" +msgstr "クライアント名でアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 msgid "Search for accounts by category name" -msgstr "" +msgstr "カテゴリー名でアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 msgid "Returns the account for the given ID" -msgstr "" +msgstr "アカウントIDでアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 msgid "Search for accounts name by regular expression" -msgstr "" +msgstr "正規表現でアカウント名を検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 msgid "Search for accounts with expired password" -msgstr "" +msgstr "有効期限が切れたアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:27 msgid "Get private accounts for current user" -msgstr "" +msgstr "ログインしているユーザー自身のプライベートアカウントを検索します" #: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:28 msgid "Operator for special parameters" -msgstr "" +msgstr "高度な検索に使える検索クエリ" #: app/modules/web/themes/material-blue/views/_partials/no_records_found.inc:13 #: app/modules/web/themes/material-blue/views/account/search-index.inc:22 @@ -4951,7 +4957,7 @@ msgstr "送信" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:30 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:236 msgid "Permissions" -msgstr "Permissions" +msgstr "権限" #: app/modules/web/themes/material-blue/views/account/account.inc:100 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:43 @@ -4967,7 +4973,7 @@ msgstr "タグを選択" #: app/modules/web/themes/material-blue/views/account/account.inc:294 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:35 msgid "Select Account" -msgstr "アカウントを選択" +msgstr "アカウント" #: app/modules/web/themes/material-blue/views/account/account.inc:334 #: app/modules/web/themes/material-blue/views/account/account.inc:336 @@ -5071,7 +5077,7 @@ msgstr "お気に入りを表示" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:101 msgid "Favorites Filtering" -msgstr "お気に入りから検索" +msgstr "お気に入り済みのアカウントを表示" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:120 msgid "Accounts per page" @@ -5079,7 +5085,7 @@ msgstr "1画面あたりの表示数" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:128 msgid "More Filters" -msgstr "" +msgstr "詳細検索" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:134 msgid "Select Tag" @@ -5521,7 +5527,7 @@ msgstr "メールを送信する" #: app/modules/web/themes/material-blue/views/config/encryption.inc:289 msgid "Sends an email to all users or only to those whose group is selected." -msgstr "全てのユーザーまたは、選択したグループに" +msgstr "全てのユーザーまたは、選択したグループにメールを送信します。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:351 msgid "" @@ -5561,7 +5567,7 @@ msgstr "Domain" msgid "" "The domain will be added to sysPass user name for checking against the Auth " "Basic one." -msgstr "Basic認証のためのドメイン設定" +msgstr "Basic認証のためのドメイン設定。" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:79 msgid "Domain name" @@ -5610,7 +5616,7 @@ msgstr "Enable event log" #: app/modules/web/themes/material-blue/views/config/general-events.inc:38 msgid "Saves the actions done by the application." -msgstr "アプリケーションの動作を保存します" +msgstr "アプリケーションの動作を保存します。" #: app/modules/web/themes/material-blue/views/config/general-events.inc:53 msgid "Enable Syslog" @@ -5663,7 +5669,7 @@ msgstr "Proxy server password" #: app/modules/web/themes/material-blue/views/config/general-site.inc:23 msgid "This extension is needed to check for sysPass updates and notices" -msgstr "このエクステンションはsysPassの更新と通知機能のために必要です。" +msgstr "このエクステンションはsysPassの更新と通知機能のために必要です" #: app/modules/web/themes/material-blue/views/config/general-site.inc:31 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:21 @@ -5830,7 +5836,7 @@ msgstr "sysPass, KeePass, KeePassX形式のXMLファイルに対応していま #: app/modules/web/themes/material-blue/views/config/import.inc:119 msgid "Drag & Drop the file into the import zone or click over the arrow." -msgstr "ファイルをドラッグ&ドロップしてください" +msgstr "ファイルをドラッグ&ドロップしてください。" #: app/modules/web/themes/material-blue/views/config/import.inc:121 msgid "" @@ -5965,7 +5971,7 @@ msgstr "暗号化済みセッション" #: app/modules/web/themes/material-blue/views/config/info.inc:145 msgid "Tells whether the session data are encrypted in the server side or not" -msgstr "セッションの暗号化状況を表示します。" +msgstr "セッションの暗号化状況を表示します" #: app/modules/web/themes/material-blue/views/config/info.inc:157 #: app/modules/web/themes/material-blue/views/config/info.inc:160 @@ -6005,7 +6011,7 @@ msgstr "Server Type" #: app/modules/web/themes/material-blue/views/config/ldap.inc:108 msgid "Hostname or IP address of LDAP server." -msgstr "LDAPサーバーのホスト名 or IPアドレス" +msgstr "LDAPサーバーのホスト名 or IPアドレス。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:112 #: app/modules/web/themes/material-blue/views/config/ldap.inc:145 @@ -6100,7 +6106,7 @@ msgstr "グループ名引数" #: app/modules/web/themes/material-blue/views/config/ldap.inc:438 msgid "Defines the attribute for the user group name when importing." -msgstr "インポート時にユーザーグループ名を引数で指定する" +msgstr "インポート時にユーザーグループ名を引数で指定する。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:455 #: app/modules/web/themes/material-blue/views/config/ldap.inc:471 @@ -6109,7 +6115,7 @@ msgstr "フィルター" #: app/modules/web/themes/material-blue/views/config/ldap.inc:461 msgid "Filter for importing LDAP users or groups." -msgstr "LDAPユーザーのフィルタリング" +msgstr "LDAPユーザーのフィルタリング。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:502 msgid "Import users from LDAP" @@ -6365,7 +6371,7 @@ msgstr "クライアントが全てのユーザーに表示されるかどうか msgid "" "By default, clients assigned to accounts only will be visible by users who " "are granted to access to the accounts." -msgstr "デフォルトでは権限が付与されたユーザーのみが閲覧できます" +msgstr "デフォルトでは権限が付与されたユーザーのみが閲覧できます。" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:39 msgid "Field name" @@ -6694,7 +6700,7 @@ msgstr "パスワードを忘れた場合" #: app/modules/web/themes/material-blue/views/main/update.inc:42 msgid "Updated" -msgstr "更新しました" +msgstr "最新のバージョンです" #: app/modules/web/themes/material-blue/views/main/update.inc:49 msgid "Error while checking for updates" @@ -6877,7 +6883,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:214 msgid "Displays the additional filters selection on the accounts search." -msgstr "詳しい検索" +msgstr "詳しい検索。" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:20 msgid "View Wiki" From b8d319e4da1c3be7123e0a056d089777658285e8 Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 13 Sep 2020 16:31:00 +0900 Subject: [PATCH 12/36] =?UTF-8?q?[fix]=20=E6=96=B0=E8=A6=8F=E3=82=A2?= =?UTF-8?q?=E3=82=AB=E3=82=A6=E3=83=B3=E3=83=88=E4=BD=9C=E6=88=90=E3=83=9A?= =?UTF-8?q?=E3=83=BC=E3=82=B8=E3=81=AE=E7=BF=BB=E8=A8=B3=E3=82=92=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 95832 -> 95796 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 20 ++++++++++---------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index b29d97b8313527ed45df31178e64e1fda121d435..fafc14bcf6b7b7493d218796e6a7d310e8897ad3 100644 GIT binary patch delta 5098 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 delta 5119 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 KQD>-^(BXfta+d-C diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index 2547d630..2372b820 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: sysPass\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-04-29 01:28+0200\n" -"PO-Revision-Date: 2020-09-13 16:17+0900\n" +"PO-Revision-Date: 2020-09-13 16:28+0900\n" "Last-Translator: magcho \n" "Language-Team: language@syspass.org\n" "Language: ja_JP\n" @@ -368,14 +368,14 @@ msgstr "アカウントに関するメモ" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:131 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:35 msgid "Private Account" -msgstr "プライベートアカウント" +msgstr "Private Account" #: app/modules/api/Controllers/Help/AccountHelp.php:90 #: app/modules/api/Controllers/Help/AccountHelp.php:113 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:246 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:55 msgid "Private Account for Group" -msgstr "プライベートグループアカウント" +msgstr "Private Group Account" #: app/modules/api/Controllers/Help/AccountHelp.php:92 #: app/modules/api/Controllers/Help/AccountHelp.php:115 @@ -619,7 +619,7 @@ msgstr "Link" #: app/modules/web/Controllers/AccountController.php:353 #: app/modules/web/Controllers/Helpers/LayoutHelper.php:276 msgid "New Account" -msgstr "新規アカウントの作成" +msgstr "新規アカウントの登録" #: app/modules/web/Controllers/AccountController.php:407 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 @@ -2342,7 +2342,7 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:61 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 msgid "Groups" -msgstr "グループ" +msgstr "Groups" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 msgid "Search for Group" @@ -4885,7 +4885,7 @@ msgstr "最終編集" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:68 msgid "Select Users" -msgstr "選択中のユーザー" +msgstr "ユーザーを選択" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:43 #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:47 @@ -4933,12 +4933,12 @@ msgstr "グループを選択" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:236 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:201 msgid "Private" -msgstr "プライベート" +msgstr "プライベートアカウント" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:254 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:218 msgid "Private for Group" -msgstr "プライベートグループ" +msgstr "プライベートグループアカウント" #: app/modules/web/themes/material-blue/views/account/account-request.inc:21 msgid "Request Account Modification" @@ -4973,7 +4973,7 @@ msgstr "タグを選択" #: app/modules/web/themes/material-blue/views/account/account.inc:294 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:35 msgid "Select Account" -msgstr "アカウント" +msgstr "アカウントを選択" #: app/modules/web/themes/material-blue/views/account/account.inc:334 #: app/modules/web/themes/material-blue/views/account/account.inc:336 @@ -5033,7 +5033,7 @@ msgstr "パスワードの有効期限" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:137 msgid "Private Account (Group)" -msgstr "プライベートアカウント(グループ)" +msgstr "Private Account (Group)" #: app/modules/web/themes/material-blue/views/account/search-rows.inc:162 msgid "Delete Favorite" From 60228041ce88c432b55f2b500aaa943fb08c832e Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 20 Sep 2020 18:37:24 +0900 Subject: [PATCH 13/36] =?UTF-8?q?[fix]=20=E7=BF=BB=E8=A8=B3=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 95796 -> 58406 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 4448 ++++++++------------- 2 files changed, 1637 insertions(+), 2811 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index fafc14bcf6b7b7493d218796e6a7d310e8897ad3..818857030654759f3f7391a5f447fd4af6be077c 100644 GIT binary patch delta 17583 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 literal 95796 zcmcGX2b>f|8n*|PAc9I%Ff}NWmt|h{Eo+a_dak(%tK*QI0fzokA)rJDaK2n zP8$dvFK%32Y9(fs+3PD!naF@a|oV`$DC6IF#HGumzj}mA-1I^e={z zyA~?^yP)KsH1q4Q8Rk!*{C^6!hyQ^pza}So|GPnj*9WRRhC+pVEL3>q#xtPueF2;Z zZ-t}a&#(y`R^a8wK*e(`+#1e=`@%G&+7mayKJYfE`u;oI8-59w!ghr|+!b&x=Feb0 zOcwe4Uk{c3`=RRXuTbGME>0x&fIGvU@Br8j7DMId6sU4q3MGFvRDSM+d%+jse(+1E z^mIw03vet9UE2&EsB-BBRge3_CU7j2-b{uH zuK+6D)y5@I@;5-``vJHOd>J-@Z$RnMdrhW2qeEbR(PWx0MaU|>pB{v_+{cNaku7lgcn_(|_7gYIt2&M1eLFKp6Nj`l$ zLZxF*sQCAR%I7e%p9m#i0Gq-JD7iV%)jL$au7b+YQL z^EjybJq9WrX{d1L883!P|IILfk3og=5mb6Uht1%3Q04GnDE)0$>gD=C`5y#TUsIsc zS!P@Sx5a!pRQxxX`5vfrJPMWnSIzw+xF_bXU>De?%*THq?1Xs;3}7+r4HrR`!@Y1j zxE3~t&%l=ORpWzoSPlKw5LNlLa=2=kna=O`{ z4fn@d|{2g084G}sxghSI;6p!DNo*b4pt)&84Tdc6vu%IyHC{Evi6?^r0gqhM>8 zhKhFqRQfJ}D!;3ZtIYi#DF07FrT1m1e0&6@j~mVX8>sMqh01r^jBoe5K*iGuD*QfB z?)gyigQ4O-0=9ugQ2H_(%HL9`d|nBaj@zNyEc?+sM)EHKX1*0FoWH^Ves1QLr}}t$L#1ns@g%qx=5wL^t$|AaD^T%$XZE|C z=EEBZmEL2a!Z`)*3YWuO-~+H7d;|7|o1oI!{!iZh0N54t6sUMkgNkPb+zq}674Al; zd^I`Ur>_SLFi(IAuLAB0FM{%SCsg`hh6?u!H~_Xe!|UZpxD)1CQ0Y1!D&LPn`Tqpw z!QY_#<<0ZyDuk;4bD`q92fBKJ0p@R^tC#s+kMg0~!*sYmycl+ZFTp+F7f|vo7x;AU z1EqgQL&=>5cZaK?()B!4de=kctIa|$cOX>x90L{Z8BqDT4hHZUC_PyZmF^wR^x^e_ zO)wt@)t(NAjp4CS{YxQKdn+~b=}_|LK=nh*%>D|feq;qydt3um?@yWiyHNc{4ODyn z+L&16+v|={_0b*X!@*GDoCe#%Wl-r@3Dv(o0F}OHq0;>-l-&E~{uNaJ^eb!wcR0)E zYfq?jc84wDzEJ*$Ld7>8Dt!fJJ{d~xOsMo<1Qq{va2vSB?C&)`2^HVVP~m(6CI5}t zC(icu*%m6^0Z{QC3_HTZp~|fkDxC|U%K3cQ7+wyQo@=1Oz0J%IL*@4c*a5x=o4|iT zmD5kK2i)cyA73A+_=mug;5exG)YpF;Wj5h|YTmiYQ?Wo!?3#(o#LE!+nx-v>j5Hv+bY zli}X*B&c?GA>0by4Hf@=X8tp5j`>-r_+Nvn_m5!`ehZI=M=nJd;k{7d{|74F+n?w2 z)eb7$E@mEJ912}}pu#-~sy+P)9tkgniswtH`j~P)x(3gKN5PLFNk|;H%$M`CuqEdA zp~`a;RC)bi=H?f8`;JidJ>YimAgFR0W$qK9^yx&Xe9wYi;3BAUyv?}Q+@FPmuzw5o zgRL+0?P3@liTMP`)FH77s=Rl-h%n(n@KAU!JOX|PTf?yz`+7YADt*Pq3aENL4NC4T zsPL9U<@+J1^gR#NF5iOE!>^#i`2n_q+g#$!?V-Z!3{_vfp!8}0R6lVbYzq&D3U{*c zM5uBpGxKT2bD`q7%-mN%mCM~w;eG{`&VR!l;ntV>aN0tpb5AI_UQqSd-`s~lrSoto zy*&m7Z~;_!H$tWNZZkgsmELEd{JjpP$A5>4cLUUT@*k-5w!O@^n*g@Od?1wkcqsX! zpwe@axt{{%e;HK2aXXaWz5u(ye?awT+g|SN_k zJ_Mz2&%>SI%TW1Q59RM$W7DgAKea1Vz6U_L4~GixXsCS5fGY3PVSl&?9s<`w<@*Py za&LFFPj3gP@OFjDZywwe=0m0Tc&K_vL*;uJRQQ)erTbc_@K!?A-)bnmxdWfn70Q4>iww0rrBQnt7*dZC(du ze+*Rk=Rk$G9JYtI7@vfrF~19y{!Z8VeC`cZo_SE^G7R>C6JZZH4=ViIpvvoSZ~*+p z?E79%9xxvVC3imT2_J!Za3fSc+TY;a4~Dy8o(YxzbKyw10v-xKh5N&vD}4TnV1RiM z>> zm9Ouh($j3UXFI5N-5IJJdcgqh3!B1eP6O`VLfO#+l4}e#|0q}J=1UA0Sx35u9;Z;J_$9%XgyaFoz6;S2% zFl+|@45cS8LHT>n%$uO{@x7Uw-0th4EtGsGDEU6HIXoC{2S*#H!WNhd%v=stzNbLd z_Zd+Bu7=XHRd6_b6srEVy2FRJE$oW99qb7QLFFq2Tf%u}J|C)HZh{BHhv4Dx2bd2J zTSJ?Hi;Pb|mE(_a9PEE5eI}d-yTgxQAK2_JpUwlI({s2z_D4a*Hv_61PlGDgMNs)X z&v+5s5%c9x{#L^l@IkYG#`rc=xom(+|JHYV{TKozKNYH63gIA_GV>~^`dtHC!nIKH z&q1Z@O|$<1s(wB-eh-z-t?u#iP2moh+d}1gFXI$A0`r+r?dv7j8h!>l!e61%-Qiwu zzaLcpKN|LjGvNSuEu0G9fCs^D_xb)X301#mz|-I=xF_7}ejnc`SdMuH>;d0}yTGj; z@Z23v!<-LyhZn*w@GdBQc?Z(85?ej!>-Bc1@ZT~11l7KFU+d?ugQ42pNl@up2KR;! z!cp)ecqr`pkl){)0r$gvE9?h9f&0TY53?r&$H0kjHB@*%Ldkb}#HaH}D7`ry7QnNh z`khTs_3KqW)8MX{uY&To7VZW=fU4)8U8f%Aoqs*{}nA7%HB(pu+#&_$xddbCaihxgQBtAICwpw;53FuNo@< z3t=~SIaGN)3Dy2Tf|CCNDxE*U0B-kZZ{N#!Ae0`AfC_gkl>E_9dNvd846lLG&j+B= z`yrHGtcS|)r%-bLg$k$r)4pEzf=WkU;~=Q~90pY`Q_XyWnNNbPu&;vhcNSE=T@0mn ztD*ee4JG%8nO}yIdlxD_pF{co4XQj^Jmb@~3zU9zhb~>P6Xros`8ok^152RtQ3@q@ zikZ)bs{c#jsqiK^5O#Xj_uI!AGf;YYu9+`|D%abf>g`duHGB<958pELXU4DKMC|_s z`@&(*`F2$e^Dy5C)&Adr{bBRxeSHmr(z`Sa;H^;kcnPW;-h(QiO~#*%+rQxTrxR3r zI0UwXM?KIy{jc6|KITPG@icwQ>*Y>R>Fx%lm(!r?<7n6#UI<6Ql~C#W0;>L7yiMDL z6QIJaffvB!JBh@J@O!9wIpSSke;2}|F~0&2f!+V+$Ild$+@;1>VJpnrzUR}q3sgFK z!Vd6YI36Aer@&QE`tb`?`5gGZPv0@H8Rl!D!dnGZo)5tm@CB%Pd>blXAHY4~&&ECe z?&XI-d2We@}P> z<^fRkummc-%gp^+xHIN8Q1Lwv<^Myd{B3~c@CVotmVD^-VS#ZKl>fh)c|BCUH~+|& z?*UNyGsai}mEKFC@_#jK3~z@gz4_{{^aiTW|8=_JlHzG@c0Mf39&ERJb>p`+dfjp~`CmRQYVR*{7!~lwOX83g;-O z_|s7NnPuh$Q1PA%o5B^a8N3xr?p`D{aDx-7QvP<1(n~~=Dyg>7ee)$E1}Y{7OEWIg7UW+s-64?D!r|~_HsR- z%6|mx3Xg!Q&okg)cs9(3FG8hjn{WKM)dxy%=0K(Y8hAXs7fyk#zxDDZ#*3iR^%&e1 zz6aI*YhZJ@)xUhYTEgC#_l9auQ=rnb1gf4cHok0Z`kl8QY&_L?KOBSnS7sjgZ=ddJ zI1u~C;UVxRcqq*O-ly+WsCX_nz77wAeUDEGN= z0KCh%&fItYua}!-Txxs{9)x`2S6`2Vpu(8}m5%G6+V{ui-sLwR{zNzm`!kI%L&>#I zG;;HcW1-S*esBk7h^)EA_{9gc--?dQb z-fZTtq0-T5`$n!`><3k!!=U8nL)F(kP;&o<3cv9V-n=_hym?UL$3Ww8#xr1R>~Aph zeXt+qccAL2*^b`dLB`{u^mQIoy*z04-$0dfn^r!)U7_OZ4wcU_#tNwTE`=(m)llhv z6RI9-U{Cl3lw60_zP@|GWtjJe+rj5yJNPDax{bFFpz`0<%=jU9UmK^AD(Szc=$X?YzEqgwn(P;P&t!DETo^;TISen*B{s z;XVRYE-#t;*T&ZEeY*F7@;?x&9FBvErvgfkXBkh0s_%JF<+mKFJZ^-__pPu!d=Tyf zUxCuMt#@ja*b4T9($hRMkAoVoCPL-s7#P5l;CXNfJQa4>xsjV6UJ4c7FHrf~tApo0 zQ0;M;nNNhuZw1VQm%`5Q8MqVN2+xAQ!874m9UCRa!tHixB0AKf4J?QjokWuu<>}P`aKn@9PWY&=Rv6SKW%&sD!dP& ze}t;9-g|jYg0i0t+rZn*{t2jf)2Z^;K3%P#`pw>EJ_)M-JPXSI zgHZDCLA9rKQ2F^UYzsSd^W#$7hRR>#UcP+y zgIi-B3f1mMLe=+SQ2HG}s$`oD&%r=9bB_<2zEPz9wgm%$d(mMz$ z-q}!kdI3~8&p`Rx3>9zVzP_A#L&dj`nWsU?9cP>i72c&#>0V>@k3*I7`)2=%nZJPw z?+2*@kpvvz#sB|O-cs=h1B{u`^3(tmQ;A7^# z?LNLejfV1n7SufONvLv9?CaSDsy+@g^XZVTJ#iyc`XArV=ksZ(dVUEizn?(0r%h1$ z*M5Jm5642qcO9Gp--GAFyaW8a_c5scqQ!yU-&A-w=BuFc_XSk?+U5K7=R?)kYZMI-Y|nmmLoF@R{!_i8gg zWqjA{zko_dlTlu-J(T}GQ1)ZY{urous-V)b7^W4prisvh+{4^fp)3q0rUJo+!7^rj>L&?uGUIx|Q-VT-i zM~p9-``?Y?{7|o zO6P@8`MeJ92_Jw*!1v*eu>bf*?%cvVuoUy;360$O<|pB)nD?L9C~-Nw7hVF#9PZ2U zA5iP|j+1=;=0LUYbD+|FD^&Y^+V~DsIc$c~qaTgGLgjDk$=+WFsQTy+mA`|a!Wjis zPRBsSGXpBT#Zd8GY36(3VVIwW(%p7_M`w}YsEst-MsDyLik?=F9 zdFrqe8YPCoGobSO49viOC;EKd1SewdT;TON1N&gU9jgEO0Nx7MLG?S!3VpnnLiJns zLDkQ*X8#71o_zz=p1+6Eho7LzY3rg!?p)9ysB$?IPJnm9f$%q|{0}Vl=}keE_d9S9 z`~fQe`z5{H@y4Z4<@GRBIe!MvhI>r+`CA3sVEzG0?^~4kdhQIRZzG}fay(T0M?&fO zSy27VWl(x?4^+C}HS<<8{5+;BRQ;4e)yqn_4}2Obz8|34%l0W>E?uG8Sx+RKA{t z%Gak*?WkR;Pk%S4@Q#C$%RuSD6=r`el>B{gK71Z3p3!AK-7}%mdoffwUj-$<0;*i^ zhbouX&HO2pT$6IIS1qCHp(9i}dKeFd@;A-g(@^1^0hP|H%>GFzf3KPQ2B`AgD(%zR z0;+uTp!)4;Q0Xg%3V$|~`~}7WPJTjg3{+@ za5{VpN>BHy^7hBTBFyJP#rp+RIqY8T$I)J}ALfBjncHr)5X{W9Fuc7||YWNuHv8?c+lMc0_P78$y}!~%FI9Aa|QxYtj8B~vZe zM)t++BjiSLjm2K$!Uo))f#L5yZa&8DI%FO-%Lgs2Bk-@X-wwCN7SCmHZ}R>F%!7Z$ ztv~z<>h}=#KjD8e*O%C};(8LhA-K&qnP!;3o0s7JFSx|w;5KnH*D=_uJygg1OW)qa{3+o-#r<%?*%^O7a2<)c ztI2K;AB%;DQ{qiC?}6Kcvf%d~cDEDOu7oqy+|R(A!tH3}P~Aik_B(Qo!n_@q#9lR7 z^}AD$(QgrUpTI$w@8$k{lNo4y4Ey!m6IJ3h?%$Uueuad&JJ-3m(e)-C;C=wquPOKX z9m;hDb_}KNSHj;Xxo^qUP66_pW0yy`|A67|P~^|V z&=a{+V&Q*g@$YAxkJ}gK={N2>o9tm`SAzL4;!uBb2bcPv=gsfm;pv#C5=TewpGWpe z%>RY@_R+=IE#!VGc6rFW4R^xsM(o;S&gcGWcrfNE++W3|-*wpO*AsKn-@5tr4%oNE zZXNPX;V|ORZ!35W`~`dcW^?U|>?2(J;dUlG(!!SeTPyq=J#K)7xsOK`)qg!?xVQxggrxIVr%a8`_&^c2fGuI zxzWP>3!I1S#klVZGw?31uJ~(*8`IXrRhS2Jy^p`u$UKEzN6ag@?+=fMufq~c+uykl zf0rT~{?6Au*EweQYUluaSvu$9_6z2h3G45Kdl=WPTvuZL2Q*d8r<{qTuC(Per{*iFp&v*>n$dxj4mC>XU zb1}cfHQ3^n{R=$0sEbZIs84(&3DKhhkW>Z1@l~FcHnABcymJsn2+5|_$~6cAUBaK z9~u4j$Bk*E`|W9VJu!{LZcnb2$i{!?VSWui`WjK9RBu--OKKKuKijATShx;~!`3gLou-0?m54V59MVJe?jx*T~r00IjcXM^dt_jzFxF#T*gd@203%G_N zqc!7J@Cxj|<-RBWZ$NfWlfx?U8D{;?g`4fi*iOb5)Hky(%VOE>}Z_JpI~Y7e*W)a^jCKNgvXxlZF^8JPGPx5fC? zZ*LFx_fq~2#+@m7&aWG?U*I?Vb%?nih}&71yTg_UG~s?6vhSFDcg!7dyMSvc?tg>t zVRsAEI%8Y-Jm%xLKMgM9x`=BY*A9en4eo6%tgi47%-14&E$;eVfmy%T;r%A}5L{~R z8SbmN-&x@xcOBQwCbt~>C$Mh{S7E=L`#s=)Fwa2d&rrX9*ze2z8*n=Imw0Qpo@$2u z+;?E#-uyjcZX+?T!u{W7Z`O%xF%KaP&1>0DHSi0C)-PnD>wLSL_!*TFVuEEG{ zHn}q}hrcP@B$2xpo@17yG5?kO8sx|0Z-4H0;eI0a`b{#P124wDKQeu}U*w(L-{-LF zNS^P4@!y*mT46sM`@Qk|3l~e|#JBk07q_di-<|7nu30gUJ0r6J^To)$hTD;_9P?7{ z_3Mm#YpxYsi*O5neR01MJN?=auYO%{pJg&jj9*(gyC8EvGTmS^_!sPNN9I#`qiC7?>Vk& zt{&Lww;8^{bqCio7RNuh*Bbmj%xeilzchCLgpCQm5H802gBn+TC5Jwa2KEs@bJ(1rIJN<^>US;W&`7F#u za9eY4jGtN9{mS(K_lKChWVglK2@dBv0Qa{noMGJScQ5YxJ;~J?yB#qf&D9F?p_m88 z;>9X)y2)Q^_Mgj+`~PD9758nq9|5<9?JN$AZr?~uV}B=CXVTakKlgC;!F-O%J`T^r zZa8-Owc-9(t{=I^VwVpO;A)24BzO$h-P|96?6KUxYvEiE8*z2S&qnN9aQ%k4FY$f@ zKgNCp*IrzMt-St;%nBDP>s{{k`!`oRWWwJ#?h7#72HS~*^*xts8#=V%Lf5 zujY5T1o&;hyc5^2T!#_Iqg;oZ%tyHIg?Sj<$?QwC><`clzyEUoZ<9HQ`#nu=KkUjdw}LhBMXrarpX|LQ-Z4LYjl1Hm-x=@} z>;l4h1M~S@BT4rHID_l@SUPr$-Q(omhdKnm2Xp;w;pHLoH;dya?oZ`9O2V<YpAWd!VSfdd&CUHj!mGl3Bjyuu*IsN3{2z_^21`>I#=hofYq$xwt&l$mZUZ|Y zbP_xj^91fM<2u>oL;pMB_AWBT5V+qL+*g|6&nCYDUTyB%bN_fKY<9u~{Ploe;a14K zemi+2_Q$+E*9@~aYj@6Xtr?bCTqj%DeUN>c`-Ql7F_}w|IoRZ6)tYkYY;KPryNvr| z&A(YEwn6?j!a50FWR^WJ_rvcb3+pB9Z|C|Ezo(epbKKvFTmk$N>Nk+<7Ou(2yv}tj z_tSCT4BvtKz*ms{E7xb-KWSn8#{EUyKMT9y_5oLG$X{Cr?jsf1$ZufP0GjZIRyxH~pUAdJywrTpPK6m+N@$ z_4@|D7092={VQ-I*8=Rmkz?nAqM~$ldDRK!1!c+313MR$rjq4Vx+$nimZU4^a$8+l zs=t|JC8#LKWM-!;i@7aNS0yu@6J0XFxPnYovND)xZi%ja3Mwl46s60jr%Jj8#i`0< zQ59hY#pz@wz*~@D@s}(PQsqHO zWxBc|F*pbl8l(t1nJi8g$1Rnun6=AYP|I>|NqP00ymVzrP*IsaiKG%haWYd>nX0HF z2{{3~SnIKILB>;1nl2%cahvkw>>x8Yqe2SGe1V098O$ii1ck{Yxk{END=GToUO^^J z!sk>4RVlJCH(ebNBpI(t2URnY0R>!|BJVDNRl)33X(=HDmC2KGGsvsVXS(B^u9cRY7G*vMR`lx@vAk zPFg084yH~Tn-~lWs;g$CD^sVq{HS=!3rdn@XkvY?)fL5*P-1XlCS6)xl|*_@s;s(9 zarN78+z`@KRFtHU2|OS(qbG(I#mVxN)WbU~Te_F}hYW@#s|r%3naDiaiAyA_-R38< z2qso0Gs$cilc<1nB?K2_A6_bg0 z`DTLI>GG~sYTX6O18Fo3@*RPdD-qCnpoMe<1+~kXFsy^fCbXc0T;i*=G(DSij~hL1 zc%UYV4w#keJhJvKTh$e%>4IX)%6w*`0_BdBrO8A=Wzh^e`l=ZPRTNKAX*IoRP!LO3 zFL|2#yYfX(>{?`yn(jT(?NAsq3T7pP>@bl{Oxmd-Y+Ioq`NXGOBbi6Tj%R!+;ArSi3*;6hkNxx6iQ?} zdq%2ghR=q}KzTZ-OqI;2$^>aw6X;GRs@xf=Vmd55OFbkZkJ+$%F}nssq9x~gvUrc1 zwRBxbI69)OrLJ=g(v+z>Wo5RPA5qm~Mq>oSsnU<;InBf)Eu%Cy3fGoqQ!v4}xswkc z8@Rr~vZZuo-RZRp3JWsiA*Y~1(}H`~wkB7LOkfOn@bF?tfYH!rOmKQk4s-s$I7)+w3+S)os0{3rPi3nRaHUJ42`+&K3P_QS|;Zd*_4U_Iv7%rNfk*y)ejL!){gW?R)k<}!%1X~L9((^ zRp7>YgAMt)CKSX?hw%n5tk*x2LCfA$Qz z1cs23$^vTMwXkeo5pUyp3Hl{nebh~jc9Voewl|C2MtRG+#wSr`J2&((H$VqMOYYrh zL=(>orn-t$qxXY(*sYKh-;2ttoV|Y0D`g#gtwnNSamOs8Id#@kb}|&nMbn7LMvW-z zMI)sjIwOHl4Tfssil{?0LBpJ+%H3brI0|Cz%zI_N<0?(F-<%#J)19o#yYooY*`7aU zZ-JPNAF8NfH&O6oMmX~i=L70zXBSkKYt&GvsNWWoP|B#97^=T+7)Z{dUAYxOy1EK` zt=bH(Zv8^%ch+nqoLjHn+G^DsqB;$Yu^Kh2XmaZlm7Nrt+1I5Pj@6{Mi0aW9GnS)l z(;Z6B%Njw`plOWHnokXNtITSqqIFDkSgw&fk;*bxaJ5%nZmB~}P1j^it1LG#yR{h8 z_F^|}ac#1YiF8vB7Qrk8%u1_D>vuw{iptb18tebCcKYlW(Jm-TFBpb59}4~S zP^PVPafw%V(FvuEy|33> zBK?@ns<8gaNS>r!tVz~IQ`kaq7A)j6vdS$O=Vq}o`7tdR>2_2?(?q{{5V=ZWBg3?U zQnndt8BvgE*-j{_a=J9vbgHT|FwynhKG`DeZlpE@e!>vW z6uesycKxA{b%EwOqF@%=2`T^=lGntnp)_&`^Q^f=Fp4ED+f<>PYi1U}#L{XOh@nfi zY@EM%vo!h1#9O2ly_u&JpfNrzR*+?BEVA8axbZN|ZI<~aKFrUw5=H{^oom1XExcz2 z!tTqgREg{Vf2%#OoMS7~Jh zY}Q2{GimfQRZeAMuWqBDkU=PCM+&uN>(4r6x9Vc8<~%UXjRob@qqvxkCS6`oYLf~j zNTsKsm6y7!9zsaZtUe+&GZnCVlw)v{w#e1BCoK{po8oZx8rg(%*I{W*#gTNYf7dq; zOV2LXau-W~Lsyr*xBf3{F@hCj)}(E`#IQ_7hhs^WTQZ1BCOywKWE~pzuMzX z46AGBw)Aow+>ji%@q3}Zpt1o(i$~4bVga*WNeri^-JfXCluc;J&eyzcd`jzDYaVXf*aF>(RU+Hk3LGwNQ8C+NZk<$JMwY+68jL43opPB=&!`ZlRrJ z%#_ibY`B|H8(de0ZMZ)2j=|VrgC~X(vA%?G{A_#@yLfa@ljmmG0uC*6O|C6ygD~<` zoGh%4g#EfbclK(5M>EMVVB7FuTWqdh@0&xhF%v{hhh<6cNfU>v5xTxTn~JAQ~Y1ZWTPJ;?xTP}mL)&fsKWcx7NCW@lX={3TE zU%Pf}Ici=-FXRir#wfZQ=69pZd$R_26Y}f^Per>_8ACQT=9$%_+hbF-ZW}Y0IBFtEbx&a2Bs6lE>@7nx1DtuGJE`SH_Z>RA zp4^p))YC;FtEgHu)6ovoaMr`Dzk*o>r76ETt0fMdG7gpO-zA1?2SI~^-^f-O#46gH z*=3`XrQGE_J)8-6uQ_fNZct|cL>~(3^BfBsDebs4Bo%L34axZEa$TA9yV<{sDZ2u& z4WArY_Ed{zx-3xyepZ~DoJc@{DNAnR8PB(CO$wr`TjO?h6S3S#w9t@5=s#eWzq+WZ zx>60smA)^+C@4k7e7alLE}5>~8y3+HhE%j+iKw@2D3)lrYA_uPpma42M^O}8i8L(b z#)s!1{&F)EWK_(oC8p^2~D;sjuQTOM><-)HaH;J9<#!u3(4&W-Gk0B zrtGAq&WMvE*I;kfpj2*o<%rek)#|uz!E*zhUQQ5MnJooWPtTYeiWk^I5ViZx9Pe8$ z(5m#zWO?nNHSy4fPdL-6Z@N&KjHGJsFS@6U+Qs20M~=e8{KR_A*kk70g!o;jxXU6yIsTWh%5aN$SH|icAag>lXMoIgkMH{AC{3rQz zPVbi!d~H>))2wo&86De64A-M9|2G(`{f+3+R*@ceX^ANtJ!bHCU`~Oa zz~_fI8Qrn6XT7VP?$~|Mt(Y?vtV^=aY@nse*^Lfu=LW;HQ|Bc7eINs;d%}$=Md-{E z!>2p7%t5!xWCaT+7mqyJSWkCt&y&3e7RhW%m$3vVsn(HXqG!q6_zk)6q>4r>R$VUc z*a#FRM^;%MF*)B(<6?f?V~e5OJu@2~-XSwrhjBPM$G?JL*zj=^I(15f+vi$DQ~r_B z&EH}c88+6#V+MW)&ixI&xd%RxAOHAAyMkWG?flbN+{)jqq9?oF><*{oia3o@5)_<< zxMXRCH)Nj@k|;&OCcrSa6hr&N()v<5@m9JJ%r3t~ux?db|M^4^XD_XDfR@dwndIdHe(dH_GBiE5AT%6>||G4mwu$vcC_yv@=R3vnWh(W zhXhBYD%tgO$NNSgIVPD@W0EJkJ<{)Bg{{HwR)x>k>J!&lu5irq((ZAEPlK}{A?eB@ zp6g7RGI6rqhyAWU~qqy?2-s)LnjN}w;tp~d7^-*jbD|Am~U9T#s*yM!PTpqCa z=dhW3nBmGK=$E{(H3fJ$x1)bd{Txa=FB(xF~V`OQ%kcYz_IXkAIo!{%s zHKDE}IZ(#>OuM0eb8n=3?&$vN?1H};uZN(VN%Bt)&C+*AULb7Ep(*<)&D;2TQ_!(? z?480s#G9;9IRmMak8Eo)W30t^Wg4ZK^(gf{`V-{m2O|a_F8HG-WXwBE(X>B&t~e^4 zadTmwye1PexGs>o96eE8rh9ZyzqNG7HMMZNd~{cKt91gKPFttXqLbye^c_7cF?#&8 z!DB}c3l5(;e9}<~PC*mPV2dSt>-v#w{I0B|7^9~%RJoIWG>cSurizY8r_yyqVs^T^ zlqdN*9cV62FWfmkYw>FP9C<;ZsbmfjaI%sI&Ww6`ZWwSb)NgYWivrYenC(+&Jjw8M z?R0hAZVe^P%Sb7Bu*;UPJ3{JK6f8TG91bb!Q8QyCq9x1jBuWmWcMydUoTvC3Wn z(+C~)qQBG|2i~oWO>P=5VYoJ|ZTlJN*-?YVTK&BtJ4x`?{xNzcbd9DA<{Hfi%#=gOnlt&M&ZBw$LCqJDekKwA(2<=>bI%6t>7LHyYUpx@R8>(rK!`sT zm_M1WHy-rT1Kkgga`SVNXU~T;f2Rz5VV1GJ@W*&m z$vO(di8b|G{+Wz_q@0S5xiZCyXIQT-xVWY>p<~+{ZLid}yU#U>AZ7F8sZ(ONcJN(t zIHS`@#-NEOh3o?3$gt)Uh3VqCR9LxsK3`x;SnN1jUNFTS?{+7>Q=BtY^9YMNe*D-U zWY1Z|y8%=+UtLZM4j-Lom~ryxqENYX54XnWoM9VX?h46f&ZGTl?O?1syp9rwX67K3 zQnbise05o&HsC^u$#csJ)4Vtlnx|GU@|zEaD}Pb|SJ#n*^v4If$d|MC=4=zu;~+f~ zOKLA1p}0}w8-0TgX{obOIjXZj%0E5QnlLitxcKBGMptDgfu=^39S`$T)3a|0Xn7uc z8Oe?#3>zZfgrie?iW$XI7wyIdcYcEQC41_}9utzs*jqZ)ErjjZHdJ z6{-_DA>9wx6u!HwD&S~_JBi`m57G+^)NmE)Ehy&1snZ`?jU8`Gky;&hcd}|sdZ)-< zfM5ji&2LWB!;$v*(fx8?*S!LsGf)LY!PG0`E8HS=hbN_{>bWS!*nxVNsM_w~ameto zkcyEgvxo0kvxYBJ=xlibJ;!vnl&xY)-3&K8v37rB6IjeTBxMiP6VYgzy~|EhT?=x<2D3+7vPT{?ZQr7R zo6(Kap%neeF6f*otbAu+52Q*$<$liMZtYbBz2lOsW8vo!ww4^H9>`AEy88lq?&7)! zKZ7F#grZvTdWL0mPHPGdr}?~vWp=+?PQ zrgL|k=?NKVqr*QH1(i(4H6BE6u1l%M-f3Gs_7f}9bM!nd3@C^~awmzh4w1c{<}jaO z_$Z~l#RbCCtn^UTOanZa3Kh(v6=*obirL%ZoaIQ_V>$&KJFw=w*(so4 z3hJaD&t8s|=oF6FiEc0(uPqTbV2n>E#>Zch(;-LSQ_x~@@godXMx*rmu&%ZEojEL7 zQLtRm6kM;qlF{s2)Xo&GUS*;QxxaR3Reip7PqL3*?#MAjV^&-u+D^=|EGPCT9Z_g* zmYN%6*geF3yQD>)vO|xPnVaxaZp|~br|rf7OL}a?R}p28xMjVBr_IzesMNKjVqTyZ zk(o(z{2B*MjMc;o7-RGfC;IMYeu^^mpY@iQFk(bv!uZ65LcKF@#jn04F+s1~x|j7b z{$4Y}*dm81YV7@CWGaYXBQJ?^qZbx#*U;rLQ;{r6u?UDY_6c^DYy#Cs_cOt5NO5K@ zF;SBi{mBld7_EEB-eq0=R&Lac!kcW{iERAF4q^BgJc8lwi9&HL3wxLlN!c-e*4l-o z1+?9)L%KrmqDSUvKbrZSJMk~g)KN?p%D(VOuh6LBiG#TaaK|y}<~><`ZSerh%cEH443m z%20boQ6#lS->kIG>iUI*8iDtnoyb?ak#FLd(SFy7K}eG(H@$bSBj*tTQ{IWb35BHI z3g=3nP06ATmrC@zPVU5Bpk7ibWx{Olbg8|#O_%UgYmU5R6}LOwt_gg6iJBX#phs`#-BX9;l6W%2=)3usOuT znDWB(oXEky9#1j2eJr=duF_zNok>&lFlR}tg{unC##j{DX=bl*hl`B^YKzIa&f}KP z_Ajg!CRwMas1>)TkjB5hbKp)3XUp5`3ooZI;78huAHT|Tkw&l0vkr?z9O_x^IZifd zp@bVpoL0Nt{sshMqhmd>L}_avh{(MneE3^8nn=dCvn|CUb&K5H*(B}bGkjWy61@Qy z6Uw$PD`ht>TI1r4iZDS{JfT-*+JwjNrnv+6k;v=)SsZMnclTgO^Gs9!{c0mW_H zM}qLfZt3%$n8Yp@ ze~MDf@ANH&Ny+Ib^Nf(S-e#PXv!0D&%e4-plP&#qxYRUbxP0+O#jP&atrREuuR&qu zz6urkv{yfE7cX=Sb<-YUMxJ7y!phpI#|}NZ_ngc?=cYSNTB95HHc2@4A3R7CqJ#7o z0so;SW4I6tH*~e<&8gig$?@)@!FkiGjEwN?Ee+*8#jKSkjIKpZO7iT6MyyWG3dnVu zGMDhCPkAtUSYi?{_Go}lOrAVJM~~=;5|bGb-Jj5}b~-g}WHw=64~ng1@)DC-d*Z>Z zmkchVu#&usvx*k_aXY`>kJ-4xPMLU6ej^|z!X8E#r3=_M?U;b8{Fphu$c%^VyS5w~ z-(KTZTD8Z*nxaFpaf_)M(P9Et-0uA`RLs3$=#FDFDCEkZVG;E?D*MW0Np&gjx3ch| zMY)4a^+oH?J#;P6gM4?`p{vfpN(=B5er#q79@$t*mH#n6;UbD>@!H4p-)BM7T*|x3 z&L^ba5^&OPF~@=->cT96sHEHXHY53Vs?UO4@7q{-8n!1#XY`yl@X0Q}Ywzu)Pdpvb z5EI^ThJ}f`e@{8=7_vsUzi*B)z13^E`jP=XTPPbUpL6nYhfZ|5%6n+^isa5(tDm! zi1sBNO+j6w(TqefF?g|iWDkad>_e(Q>{Xq*tL1up`r7x^tcV+mv~F^@>@$ip>#@Y0 zlhXEAKpD8lYI(s?Jk{4R04BMVnMN&z8wuzUGJRY)!;EDh8(Q@BN4D>)*&d_p^rfi= zLXHbH9D4XAMOPv2L4pb=djHhYLERIXuPuMnR81xRWG!r8iOK9+CH-8)-`Xx;I3^>& z!J6>l4=rEDQU1ecgZ+ok5|j0%stJ7M#@+B}ZL&V>Fj>z^ChM#%BSW@_3N5UQGUIsd z0foX+-#+>(WMo0nyLqj%$he^#J@!2Un#**RZT3>S<>)7BI{9nc!DxPx2h9#f}h6g z&USg3kjWHntjpkX?QWu(yiApDp6TVo89nwH1(01AIYVp~KP6dO%6A6i$`PG@ka}kV zJ03xEOY=R6y7FQBkUB+6P4yuS$P=d9PjU-6DOz^Nj&W1p19am{Rd5qrkniwu8vQ`!0?yrs4G3m&uB>aRcj{1Bn`(s|EsK~?=5~Y!wNsK+& zRc7N0TuEp%l-Ogh@aboGPQ%oh8M&1JHH7BPOeWoTEy{>tItS+J3$@gp2Z#e+K*X?2J1{rK$)w zydp7WqiRNy^I%SmP#o9t{5~Q+NN?C?+(sJ3>Gr$qOTKRCb{{oy$&U?_(H1))M6F0! zj6VU4jzwfMYFm!=q+3Z1U;ht#f@qrI>La!^@q48tS>NB3w(yKMcVpF;S9oZq%qvh- zywL-RGWVcbxr^p4;aLusXqrsiE%KMmQL+D|N;unbU6X4UR)%iub8}@4H_>bC;in=f zZ?|gZuz|im$V$woT+7_LD(oI0DMe9EeBlS~SRi%bHkT{Q)E^?{A0E<8|Bn1~niZ9b zzXIwSubPY&7kj z>;uZ_*;R4A>I$n}H@Eg9e|&dhAUAMd0sDoS6y;fJd5 zX{UYtK7j?uDVG^(zU-`1(@Kba=$1#`bkeFnlk+dT=m{4Axpif17Q^>$cds<4B!&!6y}piOC3}E<=tBcOzg?bTDx(c5e^6LU3O)Bp zmCs6-^5&67+8I?<6`A}#eJavPzO|ID%ws>i&q?g7^XIjP=E>Xquhi8I`d#~&R91^Qha0m;4Rq8Q?_vKFoi-2b5L3OjdJWTEcm7*$l(FOK^1dtIfE1>m1E(RQR*Iu_0u&uj?R(YX-nPhZ$bqj`er zG+Qg#FUbV{iB+t^W4*hZ$Y^BDc|$KRmXg`}v>!@N@D2P=6B4#*mRf<|3d1gXeiggV z_P3eDRKFPW&=$4b4bE0@Xf-tcj5@TGLb@Po56cZ$yRYnD$9wm>t$THZ&vkYw?$QMepE6j(ypAa3^`G8H>aX-`O5%qu%zC6R zi%=igbDK&pIG6(VQ?gpdK$}sy5^m}d)`-ILRib|1jvT}bn84XO9RRJ$_I4usLSyU-d15x$Kl*=*a83opL(c5^S(+HYayW=lsn6o%e(5_#9k#Tf6! zwdSQ|6@?#ijiONI*dXzref7gqII1zeWEeIGvC{pq^}5W_qcU#@AE|m%PMh#PU5VIA zo07Ex4aaGHo6X1LcEOnvvVco-ph|DWxD7CrT(N4I=)3#KNO$7hVtY~ELK(|;!_h>7 z8HmN@YXlV}Xhx3V9GEF}1|M5?7eN9!-*ojBZYT_Ay?(N+j;)?4zao@I)t#ItrfIOZ zZ|&&}Thtf3-Z?t$j+lFxFio%R>W@?H=)WVW$BIJMIO$}gy(e$-8&Ce;zoF^HhS`5C z;#~X_9lK>rad&R-+~2zAH_mc=Y(nncXc=xCa?WPpJ!iK!?j_im@i!{U>|L&qd#d2V zu+>1gzwSMRmVR35<@`%~-aR_N;*C+Gn&!_E1MNvp(Vk@D2+ka+hFt5bOqVbe+5hAr z+q}FyB;1Fv6E0Ei=x_8S)S1Eupw6J@d+sZr&SZNlnsFSV7e%Tx1GEWSO0UDjkGt5W zNc6f!IL&bSz%;RdMxez#8$`S|td4~~!XJSt(?NErU~KkI*p(c^(!^77t2gq|yCcYT zr2UIKYG*qA#B)Qv3dh?&N9cby^0V=Z@T_9SY~9Ir5)$q=d0GD$z~9#z0nA^WfTE5^ z>zo9$2VMSgl~NQP_f8x&d~)KbWG3M@lHJR0Dg-MzJq0B-8Ex`Yzjcph;-sk6xv+EU z&O9PTY5D;D=_L1-Pjv% z!$SY49cSO&xYb)WsXiBMJLx6BXfH{urdG;QcDM=Og9#UPB={<$h#my&9=sk(E zH;TOXFcdXE=-;=0-`;%>?A>nw?@HwNKcHvd1N-)Eu9us7v$}ChtaN2Q8$=~V{Lc*s zX(&6?8?=@>7)k$Fr}va(L0NwE5a&=bA+6B=EEdV+2PYMraM;A=+C9l8xnEx2=FBJA z5hh9&Q2FkI0ew)PRQW)+Maob-XzG*^y${IBDQP?*>OH)iCQVP89~@Aas%m~@?}=`u z*LzHIuD(Q{(SMniADl4o1pTWX$of!UBM5myc{*K@^)wmvDN1tInP+(T@=+ey+dgcd zV(_5{{qy$8>(`tE1oQ*FN9fFKeo)Q~5o2ahzk!-8ayzK+z--uT-_bc#&B&+E?-TyZ zI{Qc56A|d$H(%XsAKpRYRgO%(BK;`nRAIeN{k?CR5{F3ZlNdh7{hvg|wc_d1qX$Lq z4u3WOfAk;Y)hxWWX2C->3!bQ1_-M_-3w6KnPIrH9t^fS4X5ra23vR4gczewP1kR~h zcx%o4rR(pwV*S;tYvx~GGyn0L`B&8}xVUECg5TkBjp9;_*VQasShL{4nuV)s7T&vQ z^&RWiTuHE-FS~g2{7Y-*-&iyM=9>9uy18x3JhvFokWRe0YqZ6*^jS9s051_8Zn;b!|M{ z4a*l$TN^IB%Vqe?Ee5+LESe}ORP(Jh3l@7Vk^ZS@NcBP@zQHB@wm(u*bv*yk^14~I zv)}<&M>#F3X8sy06O@%!v|zPsZ|A72)+}B3@L6F)vVx+rpP=mjVEn!LuFijx7}ubhh1pW4yePR9YTX3qnr3Y? zp>De6-i`O&Roh|ou-Z0=*6tW<1zuOe*`R~e@*}<)5*yBWgx;u5;0rEV_t@1N&bc67 z^YsXAx?%Okl@HhBVC{0@HBQ?oE#DJMfoej=?-ol6~4!40PeRa^h~E$bI8{2xMIhqfeCC;G6Rt-t%G4R_oZW{V?d zdT%6abkoCdE?7?>wFEy(;U`e)Y za%W$v__NN76^3s}K9`!%tZ~mbtUs^M7e(mB3J6ZCQqcED1p-6XbSbYoa z0oM&nnNcv=V>X!W#zSQzmTcW-yY!lckJOsKp@ORX+({XsYpvKvM^mTWrXs@E&JY)q>Yc@d5FQc|ET)&KAaH%G+ z3+ULH9MqlY(x7jL+VhRpPUx^UCuYk>(-v1 z*zn*Z+$A>Ma`UDema=4GejwF;fT4(p=&RB0>k{tJk)MG}kI%e;nTG2td^@g3#?MCF z5F3-xb0zk7!vFdw43Vg0=r$o7S#rBQUT-)#gOs?%L zo^EjPDaSJVEJmAvuY+89X1-R~!2W(N|6pq1<+_9dfK+%qHNSeRY zS3x*f*E=vZFbiU!NpQvgOVnBeRic)eHsmLHwH<7R89l+N<=DZPpp27hF_l5RAt4t7;Z7Hei$z`59iF=pseV-HDN+KJnQ4#q3+ebgWhe5UO`} zn-dA8myV)v>!SY=MVpZ&)&KdLeYJ9^ z`_EpZ-45GIrsA}Zp=w&PamB+lKk^p_x4fI{mgB>MI$k#yU%%!$x(8QHes61ecU9Hq zc~@?{?k2+Ufl+v2Cu$w7+Zu2YWqVLYMMhiZh&Q=KAscHq()L-eOGPhTwpsBk-E=c^ zhLt3<#?9H*Uw_~F3(l!0eYaT>=o0TH085-#Bc^E#DJ!zy(pF|Qd2_b*0#Du9oYVN) zQ@sEGN?%`$S-r3AD!r^v_3M$VSNrS8#Tq~zw+7lkJ#t%a2DLr-mQdSP!&`l;|2lH@ zwuid)iB{I*)jGp<4_~xl*;O0n(f^?8%+7!v62rqwLE ztPi1X{Mu&It&HzX%o^POmZWW9#y62^Aq*ATnBH{%gPJGl^vFPD8-Mp-J-sZ3IqNJZhxD9ka z=hI$g?PA!1XlzN)kT>sp!{s;qzxXeMT?MgHKxeLZ3rY2iZt8F@T8vucxPA5LdETv| z7E{|p6qt?qb%Tr~Q08z7lZ}`C^l$@~&xhC?Y1j}y7tsGF?2b+GA6^b|rA(D+0qRyu+F%GOg7UxE-0tR+|HAy%T6^uY z_dfgFzLz+uqUi2(&VH}=Yp0*Krk#iuhAYEwmvh^Qm?7#dT_D3tv^KJh>k&ye{)k0K z^<{(-CVSICKX*QW;u$Jeh7r9Dm3@Bs!Hs$0<->EFIpUWq+!cRR+}3ugS2jQU^YE*$ z=*a~P+vOnr3kd@$WT| z$Nva5CGtN95w6vdlp6>)65v8VQp^ztm#MzPTW^ZygUYo0vib*=9<%UARk48ltMQ8k ziNWOb<`)oXQQJxhEy~#aEN5fk^yXFeV~umBD?k8(jvbrhW!qbfm)%pdti3RED#sh2 zCW~mF+I-_J&RrrJ`!vevUbnW}&Iz=g_x0u?q%ft%jGcEc{9)@Ih<#o777aDNV|^_r zNuNRhKI8z}qW11jS(;ZtBXJX(Z{bmk6O>z;B_fF{i<7&eO&Q+0es1&qciD7ho*W;# zI1Cm~7Ciq;GwHerP>B9j3n2@9=bi0KNYO7TG^pVdq9!^0xPP#t>uz66im(hMFZt3 zquPYdym5!tEnG>)VYksYjos>KbU!==--0@{WLP{Ol}V0h+@(|XE|QVWMwSlcysHo^ zR`g=)Mh-ufnPKW*uHJp;MCC<=jVtT3>$Edl6RmT$k#yVHN^s7G3RS~+D$ex0Q$}EQ`{t!1bn6HB2 zZ>8bxagp9y$F6WijinYM8vThQHbz`u&>)PF5GMAI&?lD%l4FSL>+lU}7R_IQrHKP^ zX};idBQ{Mt&C$u^(-r_@#2E)kuAt6V13=Q*w%cG^DWYocM}8YQ@>1Nt&94w}LH?|f ze<&$Y@ylYb0O#DCP`4FxysEkx0EkgCB`uhPVYMP6svzIt+3_lL+3|!xTdao#1PBtT zR{?T>Q(^0k^L}(}34trQ6mEQAyp{rs*c8I-CTXdmRs!ciV-gr0Ys?7t6Sq{%xyRX# zu;JJ%)zFnp;kg-JLhG!X^?|;K8KDinud!C%ngLpU6`dKO2pAE0tJ_O!J6=S)3WTKT z7>~_zqdqvas?osGQJRs`x2~M(j@^YcqZ7JnvFijUZ7>^YOycOlwOk`~z7US%>~(Jw z92mc6T4r*{M37txDiaQC8j=XfiNfnShlZuVq0q)od|d%baFTGGYx&=T7os{_O>l2*cf+>PBO`RX;X+86U^{$X_+DSL}T82OO&N7 zR%ilxZRWS}qz&kr_`Avw*B$8HotqtB0@^>}G#@OF37;9^0z?aM?pVE;+hxpk2J6D` zBLZ<(#_C?B{To#e*@QSHTHz1T(GMd~jOa!51?99Rw2ZY)!R0g&*SnWCRk3FxWUPoy zleAZj>i@L?>Wx@PV35})8mEIyu0u?sq>cz3KoHW*hOywGqm)n9IOCM&5*>5c{?G@= z%hFk;r&w7ehR9v5V=KkMTI4OqqdAGO&5Vf~i?0tq`h4?EtOBjs33-0h%x&Z`x1d!0 zgs@^G5tAPwfAAC5k1iWB6UXUPRl-#N5g|3TpWK6mVH9EYK$|glxP=zWjbXv=SKe7> zhaR}KLXAJxa-3Z$72!!*rkm%p9dFFi+7*`icW+#5^?2jw`hPs9F&mdU!vq`dhTe&G zON<=79D9PnM}hi;hhM>Mo5*;mlIs!^EMbJWFhMV)iCjURt=|b`kZ7}uVB_*GaZ6`I9D>l{B=HaVEJ*K~buW6dXJi z&k-_Jw*iEywEK?ut~0&u+GJ}S zJF-bXPHje|&S|gZVs|=A5I_^k%4D&$Pp~9LLS!>YKl1R;WS{I&@VGBrx$})Cq>59p zT_G5XWQlL?R>OMaT0Jgw)fkDK@99wSV?5SGSX>plYptY?o0Zlgkmd11vy|S|nq1*x zg57>Wfzhdr!mlBOHH%u+Ri3~5CknKzZNK~p(STcjBDQ0#+noh{kO5G50G6F*a*7aH z)~q2M)G4B_n_ffE*zd7ym(`}Vrw2L4+>;Mh-hNxVI&b+n&Ev3O{R|dBwsB z?5Ks)l`4)G9oO>!53(7Cw|%u zU(_f|u2aRVzHGdFq#ib!f8;h02S}sY>0ng?sjDa0HUDsjc?UXXDEeb5X8Yr*!$8xgg1;jf#L-=Wjg1V|nxJE1hu0@gNPe+AqZ3Ul$y_C*p`h~DB; z$m&Z*s@u>u!6p7_n41_wF+dXJr3r6RLIYirOtwmdbjb^xT*vTsnI?dqF|o$#Ck~=g zRlHB}!oQ6QSNUyKy0L&yRf1Dm*t5d{>Z`ogX^c&o+LV<1G>tV>w8@uds&-7QO(Uyi z+Y4?iQGBAvl?s(Sr%X!1-`gIY{^jgDmSlNKL0U^tKnb%nLWyMjZvI^>{`cKHg>uTe zdW2HaoLA42%Jblh&mY#WGI7tMdyN^F8HFLas&*nE#GRWT-}wq?ma1C7q~NmX$1MLw zx4VZb@wv{&3@Kza!*egCJe5zqMVh~?6I;YvZaY&u6rZN2#b1#i~@+gw&+&e+yqkA&-%VoZt#0+Qk=A3YNs;S4hp1^UONPKD0?Qgfo{V6=s=YYojpO zfWQg!jOGDJEvY%8XxPW?8j(p53<<&)@k?uNshA?5BdmU2iMA(ZMX_0-=7a(ckPD9i zd`=I)g$BWx`Tc@0Nh(iTrIcNBAh%?X33Jc=s0^y<&T3zmeSq9JFnsM& z(_MA~S|Z%BrR=anR4@y0L}h2AL?M-jyvVhPQiJ_gV_JXLj9dK;GCxg;X{mF!_lb(? zum&yP`U1Jr=E(K}@36H@XmsJr$hu;Sp@bZWzf72T`BL*ZQhq2HmJ4N$WZI+2`;FAF z76DY0p3QgXx2`XSye0d?Bq#ey?KMBqtNNOsOuaC5xY0`pJSik6MM<`qNosCb7Fe$c zHEyU#metKns%VDp>!Y1!!-<;FoylURAE_*&k*i9TB^9VLBQxn{dnW7E%Q{I0@qzVB z^C2spNgZv=_&+Fk=UmSCXN_TWX@3i z&H$p^y~DLB&Zs+GC+sZ%>hK$J>Um_BJrs^LdUuw$&VMGX zB=LMyR@7=t-KtolH%|=JFHRD>>NwO%hnHzotA`!Oc$nnT@tAk97vCcR+7&l!+N4Pg&PXcLjb?EER0 zT)cRE$Ik{K+TCs4& zEbsyWOGx4H)Oa*2O<%pFt(BX1m;WNK_4MK3EE|l6#X-c){!yU2aZ>oT=7{o*>zmD! zo!g@_YZ$w)`HxWM(i}z~;hjx1c;bE5tr5Q+tl;~yZR!!ySrnAH_NH)N4;wYc z6RF@(TW*+LAy>rST;S+;GYNYYJ4R(IlfEG^30;Vr-M4-xZ&0A~>A7YZyOm zq^B1n=_+Dxcqht8M04Y4Z+)nCreKq32dKyz0pN>qd}@UnSHcYRs8Vg-NLH-2W8PdT zvBc-!-y-}u7Leu;&=(QdmsvUbzxYhQ!7N zrH1_8lI;6tAA+O)m)3t5quOPTS7a`WE7<2(nzf(Vjjqwz;lH%xsN8lp;lM6RN}S^G zq_3fu<6dP`j4OgP%;62$kswPcxOV0jtw5icsg+n15kxVjA@NISLWw$)t?$aNgVwM5 z9RMWyWg>K%$X(q@sni1mVYpPfDt6N);dP0f&rLun9TDNRm>>gQi3a9-Y#(fn_cnOf zLfOvT_355zyZw9eY4@lt`QB8$;<@&Mk0WnGW#mjkuR~Swk+B4BbpiDdTeus?>_sBj zg0U!#Kq=*7rGQLu$-;fgks+h#9k{73?t5YnOsb;NU}!D+F(VwJ-~56Y!=YrYEixa# zJvi&3h?f|?F(5PQd%}CAqi?e*TG#W7!N}fr9Mv%IsjGcOtWuM++$q-Vo0=7Wf&bJC z3WX#ZF)~qyTHtbP4YR@mHholXuLCxEJpvWSgIWG$*E!lY!DUo0zn^+aRgid6>zk+M zA#2<7f3R8YEU=r!hX#5)f8M&zF$)<8Mi>O9Z{NFn!AMm>8-$U7`UIUIVScLca!L&9 zqVwMD)+$!A$4tdt=b+prIK3eXSE7M?ee>1T;m4~|#>D_sG!3*+>~*hgemyUYF;FtA zpd~O41NE{mK5MfuE9HWJZLhxStup$T3Xid6u#U-=d6hYO-+8lfR17kCbYXqh9GRxU zYaj?J?RBP^wX!bWV^btOJ}!q z2OdrYkY>={c_YTek!15_GM()ifnZwLn(YFY5}RI6ILbe;p&2nX=~;mpD&tyfpgWK{ z9FX*V1_0nH7?Fx95p*pWiS%~oCfT~IflrAV(JROxeU)bB)>^&u^~p_gCnd+%FD$_V z`T>^Uv%>r_6`#FA5h<;~Ysq*onkaLtzKf%`96TOs3GXkJJO=gnsykky9w^# z;b7|CosqP#GrrCrawaC_A7m~qG)~-|G=S2JAd3o)fUk7Db@i$`_%xBOY!VT%Yp67MK*udc$*5o7K|rvh5M^WFD%!`@!=Z3~ z_#tvl&05d8TI*L6s)Oc?tl8Jz=Zwy+vqXAc;cGc+(xyw}i17l&Su3f3VUvHW{* zzxuTv*tsVqU-_iHZ|x$E;G3Dw2^kY=1I%&bFkQLVI4d8F*Cd!M76T4^He!^rHr zh$Y!mK)C9qtWT)#P_r)UO~;yJ^ybk zf5f}Yt^4qaUUr{9ktos9L%q}Aak4^0x(3`h)y_L4s1vUQ`}WVL4jgQ_#SMKHrKkD% z)HB3&Kj%LOdCA$_|IxQsn z&h2#xhQsP4v?Bd9ClrA%cRtD*F}IMnR`f>yu7JbAT5^}S_K(=@|2{S)-e3KVTkQ|V zUj`^rgK$Ut;6MIdwCsPA|M_6<=*%o6%-sAdi(4$&2x#hZVOzu1rDCj>R>uw>4L`&Z zX*A?i$XT@4bAux|qBV@AI1IfHta!#+-2!TBU1@$kbNH}mQqBJTdj}T!(Ck0(0+SW; zZWQlx75u*pS{a9Ih02kt!{w8qGf@`yKP@Y@QM8X_h4CpXfrkH8PC`_QI4NCs)kzea z8eLTvmA8Y;KtF{eD4i8y&OetI?pSS~iqanmvVU8_N^{{wBYEtUT}kApw%-~>_D1eT z34hxURY_1lPUc1tsJ){h{rW60%~VLiE=3E#h2}r zVx^fdRSJPb$Om|RQ`CZ}sunb*Iu0hPL(^%3RJv`t#!evV-!h!keIJnkmO>dp5qiO% zCxM_ns#?6`s*LoyTW(qJ(?rBW_sVH(cRwWdD}dGhsROf5KR19cKsx3IGtUg}+ckGz zKu5{T-akcT-@ya3$1S3V+lwtuZtK!(U@Hd!1IP0XUPd9S_B0yAXjD!wl)m53JsM9- z9G>`7_$&ippvNoZ0|0_e1YSUI0$#^=8KRDS8is?T%V9Adb`DIM>#>pk-42_hnSWJ% zYImE2PmEWvkJASS2d9o6ICOY!KztP5BH8sLGt+Ynp4e@iwIM3mUpMC3!I)Y#-4i}4)Dy}s?WZ0nCcf)<<_MtHE8 z8qb*!ibc@aSyjhQA~;nlt{uQ1(IcRhnu~YxO|$EBa}tuO=%4>J`2C@y&kbN=9Q~+X z?+4P6_d8IV--}ERu3QGRgRv*O>PBtu(a?(>xkB3{JqC?FOA1YGZ3~Kd=ad_;?JE0% zk&9o7%}#`Uwfl$~iLDiz@pXEOQPf6g+!4{b;CwiY89GOa)XA(4Z5R;TQb|sV2Eo3; z+4GiR*%XYsYgue{m+{FJ*k&ZLJ^^MOoCC74^IWGa>jj{9l)w@L5awf#KiH%z^Y8DlTbCZ7HCvhZwMm(v`utQYZ86-!QKf&~9FSkkcr0J49iWV3k|5}ktp zrlQyNpx4#1%YnAt$6V=dww32+>w$7NjU`tiv}T!TYC97{SG1j_h!N){{6(OdFu#Zo z0YL99F)A6-p{?gTl z=>Ad(WVD>eB7x_M6`DmJ#Y(qU*(8je+|^BQ*PUw9Ek}PceI(?(*?)+5*8PY62UeEz zZA7cP7f$fBWZK~cKd|MlPl~=xs_{vBSKHQ6((?Z!E!Q}8bFdt=k`T^fU+0i zbuHLqX$LyTL~~?b;mR+zAVQjKTa#G1q3b+4Q^^z)DPTo7GIdTo12@U6uufC?0>afF z)eZ&Qe3#P+$)N6U{K|Sj&bP_Y?GlA;hI3W9xkyh>YGi)PL;>o?_}fD?u3rfWq?){fRzjOVDTy}J?Q3< zLk2o4`;w%|!Flj0gZPv>(F+rS0y&om%_~lVWv_Y$iZ|fZR1A<2c^8c-oeYCGa(i5C z_2!+DUb2gi5aqk(K+OnL0Gozj?$;sC~_zxM&s>SJ+dz`CJg7{ zAGICbeD~AM_edcF>_}6&>M#sPI@!8c`(&z7(viZPXb}mTbU3rfjCz+ln~%D?yzAhdn}pCs?hRwr zku+&U63zhd9vlyl(m_)o3NQ9a=2Z{{YasK#Ap+CV1)XYQ!OiXyGzR#3Q^tjj8O8bw z0(qwf2WF?H?>jm;FnxS56M~G7&X685{q%FQGt(;SX8TbJG6+mJyVkL22V-*#fH}s% zLbKhM${WXyJUe^f;MDJ?j!V#zP|UZtZ?XHu=J>`ZR9^+0MX>3TNID#44hs&?AGPg{$2Dqz03d=S$ZMP zI9G7u7wML@v;-?T>u07ygxRMh3?;^V zrYnTHVG2g{z)2B0wDVE!)B0GANCYTZ69>R+IYQI1oZ zkPdw8#TY}o_1e|phY&}G0zD&HG-_gGu{hOSaHrWWc18hSZnT~`cC^`i^}`@c z={^MIL`0=X38jCO_U~_jIGhw(I{Oy+3a?&pdy4?vZ21o<06T z^NX3^O-&=gx85QZ>9Tp+NB7|t^eVQ)b0@b~Plnnk+8C`t#i`CB8#NH4xkv4t(MmL_ zSysx^5Dg}^Dk(HBY%D^)WMn3z zNLh=pl21iql)d6RAr%!dvL%ceEDi4e(XP24J-`Y&J?TuHsb!56tT^rS9)^RpR(CmL z1IwOil(kJ}&H$pHlW0*D`GLSbS$*9Le&Ra%Xm}DyAR8mj4|V)K1RqVs?)jq7QwOaA z3v)|L*#PI=n-sd`D5@LA_U51^`iBxu4y}vdfrvpA6Cb&g&=UUWn}Y|iu#tbEnuGIB z96+^;3u%xsh=D-B0I+ofN^PMvd0uYw=AJ;I0G*wIU}6*((g*Cac+PqWy&5R-*USa&2+Kax7YHpx_`cl-jvU!-g_-UfRG=1?`wo|yy&?sO7UzA_AaOnC|I6tE$BsTX zGmBJoaB#pJgdJg2sjl&BXD2|ON$y#{%`cBo+h{8M5JhAJ5bLWYJ&mAndLWsf1xM9Y zy}~*1Zj@SLhq=Q?M&CkR#lp@CVmd&8>hLT(O98X4ArUv!ln`YIA2dFFg9mU>l&MJ{4>E8loy;KVpfc*o37U3EdS^)=uhtG!c zAhypdGRQ!~wOV@uydwxCF+@Y6%ok3Wp-6!U=b8D>f)`RV^j_P#4k7+rByTmX)iA=$ zkp+noQO0W4MpKT6O4({#ap$6Wc=Fg_{hq}f96WVg7IhHsF%X%PLZSaKEU1Km)w@b7 zgsP~*@rH6t6Vebr5E{ix>^51xVfV}uXB%7k^rdIfydaxhR;mkUVzbN&=Kv6;5&zg- zLk@TT)FZ+2rxuxK5wl4rRhyb$Z#{T;-ySC9ap&RSg}`MK5!P^71d7}bhyQ2z`TH(# zp#;0um^bc?am;4v4)=r#SNk(+U6e;^mtZFZ&qmz>Ka(NKMLAt5mP#WRxdnqxsZ?`A zz(!J2(+(jCnz4{Q4HoR+*Pi6=2#tohZUZsh@C{Xi|tgZoEsf#O}^&5ExXp3l(_vnZ4> zhS>~ls7Ed0!)xDr_w0H?=i8?#h{mT~o?>-6+Jx;ea3Emyu7wzb*U7NRW|qenM=G3A z8EhnLPv9u(s_Fhpd=WbYorbgk#2Tbi8?F2zn_irima2+>O(iLZaor^~3@>b-B=$A< z_?F(+c?BvN1cszi;Lb@A-_2iaetlqenp*B!NyN&DK*Ot93t{T@C|P-_k(dL~p!6@R zp{;)htsY!7$NWfjNl*=F7-Y_bBS?-{n_>FP{e=3U z2SGPe4g!h2sQE9LXB7B3T1=3M`L&lb`b1(dC^HOh0k{@`fEYp?84@lWhQ!@hw!ffn z9Z)QkqV6l%jADJCfXh*z-3T%=8qSRh0oZ_Mmw-P;ccR_0C#_vU@z>4F=W;o~NuXT%1FIFjRNjm!GdmpF` z_)-`v>kT&CV|iB65JflvLNB4hgkTV-6J{K&G_e*0;0Ulx(m2?Lgn)>w*FRL0wU?rY zW^D)k3shQ$W*|EuxhL$pH5Ax60c{sldVC4+%!w5?$zaH%_Q4IQfL<+!_5H0k2}BDi z#|a;f#q_r>0b;gu;^Ky%>cPtqBHb00Pr-rJ;Z^d=nVx_\n" "Language-Team: language@syspass.org\n" "Language: ja_JP\n" @@ -57,28 +57,12 @@ msgstr "アカウントを表示" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:108 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 -#: app/modules/web/Controllers/UserGroupController.php:291 -#: app/modules/web/Controllers/UserGroupController.php:334 -#: app/modules/web/Controllers/UserProfileController.php:283 -#: app/modules/web/Controllers/UserProfileController.php:326 +#: app/modules/web/Controllers/UserGroupController.php:290 +#: app/modules/web/Controllers/UserGroupController.php:333 +#: app/modules/web/Controllers/UserProfileController.php:282 +#: app/modules/web/Controllers/UserProfileController.php:325 #: lib/SP/Plugin/PluginManager.php:367 lib/SP/Plugin/PluginManager.php:395 #: lib/SP/Plugin/PluginManager.php:412 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:35 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:53 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:27 -#: app/modules/web/themes/material-blue/views/account/account-request.inc:31 -#: app/modules/web/themes/material-blue/views/account/account.inc:78 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:63 -#: app/modules/web/themes/material-blue/views/config/info.inc:51 -#: app/modules/web/themes/material-blue/views/itemshow/category.inc:29 -#: app/modules/web/themes/material-blue/views/itemshow/client.inc:29 -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:31 -#: app/modules/web/themes/material-blue/views/itemshow/tag.inc:28 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:45 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:32 -#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:28 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:576 -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:29 msgid "Name" msgstr "Name" @@ -89,38 +73,25 @@ msgstr "Name" #: app/modules/api/Controllers/AccountController.php:245 #: app/modules/api/Controllers/AccountController.php:320 #: app/modules/web/Controllers/AccountController.php:264 -#: app/modules/web/Controllers/AccountController.php:844 -#: app/modules/web/Controllers/AccountController.php:893 +#: app/modules/web/Controllers/AccountController.php:842 +#: app/modules/web/Controllers/AccountController.php:891 #: app/modules/web/Controllers/AccountController.php:938 #: app/modules/web/Controllers/AccountController.php:981 #: app/modules/web/Controllers/AccountController.php:1035 -#: app/modules/web/Controllers/AccountController.php:1082 -#: app/modules/web/Controllers/AccountFileController.php:255 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:128 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:167 -#: app/modules/web/Controllers/AccountManagerController.php:158 -#: app/modules/web/Controllers/ClientController.php:240 -#: app/modules/web/Controllers/ClientController.php:276 -#: app/modules/web/Controllers/ClientController.php:316 +#: app/modules/web/Controllers/AccountController.php:1084 +#: app/modules/web/Controllers/AccountFileController.php:257 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:129 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:168 +#: app/modules/web/Controllers/AccountManagerController.php:159 +#: app/modules/web/Controllers/ClientController.php:239 +#: app/modules/web/Controllers/ClientController.php:275 +#: app/modules/web/Controllers/ClientController.php:317 #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:242 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 #: lib/SP/Services/Import/CsvImportBase.php:165 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:48 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:56 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:68 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:70 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:41 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:49 -#: app/modules/web/themes/material-blue/views/account/account-request.inc:44 -#: app/modules/web/themes/material-blue/views/account/account-request.inc:52 -#: app/modules/web/themes/material-blue/views/account/account.inc:93 -#: app/modules/web/themes/material-blue/views/account/account.inc:95 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:40 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:45 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:47 msgid "Client" msgstr "Client" @@ -143,14 +114,14 @@ msgstr "パスワードを更新しました" #: app/modules/api/Controllers/AccountController.php:192 #: app/modules/api/Controllers/AccountController.php:198 -#: app/modules/web/Controllers/AccountController.php:842 +#: app/modules/web/Controllers/AccountController.php:840 #: app/modules/web/Controllers/AccountController.php:853 msgid "Account created" msgstr "アカウントを作成しました" #: app/modules/api/Controllers/AccountController.php:243 #: app/modules/api/Controllers/AccountController.php:249 -#: app/modules/web/Controllers/AccountController.php:891 +#: app/modules/web/Controllers/AccountController.php:889 #: app/modules/web/Controllers/AccountController.php:902 msgid "Account updated" msgstr "アカウントを更新しました" @@ -158,11 +129,11 @@ msgstr "アカウントを更新しました" #: app/modules/api/Controllers/AccountController.php:318 #: app/modules/api/Controllers/AccountController.php:324 #: app/modules/web/Controllers/AccountController.php:1033 -#: app/modules/web/Controllers/AccountController.php:1038 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:126 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:131 -#: app/modules/web/Controllers/AccountManagerController.php:156 -#: app/modules/web/Controllers/AccountManagerController.php:161 +#: app/modules/web/Controllers/AccountController.php:1040 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:127 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:132 +#: app/modules/web/Controllers/AccountManagerController.php:157 +#: app/modules/web/Controllers/AccountManagerController.php:162 msgid "Account removed" msgstr "アカウントを削除しました" @@ -172,22 +143,22 @@ msgstr "カテゴリーを表示しました" #: app/modules/api/Controllers/CategoryController.php:95 #: app/modules/api/Controllers/CategoryController.php:100 -#: app/modules/web/Controllers/CategoryController.php:280 -#: app/modules/web/Controllers/CategoryController.php:284 +#: app/modules/web/Controllers/CategoryController.php:277 +#: app/modules/web/Controllers/CategoryController.php:283 msgid "Category added" msgstr "カテゴリーを追加しました" #: app/modules/api/Controllers/CategoryController.php:125 #: app/modules/api/Controllers/CategoryController.php:130 -#: app/modules/web/Controllers/CategoryController.php:324 -#: app/modules/web/Controllers/CategoryController.php:328 +#: app/modules/web/Controllers/CategoryController.php:321 +#: app/modules/web/Controllers/CategoryController.php:327 msgid "Category updated" msgstr "カテゴリーを更新しました" #: app/modules/api/Controllers/CategoryController.php:154 #: app/modules/api/Controllers/CategoryController.php:159 -#: app/modules/web/Controllers/CategoryController.php:242 -#: app/modules/web/Controllers/CategoryController.php:246 +#: app/modules/web/Controllers/CategoryController.php:241 +#: app/modules/web/Controllers/CategoryController.php:245 msgid "Category deleted" msgstr "カテゴリーを削除しました" @@ -197,28 +168,28 @@ msgstr "クライアントを表示しました" #: app/modules/api/Controllers/ClientController.php:97 #: app/modules/api/Controllers/ClientController.php:102 -#: app/modules/web/Controllers/ClientController.php:275 -#: app/modules/web/Controllers/ClientController.php:279 +#: app/modules/web/Controllers/ClientController.php:274 +#: app/modules/web/Controllers/ClientController.php:280 #: lib/SP/Services/Import/KeepassImport.php:79 msgid "Client added" msgstr "クライアントを追加しました" #: app/modules/api/Controllers/ClientController.php:128 #: app/modules/api/Controllers/ClientController.php:133 -#: app/modules/web/Controllers/ClientController.php:315 -#: app/modules/web/Controllers/ClientController.php:319 +#: app/modules/web/Controllers/ClientController.php:316 +#: app/modules/web/Controllers/ClientController.php:322 msgid "Client updated" msgstr "クライアントを更新しました" #: app/modules/api/Controllers/ClientController.php:157 #: app/modules/api/Controllers/ClientController.php:162 -#: app/modules/web/Controllers/ClientController.php:239 -#: app/modules/web/Controllers/ClientController.php:243 +#: app/modules/web/Controllers/ClientController.php:238 +#: app/modules/web/Controllers/ClientController.php:242 msgid "Client deleted" msgstr "クライアントを削除しました" #: app/modules/api/Controllers/ConfigController.php:59 -#: app/modules/web/Controllers/ConfigBackupController.php:70 +#: app/modules/web/Controllers/ConfigBackupController.php:71 msgid "Application and database backup completed successfully" msgstr "アプリケーションとデーベースのバックアップが完了しました" @@ -230,24 +201,24 @@ msgid "Path" msgstr "Path" #: app/modules/api/Controllers/ConfigController.php:63 -#: app/modules/web/Controllers/ConfigBackupController.php:73 +#: app/modules/web/Controllers/ConfigBackupController.php:74 msgid "Backup process finished" msgstr "バックアップが完了しました" #: app/modules/api/Controllers/ConfigController.php:84 -#: app/modules/web/Controllers/ConfigBackupController.php:98 +#: app/modules/web/Controllers/ConfigBackupController.php:99 msgid "sysPass XML export" msgstr "sysPass XML export" #: app/modules/api/Controllers/ConfigController.php:93 #: app/modules/api/Controllers/ConfigController.php:96 -#: app/modules/web/Controllers/ConfigBackupController.php:108 -#: app/modules/web/Controllers/ConfigBackupController.php:136 +#: app/modules/web/Controllers/ConfigBackupController.php:109 +#: app/modules/web/Controllers/ConfigBackupController.php:137 msgid "Export process finished" msgstr "エクスポートが完了しました" #: app/modules/api/Controllers/ControllerBase.php:150 -#: lib/SP/Services/Api/ApiService.php:189 +#: lib/SP/Services/Api/ApiService.php:202 msgid "Unauthorized access" msgstr "Unauthorized access" @@ -272,55 +243,17 @@ msgstr "Send details in the response" #: app/modules/api/Controllers/Help/AccountHelp.php:69 #: app/modules/api/Controllers/Help/AccountHelp.php:85 #: app/modules/api/Controllers/Help/ConfigHelp.php:55 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:87 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:95 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:108 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:107 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:110 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:121 -#: app/modules/web/themes/material-blue/views/account/account.inc:172 -#: app/modules/web/themes/material-blue/views/account/account.inc:181 -#: app/modules/web/themes/material-blue/views/account/viewpass.inc:50 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:318 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:321 -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:91 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:185 -#: app/modules/web/themes/material-blue/views/config/mail.inc:137 -#: app/modules/web/themes/material-blue/views/config/mail.inc:146 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:152 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:162 -#: app/modules/web/themes/material-blue/views/install/index.inc:53 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:61 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:68 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:114 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:123 -#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 -#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:61 -#: app/modules/web/themes/material-blue/views/login/index.inc:40 -#: app/modules/web/themes/material-blue/views/login/index.inc:106 -#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:34 msgid "Password" msgstr "Password" #: app/modules/api/Controllers/Help/AccountHelp.php:70 #: app/modules/api/Controllers/Help/AccountHelp.php:91 #: app/modules/api/Controllers/Help/AccountHelp.php:114 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:114 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:129 -#: app/modules/web/themes/material-blue/views/account/account.inc:201 -#: app/modules/web/themes/material-blue/views/account/details.inc:94 -#: app/modules/web/themes/material-blue/views/account/details.inc:96 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:274 msgid "Password Expiry Date" msgstr "パスワードの有効期限" #: app/modules/api/Controllers/Help/AccountHelp.php:82 #: app/modules/api/Controllers/Help/AccountHelp.php:106 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:43 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:63 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:36 -#: app/modules/web/themes/material-blue/views/account/account-request.inc:39 -#: app/modules/web/themes/material-blue/views/account/account.inc:88 msgid "Account name" msgstr "アカウント名" @@ -342,46 +275,31 @@ msgstr "クライアントID" #: app/modules/api/Controllers/Help/AccountHelp.php:86 #: app/modules/api/Controllers/Help/AccountHelp.php:109 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:124 -#: app/modules/web/themes/material-blue/views/account/account.inc:166 msgid "Access user" msgstr "ログインユーザー名" #: app/modules/api/Controllers/Help/AccountHelp.php:87 #: app/modules/api/Controllers/Help/AccountHelp.php:110 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:110 -#: app/modules/web/themes/material-blue/views/account/account.inc:153 msgid "Access URL or IP" msgstr "ウェブサイトのURL or IP" #: app/modules/api/Controllers/Help/AccountHelp.php:88 #: app/modules/api/Controllers/Help/AccountHelp.php:111 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:154 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:103 -#: app/modules/web/themes/material-blue/views/account/account.inc:233 msgid "Notes about the account" msgstr "アカウントに関するメモ" #: app/modules/api/Controllers/Help/AccountHelp.php:89 #: app/modules/api/Controllers/Help/AccountHelp.php:112 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:228 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:131 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:35 msgid "Private Account" msgstr "Private Account" #: app/modules/api/Controllers/Help/AccountHelp.php:90 #: app/modules/api/Controllers/Help/AccountHelp.php:113 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:246 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:55 msgid "Private Account for Group" msgstr "Private Group Account" #: app/modules/api/Controllers/Help/AccountHelp.php:92 #: app/modules/api/Controllers/Help/AccountHelp.php:115 -#: app/modules/web/themes/material-blue/views/account/account.inc:283 -#: app/modules/web/themes/material-blue/views/account/account.inc:285 -#: app/modules/web/themes/material-blue/views/account/viewpass.inc:19 msgid "Linked Account" msgstr "関連するアカウント" @@ -403,7 +321,6 @@ msgstr "グループID" #: app/modules/api/Controllers/Help/ClientHelp.php:81 #: app/modules/api/Controllers/Help/TagHelp.php:77 #: app/modules/api/Controllers/Help/UserGroupHelp.php:81 -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:34 msgid "Text to search for" msgstr "検索" @@ -433,25 +350,21 @@ msgstr "Filtering operator" #: app/modules/api/Controllers/Help/CategoryHelp.php:54 #: app/modules/api/Controllers/Help/CategoryHelp.php:67 -#: app/modules/web/themes/material-blue/views/itemshow/category.inc:37 msgid "Category name" msgstr "カテゴリー名" #: app/modules/api/Controllers/Help/CategoryHelp.php:55 #: app/modules/api/Controllers/Help/CategoryHelp.php:68 -#: app/modules/web/themes/material-blue/views/itemshow/category.inc:50 msgid "Category description" msgstr "カテゴリーの説明" #: app/modules/api/Controllers/Help/ClientHelp.php:54 #: app/modules/api/Controllers/Help/ClientHelp.php:68 -#: app/modules/web/themes/material-blue/views/itemshow/client.inc:37 msgid "Client name" msgstr "クライアント名" #: app/modules/api/Controllers/Help/ClientHelp.php:55 #: app/modules/api/Controllers/Help/ClientHelp.php:69 -#: app/modules/web/themes/material-blue/views/itemshow/client.inc:51 msgid "Client description" msgstr "クライアントの説明" @@ -459,8 +372,6 @@ msgstr "クライアントの説明" #: app/modules/api/Controllers/Help/ClientHelp.php:70 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:155 -#: app/modules/web/themes/material-blue/views/itemshow/client.inc:76 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:119 msgid "Global" msgstr "グローバル" @@ -472,19 +383,16 @@ msgstr "タグID" #: app/modules/api/Controllers/Help/TagHelp.php:54 #: app/modules/api/Controllers/Help/TagHelp.php:66 -#: app/modules/web/themes/material-blue/views/itemshow/tag.inc:36 msgid "Tag name" msgstr "タグ名" #: app/modules/api/Controllers/Help/UserGroupHelp.php:54 #: app/modules/api/Controllers/Help/UserGroupHelp.php:68 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:40 msgid "Group name" msgstr "グループ名" #: app/modules/api/Controllers/Help/UserGroupHelp.php:55 #: app/modules/api/Controllers/Help/UserGroupHelp.php:69 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:54 msgid "Group description" msgstr "グループの説明" @@ -499,19 +407,19 @@ msgstr "タグを表示しました" #: app/modules/api/Controllers/TagController.php:93 #: app/modules/api/Controllers/TagController.php:98 -#: app/modules/web/Controllers/TagController.php:259 +#: app/modules/web/Controllers/TagController.php:258 msgid "Tag added" msgstr "タグを追加しました" #: app/modules/api/Controllers/TagController.php:122 #: app/modules/api/Controllers/TagController.php:127 -#: app/modules/web/Controllers/TagController.php:294 +#: app/modules/web/Controllers/TagController.php:293 msgid "Tag updated" msgstr "タグを更新しました" #: app/modules/api/Controllers/TagController.php:151 #: app/modules/api/Controllers/TagController.php:156 -#: app/modules/web/Controllers/TagController.php:229 +#: app/modules/web/Controllers/TagController.php:228 msgid "Tag removed" msgstr "タグを削除しました" @@ -521,26 +429,26 @@ msgstr "グループを表示しました" #: app/modules/api/Controllers/UserGroupController.php:95 #: app/modules/api/Controllers/UserGroupController.php:100 -#: app/modules/web/Controllers/UserGroupController.php:290 -#: app/modules/web/Controllers/UserGroupController.php:294 +#: app/modules/web/Controllers/UserGroupController.php:289 +#: app/modules/web/Controllers/UserGroupController.php:295 msgid "Group added" msgstr "グループを追加しました" #: app/modules/api/Controllers/UserGroupController.php:126 #: app/modules/api/Controllers/UserGroupController.php:132 -#: app/modules/web/Controllers/UserGroupController.php:333 -#: app/modules/web/Controllers/UserGroupController.php:338 +#: app/modules/web/Controllers/UserGroupController.php:332 +#: app/modules/web/Controllers/UserGroupController.php:339 msgid "Group updated" msgstr "グループを更新しました" #: app/modules/api/Controllers/UserGroupController.php:156 #: app/modules/api/Controllers/UserGroupController.php:162 -#: app/modules/web/Controllers/UserGroupController.php:251 -#: app/modules/web/Controllers/UserGroupController.php:256 +#: app/modules/web/Controllers/UserGroupController.php:250 +#: app/modules/web/Controllers/UserGroupController.php:257 msgid "Group deleted" msgstr "グループを削除しました" -#: app/modules/api/Init.php:156 +#: app/modules/api/Init.php:154 msgid "Updating needed" msgstr "更新が必要です" @@ -551,8 +459,6 @@ msgstr "更新が必要です" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 -#: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:32 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:67 msgid "Account Details" msgstr "アカウントの詳細" @@ -565,22 +471,18 @@ msgstr "Link viewed" #: app/modules/web/Controllers/AccountController.php:728 #: app/modules/web/Controllers/AccountController.php:772 #: app/modules/web/Controllers/AccountController.php:809 -#: app/modules/web/Controllers/AccountController.php:843 -#: app/modules/web/Controllers/AccountController.php:892 +#: app/modules/web/Controllers/AccountController.php:841 +#: app/modules/web/Controllers/AccountController.php:890 #: app/modules/web/Controllers/AccountController.php:937 #: app/modules/web/Controllers/AccountController.php:980 #: app/modules/web/Controllers/AccountController.php:1034 -#: app/modules/web/Controllers/AccountController.php:1081 -#: app/modules/web/Controllers/AccountFileController.php:254 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:127 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:166 -#: app/modules/web/Controllers/AccountManagerController.php:157 +#: app/modules/web/Controllers/AccountController.php:1083 +#: app/modules/web/Controllers/AccountFileController.php:256 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:128 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:167 +#: app/modules/web/Controllers/AccountManagerController.php:158 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:106 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:33 -#: app/modules/web/themes/material-blue/views/account/account.inc:37 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:29 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:31 msgid "Account" msgstr "アカウント" @@ -594,7 +496,7 @@ msgstr "HTTPS" #: app/modules/web/Controllers/AccountController.php:266 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:215 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:234 msgid "ON" msgstr "ON" @@ -609,7 +511,7 @@ msgid "IP" msgstr "IP" #: app/modules/web/Controllers/AccountController.php:268 -#: app/modules/web/Controllers/AccountController.php:1084 +#: app/modules/web/Controllers/AccountController.php:1086 #: app/modules/web/Controllers/PublicLinkController.php:273 #: lib/SP/Services/Upgrade/UpgradePublicLink.php:91 msgid "Link" @@ -617,14 +519,13 @@ msgstr "Link" #: app/modules/web/Controllers/AccountController.php:301 #: app/modules/web/Controllers/AccountController.php:353 -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:276 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:278 msgid "New Account" msgstr "新規アカウントの登録" #: app/modules/web/Controllers/AccountController.php:407 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 -#: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:24 msgid "Edit Account" msgstr "アカウントの編集" @@ -651,60 +552,52 @@ msgstr "パスワードをコピーしました" #: app/modules/web/Controllers/AccountController.php:979 #: app/modules/web/Controllers/AccountController.php:990 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:165 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:170 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:166 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:171 msgid "Account restored" msgstr "アカウントを復元しました" #: app/modules/web/Controllers/AccountController.php:1019 -#: app/modules/web/Controllers/AccountController.php:1022 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:115 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:118 -#: app/modules/web/Controllers/AccountManagerController.php:142 -#: app/modules/web/Controllers/AccountManagerController.php:145 +#: app/modules/web/Controllers/AccountController.php:1024 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:116 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:119 +#: app/modules/web/Controllers/AccountManagerController.php:143 +#: app/modules/web/Controllers/AccountManagerController.php:146 msgid "Accounts removed" msgstr "アカウントを削除しました" -#: app/modules/web/Controllers/AccountController.php:1063 +#: app/modules/web/Controllers/AccountController.php:1065 #: app/modules/web/Forms/NotificationForm.php:106 msgid "A description is needed" msgstr "説明を入力してください" -#: app/modules/web/Controllers/AccountController.php:1079 +#: app/modules/web/Controllers/AccountController.php:1081 #: lib/SP/Providers/Notification/NotificationHandler.php:127 -#: app/modules/web/themes/material-blue/views/account/account-request.inc:57 -#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:49 -#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:51 msgid "Request" msgstr "リクエスト" -#: app/modules/web/Controllers/AccountController.php:1080 +#: app/modules/web/Controllers/AccountController.php:1082 msgid "Requester" msgstr "Requester" -#: app/modules/web/Controllers/AccountController.php:1083 +#: app/modules/web/Controllers/AccountController.php:1085 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:130 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 -#: app/modules/web/themes/material-blue/views/itemshow/category.inc:42 -#: app/modules/web/themes/material-blue/views/itemshow/client.inc:43 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:46 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:72 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:82 msgid "Description" -msgstr "Description" +msgstr "概要" -#: app/modules/web/Controllers/AccountController.php:1099 +#: app/modules/web/Controllers/AccountController.php:1101 msgid "Request done" msgstr "リクエストを送信しました" -#: app/modules/web/Controllers/AccountFavoriteController.php:57 +#: app/modules/web/Controllers/AccountFavoriteController.php:60 msgid "Favorite added" msgstr "お気に入りに追加しました" -#: app/modules/web/Controllers/AccountFavoriteController.php:77 +#: app/modules/web/Controllers/AccountFavoriteController.php:80 msgid "Favorite deleted" msgstr "お気に入りから削除しました" @@ -721,15 +614,14 @@ msgstr "ファイルを表示しました" #: app/modules/web/Controllers/AccountFileController.php:97 #: app/modules/web/Controllers/AccountFileController.php:113 #: app/modules/web/Controllers/AccountFileController.php:152 -#: app/modules/web/Controllers/AccountFileController.php:253 -#: app/modules/web/Controllers/AccountFileController.php:388 -#: app/modules/web/Controllers/ConfigBackupController.php:165 -#: app/modules/web/Controllers/ConfigBackupController.php:211 -#: app/modules/web/Controllers/ConfigBackupController.php:257 -#: app/modules/web/Controllers/ConfigGeneralController.php:212 -#: app/modules/web/Controllers/ConfigGeneralController.php:253 +#: app/modules/web/Controllers/AccountFileController.php:255 +#: app/modules/web/Controllers/AccountFileController.php:390 +#: app/modules/web/Controllers/ConfigBackupController.php:166 +#: app/modules/web/Controllers/ConfigBackupController.php:212 +#: app/modules/web/Controllers/ConfigBackupController.php:258 +#: app/modules/web/Controllers/ConfigGeneralController.php:213 +#: app/modules/web/Controllers/ConfigGeneralController.php:254 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:133 -#: app/modules/web/themes/material-blue/views/config/import.inc:80 msgid "File" msgstr "ファイル" @@ -738,134 +630,130 @@ msgid "File not supported for preview" msgstr "このファイルはプレビューできません" #: app/modules/web/Controllers/AccountFileController.php:151 -#: app/modules/web/Controllers/ConfigBackupController.php:164 -#: app/modules/web/Controllers/ConfigBackupController.php:210 -#: app/modules/web/Controllers/ConfigBackupController.php:256 -#: app/modules/web/Controllers/ConfigGeneralController.php:211 -#: app/modules/web/Controllers/ConfigGeneralController.php:252 +#: app/modules/web/Controllers/ConfigBackupController.php:165 +#: app/modules/web/Controllers/ConfigBackupController.php:211 +#: app/modules/web/Controllers/ConfigBackupController.php:257 +#: app/modules/web/Controllers/ConfigGeneralController.php:212 +#: app/modules/web/Controllers/ConfigGeneralController.php:253 msgid "File downloaded" msgstr "ダウンロード" -#: app/modules/web/Controllers/AccountFileController.php:197 +#: app/modules/web/Controllers/AccountFileController.php:199 msgid "INVALID QUERY" msgstr "クエリーの文法エラー" -#: app/modules/web/Controllers/AccountFileController.php:203 +#: app/modules/web/Controllers/AccountFileController.php:205 msgid "There aren't any allowed MIME types" msgstr "このMIME typeは許可されていません" -#: app/modules/web/Controllers/AccountFileController.php:218 +#: app/modules/web/Controllers/AccountFileController.php:220 msgid "Invalid file" msgstr "不正なファイルです" -#: app/modules/web/Controllers/AccountFileController.php:220 +#: app/modules/web/Controllers/AccountFileController.php:222 #, php-format msgid "File: %s" msgstr "File: %s" -#: app/modules/web/Controllers/AccountFileController.php:232 +#: app/modules/web/Controllers/AccountFileController.php:234 msgid "File size exceeded" msgstr "ファイルが大きすぎます" -#: app/modules/web/Controllers/AccountFileController.php:234 +#: app/modules/web/Controllers/AccountFileController.php:236 #, php-format msgid "Maximum size: %d KB" msgstr "ファイルサイズの上限: %d KB" -#: app/modules/web/Controllers/AccountFileController.php:240 +#: app/modules/web/Controllers/AccountFileController.php:242 #: lib/SP/Services/Import/FileImport.php:106 msgid "Internal error while reading the file" msgstr "ファイルの読み込みエラーです" -#: app/modules/web/Controllers/AccountFileController.php:252 -#: app/modules/web/Controllers/AccountFileController.php:261 +#: app/modules/web/Controllers/AccountFileController.php:254 +#: app/modules/web/Controllers/AccountFileController.php:263 msgid "File saved" msgstr "ファイルを保存しました" -#: app/modules/web/Controllers/AccountFileController.php:256 +#: app/modules/web/Controllers/AccountFileController.php:258 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:109 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:128 -#: app/modules/web/Controllers/ItemPresetController.php:343 -#: app/modules/web/Controllers/ItemPresetController.php:386 +#: app/modules/web/Controllers/ItemPresetController.php:342 +#: app/modules/web/Controllers/ItemPresetController.php:385 #: lib/SP/Services/Auth/LoginService.php:490 #: lib/SP/Services/Auth/LoginService.php:568 #: lib/SP/Services/Auth/LoginService.php:614 #: lib/SP/Services/Auth/LoginService.php:663 -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:44 -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:46 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:31 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:39 msgid "Type" msgstr "Type" -#: app/modules/web/Controllers/AccountFileController.php:257 +#: app/modules/web/Controllers/AccountFileController.php:259 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Size" msgstr "Size" -#: app/modules/web/Controllers/AccountFileController.php:295 +#: app/modules/web/Controllers/AccountFileController.php:297 #: lib/SP/Services/Import/FileImport.php:95 msgid "File type not allowed" msgstr "この種類のファイルは許可されていません" -#: app/modules/web/Controllers/AccountFileController.php:297 +#: app/modules/web/Controllers/AccountFileController.php:299 #: lib/SP/Services/Import/FileImport.php:97 #, php-format msgid "MIME type: %s" msgstr "MIME type: %s" -#: app/modules/web/Controllers/AccountFileController.php:316 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:71 -#: app/modules/web/Controllers/AccountManagerController.php:86 -#: app/modules/web/Controllers/AccountManagerController.php:220 -#: app/modules/web/Controllers/AuthTokenController.php:81 -#: app/modules/web/Controllers/AuthTokenController.php:121 -#: app/modules/web/Controllers/AuthTokenController.php:188 -#: app/modules/web/Controllers/AuthTokenController.php:223 -#: app/modules/web/Controllers/AuthTokenController.php:270 -#: app/modules/web/Controllers/AuthTokenController.php:310 -#: app/modules/web/Controllers/AuthTokenController.php:364 -#: app/modules/web/Controllers/CategoryController.php:80 -#: app/modules/web/Controllers/CategoryController.php:117 -#: app/modules/web/Controllers/CategoryController.php:183 -#: app/modules/web/Controllers/CategoryController.php:218 -#: app/modules/web/Controllers/CategoryController.php:265 -#: app/modules/web/Controllers/CategoryController.php:309 -#: app/modules/web/Controllers/CategoryController.php:353 -#: app/modules/web/Controllers/ClientController.php:81 -#: app/modules/web/Controllers/ClientController.php:118 -#: app/modules/web/Controllers/ClientController.php:184 -#: app/modules/web/Controllers/ClientController.php:218 -#: app/modules/web/Controllers/ClientController.php:262 -#: app/modules/web/Controllers/ClientController.php:304 -#: app/modules/web/Controllers/ClientController.php:344 -#: app/modules/web/Controllers/CustomFieldController.php:81 -#: app/modules/web/Controllers/CustomFieldController.php:118 -#: app/modules/web/Controllers/CustomFieldController.php:182 -#: app/modules/web/Controllers/CustomFieldController.php:216 -#: app/modules/web/Controllers/CustomFieldController.php:252 -#: app/modules/web/Controllers/CustomFieldController.php:293 -#: app/modules/web/Controllers/CustomFieldController.php:334 -#: app/modules/web/Controllers/EventlogController.php:114 -#: app/modules/web/Controllers/ItemPresetController.php:82 -#: app/modules/web/Controllers/ItemPresetController.php:171 -#: app/modules/web/Controllers/ItemPresetController.php:211 -#: app/modules/web/Controllers/ItemPresetController.php:252 -#: app/modules/web/Controllers/ItemPresetController.php:286 -#: app/modules/web/Controllers/ItemPresetController.php:329 -#: app/modules/web/Controllers/ItemPresetController.php:372 -#: app/modules/web/Controllers/NotificationController.php:118 -#: app/modules/web/Controllers/NotificationController.php:183 -#: app/modules/web/Controllers/NotificationController.php:201 -#: app/modules/web/Controllers/NotificationController.php:235 -#: app/modules/web/Controllers/NotificationController.php:320 -#: app/modules/web/Controllers/NotificationController.php:351 -#: app/modules/web/Controllers/NotificationController.php:388 -#: app/modules/web/Controllers/PluginController.php:124 -#: app/modules/web/Controllers/PluginController.php:146 -#: app/modules/web/Controllers/PluginController.php:299 +#: app/modules/web/Controllers/AccountFileController.php:318 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:72 +#: app/modules/web/Controllers/AccountManagerController.php:87 +#: app/modules/web/Controllers/AccountManagerController.php:221 +#: app/modules/web/Controllers/AuthTokenController.php:80 +#: app/modules/web/Controllers/AuthTokenController.php:120 +#: app/modules/web/Controllers/AuthTokenController.php:187 +#: app/modules/web/Controllers/AuthTokenController.php:222 +#: app/modules/web/Controllers/AuthTokenController.php:269 +#: app/modules/web/Controllers/AuthTokenController.php:309 +#: app/modules/web/Controllers/AuthTokenController.php:363 +#: app/modules/web/Controllers/CategoryController.php:79 +#: app/modules/web/Controllers/CategoryController.php:116 +#: app/modules/web/Controllers/CategoryController.php:182 +#: app/modules/web/Controllers/CategoryController.php:217 +#: app/modules/web/Controllers/CategoryController.php:264 +#: app/modules/web/Controllers/CategoryController.php:308 +#: app/modules/web/Controllers/CategoryController.php:352 +#: app/modules/web/Controllers/ClientController.php:80 +#: app/modules/web/Controllers/ClientController.php:117 +#: app/modules/web/Controllers/ClientController.php:183 +#: app/modules/web/Controllers/ClientController.php:217 +#: app/modules/web/Controllers/ClientController.php:261 +#: app/modules/web/Controllers/ClientController.php:305 +#: app/modules/web/Controllers/ClientController.php:347 +#: app/modules/web/Controllers/CustomFieldController.php:80 +#: app/modules/web/Controllers/CustomFieldController.php:117 +#: app/modules/web/Controllers/CustomFieldController.php:181 +#: app/modules/web/Controllers/CustomFieldController.php:215 +#: app/modules/web/Controllers/CustomFieldController.php:251 +#: app/modules/web/Controllers/CustomFieldController.php:292 +#: app/modules/web/Controllers/CustomFieldController.php:333 +#: app/modules/web/Controllers/EventlogController.php:115 +#: app/modules/web/Controllers/ItemPresetController.php:81 +#: app/modules/web/Controllers/ItemPresetController.php:170 +#: app/modules/web/Controllers/ItemPresetController.php:210 +#: app/modules/web/Controllers/ItemPresetController.php:251 +#: app/modules/web/Controllers/ItemPresetController.php:285 +#: app/modules/web/Controllers/ItemPresetController.php:328 +#: app/modules/web/Controllers/ItemPresetController.php:371 +#: app/modules/web/Controllers/NotificationController.php:119 +#: app/modules/web/Controllers/NotificationController.php:184 +#: app/modules/web/Controllers/NotificationController.php:202 +#: app/modules/web/Controllers/NotificationController.php:236 +#: app/modules/web/Controllers/NotificationController.php:321 +#: app/modules/web/Controllers/NotificationController.php:352 +#: app/modules/web/Controllers/NotificationController.php:389 +#: app/modules/web/Controllers/PluginController.php:123 +#: app/modules/web/Controllers/PluginController.php:145 +#: app/modules/web/Controllers/PluginController.php:298 #: app/modules/web/Controllers/PublicLinkController.php:84 #: app/modules/web/Controllers/PublicLinkController.php:121 #: app/modules/web/Controllers/PublicLinkController.php:187 @@ -874,13 +762,13 @@ msgstr "MIME type: %s" #: app/modules/web/Controllers/PublicLinkController.php:296 #: app/modules/web/Controllers/PublicLinkController.php:332 #: app/modules/web/Controllers/PublicLinkController.php:378 -#: app/modules/web/Controllers/TagController.php:78 -#: app/modules/web/Controllers/TagController.php:115 -#: app/modules/web/Controllers/TagController.php:177 -#: app/modules/web/Controllers/TagController.php:211 -#: app/modules/web/Controllers/TagController.php:249 -#: app/modules/web/Controllers/TagController.php:284 -#: app/modules/web/Controllers/TagController.php:319 +#: app/modules/web/Controllers/TagController.php:77 +#: app/modules/web/Controllers/TagController.php:114 +#: app/modules/web/Controllers/TagController.php:176 +#: app/modules/web/Controllers/TagController.php:210 +#: app/modules/web/Controllers/TagController.php:248 +#: app/modules/web/Controllers/TagController.php:283 +#: app/modules/web/Controllers/TagController.php:318 #: app/modules/web/Controllers/UserController.php:86 #: app/modules/web/Controllers/UserController.php:123 #: app/modules/web/Controllers/UserController.php:210 @@ -890,198 +778,188 @@ msgstr "MIME type: %s" #: app/modules/web/Controllers/UserController.php:398 #: app/modules/web/Controllers/UserController.php:444 #: app/modules/web/Controllers/UserController.php:485 -#: app/modules/web/Controllers/UserGroupController.php:87 -#: app/modules/web/Controllers/UserGroupController.php:124 -#: app/modules/web/Controllers/UserGroupController.php:197 -#: app/modules/web/Controllers/UserGroupController.php:231 -#: app/modules/web/Controllers/UserGroupController.php:276 -#: app/modules/web/Controllers/UserGroupController.php:319 -#: app/modules/web/Controllers/UserGroupController.php:363 -#: app/modules/web/Controllers/UserProfileController.php:81 -#: app/modules/web/Controllers/UserProfileController.php:118 -#: app/modules/web/Controllers/UserProfileController.php:187 -#: app/modules/web/Controllers/UserProfileController.php:221 -#: app/modules/web/Controllers/UserProfileController.php:266 -#: app/modules/web/Controllers/UserProfileController.php:311 -#: app/modules/web/Controllers/UserProfileController.php:355 +#: app/modules/web/Controllers/UserGroupController.php:86 +#: app/modules/web/Controllers/UserGroupController.php:123 +#: app/modules/web/Controllers/UserGroupController.php:196 +#: app/modules/web/Controllers/UserGroupController.php:230 +#: app/modules/web/Controllers/UserGroupController.php:277 +#: app/modules/web/Controllers/UserGroupController.php:320 +#: app/modules/web/Controllers/UserGroupController.php:364 +#: app/modules/web/Controllers/UserProfileController.php:80 +#: app/modules/web/Controllers/UserProfileController.php:117 +#: app/modules/web/Controllers/UserProfileController.php:186 +#: app/modules/web/Controllers/UserProfileController.php:220 +#: app/modules/web/Controllers/UserProfileController.php:269 +#: app/modules/web/Controllers/UserProfileController.php:312 +#: app/modules/web/Controllers/UserProfileController.php:356 #: lib/SP/Core/Acl/UnauthorizedActionException.php:47 #: lib/SP/Util/ErrorUtil.php:161 msgid "You don't have permission to do this operation" msgstr "この操作を行う権限がありません" -#: app/modules/web/Controllers/AccountFileController.php:379 -#: app/modules/web/Controllers/AccountFileController.php:382 +#: app/modules/web/Controllers/AccountFileController.php:381 +#: app/modules/web/Controllers/AccountFileController.php:384 msgid "Files deleted" msgstr "ファイルを削除しました" -#: app/modules/web/Controllers/AccountFileController.php:387 +#: app/modules/web/Controllers/AccountFileController.php:389 msgid "File deleted" msgstr "ファイルを削除しました" -#: app/modules/web/Controllers/AccountFileController.php:393 +#: app/modules/web/Controllers/AccountFileController.php:395 msgid "File Deleted" msgstr "ファイルを削除しました" -#: app/modules/web/Controllers/AccountFileController.php:431 +#: app/modules/web/Controllers/AccountFileController.php:433 msgid "Files management disabled" msgstr "ファイル管理機能は使えません" -#: app/modules/web/Controllers/AccountFileController.php:450 +#: app/modules/web/Controllers/AccountFileController.php:452 msgid "There are no linked files for the account" msgstr "このアカウントに紐づいているファイルはありません" -#: app/modules/web/Controllers/AccountManagerController.php:198 -#: app/modules/web/Controllers/AccountManagerController.php:201 -#: lib/SP/Services/Account/AccountCryptService.php:198 +#: app/modules/web/Controllers/AccountManagerController.php:199 +#: app/modules/web/Controllers/AccountManagerController.php:202 +#: lib/SP/Services/Account/AccountCryptService.php:133 +#: lib/SP/Services/Account/AccountCryptService.php:214 msgid "Accounts updated" msgstr "アカウントを更新しました" -#: app/modules/web/Controllers/AccountManagerController.php:223 +#: app/modules/web/Controllers/AccountManagerController.php:224 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 msgid "Bulk Update" msgstr "複数件更新" -#: app/modules/web/Controllers/AuthTokenController.php:124 +#: app/modules/web/Controllers/AuthTokenController.php:123 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "New Authorization" msgstr "New Authorization" -#: app/modules/web/Controllers/AuthTokenController.php:191 +#: app/modules/web/Controllers/AuthTokenController.php:190 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Edit Authorization" msgstr "Edit Authorization" -#: app/modules/web/Controllers/AuthTokenController.php:234 -#: app/modules/web/Controllers/AuthTokenController.php:237 +#: app/modules/web/Controllers/AuthTokenController.php:233 +#: app/modules/web/Controllers/AuthTokenController.php:236 msgid "Authorizations deleted" msgstr "Authorizations deleted" -#: app/modules/web/Controllers/AuthTokenController.php:247 -#: app/modules/web/Controllers/AuthTokenController.php:251 +#: app/modules/web/Controllers/AuthTokenController.php:246 +#: app/modules/web/Controllers/AuthTokenController.php:250 msgid "Authorization deleted" msgstr "Authorization deleted" -#: app/modules/web/Controllers/AuthTokenController.php:248 -#: app/modules/web/Controllers/AuthTokenController.php:324 -#: app/modules/web/Controllers/AuthTokenController.php:333 -#: app/modules/web/Controllers/AuthTokenController.php:376 +#: app/modules/web/Controllers/AuthTokenController.php:247 +#: app/modules/web/Controllers/AuthTokenController.php:323 +#: app/modules/web/Controllers/AuthTokenController.php:332 +#: app/modules/web/Controllers/AuthTokenController.php:375 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:72 msgid "Authorization" msgstr "Authorization" -#: app/modules/web/Controllers/AuthTokenController.php:285 +#: app/modules/web/Controllers/AuthTokenController.php:284 msgid "Authorization added" msgstr "Authorization added" -#: app/modules/web/Controllers/AuthTokenController.php:323 -#: app/modules/web/Controllers/AuthTokenController.php:332 -#: app/modules/web/Controllers/AuthTokenController.php:339 +#: app/modules/web/Controllers/AuthTokenController.php:322 +#: app/modules/web/Controllers/AuthTokenController.php:331 +#: app/modules/web/Controllers/AuthTokenController.php:338 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 msgid "Authorization updated" msgstr "Authorization updated" -#: app/modules/web/Controllers/AuthTokenController.php:367 +#: app/modules/web/Controllers/AuthTokenController.php:366 msgid "View Authorization" msgstr "View Authorization" -#: app/modules/web/Controllers/AuthTokenController.php:375 +#: app/modules/web/Controllers/AuthTokenController.php:374 msgid "Authorization viewed" msgstr "Authorization viewed" -#: app/modules/web/Controllers/CategoryController.php:120 +#: app/modules/web/Controllers/CategoryController.php:119 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 -#: app/modules/web/themes/material-blue/views/account/account.inc:135 msgid "New Category" msgstr "カテゴリの追加" -#: app/modules/web/Controllers/CategoryController.php:186 +#: app/modules/web/Controllers/CategoryController.php:185 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 msgid "Edit Category" msgstr "カテゴリーの編集" -#: app/modules/web/Controllers/CategoryController.php:229 -#: app/modules/web/Controllers/CategoryController.php:232 +#: app/modules/web/Controllers/CategoryController.php:228 +#: app/modules/web/Controllers/CategoryController.php:231 msgid "Categories deleted" msgstr "カテゴリーの削除" -#: app/modules/web/Controllers/CategoryController.php:243 -#: app/modules/web/Controllers/CategoryController.php:281 -#: app/modules/web/Controllers/CategoryController.php:325 +#: app/modules/web/Controllers/CategoryController.php:242 +#: app/modules/web/Controllers/CategoryController.php:278 +#: app/modules/web/Controllers/CategoryController.php:322 #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:256 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 #: lib/SP/Services/Import/KeepassImport.php:106 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:84 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:86 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:54 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:62 -#: app/modules/web/themes/material-blue/views/account/account.inc:119 -#: app/modules/web/themes/material-blue/views/account/account.inc:121 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:80 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:61 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:63 msgid "Category" msgstr "Category" -#: app/modules/web/Controllers/CategoryController.php:356 +#: app/modules/web/Controllers/CategoryController.php:355 msgid "View Category" msgstr "カテゴリーを表示" -#: app/modules/web/Controllers/ClientController.php:121 +#: app/modules/web/Controllers/ClientController.php:120 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 -#: app/modules/web/themes/material-blue/views/account/account.inc:109 msgid "New Client" msgstr "クライアントを追加" -#: app/modules/web/Controllers/ClientController.php:187 +#: app/modules/web/Controllers/ClientController.php:186 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 msgid "Edit Client" msgstr "クライアントを編集" -#: app/modules/web/Controllers/ClientController.php:228 -#: app/modules/web/Controllers/ClientController.php:231 +#: app/modules/web/Controllers/ClientController.php:227 +#: app/modules/web/Controllers/ClientController.php:230 msgid "Clients deleted" msgstr "クライアントを削除" -#: app/modules/web/Controllers/ClientController.php:347 +#: app/modules/web/Controllers/ClientController.php:350 msgid "View Client" msgstr "クライアントを表示" -#: app/modules/web/Controllers/ConfigAccountController.php:74 +#: app/modules/web/Controllers/ConfigAccountController.php:75 msgid "Maximum size per file is 16MB" msgstr "ファイルの最大サイズは16MBです" -#: app/modules/web/Controllers/ConfigAccountController.php:82 +#: app/modules/web/Controllers/ConfigAccountController.php:83 msgid "Files enabled" msgstr "ファイルを有効化しました" -#: app/modules/web/Controllers/ConfigAccountController.php:87 +#: app/modules/web/Controllers/ConfigAccountController.php:88 msgid "Files disabled" msgstr "ファイルを無効化しました" -#: app/modules/web/Controllers/ConfigAccountController.php:100 +#: app/modules/web/Controllers/ConfigAccountController.php:101 msgid "Public links enabled" msgstr "共有リンクを有効化" -#: app/modules/web/Controllers/ConfigAccountController.php:105 +#: app/modules/web/Controllers/ConfigAccountController.php:106 msgid "Public links disabled" msgstr "共有リンクを無効化" -#: app/modules/web/Controllers/ConfigBackupController.php:59 -#: app/modules/web/Controllers/ConfigBackupController.php:197 -#: app/modules/web/Controllers/ConfigBackupController.php:243 -#: app/modules/web/Controllers/ConfigEncryptionController.php:131 -#: app/modules/web/Controllers/ConfigEncryptionController.php:194 -#: app/modules/web/Controllers/ConfigGeneralController.php:200 -#: app/modules/web/Controllers/ConfigGeneralController.php:246 -#: app/modules/web/Controllers/ConfigImportController.php:61 +#: app/modules/web/Controllers/ConfigBackupController.php:60 +#: app/modules/web/Controllers/ConfigBackupController.php:198 +#: app/modules/web/Controllers/ConfigBackupController.php:244 +#: app/modules/web/Controllers/ConfigEncryptionController.php:132 +#: app/modules/web/Controllers/ConfigEncryptionController.php:195 +#: app/modules/web/Controllers/ConfigGeneralController.php:201 +#: app/modules/web/Controllers/ConfigGeneralController.php:247 +#: app/modules/web/Controllers/ConfigImportController.php:62 #: app/modules/web/Controllers/ConfigLdapController.php:237 #: app/modules/web/Controllers/Traits/ConfigTrait.php:56 #: app/modules/web/Forms/UserForm.php:131 @@ -1090,93 +968,79 @@ msgstr "共有リンクを無効化" msgid "Ey, this is a DEMO!!" msgstr "これはデモです!" -#: app/modules/web/Controllers/ConfigBackupController.php:92 +#: app/modules/web/Controllers/ConfigBackupController.php:93 #: app/modules/web/Controllers/UserPassResetController.php:203 #: app/modules/web/Forms/AccountForm.php:136 #: app/modules/web/Forms/UserForm.php:161 msgid "Passwords do not match" msgstr "パスワードが一致しません" -#: app/modules/web/Controllers/ConfigBackupController.php:123 +#: app/modules/web/Controllers/ConfigBackupController.php:124 msgid "Verification of exported data finished" msgstr "エクスポートが完了しました" -#: app/modules/web/Controllers/ConfigBackupController.php:124 +#: app/modules/web/Controllers/ConfigBackupController.php:125 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:124 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:262 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:311 #: lib/SP/Services/Upgrade/UpgradeConfigService.php:336 #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:167 -#: app/modules/web/themes/material-blue/views/config/info.inc:61 -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:41 msgid "Version" msgstr "Version" -#: app/modules/web/Controllers/ConfigBackupController.php:125 +#: app/modules/web/Controllers/ConfigBackupController.php:126 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 -#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:21 -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:106 msgid "Encrypted" msgstr "Encrypted" -#: app/modules/web/Controllers/ConfigBackupController.php:125 -#: app/modules/web/themes/material-blue/views/config/info.inc:152 +#: app/modules/web/Controllers/ConfigBackupController.php:126 msgid "Yes" msgstr "Yes" -#: app/modules/web/Controllers/ConfigBackupController.php:125 -#: app/modules/web/themes/material-blue/views/config/info.inc:152 +#: app/modules/web/Controllers/ConfigBackupController.php:126 msgid "No" msgstr "No" -#: app/modules/web/Controllers/ConfigBackupController.php:126 -#: app/modules/web/Controllers/ConfigManagerController.php:203 +#: app/modules/web/Controllers/ConfigBackupController.php:127 +#: app/modules/web/Controllers/ConfigManagerController.php:204 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 #: lib/SP/Providers/Notification/NotificationHandler.php:128 #: lib/SP/Providers/Notification/NotificationHandler.php:159 #: lib/SP/Services/CustomField/CustomFieldDefService.php:79 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:33 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:429 msgid "Accounts" msgstr "アカウント" -#: app/modules/web/Controllers/ConfigBackupController.php:127 +#: app/modules/web/Controllers/ConfigBackupController.php:128 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 #: lib/SP/Services/CustomField/CustomFieldDefService.php:81 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:361 msgid "Clients" msgstr "クライアント" -#: app/modules/web/Controllers/ConfigBackupController.php:128 +#: app/modules/web/Controllers/ConfigBackupController.php:129 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 #: lib/SP/Services/CustomField/CustomFieldDefService.php:80 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:327 msgid "Categories" msgstr "カテゴリー" -#: app/modules/web/Controllers/ConfigBackupController.php:129 +#: app/modules/web/Controllers/ConfigBackupController.php:130 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:94 -#: app/modules/web/themes/material-blue/views/account/account.inc:237 -#: app/modules/web/themes/material-blue/views/account/account.inc:239 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:109 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:344 msgid "Tags" msgstr "タグ" -#: app/modules/web/Controllers/ConfigDokuWikiController.php:66 +#: app/modules/web/Controllers/ConfigDokuWikiController.php:67 msgid "Missing DokuWiki parameters" msgstr "DokuWikiの文法ではありません" -#: app/modules/web/Controllers/ConfigDokuWikiController.php:78 +#: app/modules/web/Controllers/ConfigDokuWikiController.php:79 msgid "DokuWiki enabled" msgstr "DokuWikiを有効化" -#: app/modules/web/Controllers/ConfigDokuWikiController.php:83 +#: app/modules/web/Controllers/ConfigDokuWikiController.php:84 msgid "DokuWiki disabled" msgstr "DokuWikiを無効化" -#: app/modules/web/Controllers/ConfigEncryptionController.php:80 -#: app/modules/web/Controllers/ConfigEncryptionController.php:180 +#: app/modules/web/Controllers/ConfigEncryptionController.php:81 +#: app/modules/web/Controllers/ConfigEncryptionController.php:181 #: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:124 #: lib/SP/Services/Auth/LoginService.php:325 #: lib/SP/Services/Auth/LoginService.php:351 @@ -1185,127 +1049,125 @@ msgstr "DokuWikiを無効化" msgid "Master password updated" msgstr "マスターパスワードを更新しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:81 -#: app/modules/web/Controllers/ConfigEncryptionController.php:181 +#: app/modules/web/Controllers/ConfigEncryptionController.php:82 +#: app/modules/web/Controllers/ConfigEncryptionController.php:182 #: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:124 #: lib/SP/Services/User/UpdatedMasterPassException.php:46 #: lib/SP/Util/ErrorUtil.php:166 msgid "Please, restart the session for update it" msgstr "変更を適用するにはログインし直してください" -#: app/modules/web/Controllers/ConfigEncryptionController.php:88 +#: app/modules/web/Controllers/ConfigEncryptionController.php:89 msgid "Master password not entered" msgstr "マスターパスワードが入力されていません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:95 +#: app/modules/web/Controllers/ConfigEncryptionController.php:96 msgid "The password update must be confirmed" msgstr "入力されたパスワードが一致しません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:102 +#: app/modules/web/Controllers/ConfigEncryptionController.php:103 msgid "Passwords are the same" msgstr "入力されたパスワードが一致しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:109 +#: app/modules/web/Controllers/ConfigEncryptionController.php:110 msgid "Master passwords do not match" msgstr "マスターパスワードが一致しません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:116 +#: app/modules/web/Controllers/ConfigEncryptionController.php:117 msgid "The current master password does not match" msgstr "現在のマスターパスワードと一致しません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:123 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:91 +#: app/modules/web/Controllers/ConfigEncryptionController.php:124 msgid "Maintenance mode not enabled" msgstr "メンテナンスモードが有効化されていません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:124 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:91 +#: app/modules/web/Controllers/ConfigEncryptionController.php:125 msgid "Please, enable it to avoid unwanted behavior from other sessions" msgstr "" "他のユーザーがログインしていると予想外の変更が行われる可能性があるのでメンテ" "ナンスモードを有効化してください" -#: app/modules/web/Controllers/ConfigEncryptionController.php:174 +#: app/modules/web/Controllers/ConfigEncryptionController.php:175 msgid "Error while saving the Master Password's hash" msgstr "マスターパスワードのハッシュを保存する時にエラーが発生しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:201 -#: app/modules/web/Controllers/ConfigEncryptionController.php:203 +#: app/modules/web/Controllers/ConfigEncryptionController.php:202 +#: app/modules/web/Controllers/ConfigEncryptionController.php:204 msgid "Master password hash updated" msgstr "マスターパスワードのハッシュを更新しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:210 +#: app/modules/web/Controllers/ConfigEncryptionController.php:211 msgid "Error while updating the master password hash" msgstr "マスターパスワードのハッシュを更新する時にエラーが発生しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:239 -#: app/modules/web/Controllers/ConfigEncryptionController.php:249 -#: app/modules/web/Controllers/ConfigEncryptionController.php:255 +#: app/modules/web/Controllers/ConfigEncryptionController.php:240 +#: app/modules/web/Controllers/ConfigEncryptionController.php:250 +#: app/modules/web/Controllers/ConfigEncryptionController.php:256 msgid "Temporary password generated" msgstr "仮マスターパスワードの発行" -#: app/modules/web/Controllers/ConfigEncryptionController.php:240 +#: app/modules/web/Controllers/ConfigEncryptionController.php:241 #: app/modules/web/Controllers/ConfigMailController.php:164 #: app/modules/web/Controllers/ConfigMailController.php:170 #: lib/SP/Services/Mail/MailService.php:150 msgid "Email sent" msgstr "メールの送信" -#: app/modules/web/Controllers/ConfigEncryptionController.php:250 +#: app/modules/web/Controllers/ConfigEncryptionController.php:251 #: lib/SP/Services/Mail/MailService.php:82 #: lib/SP/Services/Mail/MailService.php:160 msgid "Error while sending the email" msgstr "メールの送信ん失敗しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:102 +#: app/modules/web/Controllers/ConfigGeneralController.php:103 msgid "Missing remote syslog parameters" msgstr "remote syslogの設定を確認してください" -#: app/modules/web/Controllers/ConfigGeneralController.php:110 +#: app/modules/web/Controllers/ConfigGeneralController.php:111 msgid "Remote syslog enabled" msgstr "remote syslogを有効化しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:115 +#: app/modules/web/Controllers/ConfigGeneralController.php:116 msgid "Remote syslog disabled" msgstr "remote syslogを無効にしました" -#: app/modules/web/Controllers/ConfigGeneralController.php:128 +#: app/modules/web/Controllers/ConfigGeneralController.php:129 msgid "Missing Proxy parameters " msgstr "Proxy設定を確認してください " -#: app/modules/web/Controllers/ConfigGeneralController.php:142 +#: app/modules/web/Controllers/ConfigGeneralController.php:143 msgid "Proxy enabled" msgstr "Proxyを有効化しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:147 +#: app/modules/web/Controllers/ConfigGeneralController.php:148 msgid "Proxy disabled" msgstr "Proxyを無効にしました" -#: app/modules/web/Controllers/ConfigGeneralController.php:166 +#: app/modules/web/Controllers/ConfigGeneralController.php:167 msgid "Auth Basic enabled" msgstr "Basic認証を有効化しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:172 +#: app/modules/web/Controllers/ConfigGeneralController.php:173 msgid "Auth Basic disabled" msgstr "Basic認証を無効にしました" -#: app/modules/web/Controllers/ConfigImportController.php:80 +#: app/modules/web/Controllers/ConfigImportController.php:81 msgid "Accounts imported" msgstr "アカウントのインポート" -#: app/modules/web/Controllers/ConfigImportController.php:86 -#: app/modules/web/Controllers/ConfigLdapController.php:279 +#: app/modules/web/Controllers/ConfigImportController.php:87 +#: app/modules/web/Controllers/ConfigLdapController.php:276 msgid "Import finished" msgstr "インポートが完了しました" -#: app/modules/web/Controllers/ConfigImportController.php:87 -#: app/modules/web/Controllers/ConfigImportController.php:94 +#: app/modules/web/Controllers/ConfigImportController.php:88 +#: app/modules/web/Controllers/ConfigImportController.php:95 #: lib/SP/Services/Backup/FileBackupService.php:128 #: lib/SP/Services/Export/XmlExportService.php:206 msgid "Please check out the event log for more details" msgstr "詳細はevent logを確認してください" -#: app/modules/web/Controllers/ConfigImportController.php:93 +#: app/modules/web/Controllers/ConfigImportController.php:94 msgid "No accounts were imported" msgstr "インポートできるアカウントがありません" @@ -1354,20 +1216,20 @@ msgstr "Objects found: %d" msgid "LDAP Import" msgstr "LDAP Import" -#: app/modules/web/Controllers/ConfigLdapController.php:283 +#: app/modules/web/Controllers/ConfigLdapController.php:280 msgid "There aren't any objects to synchronize" msgstr "There aren't any objects to synchronize" -#: app/modules/web/Controllers/ConfigLdapController.php:288 +#: app/modules/web/Controllers/ConfigLdapController.php:285 msgid "LDAP users import finished" msgstr "LDAPからユーザーをインポートしました" -#: app/modules/web/Controllers/ConfigLdapController.php:290 +#: app/modules/web/Controllers/ConfigLdapController.php:287 #, php-format msgid "Imported users: %d / %d" msgstr "Imported users: %d / %d" -#: app/modules/web/Controllers/ConfigLdapController.php:291 +#: app/modules/web/Controllers/ConfigLdapController.php:288 #, php-format msgid "Errors: %d" msgstr "Errors: %d" @@ -1394,111 +1256,99 @@ msgstr "" msgid "Please, check your inbox" msgstr "届いたメールを確認してください" -#: app/modules/web/Controllers/ConfigManagerController.php:173 -#: app/modules/web/themes/material-blue/views/install/index.inc:144 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:28 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:26 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:484 +#: app/modules/web/Controllers/ConfigManagerController.php:174 msgid "General" msgstr "一般" -#: app/modules/web/Controllers/ConfigManagerController.php:218 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:22 +#: app/modules/web/Controllers/ConfigManagerController.php:219 msgid "Wiki" msgstr "Wiki" -#: app/modules/web/Controllers/ConfigManagerController.php:245 +#: app/modules/web/Controllers/ConfigManagerController.php:246 msgid "LDAP" msgstr "LDAP" -#: app/modules/web/Controllers/ConfigManagerController.php:271 -#: app/modules/web/themes/material-blue/views/config/mail.inc:18 +#: app/modules/web/Controllers/ConfigManagerController.php:272 msgid "Mail" msgstr "メール" -#: app/modules/web/Controllers/ConfigManagerController.php:312 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:501 +#: app/modules/web/Controllers/ConfigManagerController.php:313 msgid "Encryption" msgstr "Encryption" -#: app/modules/web/Controllers/ConfigManagerController.php:340 -#: app/modules/web/themes/material-blue/views/config/backup.inc:68 +#: app/modules/web/Controllers/ConfigManagerController.php:341 msgid "There aren't any backups available" msgstr "バックアップが作成されていません" -#: app/modules/web/Controllers/ConfigManagerController.php:350 -#: app/modules/web/themes/material-blue/views/config/backup.inc:142 +#: app/modules/web/Controllers/ConfigManagerController.php:351 msgid "No export file found" msgstr "エクスポートできる項目がありません" -#: app/modules/web/Controllers/ConfigManagerController.php:353 -#: app/modules/web/themes/material-blue/views/config/backup.inc:31 -#: app/modules/web/themes/material-blue/views/config/backup.inc:86 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:518 +#: app/modules/web/Controllers/ConfigManagerController.php:354 msgid "Backup" msgstr "Backup" -#: app/modules/web/Controllers/ConfigManagerController.php:376 +#: app/modules/web/Controllers/ConfigManagerController.php:377 msgid "Import Accounts" msgstr "Import Accounts" -#: app/modules/web/Controllers/ConfigManagerController.php:398 +#: app/modules/web/Controllers/ConfigManagerController.php:399 msgid "Not installed" msgstr "インストールされていません" -#: app/modules/web/Controllers/ConfigManagerController.php:408 +#: app/modules/web/Controllers/ConfigManagerController.php:409 #: app/modules/web/themes/material-blue/inc/Icons.php:62 msgid "Information" msgstr "Information" -#: app/modules/web/Controllers/ConfigWikiController.php:64 +#: app/modules/web/Controllers/ConfigWikiController.php:65 msgid "Missing Wiki parameters" msgstr "Wikiの文法エラー" -#: app/modules/web/Controllers/ConfigWikiController.php:74 +#: app/modules/web/Controllers/ConfigWikiController.php:75 msgid "Wiki enabled" msgstr "Wikiを有効化しました" -#: app/modules/web/Controllers/ConfigWikiController.php:79 +#: app/modules/web/Controllers/ConfigWikiController.php:80 msgid "Wiki disabled" msgstr "Wikiを無効にしました" -#: app/modules/web/Controllers/CustomFieldController.php:121 +#: app/modules/web/Controllers/CustomFieldController.php:120 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "New Field" msgstr "新規項目" -#: app/modules/web/Controllers/CustomFieldController.php:185 +#: app/modules/web/Controllers/CustomFieldController.php:184 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Edit Field" msgstr "項目の編集" -#: app/modules/web/Controllers/CustomFieldController.php:223 -#: app/modules/web/Controllers/CustomFieldController.php:226 +#: app/modules/web/Controllers/CustomFieldController.php:222 +#: app/modules/web/Controllers/CustomFieldController.php:225 msgid "Fields deleted" msgstr "項目の削除" -#: app/modules/web/Controllers/CustomFieldController.php:232 +#: app/modules/web/Controllers/CustomFieldController.php:231 msgid "Field deleted" msgstr "項目の削除" -#: app/modules/web/Controllers/CustomFieldController.php:264 -#: app/modules/web/Controllers/CustomFieldController.php:268 +#: app/modules/web/Controllers/CustomFieldController.php:263 +#: app/modules/web/Controllers/CustomFieldController.php:267 msgid "Field added" msgstr "カスタムフィールドを作成しました" -#: app/modules/web/Controllers/CustomFieldController.php:265 -#: app/modules/web/Controllers/CustomFieldController.php:306 +#: app/modules/web/Controllers/CustomFieldController.php:264 +#: app/modules/web/Controllers/CustomFieldController.php:305 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:98 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:190 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:254 msgid "Field" msgstr "項目" -#: app/modules/web/Controllers/CustomFieldController.php:305 -#: app/modules/web/Controllers/CustomFieldController.php:309 +#: app/modules/web/Controllers/CustomFieldController.php:304 +#: app/modules/web/Controllers/CustomFieldController.php:308 #: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:75 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 #: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:189 @@ -1506,7 +1356,7 @@ msgstr "項目" msgid "Field updated" msgstr "項目を更新" -#: app/modules/web/Controllers/CustomFieldController.php:337 +#: app/modules/web/Controllers/CustomFieldController.php:336 msgid "View Field" msgstr "項目を表示" @@ -1532,7 +1382,6 @@ msgstr "データベースのチェック時にエラーが見つかりました #: lib/SP/Util/ErrorUtil.php:150 lib/SP/Util/ErrorUtil.php:154 #: lib/SP/Util/ErrorUtil.php:158 lib/SP/Util/ErrorUtil.php:162 #: lib/SP/Util/ErrorUtil.php:170 lib/SP/Util/ErrorUtil.php:177 -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:17 msgid "Please contact to the administrator" msgstr "管理者に連絡して対応を依頼してください" @@ -1545,8 +1394,8 @@ msgstr "管理者に連絡して対応を依頼してください" msgid "Unable to connect to DB" msgstr "データベースにつながりません" -#: app/modules/web/Controllers/EventlogController.php:134 -#: app/modules/web/Controllers/EventlogController.php:137 +#: app/modules/web/Controllers/EventlogController.php:135 +#: app/modules/web/Controllers/EventlogController.php:138 msgid "Event log cleared" msgstr "Event logを削除します" @@ -1558,28 +1407,6 @@ msgstr "現在" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 #: app/modules/web/themes/material-blue/inc/Icons.php:48 -#: app/modules/web/themes/material-blue/views/_partials/error.inc:18 -#: app/modules/web/themes/material-blue/views/_partials/error.inc:19 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:142 -#: app/modules/web/themes/material-blue/views/account/account-request.inc:80 -#: app/modules/web/themes/material-blue/views/config/accounts.inc:400 -#: app/modules/web/themes/material-blue/views/config/backup.inc:184 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:335 -#: app/modules/web/themes/material-blue/views/config/general.inc:32 -#: app/modules/web/themes/material-blue/views/config/import.inc:100 -#: app/modules/web/themes/material-blue/views/config/info.inc:205 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:328 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:482 -#: app/modules/web/themes/material-blue/views/config/mail.inc:231 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:198 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:149 -#: app/modules/web/themes/material-blue/views/error/error-database.inc:18 -#: app/modules/web/themes/material-blue/views/error/error-database.inc:19 -#: app/modules/web/themes/material-blue/views/error/error-maintenance.inc:18 -#: app/modules/web/themes/material-blue/views/error/error-maintenance.inc:19 -#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:44 -#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:60 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:231 msgid "Back" msgstr "Back" @@ -1596,7 +1423,6 @@ msgstr "この時点のアカウントを復元する" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 #: app/modules/web/themes/material-blue/inc/Icons.php:50 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:150 msgid "Save" msgstr "Save" @@ -1620,7 +1446,6 @@ msgstr "共有リンクを作成しました" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 #: app/modules/web/themes/material-blue/inc/Icons.php:33 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:81 msgid "View password" msgstr "パスワードを表示" @@ -1670,8 +1495,8 @@ msgstr "カテゴリー名順" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 #: app/modules/web/Controllers/LoginController.php:126 #: app/modules/web/Controllers/UserController.php:307 -#: app/modules/web/Controllers/UserController.php:346 -#: app/modules/web/Controllers/UserController.php:413 +#: app/modules/web/Controllers/UserController.php:344 +#: app/modules/web/Controllers/UserController.php:411 #: app/modules/web/Controllers/UserController.php:457 #: app/modules/web/Controllers/UserPassResetController.php:221 #: lib/SP/Core/Acl/Acl.php:301 lib/SP/Providers/Auth/Ldap/LdapMsAds.php:114 @@ -1689,35 +1514,6 @@ msgstr "カテゴリー名順" #: lib/SP/Services/Auth/LoginService.php:615 #: lib/SP/Services/Auth/LoginService.php:664 #: lib/SP/Services/Ldap/LdapImportService.php:231 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:74 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:82 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:115 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:80 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:88 -#: app/modules/web/themes/material-blue/views/account/account.inc:158 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:86 -#: app/modules/web/themes/material-blue/views/account/viewpass.inc:32 -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:76 -#: app/modules/web/themes/material-blue/views/config/info.inc:73 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:161 -#: app/modules/web/themes/material-blue/views/config/mail.inc:122 -#: app/modules/web/themes/material-blue/views/config/mail.inc:131 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:129 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:146 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:29 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:31 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:41 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:43 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:47 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:75 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:77 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:26 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:108 -#: app/modules/web/themes/material-blue/views/login/index.inc:29 -#: app/modules/web/themes/material-blue/views/login/index.inc:102 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:94 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:96 -#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:22 msgid "User" msgstr "User" @@ -1726,13 +1522,6 @@ msgid "Sort by Username" msgstr "ユーザー名順" #: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:270 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:61 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:69 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:101 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:67 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:75 -#: app/modules/web/themes/material-blue/views/account/account.inc:145 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:91 msgid "URL / IP" msgstr "URL / IP" @@ -1758,8 +1547,6 @@ msgstr "URL / IP順" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:91 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:92 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:74 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:75 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:72 @@ -1771,21 +1558,13 @@ msgstr "URL / IP順" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:73 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:74 msgid "Delete Selected" -msgstr "選択項目を削除しました" +msgstr "選択項目を削除する" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:184 -#: app/modules/web/themes/material-blue/views/account/details.inc:48 -#: app/modules/web/themes/material-blue/views/account/details.inc:50 msgid "Owner" msgstr "オーナー" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:208 -#: app/modules/web/themes/material-blue/views/account/details.inc:56 -#: app/modules/web/themes/material-blue/views/account/details.inc:58 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:93 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:95 msgid "Main Group" msgstr "Main Group" @@ -1801,19 +1580,12 @@ msgstr "アカウントの変更履歴" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:127 #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:125 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:139 -#: app/modules/web/themes/material-blue/views/account/account.inc:214 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:285 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:58 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:66 -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:42 msgid "Date" msgstr "日付" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:131 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:109 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:103 msgid "Status" msgstr "ステータス" @@ -1831,16 +1603,13 @@ msgid "Account Restore" msgstr "戻す" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 msgid "API Authorizations" -msgstr "" +msgstr "APIトークン" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 #: lib/SP/Core/Acl/Acl.php:300 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:44 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:46 msgid "Action" -msgstr "アクション" +msgstr "Action" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:140 msgid "Search for Token" @@ -1883,14 +1652,10 @@ msgid "Delete Client" msgstr "クライアントを削除" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 -#: app/modules/web/themes/material-blue/views/account/account.inc:41 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 msgid "Custom Fields" msgstr "カスタムフィールド" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:59 -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:61 msgid "Module" msgstr "モジュール" @@ -1909,17 +1674,13 @@ msgid "Delete Field" msgstr "フィールドを削除" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 -#: app/modules/web/themes/material-blue/views/eventlog/index.inc:3 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:556 msgid "Event Log" msgstr "Event Log" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: app/modules/web/Controllers/ItemPresetController.php:307 -#: app/modules/web/Controllers/ItemPresetController.php:344 -#: app/modules/web/Controllers/ItemPresetController.php:387 -#: app/modules/web/themes/material-blue/views/account/details.inc:103 -#: app/modules/web/themes/material-blue/views/account/details.inc:105 +#: app/modules/web/Controllers/ItemPresetController.php:306 +#: app/modules/web/Controllers/ItemPresetController.php:343 +#: app/modules/web/Controllers/ItemPresetController.php:386 msgid "ID" msgstr "ID" @@ -1937,10 +1698,8 @@ msgstr "Event" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:109 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:61 -#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:40 msgid "Login" -msgstr "ログイン" +msgstr "ログイン名" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 msgid "Search for Events" @@ -1959,10 +1718,6 @@ msgid "Clear the event log out" msgstr "Event logをクリア" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:94 -#: app/modules/web/themes/material-blue/views/account/account.inc:51 -#: app/modules/web/themes/material-blue/views/config/accounts.inc:306 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "Files" msgstr "ファイル" @@ -1972,19 +1727,16 @@ msgstr "ファイルを検索" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:160 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:161 -#: app/modules/web/themes/material-blue/views/account/files-list.inc:59 msgid "View File" msgstr "ファイルを表示" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:178 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:179 -#: app/modules/web/themes/material-blue/views/account/files-list.inc:50 msgid "Download File" msgstr "ファイルをダウンロード" #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:199 -#: app/modules/web/themes/material-blue/views/account/files-list.inc:42 msgid "Delete File" msgstr "ファイルを削除" @@ -1994,7 +1746,7 @@ msgstr "プリセット" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:111 -#: app/modules/web/Controllers/UserGroupController.php:252 +#: app/modules/web/Controllers/UserGroupController.php:251 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:122 #: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:115 #: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 @@ -2005,38 +1757,20 @@ msgstr "プリセット" #: lib/SP/Providers/Auth/Ldap/LdapStd.php:113 #: lib/SP/Providers/Auth/Ldap/LdapStd.php:145 #: lib/SP/Services/Ldap/LdapImportService.php:139 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:147 -#: app/modules/web/themes/material-blue/views/_partials/footer.inc:30 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:298 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:301 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:234 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:264 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:59 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:61 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:164 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:166 msgid "Group" msgstr "Group" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:110 -#: app/modules/web/Controllers/UserProfileController.php:243 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:77 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:79 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:146 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:148 +#: app/modules/web/Controllers/UserProfileController.php:244 msgid "Profile" msgstr "プロファイル" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:96 msgid "Priority" msgstr "プロパティー" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:137 msgid "Forced" msgstr "Forced" @@ -2082,7 +1816,7 @@ msgstr "新しいアカウントのパスワードのプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 -#: app/modules/web/Controllers/ItemPresetController.php:255 +#: app/modules/web/Controllers/ItemPresetController.php:254 msgid "Edit Value" msgstr "" @@ -2093,25 +1827,18 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:114 #: app/modules/web/themes/material-blue/inc/Icons.php:64 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:119 -#: app/modules/web/themes/material-blue/views/notification/index.inc:3 msgid "Notifications" msgstr "通知" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:129 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:44 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:52 msgid "Component" msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:153 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:133 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:137 msgid "Read" msgstr "Read" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:154 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:128 msgid "Only Admins" msgstr "Only Admins" @@ -2121,13 +1848,13 @@ msgstr "通知を検索" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:187 -#: app/modules/web/Controllers/NotificationController.php:204 +#: app/modules/web/Controllers/NotificationController.php:205 msgid "New Notification" msgstr "新しい通知" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:204 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:205 -#: app/modules/web/Controllers/NotificationController.php:121 +#: app/modules/web/Controllers/NotificationController.php:122 msgid "View Notification" msgstr "通知を表示" @@ -2138,7 +1865,7 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:252 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:253 -#: app/modules/web/Controllers/NotificationController.php:238 +#: app/modules/web/Controllers/NotificationController.php:239 msgid "Edit Notification" msgstr "" @@ -2147,82 +1874,68 @@ msgstr "" msgid "Delete Notification" msgstr "" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:96 -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:332 -#: app/modules/web/themes/material-blue/views/plugin/index.inc:3 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:90 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:334 msgid "Plugins" msgstr "Plugins" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:108 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 #: lib/SP/Plugin/PluginManager.php:208 lib/SP/Plugin/PluginManager.php:264 #: lib/SP/Plugin/PluginManager.php:422 msgid "Plugin" msgstr "Plugin" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:125 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:119 msgid "Unavailable" msgstr "利用できません" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:141 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:135 msgid "Search for Plugin" msgstr "プラグインを検索" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:156 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:157 -#: app/modules/web/Controllers/PluginController.php:149 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:151 +#: app/modules/web/Controllers/PluginController.php:148 msgid "View Plugin" msgstr "" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:173 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:174 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:168 msgid "Enable" msgstr "Enable" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:192 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:193 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:187 msgid "Disable" msgstr "Disable" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:211 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:212 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:206 msgid "Reset Data" msgstr "" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:231 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:232 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:225 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:226 msgid "Delete Plugin" msgstr "プラグインを削除" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 -#: app/modules/web/themes/material-blue/views/account/account.inc:61 msgid "Links" msgstr "Links" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:59 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:61 msgid "Creation Date" msgstr "作成日" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:67 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:69 msgid "Expiry Date " msgstr "有効期限 " #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:45 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:49 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:53 msgid "Notify" msgstr "通知" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 -#: app/modules/web/themes/material-blue/views/account/details.inc:20 -#: app/modules/web/themes/material-blue/views/account/details.inc:22 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:210 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:83 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:85 msgid "Visits" msgstr "閲覧者" @@ -2257,14 +1970,13 @@ msgstr "タグを検索" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:150 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:151 -#: app/modules/web/Controllers/TagController.php:118 -#: app/modules/web/themes/material-blue/views/account/account.inc:253 +#: app/modules/web/Controllers/TagController.php:117 msgid "New Tag" msgstr "新規タグを作成" #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:168 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:169 -#: app/modules/web/Controllers/TagController.php:180 +#: app/modules/web/Controllers/TagController.php:179 msgid "Edit Tag" msgstr "タグを編集" @@ -2291,13 +2003,6 @@ msgstr "" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:96 #: lib/SP/Services/CustomField/CustomFieldDefService.php:82 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:24 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:128 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:60 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:62 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:67 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:276 msgid "Users" msgstr "Users" @@ -2329,18 +2034,11 @@ msgstr "ユーザー情報を表示" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:232 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:233 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:73 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:130 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:136 msgid "Change User's Password" -msgstr "" +msgstr "ユーザーのログインパスワードを変更" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 #: lib/SP/Services/CustomField/CustomFieldDefService.php:83 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:96 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:185 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:61 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:293 msgid "Groups" msgstr "Groups" @@ -2350,19 +2048,19 @@ msgstr "グループを検索" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 -#: app/modules/web/Controllers/UserGroupController.php:127 +#: app/modules/web/Controllers/UserGroupController.php:126 msgid "New Group" msgstr "新規グループを作成" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 -#: app/modules/web/Controllers/UserGroupController.php:366 +#: app/modules/web/Controllers/UserGroupController.php:367 msgid "View Group" -msgstr "グループを表示" +msgstr "グループの詳細を表示" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 -#: app/modules/web/Controllers/UserGroupController.php:200 +#: app/modules/web/Controllers/UserGroupController.php:199 msgid "Edit Group" msgstr "グループを編集" @@ -2372,7 +2070,6 @@ msgid "Delete Group" msgstr "グループを削除" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:310 msgid "Profiles" msgstr "プロファイル" @@ -2382,7 +2079,7 @@ msgstr "プロファイルを検索" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 -#: app/modules/web/Controllers/UserProfileController.php:121 +#: app/modules/web/Controllers/UserProfileController.php:120 msgid "New Profile" msgstr "新規プロファイルを作成" @@ -2393,7 +2090,7 @@ msgstr "プロファイルの詳細を表示" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 -#: app/modules/web/Controllers/UserProfileController.php:190 +#: app/modules/web/Controllers/UserProfileController.php:189 msgid "Edit Profile" msgstr "プロファイルを編集" @@ -2402,15 +2099,13 @@ msgstr "プロファイルを編集" msgid "Delete Profile" msgstr "プロファイルを削除" -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:263 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:265 #: app/modules/web/themes/material-blue/inc/Icons.php:57 msgid "Search" msgstr "検索" -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:346 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:348 #: app/modules/web/themes/material-blue/inc/Icons.php:60 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:31 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Configuration" msgstr "設定" @@ -2426,39 +2121,39 @@ msgstr "sysPassの動作に必要なモジュールが不足しています" msgid "Installation finished" msgstr "インストールが完了しました" -#: app/modules/web/Controllers/ItemPresetController.php:85 +#: app/modules/web/Controllers/ItemPresetController.php:84 msgid "Display Value" msgstr "" -#: app/modules/web/Controllers/ItemPresetController.php:221 +#: app/modules/web/Controllers/ItemPresetController.php:220 msgid "New Value" msgstr "" -#: app/modules/web/Controllers/ItemPresetController.php:295 -#: app/modules/web/Controllers/ItemPresetController.php:298 +#: app/modules/web/Controllers/ItemPresetController.php:294 +#: app/modules/web/Controllers/ItemPresetController.php:297 msgid "Values deleted" msgstr "" -#: app/modules/web/Controllers/ItemPresetController.php:306 -#: app/modules/web/Controllers/ItemPresetController.php:310 +#: app/modules/web/Controllers/ItemPresetController.php:305 +#: app/modules/web/Controllers/ItemPresetController.php:309 msgid "Value deleted" msgstr "" -#: app/modules/web/Controllers/ItemPresetController.php:342 -#: app/modules/web/Controllers/ItemPresetController.php:347 +#: app/modules/web/Controllers/ItemPresetController.php:341 +#: app/modules/web/Controllers/ItemPresetController.php:346 msgid "Value created" msgstr "" -#: app/modules/web/Controllers/ItemPresetController.php:385 -#: app/modules/web/Controllers/ItemPresetController.php:390 +#: app/modules/web/Controllers/ItemPresetController.php:384 +#: app/modules/web/Controllers/ItemPresetController.php:389 msgid "Value updated" msgstr "" -#: app/modules/web/Controllers/ItemsController.php:140 +#: app/modules/web/Controllers/ItemsController.php:141 msgid "There aren't any pending notifications" msgstr "お知らせはありません" -#: app/modules/web/Controllers/ItemsController.php:141 +#: app/modules/web/Controllers/ItemsController.php:142 #, php-format msgid "There are pending notifications: %d" msgstr "お知らせが%d件あります" @@ -2475,58 +2170,58 @@ msgstr "ログイン時間" msgid "Total time" msgstr "合計時間" -#: app/modules/web/Controllers/NotificationController.php:278 -#: app/modules/web/Controllers/NotificationController.php:281 +#: app/modules/web/Controllers/NotificationController.php:279 +#: app/modules/web/Controllers/NotificationController.php:282 msgid "Notifications deleted" msgstr "通知を削除" -#: app/modules/web/Controllers/NotificationController.php:293 -#: app/modules/web/Controllers/NotificationController.php:297 +#: app/modules/web/Controllers/NotificationController.php:294 +#: app/modules/web/Controllers/NotificationController.php:298 msgid "Notification deleted" msgstr "通知を削除しました" -#: app/modules/web/Controllers/NotificationController.php:294 -#: app/modules/web/Controllers/NotificationController.php:329 +#: app/modules/web/Controllers/NotificationController.php:295 +#: app/modules/web/Controllers/NotificationController.php:330 #: lib/SP/Providers/Notification/NotificationHandler.php:158 msgid "Notification" msgstr "通知" -#: app/modules/web/Controllers/NotificationController.php:328 -#: app/modules/web/Controllers/NotificationController.php:332 +#: app/modules/web/Controllers/NotificationController.php:329 +#: app/modules/web/Controllers/NotificationController.php:333 msgid "Notification read" msgstr "既読にする" -#: app/modules/web/Controllers/NotificationController.php:362 -#: app/modules/web/Controllers/NotificationController.php:365 +#: app/modules/web/Controllers/NotificationController.php:363 +#: app/modules/web/Controllers/NotificationController.php:366 msgid "Notification created" msgstr "通知を作成しました" -#: app/modules/web/Controllers/NotificationController.php:399 -#: app/modules/web/Controllers/NotificationController.php:402 +#: app/modules/web/Controllers/NotificationController.php:400 +#: app/modules/web/Controllers/NotificationController.php:403 msgid "Notification updated" msgstr "通知を更新しました" -#: app/modules/web/Controllers/PluginController.php:214 -#: app/modules/web/Controllers/PluginController.php:217 +#: app/modules/web/Controllers/PluginController.php:213 +#: app/modules/web/Controllers/PluginController.php:216 msgid "Plugin enabled" msgstr "プラグインを有効化しました" -#: app/modules/web/Controllers/PluginController.php:243 -#: app/modules/web/Controllers/PluginController.php:246 +#: app/modules/web/Controllers/PluginController.php:242 +#: app/modules/web/Controllers/PluginController.php:245 #: lib/SP/Plugin/PluginManager.php:233 lib/SP/Plugin/PluginManager.php:441 msgid "Plugin disabled" msgstr "プラグインを無効にしました" -#: app/modules/web/Controllers/PluginController.php:273 -#: app/modules/web/Controllers/PluginController.php:276 +#: app/modules/web/Controllers/PluginController.php:272 +#: app/modules/web/Controllers/PluginController.php:275 msgid "Plugin reset" msgstr "プラグインをリセット" -#: app/modules/web/Controllers/PluginController.php:307 +#: app/modules/web/Controllers/PluginController.php:306 msgid "Plugins deleted" msgstr "プラグインを削除しました" -#: app/modules/web/Controllers/PluginController.php:313 +#: app/modules/web/Controllers/PluginController.php:312 msgid "Plugin deleted" msgstr "プラグインを削除しました" @@ -2566,19 +2261,19 @@ msgstr "" msgid "Notifications not available" msgstr "" -#: app/modules/web/Controllers/TagController.php:221 +#: app/modules/web/Controllers/TagController.php:220 msgid "Tags deleted" msgstr "タグを削除しました" -#: app/modules/web/Controllers/TagController.php:322 +#: app/modules/web/Controllers/TagController.php:321 msgid "View Tag" msgstr "タグを表示" -#: app/modules/web/Controllers/TrackController.php:121 +#: app/modules/web/Controllers/TrackController.php:122 msgid "Track unlocked" msgstr "" -#: app/modules/web/Controllers/TrackController.php:149 +#: app/modules/web/Controllers/TrackController.php:150 msgid "Tracks cleared out" msgstr "" @@ -2601,16 +2296,16 @@ msgstr "設定を保存中にエラーが発生しました" #: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:420 #: lib/SP/Services/Account/AccountService.php:247 #: lib/SP/Services/Account/AccountService.php:252 -#: lib/SP/Services/Api/ApiService.php:132 -#: lib/SP/Services/Api/ApiService.php:232 -#: lib/SP/Services/Api/ApiService.php:240 +#: lib/SP/Services/Api/ApiService.php:114 +#: lib/SP/Services/Api/ApiService.php:145 +#: lib/SP/Services/Api/ApiService.php:245 +#: lib/SP/Services/Api/ApiService.php:253 #: lib/SP/Services/Auth/LoginService.php:208 #: lib/SP/Services/Auth/LoginService.php:381 #: lib/SP/Services/Auth/LoginService.php:550 #: lib/SP/Services/Auth/LoginService.php:558 #: lib/SP/Services/Auth/LoginService.php:591 #: lib/SP/Services/Auth/LoginService.php:712 -#: lib/SP/Services/AuthToken/AuthTokenService.php:318 #: lib/SP/Services/CustomField/CustomFieldService.php:207 #: lib/SP/Services/Export/XmlVerifyService.php:110 #: lib/SP/Services/Import/XmlFileImport.php:82 @@ -2631,7 +2326,6 @@ msgid "Wrong security code" msgstr "セキュリティーコードが一致しません" #: app/modules/web/Controllers/UpgradeController.php:105 -#: app/modules/web/themes/material-blue/views/login/index.inc:96 msgid "Application successfully updated" msgstr "アプリケーションのアップデートが完了しました" @@ -2643,11 +2337,10 @@ msgstr "5秒後にログイン画面に移ります" #: app/modules/web/Controllers/UserController.php:381 #: app/modules/web/Controllers/UserPassResetController.php:119 #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:72 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:261 msgid "Password Change" msgstr "パスワードを変更" -#: app/modules/web/Controllers/UserController.php:294 +#: app/modules/web/Controllers/UserController.php:292 #: app/modules/web/Controllers/UserController.php:298 msgid "Users deleted" msgstr "ユーザーを削除" @@ -2657,12 +2350,12 @@ msgstr "ユーザーを削除" msgid "User deleted" msgstr "ユーザーを削除" -#: app/modules/web/Controllers/UserController.php:345 +#: app/modules/web/Controllers/UserController.php:343 #: app/modules/web/Controllers/UserController.php:351 msgid "User added" -msgstr "ユーザーを追加" +msgstr "ユーザーを作成しました" -#: app/modules/web/Controllers/UserController.php:412 +#: app/modules/web/Controllers/UserController.php:410 #: app/modules/web/Controllers/UserController.php:419 msgid "User updated" msgstr "ユーザーを更新" @@ -2671,8 +2364,8 @@ msgstr "ユーザーを更新" msgid "View User" msgstr "ユーザーを表示" -#: app/modules/web/Controllers/UserGroupController.php:240 -#: app/modules/web/Controllers/UserGroupController.php:243 +#: app/modules/web/Controllers/UserGroupController.php:239 +#: app/modules/web/Controllers/UserGroupController.php:244 msgid "Groups deleted" msgstr "グループを削除しました" @@ -2701,7 +2394,7 @@ msgid "You will receive an email to complete the request shortly." msgstr "リクエストの完了まであと少しです。届いたメールを確認してください。" #: app/modules/web/Controllers/UserPassResetController.php:149 -#: lib/SP/Services/Api/ApiService.php:99 +#: lib/SP/Services/Api/ApiService.php:100 #: lib/SP/Services/Auth/LoginService.php:147 #: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:110 msgid "Attempts exceeded" @@ -2713,31 +2406,31 @@ msgstr "試行回数を超えました" msgid "Password cannot be blank" msgstr "パスワードを空欄にすることはできません" -#: app/modules/web/Controllers/UserProfileController.php:230 -#: app/modules/web/Controllers/UserProfileController.php:233 +#: app/modules/web/Controllers/UserProfileController.php:229 +#: app/modules/web/Controllers/UserProfileController.php:234 msgid "Profiles deleted" msgstr "プロファイルを削除しました" -#: app/modules/web/Controllers/UserProfileController.php:242 -#: app/modules/web/Controllers/UserProfileController.php:247 +#: app/modules/web/Controllers/UserProfileController.php:243 +#: app/modules/web/Controllers/UserProfileController.php:250 msgid "Profile deleted" msgstr "プロファイルを削除しました" -#: app/modules/web/Controllers/UserProfileController.php:282 -#: app/modules/web/Controllers/UserProfileController.php:286 +#: app/modules/web/Controllers/UserProfileController.php:281 +#: app/modules/web/Controllers/UserProfileController.php:287 msgid "Profile added" msgstr "プロファイルを作成しました" -#: app/modules/web/Controllers/UserProfileController.php:325 -#: app/modules/web/Controllers/UserProfileController.php:330 +#: app/modules/web/Controllers/UserProfileController.php:324 +#: app/modules/web/Controllers/UserProfileController.php:331 msgid "Profile updated" msgstr "プロファイルを更新しました" -#: app/modules/web/Controllers/UserProfileController.php:358 +#: app/modules/web/Controllers/UserProfileController.php:359 msgid "View Profile" msgstr "プロファイルを表示" -#: app/modules/web/Controllers/UserSettingsGeneralController.php:78 +#: app/modules/web/Controllers/UserSettingsGeneralController.php:79 msgid "Preferences updated" msgstr "設定を更新しました" @@ -2855,7 +2548,6 @@ msgid "A profile name is needed" msgstr "プロファイル名を空欄にすることはできません" #: app/modules/web/themes/material-blue/inc/Icons.php:31 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:47 msgid "Add" msgstr "Add" @@ -2864,25 +2556,11 @@ msgid "View Details" msgstr "View Details" #: app/modules/web/themes/material-blue/inc/Icons.php:34 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:76 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:80 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:148 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:152 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:169 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:226 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:54 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:97 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:116 msgid "Edit" msgstr "Edit" #: app/modules/web/themes/material-blue/inc/Icons.php:35 #: app/modules/web/themes/material-blue/inc/Icons.php:65 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:153 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:178 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:210 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:235 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 msgid "Delete" msgstr "Delete" @@ -2891,12 +2569,10 @@ msgid "Change Password" msgstr "Change Password" #: app/modules/web/themes/material-blue/inc/Icons.php:37 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:221 msgid "Application Admin" msgstr "Application Admin" #: app/modules/web/themes/material-blue/inc/Icons.php:38 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Accounts Admin" msgstr "Accounts Admin" @@ -2905,8 +2581,6 @@ msgid "LDAP User" msgstr "LDAP User" #: app/modules/web/themes/material-blue/inc/Icons.php:40 -#: app/modules/web/themes/material-blue/views/config/mail.inc:159 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:280 msgid "Disabled" msgstr "Disabled" @@ -2915,8 +2589,6 @@ msgid "Enabled" msgstr "Enabled" #: app/modules/web/themes/material-blue/inc/Icons.php:42 -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:198 -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:58 msgid "Update" msgstr "Update" @@ -2925,7 +2597,6 @@ msgid "Copy" msgstr "Copy" #: app/modules/web/themes/material-blue/inc/Icons.php:45 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:97 msgid "Email" msgstr "Email" @@ -3005,7 +2676,9 @@ msgstr "'/app/config' ディレクトリのパーミッション設定が間違 msgid "Current: %s - Needed: 750" msgstr "Current: %s - Needed: 750" -#: lib/SP/Core/Acl/Acl.php:294 lib/SP/Services/Auth/LoginService.php:660 +#: lib/SP/Core/Acl/Acl.php:294 +#: lib/SP/Services/Account/AccountCryptService.php:133 +#: lib/SP/Services/Auth/LoginService.php:660 msgid "N/A" msgstr "N/A" @@ -3211,21 +2884,13 @@ msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:149 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:213 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:218 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:232 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 msgid "Unable to connect to LDAP server" msgstr "" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:146 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:214 -#: app/modules/web/themes/material-blue/views/config/general-events.inc:79 -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:45 -#: app/modules/web/themes/material-blue/views/config/info.inc:87 -#: app/modules/web/themes/material-blue/views/config/info.inc:90 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:102 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:129 -#: app/modules/web/themes/material-blue/views/config/mail.inc:69 -#: app/modules/web/themes/material-blue/views/config/mail.inc:78 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:233 msgid "Server" msgstr "Server" @@ -3234,12 +2899,12 @@ msgstr "Server" msgid "LDAP parameters are not set" msgstr "" -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:256 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:262 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:275 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:281 msgid "Connection error (BIND)" msgstr "" -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:326 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:345 msgid "Error while disconnecting from LDAP server" msgstr "" @@ -3713,9 +3378,9 @@ msgstr "プロファイルの作成時にエラーが発生しました" msgid "Error while updating the profile" msgstr "プロファイルの更新時にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:74 -#: lib/SP/Services/Account/AccountCryptService.php:81 -#: lib/SP/Services/Account/AccountCryptService.php:143 +#: lib/SP/Services/Account/AccountCryptService.php:77 +#: lib/SP/Services/Account/AccountCryptService.php:86 +#: lib/SP/Services/Account/AccountCryptService.php:159 #: lib/SP/Services/CustomField/CustomFieldCryptService.php:72 #: lib/SP/Services/CustomField/CustomFieldCryptService.php:80 #: lib/SP/Services/CustomField/CustomFieldCryptService.php:88 @@ -3723,43 +3388,44 @@ msgstr "プロファイルの更新時にエラーが発生しました" msgid "Update Master Password" msgstr "マスターパスワードの更新" -#: lib/SP/Services/Account/AccountCryptService.php:94 +#: lib/SP/Services/Account/AccountCryptService.php:105 msgid "Error while updating the accounts' passwords" msgstr "パスワードの更新時にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:120 -msgid "Error while retrieving the accounts' passwords" -msgstr "パスワードの復元時にエラーが発生しました" +#: lib/SP/Services/Account/AccountCryptService.php:132 +msgid "There are no accounts for processing" +msgstr "処理中にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:144 +#: lib/SP/Services/Account/AccountCryptService.php:134 +#: lib/SP/Services/Account/AccountCryptService.php:215 +msgid "Errors" +msgstr "エラー" + +#: lib/SP/Services/Account/AccountCryptService.php:160 #, php-format msgid "Accounts updated: %d / %d" msgstr "Accounts updated: %d / %d" -#: lib/SP/Services/Account/AccountCryptService.php:153 +#: lib/SP/Services/Account/AccountCryptService.php:169 #, php-format msgid "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -#: lib/SP/Services/Account/AccountCryptService.php:163 +#: lib/SP/Services/Account/AccountCryptService.php:179 msgid "The record's master password does not match" msgstr "データベース上のマスターパスワードのハッシュ値と一致しません" -#: lib/SP/Services/Account/AccountCryptService.php:188 -#: lib/SP/Services/Account/AccountCryptService.php:193 +#: lib/SP/Services/Account/AccountCryptService.php:204 +#: lib/SP/Services/Account/AccountCryptService.php:209 msgid "Error while updating the account's password" msgstr "パスワードの更新時にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:199 -msgid "Errors" -msgstr "エラー" - -#: lib/SP/Services/Account/AccountCryptService.php:217 -#: lib/SP/Services/Account/AccountCryptService.php:224 +#: lib/SP/Services/Account/AccountCryptService.php:236 +#: lib/SP/Services/Account/AccountCryptService.php:245 msgid "Update Master Password (H)" msgstr "マスターパスワードの変更履歴" -#: lib/SP/Services/Account/AccountCryptService.php:240 +#: lib/SP/Services/Account/AccountCryptService.php:265 msgid "Error while updating the accounts' passwords in history" msgstr "パスワード履歴の更新時にエラーが発生しました" @@ -3783,7 +3449,7 @@ msgid "The account doesn't exist" msgstr "アカウントが存在しません" #: lib/SP/Services/Api/ApiRequest.php:79 lib/SP/Services/Api/ApiRequest.php:113 -#: lib/SP/Services/Api/ApiService.php:234 +#: lib/SP/Services/Api/ApiService.php:247 msgid "Invalid data" msgstr "Invalid data" @@ -3791,7 +3457,7 @@ msgstr "Invalid data" msgid "Invalid format" msgstr "Invalid format" -#: lib/SP/Services/Api/ApiService.php:155 +#: lib/SP/Services/Api/ApiService.php:168 msgid "Wrong parameters" msgstr "Wrong parameters" @@ -3846,13 +3512,13 @@ msgid "User has no associated groups" msgstr "ユーザーはどのグループにも属していません" #: lib/SP/Services/Auth/LoginService.php:665 -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:18 msgid "Authentication" msgstr "Authentication" #: lib/SP/Services/AuthToken/AuthTokenService.php:146 #: lib/SP/Services/AuthToken/AuthTokenService.php:284 #: lib/SP/Services/AuthToken/AuthTokenService.php:298 +#: lib/SP/Services/AuthToken/AuthTokenService.php:318 msgid "Token not found" msgstr "トークンがありません" @@ -4034,14 +3700,14 @@ msgid "Unable to process the XML file" msgstr "XMLファイルを作成できません" #: lib/SP/Services/Export/XmlVerifyService.php:183 -#: lib/SP/Services/Import/SyspassImport.php:181 +#: lib/SP/Services/Import/SyspassImport.php:185 msgid "Error while checking integrity hash" msgstr "" #: lib/SP/Services/Export/XmlVerifyService.php:200 #: lib/SP/Services/Export/XmlVerifyService.php:230 #: lib/SP/Services/Import/SyspassImport.php:129 -#: lib/SP/Services/Import/SyspassImport.php:153 +#: lib/SP/Services/Import/SyspassImport.php:157 msgid "Wrong encryption password" msgstr "" @@ -4064,7 +3730,7 @@ msgstr "CSV ファイルの%s行目のフォーマットが破損しています #: lib/SP/Services/Import/CsvImportBase.php:164 #: lib/SP/Services/Import/KeepassImport.php:105 -#: lib/SP/Services/Import/SyspassImport.php:392 +#: lib/SP/Services/Import/SyspassImport.php:396 msgid "Account imported" msgstr "アカウントをインポートしました" @@ -4088,12 +3754,12 @@ msgstr "webサーバーの所有者権限設定を確認してください" msgid "Please, check PHP configuration for upload files" msgstr "ファイルアップロードに関するPHP設定を確認してください" -#: lib/SP/Services/Import/ImportService.php:100 +#: lib/SP/Services/Import/ImportService.php:101 #, php-format msgid "Mime type not supported (\"%s\")" msgstr "このMIME Typeはサポートしていません(“%s”)" -#: lib/SP/Services/Import/ImportService.php:102 +#: lib/SP/Services/Import/ImportService.php:103 msgid "Please, check the file format" msgstr "ファイルのフォーマットを確認してください" @@ -4112,7 +3778,7 @@ msgid "KeePass XML Import" msgstr "KeePassのXMLファイルをインポートする" #: lib/SP/Services/Import/KeepassImport.php:93 -#: lib/SP/Services/Import/SyspassImport.php:216 +#: lib/SP/Services/Import/SyspassImport.php:220 msgid "Category imported" msgstr "カテゴリーをインポートしました" @@ -4124,11 +3790,11 @@ msgstr "sysPassのXMLファイルをインポートする" msgid "Encryption password not set" msgstr "パスワードが設定されていません" -#: lib/SP/Services/Import/SyspassImport.php:167 +#: lib/SP/Services/Import/SyspassImport.php:171 msgid "Data unencrypted" msgstr "データが暗号化されていません" -#: lib/SP/Services/Import/SyspassImport.php:182 +#: lib/SP/Services/Import/SyspassImport.php:186 msgid "" "If you are importing an exported file from the same origin, the data could " "be compromised." @@ -4136,12 +3802,12 @@ msgstr "" "異なるオリジンで生成されたデータをインポートするとデータが破損する場合があり" "ます。" -#: lib/SP/Services/Import/SyspassImport.php:255 -#: lib/SP/Services/Import/SyspassImport.php:295 +#: lib/SP/Services/Import/SyspassImport.php:259 +#: lib/SP/Services/Import/SyspassImport.php:299 msgid "Client imported" msgstr "クライアントをインポートしました" -#: lib/SP/Services/Import/SyspassImport.php:331 +#: lib/SP/Services/Import/SyspassImport.php:335 msgid "Tag imported" msgstr "タグをインポートしました" @@ -4708,2201 +4374,1361 @@ msgstr "" msgid "Invalid image" msgstr "" -#: app/modules/web/themes/material-blue/views/_layouts/main.inc:25 -msgid "Javascript is needed in order to run correctly" -msgstr "" +#~ msgid "Error while retrieving the accounts' passwords" +#~ msgstr "パスワードの復元時にエラーが発生しました" -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:80 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:141 -msgid "User preferences" -msgstr "ユーザー設定" +#~ msgid "User preferences" +#~ msgstr "ユーザー設定" -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:84 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:87 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:163 -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:166 -msgid "Sign Out" -msgstr "サインアウト" +#~ msgid "Sign Out" +#~ msgstr "サインアウト" -#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:179 -#: app/modules/web/themes/material-blue/views/_partials/footer.inc:60 -msgid "Demo" -msgstr "デモ" +#~ msgid "Demo" +#~ msgstr "デモ" -#: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 -msgid "Tells whether the connection uses HTTPS or not." -msgstr "赤く表示される場合はHTTPS通信ではありません。" +#~ msgid "Tells whether the connection uses HTTPS or not." +#~ msgstr "赤く表示される場合はHTTPS通信ではありません。" -#: app/modules/web/themes/material-blue/views/_partials/footer.inc:49 -msgid "" -"Passwords sent from forms are encrypted using PKI, the remain data don't." -msgstr "" -"ブラウザからサーバーに送信されるパスワードはすべてPKIで暗号化された後に送信さ" -"れますが、HTTPの場合はパスワード以外の情報だけはそのまま送信されます。HTTPSの" -"場合は全ての情報が暗号化されています。" +#~ msgid "" +#~ "Passwords sent from forms are encrypted using PKI, the remain data don't." +#~ msgstr "" +#~ "ブラウザからサーバーに送信されるパスワードはすべてPKIで暗号化された後に送" +#~ "信されますが、HTTPの場合はパスワード以外の情報だけはそのまま送信されます。" +#~ "HTTPSの場合は全ての情報が暗号化されています。" -#: app/modules/web/themes/material-blue/views/_partials/footer.inc:74 -msgid "Help :: FAQ :: Changelog" -msgstr "Help :: FAQ :: Changelog" +#~ msgid "Help :: FAQ :: Changelog" +#~ msgstr "Help :: FAQ :: Changelog" -#: app/modules/web/themes/material-blue/views/_partials/footer.inc:79 -msgid "A cygnux.org project" -msgstr "A cygnux.org project" +#~ msgid "A cygnux.org project" +#~ msgstr "A cygnux.org project" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:13 -msgid "Special parameters" -msgstr "高度な検索" +#~ msgid "Special parameters" +#~ msgstr "高度な検索" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:15 -msgid "" -"You could use either one or several special parameters separated by blank " -"spaces" -msgstr "" -"以下の検索クエリで高度な検索ができます、各クエリをスペースで区切ると複数条件" -"で検索できます。" +#~ msgid "" +#~ "You could use either one or several special parameters separated by blank " +#~ "spaces" +#~ msgstr "" +#~ "以下の検索クエリで高度な検索ができます、各クエリをスペースで区切ると複数条" +#~ "件で検索できます。" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 -msgid "Search for accounts which 'login' has access rights" -msgstr "" -"‘login’というユーザー名のアカウントがアクセスできるアカウントを検索します" +#~ msgid "Search for accounts which 'login' has access rights" +#~ msgstr "" +#~ "‘login’というユーザー名のアカウントがアクセスできるアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 -msgid "Get the accounts in which user login \"login\" is the owner" -msgstr "‘login’という名前のユーザーが作成したアカウントを検索します" +#~ msgid "Get the accounts in which user login \"login\" is the owner" +#~ msgstr "‘login’という名前のユーザーが作成したアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 -msgid "Search for accounts which 'group_name' has access rights" -msgstr "‘group_name’という名前のグループがアクセスできるアカウントを検索します" +#~ msgid "Search for accounts which 'group_name' has access rights" +#~ msgstr "" +#~ "‘group_name’という名前のグループがアクセスできるアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 -msgid "Get the accounts in which main group \"group_name\" is set" -msgstr "" -"‘group_name’という名前のグループをmain groupに設定しているアカウントを検索し" -"ます" +#~ msgid "Get the accounts in which main group \"group_name\" is set" +#~ msgstr "" +#~ "‘group_name’という名前のグループをmain groupに設定しているアカウントを検索" +#~ "します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 -msgid "Search for accounts which contain a file with the name 'file_name'" -msgstr "‘file_name’という名前のファイルが添付されているアカウントを検索します" +#~ msgid "Search for accounts which contain a file with the name 'file_name'" +#~ msgstr "" +#~ "‘file_name’という名前のファイルが添付されているアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 -msgid "Search for accounts by client name" -msgstr "クライアント名でアカウントを検索します" +#~ msgid "Search for accounts by client name" +#~ msgstr "クライアント名でアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 -msgid "Search for accounts by category name" -msgstr "カテゴリー名でアカウントを検索します" +#~ msgid "Search for accounts by category name" +#~ msgstr "カテゴリー名でアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 -msgid "Returns the account for the given ID" -msgstr "アカウントIDでアカウントを検索します" +#~ msgid "Returns the account for the given ID" +#~ msgstr "アカウントIDでアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 -msgid "Search for accounts name by regular expression" -msgstr "正規表現でアカウント名を検索します" +#~ msgid "Search for accounts name by regular expression" +#~ msgstr "正規表現でアカウント名を検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 -msgid "Search for accounts with expired password" -msgstr "有効期限が切れたアカウントを検索します" +#~ msgid "Search for accounts with expired password" +#~ msgstr "有効期限が切れたアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:27 -msgid "Get private accounts for current user" -msgstr "ログインしているユーザー自身のプライベートアカウントを検索します" +#~ msgid "Get private accounts for current user" +#~ msgstr "ログインしているユーザー自身のプライベートアカウントを検索します" -#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:28 -msgid "Operator for special parameters" -msgstr "高度な検索に使える検索クエリ" +#~ msgid "Operator for special parameters" +#~ msgstr "高度な検索に使える検索クエリ" -#: app/modules/web/themes/material-blue/views/_partials/no_records_found.inc:13 -#: app/modules/web/themes/material-blue/views/account/search-index.inc:22 -msgid "No records found" -msgstr "該当するものはありません" +#~ msgid "No records found" +#~ msgstr "該当するものはありません" -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:100 -#: app/modules/web/themes/material-blue/views/account/account.inc:186 -#: app/modules/web/themes/material-blue/views/account/account.inc:195 -#: app/modules/web/themes/material-blue/views/install/index.inc:74 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:130 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:139 -#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:68 -#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:76 -#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:46 -msgid "Password (repeat)" -msgstr "Password (repeat)" +#~ msgid "Password (repeat)" +#~ msgstr "Password (repeat)" -#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:128 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:168 -#: app/modules/web/themes/material-blue/views/account/account.inc:218 -#: app/modules/web/themes/material-blue/views/account/account.inc:311 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:288 -msgid "Select date" -msgstr "日付選択" +#~ msgid "Select date" +#~ msgstr "日付選択" -#: app/modules/web/themes/material-blue/views/account/account-history.inc:26 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:160 -#: app/modules/web/themes/material-blue/views/account/account-history.inc:162 -#: app/modules/web/themes/material-blue/views/account/account.inc:303 -#: app/modules/web/themes/material-blue/views/account/account.inc:305 -msgid "History" -msgstr "履歴" +#~ msgid "History" +#~ msgstr "履歴" -#: app/modules/web/themes/material-blue/views/account/account-history.inc:37 -#: app/modules/web/themes/material-blue/views/account/account.inc:56 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:32 -msgid "Details" -msgstr "詳細" +#~ msgid "Details" +#~ msgstr "詳細" -#: app/modules/web/themes/material-blue/views/account/account-history.inc:91 -#: app/modules/web/themes/material-blue/views/account/account.inc:126 -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:53 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:67 -msgid "Select Category" -msgstr "カテゴリーを選択" +#~ msgid "Select Category" +#~ msgstr "カテゴリーを選択" -#: app/modules/web/themes/material-blue/views/account/account-history.inc:144 -#: app/modules/web/themes/material-blue/views/account/account-link.inc:93 -#: app/modules/web/themes/material-blue/views/account/account.inc:224 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:181 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:182 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:189 -msgid "Notes" -msgstr "メモ" +#~ msgid "Notes" +#~ msgstr "メモ" -#: app/modules/web/themes/material-blue/views/account/account-history.inc:181 -#: app/modules/web/themes/material-blue/views/account/account.inc:326 -#: app/modules/web/themes/material-blue/views/account/details.inc:38 -#: app/modules/web/themes/material-blue/views/account/details.inc:40 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:314 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:316 -msgid "Last Modification" -msgstr "最終編集" +#~ msgid "Last Modification" +#~ msgstr "最終編集" -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:33 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:66 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:136 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:161 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:25 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:43 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:68 -msgid "Select Users" -msgstr "ユーザーを選択" +#~ msgid "Select Users" +#~ msgstr "ユーザーを選択" -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:43 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:47 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:115 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:119 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:144 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:201 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:36 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:79 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:64 -msgid "View" -msgstr "表示" +#~ msgid "View" +#~ msgstr "表示" -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:105 -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:138 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:193 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:218 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:68 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:86 -msgid "Select Groups" -msgstr "グループを選択" +#~ msgid "Select Groups" +#~ msgstr "グループを選択" -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:188 -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:126 -#: app/modules/web/themes/material-blue/views/config/import.inc:39 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:311 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:83 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:35 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:100 -msgid "Select User" -msgstr "ユーザーを選択" +#~ msgid "Select User" +#~ msgstr "ユーザーを選択" -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:212 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:306 -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:100 -#: app/modules/web/themes/material-blue/views/config/import.inc:67 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:285 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:99 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:66 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:171 -msgid "Select Group" -msgstr "グループを選択" +#~ msgid "Select Group" +#~ msgstr "グループを選択" -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:236 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:201 -msgid "Private" -msgstr "プライベートアカウント" +#~ msgid "Private" +#~ msgstr "プライベートアカウント" -#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:254 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:218 -msgid "Private for Group" -msgstr "プライベートグループアカウント" +#~ msgid "Private for Group" +#~ msgstr "プライベートグループアカウント" -#: app/modules/web/themes/material-blue/views/account/account-request.inc:21 -msgid "Request Account Modification" -msgstr "アカウントの修正をリクエスト" +#~ msgid "Request Account Modification" +#~ msgstr "アカウントの修正をリクエスト" -#: app/modules/web/themes/material-blue/views/account/account-request.inc:65 -msgid "Request description" -msgstr "リクエストの概要" +#~ msgid "Request description" +#~ msgstr "リクエストの概要" -#: app/modules/web/themes/material-blue/views/account/account-request.inc:87 -msgid "Send" -msgstr "送信" +#~ msgid "Send" +#~ msgstr "送信" -#: app/modules/web/themes/material-blue/views/account/account.inc:46 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:145 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:30 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:236 -msgid "Permissions" -msgstr "権限" +#~ msgid "Permissions" +#~ msgstr "権限" -#: app/modules/web/themes/material-blue/views/account/account.inc:100 -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:43 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 -msgid "Select Client" -msgstr "クライアントを選択" +#~ msgid "Select Client" +#~ msgstr "クライアントを選択" -#: app/modules/web/themes/material-blue/views/account/account.inc:245 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 -msgid "Select Tags" -msgstr "タグを選択" +#~ msgid "Select Tags" +#~ msgstr "タグを選択" -#: app/modules/web/themes/material-blue/views/account/account.inc:294 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:35 -msgid "Select Account" -msgstr "アカウントを選択" +#~ msgid "Select Account" +#~ msgstr "アカウントを選択" -#: app/modules/web/themes/material-blue/views/account/account.inc:334 -#: app/modules/web/themes/material-blue/views/account/account.inc:336 -#: app/modules/web/themes/material-blue/views/account/account.inc:340 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:206 -msgid "Public Link" -msgstr "共有リンク" +#~ msgid "Public Link" +#~ msgstr "共有リンク" -#: app/modules/web/themes/material-blue/views/account/account.inc:348 -#: app/modules/web/themes/material-blue/views/account/account.inc:350 -#: app/modules/web/themes/material-blue/views/account/account.inc:354 -msgid "Direct Link" -msgstr "ダイレクトリンク" +#~ msgid "Direct Link" +#~ msgstr "ダイレクトリンク" -#: app/modules/web/themes/material-blue/views/account/details.inc:28 -#: app/modules/web/themes/material-blue/views/account/details.inc:30 -msgid "Date Added" -msgstr "日付を追加しました" +#~ msgid "Date Added" +#~ msgstr "日付を追加しました" -#: app/modules/web/themes/material-blue/views/account/details.inc:66 -#: app/modules/web/themes/material-blue/views/account/details.inc:68 -msgid "Date Modified" -msgstr "日付を変更しました" +#~ msgid "Date Modified" +#~ msgstr "日付を変更しました" -#: app/modules/web/themes/material-blue/views/account/details.inc:74 -#: app/modules/web/themes/material-blue/views/account/details.inc:76 -msgid "Editor" -msgstr "Editor" +#~ msgid "Editor" +#~ msgstr "Editor" -#: app/modules/web/themes/material-blue/views/account/details.inc:84 -#: app/modules/web/themes/material-blue/views/account/details.inc:86 -msgid "Password Date" -msgstr "" +#~ msgid "Drop files here (max. 5) or click to select" +#~ msgstr "" +#~ "ファイルをドラッグアンドドロップ(Max 5 files) / クリックしてファイルを選択" -#: app/modules/web/themes/material-blue/views/account/files.inc:45 -msgid "Drop files here (max. 5) or click to select" -msgstr "" -"ファイルをドラッグアンドドロップ(Max 5 files) / クリックしてファイルを選択" - -#: app/modules/web/themes/material-blue/views/account/files.inc:47 #, php-format -msgid "Maximum file size: %d MB" -msgstr "最大ファイルサイズ: %d MB" +#~ msgid "Maximum file size: %d MB" +#~ msgstr "最大ファイルサイズ: %d MB" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:44 -msgid "Search in Wiki" -msgstr "Wiki検索" +#~ msgid "Search in Wiki" +#~ msgstr "Wiki検索" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:95 #, php-format -msgid "Open link to: %s" -msgstr "Open link to: %s" +#~ msgid "Open link to: %s" +#~ msgstr "Open link to: %s" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:123 -msgid "Password Expired" -msgstr "パスワードの有効期限" +#~ msgid "Password Expired" +#~ msgstr "パスワードの有効期限" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:137 -msgid "Private Account (Group)" -msgstr "Private Account (Group)" +#~ msgid "Private Account (Group)" +#~ msgstr "Private Account (Group)" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:162 -msgid "Delete Favorite" -msgstr "お気に入りの解除" +#~ msgid "Delete Favorite" +#~ msgstr "お気に入りの解除" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:172 -msgid "Mark as Favorite" -msgstr "お気に入りに追加" +#~ msgid "Mark as Favorite" +#~ msgstr "お気に入りに追加" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:195 -msgid "Attachments" -msgstr "添付" +#~ msgid "Attachments" +#~ msgstr "添付" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:208 -msgid "Expiry Date" -msgstr "有効期限" +#~ msgid "Expiry Date" +#~ msgstr "有効期限" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:222 -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:233 -msgid "Link to Wiki" -msgstr "Wikiへのリンク" +#~ msgid "Link to Wiki" +#~ msgstr "Wikiへのリンク" -#: app/modules/web/themes/material-blue/views/account/search-rows.inc:225 -msgid "View at Wiki" -msgstr "Wikiを表示" +#~ msgid "View at Wiki" +#~ msgstr "Wikiを表示" -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:70 -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:76 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:254 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:255 -msgid "Global search" -msgstr "Global search" +#~ msgid "Global search" +#~ msgstr "Global search" -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:89 -msgid "Display All" -msgstr "Display All" +#~ msgid "Display All" +#~ msgstr "Display All" -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:96 -msgid "Show Favorites" -msgstr "お気に入りを表示" +#~ msgid "Show Favorites" +#~ msgstr "お気に入りを表示" -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:101 -msgid "Favorites Filtering" -msgstr "お気に入り済みのアカウントを表示" +#~ msgid "Favorites Filtering" +#~ msgstr "お気に入り済みのアカウントを表示" -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:120 -msgid "Accounts per page" -msgstr "1画面あたりの表示数" +#~ msgid "Accounts per page" +#~ msgstr "1画面あたりの表示数" -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:128 -msgid "More Filters" -msgstr "詳細検索" +#~ msgid "More Filters" +#~ msgstr "詳細検索" -#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:134 -msgid "Select Tag" -msgstr "タグの選択" +#~ msgid "Select Tag" +#~ msgstr "タグの選択" -#: app/modules/web/themes/material-blue/views/account/viewpass.inc:30 -msgid "Copy Username" -msgstr "ユーザー名をコピー" +#~ msgid "Copy Username" +#~ msgstr "ユーザー名をコピー" -#: app/modules/web/themes/material-blue/views/account/viewpass.inc:48 -msgid "Copy Password" -msgstr "パスワードをコピー" +#~ msgid "Copy Password" +#~ msgstr "パスワードをコピー" -#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:26 -msgid "Data will be encrypted after saving" -msgstr "データは暗号化処理をした後保存されます" +#~ msgid "Data will be encrypted after saving" +#~ msgstr "データは暗号化処理をした後保存されます" -#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:31 -msgid "Data will be unencrypted after saving" -msgstr "データは暗号化されずに保存されます" +#~ msgid "Data will be unencrypted after saving" +#~ msgstr "データは暗号化されずに保存されます" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:18 -#: app/modules/web/themes/material-blue/views/config/backup.inc:18 -#: app/modules/web/themes/material-blue/views/config/general-site.inc:18 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:18 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:17 #, php-format -msgid "The '%s' extension is unavailable" -msgstr "“%s” プラグインが動作していません" +#~ msgid "The '%s' extension is unavailable" +#~ msgstr "“%s” プラグインが動作していません" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:23 -msgid "This extension is needed to display passwords as images" -msgstr "" -"このプラグインはパスワードを文字ではなく画像として表示するために必要です" +#~ msgid "This extension is needed to display passwords as images" +#~ msgstr "" +#~ "このプラグインはパスワードを文字ではなく画像として表示するために必要です" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:36 -msgid "Searching" -msgstr "検索中" +#~ msgid "Searching" +#~ msgstr "検索中" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:42 -#: app/modules/web/themes/material-blue/views/config/accounts.inc:62 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:64 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:84 -msgid "Results per page" -msgstr "Results per page" +#~ msgid "Results per page" +#~ msgstr "Results per page" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:48 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:70 -msgid "Number of results per page to display when performing a search." -msgstr "1画面あたりの検索結果の表示数。" +#~ msgid "Number of results per page to display when performing a search." +#~ msgstr "1画面あたりの検索結果の表示数。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:82 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:35 -msgid "Accounts password expiry" -msgstr "アカウントのパスワードの有効期限" +#~ msgid "Accounts password expiry" +#~ msgstr "アカウントのパスワードの有効期限" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:83 -msgid "Enables the accounts password expiry date." -msgstr "アカウントのパスワードに有効期限を設定しました。" +#~ msgid "Enables the accounts password expiry date." +#~ msgstr "アカウントのパスワードに有効期限を設定しました。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:91 -msgid "Password expiry time" -msgstr "パスワードの有効期限" +#~ msgid "Password expiry time" +#~ msgstr "パスワードの有効期限" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:97 -msgid "Number of days for account's password expiry date." -msgstr "パスワードの有効期限。" +#~ msgid "Number of days for account's password expiry date." +#~ msgstr "パスワードの有効期限。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:109 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:43 -msgid "Expire time (days)" -msgstr "有効期限(日)" +#~ msgid "Expire time (days)" +#~ msgstr "有効期限(日)" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:128 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:103 -msgid "Account name as link" -msgstr "アカウント名のリンク" +#~ msgid "Account name as link" +#~ msgstr "アカウント名のリンク" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:129 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:105 -msgid "Enables to use the account name as a link to account details." -msgstr "アカウント名をリンクにする。" +#~ msgid "Enables to use the account name as a link to account details." +#~ msgstr "アカウント名をリンクにする。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:145 -msgid "Global searches" -msgstr "グローバル検索" +#~ msgid "Global searches" +#~ msgstr "グローバル検索" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:146 -msgid "" -"Allows the users to do searches that includes all accounts, they won't be " -"able to display the account details if they don't have permission." -msgstr "" -"全てのアカウントから検索できますが、アカウントの詳細を閲覧できるのは権限を" -"持ったユーザーのみです。" +#~ msgid "" +#~ "Allows the users to do searches that includes all accounts, they won't be " +#~ "able to display the account details if they don't have permission." +#~ msgstr "" +#~ "全てのアカウントから検索できますが、アカウントの詳細を閲覧できるのは権限を" +#~ "持ったユーザーのみです。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:162 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:166 -msgid "Image to show password" -msgstr "パスワードを画像で表示する" +#~ msgid "Image to show password" +#~ msgstr "パスワードを画像で表示する" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:164 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:168 -msgid "Generate an image with a text of the account password." -msgstr "パスワードを文字ではなく画像として表示します。" +#~ msgid "Generate an image with a text of the account password." +#~ msgstr "パスワードを文字ではなく画像として表示します。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:166 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:170 -msgid "" -"Useful for environments where copying a password to clipboard is a security " -"risk." -msgstr "" -"パスワードをクリップボードにコピーすることは、場合によってはセキュリティーリ" -"スクにつながります。" +#~ msgid "" +#~ "Useful for environments where copying a password to clipboard is a " +#~ "security risk." +#~ msgstr "" +#~ "パスワードをクリップボードにコピーすることは、場合によってはセキュリティー" +#~ "リスクにつながります。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:183 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:175 -msgid "Results like Cards" -msgstr "カード表示" +#~ msgid "Results like Cards" +#~ msgstr "カード表示" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:185 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:177 -msgid "Displays account's search results on a card like format." -msgstr "アカウントを四角いカードスタイルで表示します。" +#~ msgid "Displays account's search results on a card like format." +#~ msgstr "アカウントを四角いカードスタイルで表示します。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:202 -msgid "Secondary Groups Access" -msgstr "Secondary Groups Access" +#~ msgid "Secondary Groups Access" +#~ msgstr "Secondary Groups Access" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:204 -msgid "Grants access to users that are included in secondary groups." -msgstr "" +#~ msgid "Public Links" +#~ msgstr "共有リンク" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:206 -msgid "" -"By default, user in a secondary group is granted if the secondary group is " -"set as user's main group." -msgstr "" +#~ msgid "Enable Public Links" +#~ msgstr "共有リンクを有効化" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:217 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:412 -msgid "Public Links" -msgstr "共有リンク" +#~ msgid "" +#~ "Enables the ability to create public links to view an account's details" +#~ msgstr "共有リンク機能を有効化します" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:236 -msgid "Enable Public Links" -msgstr "共有リンクを有効化" +#~ msgid "Linked accounts will be visible by anyone that have the link." +#~ msgstr "" +#~ "共有リンクを知っている全てのユーザーがアクセスできるようになります。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:238 -msgid "Enables the ability to create public links to view an account's details" -msgstr "共有リンク機能を有効化します" +#~ msgid "" +#~ "In order to create links, users must have activated the option on their " +#~ "profiles." +#~ msgstr "" +#~ "共有リンクを作成するには各ユーザーの個人設定から有効化する必要があります。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:240 -msgid "Linked accounts will be visible by anyone that have the link." -msgstr "共有リンクを知っている全てのユーザーがアクセスできるようになります。" +#~ msgid "Use an image for password" +#~ msgstr "パスワードを画像で表示する" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:242 -msgid "" -"In order to create links, users must have activated the option on their " -"profiles." -msgstr "" -"共有リンクを作成するには各ユーザーの個人設定から有効化する必要があります。" +#~ msgid "The account password is shown as image." +#~ msgstr "アカウントのパスワードを文字ではなく画像で表示します。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:259 -msgid "Use an image for password" -msgstr "パスワードを画像で表示する" +#~ msgid "Expire time" +#~ msgstr "有効期限" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:261 -msgid "The account password is shown as image." -msgstr "アカウントのパスワードを文字ではなく画像で表示します。" +#~ msgid "Expire time (minutes)" +#~ msgstr "有効期限(分)" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:270 -msgid "Expire time" -msgstr "有効期限" +#~ msgid "Maximum visits" +#~ msgstr "最大閲覧数" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:281 -msgid "Expire time (minutes)" -msgstr "有効期限(分)" +#~ msgid "Files management" +#~ msgstr "ファイル管理" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:287 -#: app/modules/web/themes/material-blue/views/config/accounts.inc:298 -msgid "Maximum visits" -msgstr "最大閲覧数" +#~ msgid "Enables the uploading and downloading of accounts files." +#~ msgstr "ファイルのアップロード・ダウンロード機能を有効化します。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:325 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 -msgid "Files management" -msgstr "ファイル管理" +#~ msgid "Allowed MIME types" +#~ msgstr "このMIME Typeを許可する" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:326 -msgid "Enables the uploading and downloading of accounts files." -msgstr "ファイルのアップロード・ダウンロード機能を有効化します。" +#~ msgid "Allowed file MIME types for uploading." +#~ msgstr "このMIME Typeのアップロードは許可されています。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:334 -#: app/modules/web/themes/material-blue/views/config/accounts.inc:348 -msgid "Allowed MIME types" -msgstr "このMIME Typeを許可する" +#~ msgid "" +#~ "In order to add more MIME types, you need to add them into mime.xml file " +#~ "within the config directory." +#~ msgstr "" +#~ "MIME Typebの設定を変更するには“config”ディレクトリ内の”mime.xml”ファイルを" +#~ "編集してください。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:340 -msgid "Allowed file MIME types for uploading." -msgstr "このMIME Typeのアップロードは許可されています。" +#~ msgid "Maximum file size" +#~ msgstr "最大ファイルサイズ" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:343 -msgid "" -"In order to add more MIME types, you need to add them into mime.xml file " -"within the config directory." -msgstr "" -"MIME Typebの設定を変更するには“config”ディレクトリ内の”mime.xml”ファイルを編" -"集してください。" +#~ msgid "Sets the maximum file size for uploading." +#~ msgstr "アップロードできる最大ファイルサイズ。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:365 -msgid "Maximum file size" -msgstr "最大ファイルサイズ" +#~ msgid "Absolute maximum is 16MB." +#~ msgstr "設定できる上限値は16MBです。" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:371 -msgid "Sets the maximum file size for uploading." -msgstr "アップロードできる最大ファイルサイズ。" +#~ msgid "Maximum file size in kilobytes" +#~ msgstr "最大ファイルサイズはKB(キロバイト)で設定してください" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:375 -msgid "Absolute maximum is 16MB." -msgstr "設定できる上限値は16MBです。" +#~ msgid "This extension is needed to build the application's backup files" +#~ msgstr "" +#~ "このエクステンションはアプリケーションのバックアップを作成するために必要で" +#~ "す" -#: app/modules/web/themes/material-blue/views/config/accounts.inc:388 -msgid "Maximum file size in kilobytes" -msgstr "最大ファイルサイズはKB(キロバイト)で設定してください" +#~ msgid "Result" +#~ msgstr "Result" -#: app/modules/web/themes/material-blue/views/config/backup.inc:23 -msgid "This extension is needed to build the application's backup files" -msgstr "" -"このエクステンションはアプリケーションのバックアップを作成するために必要です" +#~ msgid "Download Current" +#~ msgstr "ダウンロード" -#: app/modules/web/themes/material-blue/views/config/backup.inc:37 -#: app/modules/web/themes/material-blue/views/config/backup.inc:40 -#: app/modules/web/themes/material-blue/views/config/backup.inc:118 -#: app/modules/web/themes/material-blue/views/config/backup.inc:121 -msgid "Result" -msgstr "Result" +#~ msgid "DB Backup" +#~ msgstr "DB Backup" -#: app/modules/web/themes/material-blue/views/config/backup.inc:48 -#: app/modules/web/themes/material-blue/views/config/backup.inc:51 -#: app/modules/web/themes/material-blue/views/config/backup.inc:129 -#: app/modules/web/themes/material-blue/views/config/backup.inc:132 -msgid "Download Current" -msgstr "ダウンロード" +#~ msgid "sysPass Backup" +#~ msgstr "sysPass Backup" -#: app/modules/web/themes/material-blue/views/config/backup.inc:58 -msgid "DB Backup" -msgstr "DB Backup" +#~ msgid "" +#~ "The backup allows you to save and download sysPass database and " +#~ "application files including its configuration." +#~ msgstr "" +#~ "sysPassのアプリケーション構成とデータベースのバックアップファイルを作成・" +#~ "ダウンロードできます。" -#: app/modules/web/themes/material-blue/views/config/backup.inc:65 -msgid "sysPass Backup" -msgstr "sysPass Backup" +#~ msgid "" +#~ "With this method it's possible to either save all sysPass data in another " +#~ "place or use it to make the application portable." +#~ msgstr "" +#~ "sysPass全体のバックアップを作成し、別の場所に同じsysPassサーバーを構築する" +#~ "ことやそのままUSBなどにコピーしてオフラインで利用することができます。" -#: app/modules/web/themes/material-blue/views/config/backup.inc:88 -msgid "" -"The backup allows you to save and download sysPass database and application " -"files including its configuration." -msgstr "" -"sysPassのアプリケーション構成とデータベースのバックアップファイルを作成・ダウ" -"ンロードできます。" +#~ msgid "Export Accounts" +#~ msgstr "Export Accounts" -#: app/modules/web/themes/material-blue/views/config/backup.inc:90 -msgid "" -"With this method it's possible to either save all sysPass data in another " -"place or use it to make the application portable." -msgstr "" -"sysPass全体のバックアップを作成し、別の場所に同じsysPassサーバーを構築するこ" -"とやそのままUSBなどにコピーしてオフラインで利用することができます。" +#~ msgid "Export Password" +#~ msgstr "Export Password" -#: app/modules/web/themes/material-blue/views/config/backup.inc:109 -#: app/modules/web/themes/material-blue/views/config/backup.inc:197 -msgid "Export Accounts" -msgstr "Export Accounts" +#~ msgid "Export Password (repeat)" +#~ msgstr "Export Password (repeat)" -#: app/modules/web/themes/material-blue/views/config/backup.inc:149 -#: app/modules/web/themes/material-blue/views/config/backup.inc:157 -msgid "Export Password" -msgstr "Export Password" +#~ msgid "" +#~ "The accounts export allows you to save the accounts and their data in XML " +#~ "format to be imported in another sysPass instance." +#~ msgstr "" +#~ "アカウント情報をXML形式でエクスポートして、他のsysPassにインポートすること" +#~ "ができます。" -#: app/modules/web/themes/material-blue/views/config/backup.inc:163 -#: app/modules/web/themes/material-blue/views/config/backup.inc:172 -msgid "Export Password (repeat)" -msgstr "Export Password (repeat)" +#~ msgid "Exported items are accounts, clients, categories and tags." +#~ msgstr "アカウント・クライアント・カテゴリー・タグをエクスポートします。" -#: app/modules/web/themes/material-blue/views/config/backup.inc:199 -msgid "" -"The accounts export allows you to save the accounts and their data in XML " -"format to be imported in another sysPass instance." -msgstr "" -"アカウント情報をXML形式でエクスポートして、他のsysPassにインポートすることが" -"できます。" +#~ msgid "" +#~ "Accounts' password are exported in an encrypted way for better security." +#~ msgstr "" +#~ "エクスポート時に全てのアカウントのパスワードは暗号化された状態でエクスポー" +#~ "トされます。" -#: app/modules/web/themes/material-blue/views/config/backup.inc:201 -msgid "Exported items are accounts, clients, categories and tags." -msgstr "アカウント・クライアント・カテゴリー・タグをエクスポートします。" +#~ msgid "" +#~ "It's possible to set an export password to save all the encrypted data in " +#~ "the XML file." +#~ msgstr "" +#~ "エクスポートパスワードを用いて全てのデータを暗号化した状態でXMLファイルに" +#~ "エクスポートすることができます。" -#: app/modules/web/themes/material-blue/views/config/backup.inc:203 -msgid "" -"Accounts' password are exported in an encrypted way for better security." -msgstr "" -"エクスポート時に全てのアカウントのパスワードは暗号化された状態でエクスポート" -"されます。" +#~ msgid "Master Password" +#~ msgstr "マスターパスワード" -#: app/modules/web/themes/material-blue/views/config/backup.inc:205 -msgid "" -"It's possible to set an export password to save all the encrypted data in " -"the XML file." -msgstr "" -"エクスポートパスワードを用いて全てのデータを暗号化した状態でXMLファイルにエク" -"スポートすることができます。" +#~ msgid "Last change" +#~ msgstr "最終変更" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:24 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:173 -#: app/modules/web/themes/material-blue/views/config/import.inc:162 -#: app/modules/web/themes/material-blue/views/config/import.inc:179 -#: app/modules/web/themes/material-blue/views/install/index.inc:58 -#: app/modules/web/themes/material-blue/views/install/index.inc:65 -#: app/modules/web/themes/material-blue/views/login/index.inc:62 -#: app/modules/web/themes/material-blue/views/login/index.inc:110 -msgid "Master Password" -msgstr "マスターパスワード" +#~ msgid "Current Master Password" +#~ msgstr "Current Master Password" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:31 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:34 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:219 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:222 -msgid "Last change" -msgstr "最終変更" +#~ msgid "New Master Password" +#~ msgstr "New Master Password" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:42 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:51 -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:148 -msgid "Current Master Password" -msgstr "Current Master Password" +#~ msgid "New Master Password (repeat)" +#~ msgstr "New Master Password (repeat)" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:57 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:66 -msgid "New Master Password" -msgstr "New Master Password" +#~ msgid "You should save the new password on a secure place" +#~ msgstr "パスワードは安全な方法で保存されます" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:72 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:81 -msgid "New Master Password (repeat)" -msgstr "New Master Password (repeat)" +#~ msgid "All accounts passwords will be encrypted again." +#~ msgstr "保存されている全てのパスワードを再暗号化します。" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:96 -msgid "You should save the new password on a secure place" -msgstr "パスワードは安全な方法で保存されます" +#~ msgid "Users will need to enter the new Master Password." +#~ msgstr "" +#~ "全てのユーザーはログイン時に新しいマスターパスワードの入力を求められるよう" +#~ "になります。" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:100 -msgid "All accounts passwords will be encrypted again." -msgstr "保存されている全てのパスワードを再暗号化します。" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:104 -msgid "Users will need to enter the new Master Password." -msgstr "" -"全てのユーザーはログイン時に新しいマスターパスワードの入力を求められるように" -"なります。" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:108 -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:136 #, php-format -msgid "It will be updated %s accounts. This process could take some time long." -msgstr "" -"現在%s個目のアカウントを処理中です。処理の完了までしばらくお待ちください。" +#~ msgid "" +#~ "It will be updated %s accounts. This process could take some time long." +#~ msgstr "" +#~ "現在%s個目のアカウントを処理中です。処理の完了までしばらくお待ちください。" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:126 -msgid "Do not modify accounts" -msgstr "" +#~ msgid "Sets a new Master Password without re-encrypting the accounts." +#~ msgstr "アカウントを再暗号化せずにマスターパスワードを変更します。" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:128 -msgid "Sets a new Master Password without re-encrypting the accounts." -msgstr "アカウントを再暗号化せずにマスターパスワードを変更します。" +#~ msgid "" +#~ "Confirm the master password change after you have been read all the above " +#~ "warnings." +#~ msgstr "" +#~ "上記の説明を全て読みマスターパスワードを変更することによって起こる影響を理" +#~ "解した上で処理を行ってください。" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:145 -msgid "Confirm change" -msgstr "" +#~ msgid "" +#~ "The Master Password is used to encrypt sysPass accounts passwords and " +#~ "keep them safe." +#~ msgstr "" +#~ "マスターパスワードはsysPassのアカウント情報を暗号化する際に用いられます。" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:147 -msgid "" -"Confirm the master password change after you have been read all the above " -"warnings." -msgstr "" -"上記の説明を全て読みマスターパスワードを変更することによって起こる影響を理解" -"した上で処理を行ってください。" +#~ msgid "" +#~ "It's advisable to change it from time to time and use a complex password " +#~ "that includes numbers, letters and symbols." +#~ msgstr "" +#~ "パスワードには英数字のほか記号を含めるなど複雑なものにすることをおすすめし" +#~ "ます。" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:175 -msgid "" -"The Master Password is used to encrypt sysPass accounts passwords and keep " -"them safe." -msgstr "" -"マスターパスワードはsysPassのアカウント情報を暗号化する際に用いられます。" +#~ msgid "Update master password hash" +#~ msgstr "マスターパスワードのハッシュを再生成" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:177 -msgid "" -"It's advisable to change it from time to time and use a complex password " -"that includes numbers, letters and symbols." -msgstr "" -"パスワードには英数字のほか記号を含めるなど複雑なものにすることをおすすめしま" -"す。" +#~ msgid "Temporary Password" +#~ msgstr "仮パスワード" + +#~ msgid "Not generated" +#~ msgstr "生成されていません" + +#~ msgid "Send email" +#~ msgstr "メールを送信する" + +#~ msgid "" +#~ "Sends an email to all users or only to those whose group is selected." +#~ msgstr "全てのユーザーまたは、選択したグループにメールを送信します。" + +#~ msgid "" +#~ "The temporary password is used as a Master Password for the users that " +#~ "need to enter it during login. By this way there is no need to tell them " +#~ "the real Master Password." +#~ msgstr "" +#~ "本来ならばsysPassを利用する全てのユーザーにマスターパスワードを教えなけれ" +#~ "ばなりませんが、期限付きの仮マスターパスワードを利用すれば本当のマスターパ" +#~ "スワードの代わりにこれを教えればいいので安心して利用できます。" + +#~ msgid "Generate" +#~ msgstr "生成" + +#~ msgid "Use Auth Basic" +#~ msgstr "Basic認証" + +#~ msgid "Use Auth Basic for authorizing accesses to the application" +#~ msgstr "Basic認証でアプリケーションにアクセスできるようにします" + +#~ msgid "Use Auth Basic SSO" +#~ msgstr "SSO" + +#~ msgid "Use auto-login through Auth Basic" +#~ msgstr "Basic認証を用いて自動ログインする" + +#~ msgid "Domain" +#~ msgstr "Domain" + +#~ msgid "" +#~ "The domain will be added to sysPass user name for checking against the " +#~ "Auth Basic one." +#~ msgstr "Basic認証のためのドメイン設定。" + +#~ msgid "Domain name" +#~ msgstr "ドメイン名" + +#~ msgid "Default Group" +#~ msgstr "Default Group" + +#~ msgid "Sets the default users group for newly created SSO users" +#~ msgstr "" +#~ "新しく作成したSSOユーザーが自動的に追加されるデフォルトユーザーグループを" +#~ "設定します" + +#~ msgid "Default Profile" +#~ msgstr "デフォルトプロファイル" + +#~ msgid "Sets the default profile for the newly created SSO users." +#~ msgstr "" +#~ "SSOから追加されたユーザーは全てこのデフォルトプロファイルが適用されます。" + +#~ msgid "Events" +#~ msgstr "Events" + +#~ msgid "Enable event log" +#~ msgstr "Enable event log" + +#~ msgid "Saves the actions done by the application." +#~ msgstr "アプリケーションの動作を保存します。" + +#~ msgid "Enable Syslog" +#~ msgstr "Enable Syslog" + +#~ msgid "Enable Remote Syslog" +#~ msgstr "Enable Remote Syslog" + +#~ msgid "Hostname or IP address" +#~ msgstr "Hostname or IP address" + +#~ msgid "Port" +#~ msgstr "Port" + +#~ msgid "Proxy" +#~ msgstr "Proxy" + +#~ msgid "Use Proxy" +#~ msgstr "Use Proxy" + +#~ msgid "Use a proxy server for checking out for updates and notifications." +#~ msgstr "" +#~ "sysPassとメール通知を行う際にプロキシサーバ-を経由させることができます。" + +#~ msgid "Proxy server" +#~ msgstr "Proxy server" + +#~ msgid "Proxy server port" +#~ msgstr "Proxy server port" + +#~ msgid "Proxy server user" +#~ msgstr "Proxy server user" + +#~ msgid "Proxy server password" +#~ msgstr "Proxy server password" + +#~ msgid "This extension is needed to check for sysPass updates and notices" +#~ msgstr "このエクステンションはsysPassの更新と通知機能のために必要です" + +#~ msgid "Site" +#~ msgstr "Site" + +#~ msgid "Language" +#~ msgstr "言語" + +#~ msgid "" +#~ "Sets the global app language. You can set a per user language on " +#~ "preferences." +#~ msgstr "" +#~ "sysPass全体の言語設定です、これの他にユーザー自身の個人設定から表示される" +#~ "言語を変更することもできます。" + +#~ msgid "" +#~ "To improve/add translations, you can get involved at https://poeditor.com/" +#~ "join/project/fmlsBuugyv" +#~ msgstr "" +#~ "探している言語がありませんか?よろしければこちらから翻訳に協力してください" +#~ "ませんか?https://poeditor.com/join/project/fmlsBuugyv" + +#~ msgid "Visual Theme" +#~ msgstr "テーマ" + +#~ msgid "" +#~ "Sets the global application visual theme. You can set a per user visual " +#~ "theme on preferences." +#~ msgstr "" +#~ "sysPass全体のテーマを設定です。これの他にユーザー自身の個人設定からもテー" +#~ "マを変更することができます。" + +#~ msgid "Session timeout (s)" +#~ msgstr "セッションの有効期限(秒)" + +#~ msgid "Application URL" +#~ msgstr "Application URL" + +#~ msgid "" +#~ "Sets the application URL when accessing through a reverse proxy or load " +#~ "balancer." +#~ msgstr "" +#~ "sysPassにアクセスできるURLを設定してください、リバースプロキシやロードバラ" +#~ "ンサを用いている場合に必要な設定です。" + +#~ msgid "Force HTTPS" +#~ msgstr "Force HTTPS" + +#~ msgid "It forces the use of HTTPS on all the connections" +#~ msgstr "HTTP通信を全てHTTPSにリダイレクトします" + +#~ msgid "Enable debug" +#~ msgstr "デバッグを有効化" + +#~ msgid "" +#~ "Displays some information about application configuration and performance." +#~ msgstr "" +#~ "アプリケーションの構成と動作に関する詳細情報を表示するようになります。" + +#~ msgid "Maintenance mode" +#~ msgstr "メンテナンスモード" + +#~ msgid "" +#~ "In this mode nobody can log into the application. To disable it, you need " +#~ "to either modify the configuration file or unset on the site tab." +#~ msgstr "" +#~ "このモードを有効化したユーザー以外は誰もログインできなくなります、メンテナ" +#~ "ンスモードを解除するには設定から無効化する、もしくは”config”ディレクトリ内" +#~ "の設定ファイルから直接メンテナンスモードを無効化してください。" + +#~ msgid "Check for updates" +#~ msgstr "アップデートを確認" + +#~ msgid "Check for application updates (only for administrators)." +#~ msgstr "" +#~ "新しいsysPassがないか確認をします(adminユーザーのみが実行できます)。" + +#~ msgid "Check for notifications" +#~ msgstr "通知を確認" + +#~ msgid "" +#~ "Check if there are either sysPass security or warning notices (only for " +#~ "administrators)." +#~ msgstr "" +#~ "sysPassにセキュリティー上の問題が見つかった場合adminユーザーに通知が届きま" +#~ "す。" + +#~ msgid "Encrypt Session" +#~ msgstr "セッションを暗号化" + +#~ msgid "Encrypt PHP session data" +#~ msgstr "PHPのセッションを暗号化します" + +#~ msgid "" +#~ "This feature increases the PHP sessions security, because the stored data " +#~ "won't be readable." +#~ msgstr "" +#~ "PHPのセッション情報を暗号化することでより安全にsysPassを利用することができ" +#~ "ます。" + +#~ msgid "CSV/XML Import" +#~ msgstr "CSV/XML Import" + +#~ msgid "Default User" +#~ msgstr "Default User" + +#~ msgid "Drop files here or click to select" +#~ msgstr "ファイルをドラッグ&ドロップするか、クリックして選択してください" + +#~ msgid "" +#~ "Allows to import Accounts, Categories and Clients from XML or CSV files." +#~ msgstr "" +#~ "アカウント・カテゴリー。クライアントをXML / CSVファイルからインポートする" +#~ "ことを許可する。" + +#~ msgid "Supported XML file formats are: sysPass, KeePass and KeePassX" +#~ msgstr "sysPass, KeePass, KeePassX形式のXMLファイルに対応しています" + +#~ msgid "Drag & Drop the file into the import zone or click over the arrow." +#~ msgstr "ファイルをドラッグ&ドロップしてください。" + +#~ msgid "" +#~ "For KeePass or KeePassX files, client name will be KeePass or KeePassX " +#~ "and category name like groups name." +#~ msgstr "" +#~ "KeePass/KeePassXからアカウントをインポートした際に自動的にKeePass/KeePassX" +#~ "というカテゴリーが追加されます。" + +#~ msgid "The CSV import file requires the following format:" +#~ msgstr "読み込ませるCSVファイルのラベルは以下のようにしてください。" + +#~ msgid "" +#~ "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +#~ "\"notes\"" +#~ msgstr "" +#~ "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +#~ "\"notes\"" + +#~ msgid "" +#~ "In all cases, if the client or category do not exist they will be created " +#~ "automatically." +#~ msgstr "" +#~ "インポート時にsysPassに存在しないカテゴリー名・クライアント名は自動的に" +#~ "sysPassに追加されます。" + +#~ msgid "XML" +#~ msgstr "XML" + +#~ msgid "Import Password" +#~ msgstr "Import Password" + +#~ msgid "It's only needed for sysPass XML files that have been encrypted." +#~ msgstr "" +#~ "暗号化オプションを用いてsysPassからエクスポートしたXMLファイルの場合はエク" +#~ "スポート時に指定したエクスポートパスワードが必要です。" + +#~ msgid "" +#~ "It's only needed for sysPass XML files that have been encrypted with a " +#~ "different master password from the current one." +#~ msgstr "" +#~ "これはエクスポート後マスターパスワードを変更した場合など、エクスポート時と" +#~ "現在のsysPassのマスターパスワードが異なるときに必要です。" + +#~ msgid "CSV" +#~ msgstr "CSV" + +#~ msgid "It's only needed for CSV files." +#~ msgstr "対応しているのはCSVファイルのみです。" + +#~ msgid "sysPass version" +#~ msgstr "sysPass version" + +#~ msgid "Database" +#~ msgstr "データベース" + +#~ msgid "PHP" +#~ msgstr "PHP" + +#~ msgid "Extensions" +#~ msgstr "拡張機能" + +#~ msgid "Unavailable extensions" +#~ msgstr "拡張機能が利用できません" + +#~ msgid "Download rate" +#~ msgstr "ダウンロード速度" + +#~ msgid "Configuration Backup" +#~ msgstr "設定のバックアップ" -#: app/modules/web/themes/material-blue/views/config/encryption.inc:179 -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:138 #, php-format -msgid "You could get more info on: %s" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:189 -msgid "Update master password hash" -msgstr "マスターパスワードのハッシュを再生成" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:209 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:349 -msgid "Temporary Password" -msgstr "仮パスワード" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:224 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:239 -msgid "Not generated" -msgstr "生成されていません" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:229 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:232 -msgid "Valid until" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:245 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:248 -msgid "Attempts" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:255 -#: app/modules/web/themes/material-blue/views/config/encryption.inc:267 -msgid "Life (s)" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:287 -msgid "Send email" -msgstr "メールを送信する" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:289 -msgid "Sends an email to all users or only to those whose group is selected." -msgstr "全てのユーザーまたは、選択したグループにメールを送信します。" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:351 -msgid "" -"The temporary password is used as a Master Password for the users that need " -"to enter it during login. By this way there is no need to tell them the real " -"Master Password." -msgstr "" -"本来ならばsysPassを利用する全てのユーザーにマスターパスワードを教えなければな" -"りませんが、期限付きの仮マスターパスワードを利用すれば本当のマスターパスワー" -"ドの代わりにこれを教えればいいので安心して利用できます。" - -#: app/modules/web/themes/material-blue/views/config/encryption.inc:358 -msgid "Generate" -msgstr "生成" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:37 -msgid "Use Auth Basic" -msgstr "Basic認証" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:38 -msgid "Use Auth Basic for authorizing accesses to the application" -msgstr "Basic認証でアプリケーションにアクセスできるようにします" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:54 -msgid "Use Auth Basic SSO" -msgstr "SSO" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:55 -msgid "Use auto-login through Auth Basic" -msgstr "Basic認証を用いて自動ログインする" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:63 -msgid "Domain" -msgstr "Domain" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:68 -msgid "" -"The domain will be added to sysPass user name for checking against the Auth " -"Basic one." -msgstr "Basic認証のためのドメイン設定。" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:79 -msgid "Domain name" -msgstr "ドメイン名" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:85 -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:96 -#: app/modules/web/themes/material-blue/views/config/import.inc:52 -#: app/modules/web/themes/material-blue/views/config/import.inc:63 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:270 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:281 -msgid "Default Group" -msgstr "Default Group" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:91 -msgid "Sets the default users group for newly created SSO users" -msgstr "" -"新しく作成したSSOユーザーが自動的に追加されるデフォルトユーザーグループを設定" -"します" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:111 -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:122 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:296 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:307 -msgid "Default Profile" -msgstr "デフォルトプロファイル" - -#: app/modules/web/themes/material-blue/views/config/general-auth.inc:117 -msgid "Sets the default profile for the newly created SSO users." -msgstr "" -"SSOから追加されたユーザーは全てこのデフォルトプロファイルが適用されます。" - -#: app/modules/web/themes/material-blue/views/config/general-events.inc:18 -#: app/modules/web/themes/material-blue/views/config/general-events.inc:110 -#: app/modules/web/themes/material-blue/views/config/general-events.inc:113 -#: app/modules/web/themes/material-blue/views/config/mail.inc:196 -#: app/modules/web/themes/material-blue/views/config/mail.inc:199 -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:78 -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:80 -msgid "Events" -msgstr "Events" - -#: app/modules/web/themes/material-blue/views/config/general-events.inc:37 -msgid "Enable event log" -msgstr "Enable event log" - -#: app/modules/web/themes/material-blue/views/config/general-events.inc:38 -msgid "Saves the actions done by the application." -msgstr "アプリケーションの動作を保存します。" - -#: app/modules/web/themes/material-blue/views/config/general-events.inc:53 -msgid "Enable Syslog" -msgstr "Enable Syslog" - -#: app/modules/web/themes/material-blue/views/config/general-events.inc:69 -msgid "Enable Remote Syslog" -msgstr "Enable Remote Syslog" - -#: app/modules/web/themes/material-blue/views/config/general-events.inc:88 -msgid "Hostname or IP address" -msgstr "Hostname or IP address" - -#: app/modules/web/themes/material-blue/views/config/general-events.inc:94 -#: app/modules/web/themes/material-blue/views/config/general-events.inc:104 -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:60 -#: app/modules/web/themes/material-blue/views/config/mail.inc:84 -#: app/modules/web/themes/material-blue/views/config/mail.inc:94 -msgid "Port" -msgstr "Port" - -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:17 -msgid "Proxy" -msgstr "Proxy" - -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:36 -msgid "Use Proxy" -msgstr "Use Proxy" - -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:37 -msgid "Use a proxy server for checking out for updates and notifications." -msgstr "" -"sysPassとメール通知を行う際にプロキシサーバ-を経由させることができます。" - -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:54 -msgid "Proxy server" -msgstr "Proxy server" - -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:70 -msgid "Proxy server port" -msgstr "Proxy server port" - -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:85 -msgid "Proxy server user" -msgstr "Proxy server user" - -#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:100 -msgid "Proxy server password" -msgstr "Proxy server password" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:23 -msgid "This extension is needed to check for sysPass updates and notices" -msgstr "このエクステンションはsysPassの更新と通知機能のために必要です" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:31 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:21 -msgid "Site" -msgstr "Site" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:37 -#: app/modules/web/themes/material-blue/views/config/general-site.inc:51 -#: app/modules/web/themes/material-blue/views/config/info.inc:119 -#: app/modules/web/themes/material-blue/views/config/info.inc:133 -#: app/modules/web/themes/material-blue/views/install/index.inc:147 -#: app/modules/web/themes/material-blue/views/install/index.inc:150 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:33 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:35 -msgid "Language" -msgstr "言語" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:42 -msgid "" -"Sets the global app language. You can set a per user language on preferences." -msgstr "" -"sysPass全体の言語設定です、これの他にユーザー自身の個人設定から表示される言語" -"を変更することもできます。" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:46 -msgid "" -"To improve/add translations, you can get involved at https://poeditor.com/" -"join/project/fmlsBuugyv" -msgstr "" -"探している言語がありませんか?よろしければこちらから翻訳に協力してくださいま" -"せんか?https://poeditor.com/join/project/fmlsBuugyv" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:65 -#: app/modules/web/themes/material-blue/views/config/general-site.inc:75 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:48 -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:50 -msgid "Visual Theme" -msgstr "テーマ" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:70 -msgid "" -"Sets the global application visual theme. You can set a per user visual " -"theme on preferences." -msgstr "" -"sysPass全体のテーマを設定です。これの他にユーザー自身の個人設定からもテーマを" -"変更することができます。" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:89 -#: app/modules/web/themes/material-blue/views/config/general-site.inc:101 -msgid "Session timeout (s)" -msgstr "セッションの有効期限(秒)" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:107 -#: app/modules/web/themes/material-blue/views/config/general-site.inc:123 -msgid "Application URL" -msgstr "Application URL" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:112 -msgid "" -"Sets the application URL when accessing through a reverse proxy or load " -"balancer." -msgstr "" -"sysPassにアクセスできるURLを設定してください、リバースプロキシやロードバラン" -"サを用いている場合に必要な設定です。" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:142 -msgid "Force HTTPS" -msgstr "Force HTTPS" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:143 -msgid "It forces the use of HTTPS on all the connections" -msgstr "HTTP通信を全てHTTPSにリダイレクトします" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:158 -msgid "Enable debug" -msgstr "デバッグを有効化" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:159 -msgid "" -"Displays some information about application configuration and performance." -msgstr "アプリケーションの構成と動作に関する詳細情報を表示するようになります。" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:174 -msgid "Maintenance mode" -msgstr "メンテナンスモード" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:175 -msgid "" -"In this mode nobody can log into the application. To disable it, you need to " -"either modify the configuration file or unset on the site tab." -msgstr "" -"このモードを有効化したユーザー以外は誰もログインできなくなります、メンテナン" -"スモードを解除するには設定から無効化する、もしくは”config”ディレクトリ内の設" -"定ファイルから直接メンテナンスモードを無効化してください。" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:190 -msgid "Check for updates" -msgstr "アップデートを確認" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:191 -msgid "Check for application updates (only for administrators)." -msgstr "新しいsysPassがないか確認をします(adminユーザーのみが実行できます)。" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:206 -msgid "Check for notifications" -msgstr "通知を確認" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:207 -msgid "" -"Check if there are either sysPass security or warning notices (only for " -"administrators)." -msgstr "" -"sysPassにセキュリティー上の問題が見つかった場合adminユーザーに通知が届きま" -"す。" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:222 -msgid "Encrypt Session" -msgstr "セッションを暗号化" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:224 -msgid "Encrypt PHP session data" -msgstr "PHPのセッションを暗号化します" - -#: app/modules/web/themes/material-blue/views/config/general-site.inc:225 -msgid "" -"This feature increases the PHP sessions security, because the stored data " -"won't be readable." -msgstr "" -"PHPのセッション情報を暗号化することでより安全にsysPassを利用することができま" -"す。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:18 -#: app/modules/web/themes/material-blue/views/config/import.inc:113 -msgid "CSV/XML Import" -msgstr "CSV/XML Import" - -#: app/modules/web/themes/material-blue/views/config/import.inc:24 -#: app/modules/web/themes/material-blue/views/config/import.inc:35 -msgid "Default User" -msgstr "Default User" - -#: app/modules/web/themes/material-blue/views/config/import.inc:30 -msgid "Sets the default user for the accounts imported." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/import.inc:58 -msgid "Sets the default group for the accounts imported." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/import.inc:83 -msgid "Drop files here or click to select" -msgstr "ファイルをドラッグ&ドロップするか、クリックして選択してください" - -#: app/modules/web/themes/material-blue/views/config/import.inc:115 -msgid "" -"Allows to import Accounts, Categories and Clients from XML or CSV files." -msgstr "" -"アカウント・カテゴリー。クライアントをXML / CSVファイルからインポートすること" -"を許可する。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:117 -msgid "Supported XML file formats are: sysPass, KeePass and KeePassX" -msgstr "sysPass, KeePass, KeePassX形式のXMLファイルに対応しています" - -#: app/modules/web/themes/material-blue/views/config/import.inc:119 -msgid "Drag & Drop the file into the import zone or click over the arrow." -msgstr "ファイルをドラッグ&ドロップしてください。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:121 -msgid "" -"For KeePass or KeePassX files, client name will be KeePass or KeePassX and " -"category name like groups name." -msgstr "" -"KeePass/KeePassXからアカウントをインポートした際に自動的にKeePass/KeePassXと" -"いうカテゴリーが追加されます。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:123 -msgid "The CSV import file requires the following format:" -msgstr "読み込ませるCSVファイルのラベルは以下のようにしてください。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:125 -msgid "" -"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" -"\"notes\"" -msgstr "" -"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" -"\"notes\"" - -#: app/modules/web/themes/material-blue/views/config/import.inc:127 -msgid "" -"In all cases, if the client or category do not exist they will be created " -"automatically." -msgstr "" -"インポート時にsysPassに存在しないカテゴリー名・クライアント名は自動的に" -"sysPassに追加されます。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:135 -msgid "XML" -msgstr "XML" - -#: app/modules/web/themes/material-blue/views/config/import.inc:141 -#: app/modules/web/themes/material-blue/views/config/import.inc:156 -msgid "Import Password" -msgstr "Import Password" - -#: app/modules/web/themes/material-blue/views/config/import.inc:146 -msgid "It's only needed for sysPass XML files that have been encrypted." -msgstr "" -"暗号化オプションを用いてsysPassからエクスポートしたXMLファイルの場合はエクス" -"ポート時に指定したエクスポートパスワードが必要です。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:168 -msgid "" -"It's only needed for sysPass XML files that have been encrypted with a " -"different master password from the current one." -msgstr "" -"これはエクスポート後マスターパスワードを変更した場合など、エクスポート時と現" -"在のsysPassのマスターパスワードが異なるときに必要です。" - -#: app/modules/web/themes/material-blue/views/config/import.inc:186 -msgid "CSV" -msgstr "CSV" - -#: app/modules/web/themes/material-blue/views/config/import.inc:192 -#: app/modules/web/themes/material-blue/views/config/import.inc:208 -msgid "CSV delimiter" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/import.inc:198 -msgid "It's only needed for CSV files." -msgstr "対応しているのはCSVファイルのみです。" - -#: app/modules/web/themes/material-blue/views/config/info.inc:20 -msgid "Application Information" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/info.inc:26 -#: app/modules/web/themes/material-blue/views/config/info.inc:29 -msgid "sysPass version" -msgstr "sysPass version" - -#: app/modules/web/themes/material-blue/views/config/info.inc:42 -#: app/modules/web/themes/material-blue/views/config/info.inc:45 -msgid "Database" -msgstr "データベース" - -#: app/modules/web/themes/material-blue/views/config/info.inc:56 -#: app/modules/web/themes/material-blue/views/config/info.inc:59 -msgid "PHP" -msgstr "PHP" - -#: app/modules/web/themes/material-blue/views/config/info.inc:63 -msgid "Extensions" -msgstr "拡張機能" - -#: app/modules/web/themes/material-blue/views/config/info.inc:67 -msgid "Unavailable extensions" -msgstr "拡張機能が利用できません" - -#: app/modules/web/themes/material-blue/views/config/info.inc:71 -msgid "Used Memory" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/info.inc:75 -msgid "Download rate" -msgstr "ダウンロード速度" - -#: app/modules/web/themes/material-blue/views/config/info.inc:78 -msgid "OP Cache" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/info.inc:97 -#: app/modules/web/themes/material-blue/views/config/info.inc:100 -msgid "Configuration Backup" -msgstr "設定のバックアップ" - -#: app/modules/web/themes/material-blue/views/config/info.inc:110 -#: app/modules/web/themes/material-blue/views/config/info.inc:192 +#~ msgid "Download %s" +#~ msgstr "Download %s" + +#~ msgid "Tells whether the language is available or not." +#~ msgstr "利用可能な言語を表示します。" + +#~ msgid "" +#~ "If it is not installed, you would need install the right operating system " +#~ "locales. More info at Wiki." +#~ msgstr "" +#~ "お使いのサーバーのsystem localesに対象の言語が存在する必要があります。詳細" +#~ "はWikiを確認してください。" + +#~ msgid "Encrypted Session" +#~ msgstr "暗号化済みセッション" + +#~ msgid "" +#~ "Tells whether the session data are encrypted in the server side or not" +#~ msgstr "セッションの暗号化状況を表示します" + +#~ msgid "Loaded Plugins" +#~ msgstr "ロード済みのプラグイン" + +#~ msgid "Log file" +#~ msgstr "ログファイル" + +#~ msgid "This extension is needed to connect to the LDAP server" +#~ msgstr "LDAPさーばーに接続するための機能拡張です" + +#~ msgid "Enable LDAP" +#~ msgstr "LDAPが有効です" + +#~ msgid "Enables authentication against an LDAP server." +#~ msgstr "LDAPサーバーを用いた認証を有効化します。" + +#~ msgid "This method will use MySQL as fallback." +#~ msgstr "有効化できない場合はMySQLを用いた認証に切り替わります。" + +#~ msgid "Enables the connection over TLS" +#~ msgstr "TLSで暗号化する" + +#~ msgid "Server Type" +#~ msgstr "Server Type" + +#~ msgid "Hostname or IP address of LDAP server." +#~ msgstr "LDAPサーバーのホスト名 or IPアドレス。" + +#~ msgid "Examples:" +#~ msgstr "例:" + +#~ msgid "User to connect to LDAP service." +#~ msgstr "LDAPサーバに接続するためのユーザー。" + +#~ msgid "LDAP connection user's password" +#~ msgstr "LDAPサーバーに接続するためのパスワード" + +#~ msgid "Sets the default users group for newly created LDAP users" +#~ msgstr "" +#~ "LDAPからインポートされたユーザーは全てデフォルトに指定したグループに追加さ" +#~ "れます" + +#~ msgid "Sets the default profile for the newly created LDAP users." +#~ msgstr "" +#~ "LDAPからインポートされたユーザーにはデフォルトに指定したプロファイルが適用" +#~ "されます。" + +#~ msgid "Import" +#~ msgstr "インポート" + +#~ msgid "Login Attribute" +#~ msgstr "Login Attribute" + +#~ msgid "Import Groups" +#~ msgstr "インポートグループ" + +#~ msgid "Group Name Attribute" +#~ msgstr "グループ名引数" + +#~ msgid "Defines the attribute for the user group name when importing." +#~ msgstr "インポート時にユーザーグループ名を引数で指定する。" + +#~ msgid "Filter" +#~ msgstr "フィルター" + +#~ msgid "Filter for importing LDAP users or groups." +#~ msgstr "LDAPユーザーのフィルタリング。" + +#~ msgid "Import users from LDAP" +#~ msgstr "LDAPからユーザーをインポートする" + +#~ msgid "Enable email notifications" +#~ msgstr "メール通知を有効化" + +#~ msgid "Enable requests by email" +#~ msgstr "メールのリクエストを有効化" + +#~ msgid "" +#~ "Allows users to request for either modifications to existing accounts or " +#~ "access to accounts which they have no rights on." +#~ msgstr "" +#~ "ユーザーからアカウントの情報の変更リクエスト・アクセス権限リクエストを受け" +#~ "取れるようになります。" + +#~ msgid "Enable Authentication" +#~ msgstr "認証を有効化" + +#~ msgid "Security" +#~ msgstr "セキュリティー" + +#~ msgid "Sender email address" +#~ msgstr "送信元アドレス" + +#~ msgid "Recipients" +#~ msgstr "受信者" + +#~ msgid "This extension is needed to connect with DokuWiki" +#~ msgstr "DokuWikiに接続するためには専用のextensionが必要です" + +#~ msgid "DokuWiki API" +#~ msgstr "DokuWiki API" + +#~ msgid "Enables DokuWiki XML-RPC API for Wiki links." +#~ msgstr "DokuWikiの XML-RPC APIを用いたリンクを有効化する。" + +#~ msgid "" +#~ "In order to get this feature working, you should enable Wiki links for " +#~ "accounts filtering" +#~ msgstr "" +#~ "この機能を有効化するにはアカウントのフィルタリング設定からWikiリンクを有効" +#~ "化する必要があります" + +#~ msgid "API URL" +#~ msgstr "API URL" + +#~ msgid "DokuWiki API URL" +#~ msgstr "DokuWiki API URL" + +#~ msgid "Example:" +#~ msgstr "Example:" + +#~ msgid "Base URL" +#~ msgstr "Base URL" + +#~ msgid "DokuWiki base URL" +#~ msgstr "DokuWiki base URL" + +#~ msgid "User for connecting to the DokuWiki API." +#~ msgstr "DokuWiki APIに接続します。" + +#~ msgid "Namespace" +#~ msgstr "Namespace" + +#~ msgid "Namespace used to search pages." +#~ msgstr "ネームスペースを用いて検索する。" + +#~ msgid "Enable Wiki links" +#~ msgstr "Wikiリンクを有効化" + +#~ msgid "" +#~ "Enables the option to add a link to search for results in an external " +#~ "Wiki." +#~ msgstr "Wikiから検索リンクを有効化するにはこのオプションを有効化します。" + +#~ msgid "Wiki search URL" +#~ msgstr "Wiki search URL" + +#~ msgid "Wiki page URL" +#~ msgstr "Wiki page URL" + +#~ msgid "Account name prefix" +#~ msgstr "Account name prefix" + +#~ msgid "Install" +#~ msgstr "Install" + +#~ msgid "Filter ON" +#~ msgstr "Filter ON" + #, php-format -msgid "Download %s" -msgstr "Download %s" - -#: app/modules/web/themes/material-blue/views/config/info.inc:124 -msgid "Tells whether the language is available or not." -msgstr "利用可能な言語を表示します。" - -#: app/modules/web/themes/material-blue/views/config/info.inc:128 -msgid "" -"If it is not installed, you would need install the right operating system " -"locales. More info at Wiki." -msgstr "" -"お使いのサーバーのsystem localesに対象の言語が存在する必要があります。詳細は" -"Wikiを確認してください。" - -#: app/modules/web/themes/material-blue/views/config/info.inc:140 -#: app/modules/web/themes/material-blue/views/config/info.inc:150 -msgid "Encrypted Session" -msgstr "暗号化済みセッション" - -#: app/modules/web/themes/material-blue/views/config/info.inc:145 -msgid "Tells whether the session data are encrypted in the server side or not" -msgstr "セッションの暗号化状況を表示します" - -#: app/modules/web/themes/material-blue/views/config/info.inc:157 -#: app/modules/web/themes/material-blue/views/config/info.inc:160 -msgid "Loaded Plugins" -msgstr "ロード済みのプラグイン" - -#: app/modules/web/themes/material-blue/views/config/info.inc:183 -#: app/modules/web/themes/material-blue/views/config/info.inc:186 -msgid "Log file" -msgstr "ログファイル" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:23 -msgid "This extension is needed to connect to the LDAP server" -msgstr "LDAPさーばーに接続するための機能拡張です" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:54 -msgid "Enable LDAP" -msgstr "LDAPが有効です" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:56 -msgid "Enables authentication against an LDAP server." -msgstr "LDAPサーバーを用いた認証を有効化します。" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:58 -msgid "This method will use MySQL as fallback." -msgstr "有効化できない場合はMySQLを用いた認証に切り替わります。" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:76 -msgid "Enables the connection over TLS" -msgstr "TLSで暗号化する" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:85 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:87 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:91 -msgid "Server Type" -msgstr "Server Type" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:108 -msgid "Hostname or IP address of LDAP server." -msgstr "LDAPサーバーのホスト名 or IPアドレス。" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:112 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:145 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:212 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:248 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:130 -msgid "Examples:" -msgstr "例:" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:135 -msgid "Bind User" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:141 -msgid "User to connect to LDAP service." -msgstr "LDAPサーバに接続するためのユーザー。" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:167 -msgid "Bind Password" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:173 -msgid "LDAP connection user's password" -msgstr "LDAPサーバーに接続するためのパスワード" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:194 -msgid "" -"This isn't the real LDAP password. You should set the real one before " -"checking or importing LDAP objects" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:202 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:228 -msgid "Search base" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:208 -msgid "LDAP base to perform the LDAP users search." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:240 -msgid "LDAP group which user must belong to for granting to log in." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:244 -msgid "This group needs to be placed in the LDAP search base." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:276 -msgid "Sets the default users group for newly created LDAP users" -msgstr "" -"LDAPからインポートされたユーザーは全てデフォルトに指定したグループに追加され" -"ます" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:302 -msgid "Sets the default profile for the newly created LDAP users." -msgstr "" -"LDAPからインポートされたユーザーにはデフォルトに指定したプロファイルが適用さ" -"れます。" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:354 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:535 -msgid "Import" -msgstr "インポート" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:360 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:371 -msgid "Login Attribute" -msgstr "Login Attribute" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:366 -msgid "Defines the attribute for the user's login when importing." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:385 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:396 -msgid "Name Attribute" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:391 -msgid "Defines the attribute for the user's name when importing." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:423 -msgid "Import Groups" -msgstr "インポートグループ" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:432 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:443 -msgid "Group Name Attribute" -msgstr "グループ名引数" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:438 -msgid "Defines the attribute for the user group name when importing." -msgstr "インポート時にユーザーグループ名を引数で指定する。" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:455 -#: app/modules/web/themes/material-blue/views/config/ldap.inc:471 -msgid "Filter" -msgstr "フィルター" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:461 -msgid "Filter for importing LDAP users or groups." -msgstr "LDAPユーザーのフィルタリング。" - -#: app/modules/web/themes/material-blue/views/config/ldap.inc:502 -msgid "Import users from LDAP" -msgstr "LDAPからユーザーをインポートする" - -#: app/modules/web/themes/material-blue/views/config/mail.inc:41 -#: app/modules/web/themes/material-blue/views/config/mail.inc:42 -msgid "Enable email notifications" -msgstr "メール通知を有効化" - -#: app/modules/web/themes/material-blue/views/config/mail.inc:58 -msgid "Enable requests by email" -msgstr "メールのリクエストを有効化" - -#: app/modules/web/themes/material-blue/views/config/mail.inc:60 -msgid "" -"Allows users to request for either modifications to existing accounts or " -"access to accounts which they have no rights on." -msgstr "" -"ユーザーからアカウントの情報の変更リクエスト・アクセス権限リクエストを受け取" -"れるようになります。" - -#: app/modules/web/themes/material-blue/views/config/mail.inc:113 -msgid "Enable Authentication" -msgstr "認証を有効化" - -#: app/modules/web/themes/material-blue/views/config/mail.inc:152 -#: app/modules/web/themes/material-blue/views/config/mail.inc:155 -msgid "Security" -msgstr "セキュリティー" - -#: app/modules/web/themes/material-blue/views/config/mail.inc:169 -#: app/modules/web/themes/material-blue/views/config/mail.inc:178 -msgid "Sender email address" -msgstr "送信元アドレス" - -#: app/modules/web/themes/material-blue/views/config/mail.inc:184 -#: app/modules/web/themes/material-blue/views/config/mail.inc:187 -msgid "Recipients" -msgstr "受信者" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:22 -msgid "This extension is needed to connect with DokuWiki" -msgstr "DokuWikiに接続するためには専用のextensionが必要です" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:35 -msgid "DokuWiki API" -msgstr "DokuWiki API" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:54 -msgid "Enable DokuWiki API" -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:56 -msgid "Enables DokuWiki XML-RPC API for Wiki links." -msgstr "DokuWikiの XML-RPC APIを用いたリンクを有効化する。" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:58 -msgid "" -"In order to get this feature working, you should enable Wiki links for " -"accounts filtering" -msgstr "" -"この機能を有効化するにはアカウントのフィルタリング設定からWikiリンクを有効化" -"する必要があります" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:68 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:92 -msgid "API URL" -msgstr "API URL" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:74 -msgid "DokuWiki API URL" -msgstr "DokuWiki API URL" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:78 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:108 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:64 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:99 -msgid "Example:" -msgstr "Example:" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:98 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:123 -msgid "Base URL" -msgstr "Base URL" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:104 -msgid "DokuWiki base URL" -msgstr "DokuWiki base URL" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:135 -msgid "User for connecting to the DokuWiki API." -msgstr "DokuWiki APIに接続します。" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:168 -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:186 -msgid "Namespace" -msgstr "Namespace" - -#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:174 -msgid "Namespace used to search pages." -msgstr "ネームスペースを用いて検索する。" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:41 -msgid "Enable Wiki links" -msgstr "Wikiリンクを有効化" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:42 -msgid "" -"Enables the option to add a link to search for results in an external Wiki." -msgstr "Wikiから検索リンクを有効化するにはこのオプションを有効化します。" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:50 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:79 -msgid "Wiki search URL" -msgstr "Wiki search URL" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:56 -msgid "URL that Wiki uses for making an entry searching." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:60 -msgid "The client's name is used as parameter." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:85 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:114 -msgid "Wiki page URL" -msgstr "Wiki page URL" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:91 -msgid "URL that Wiki uses for accessing to the entry details." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:95 -msgid "Account's name is used as parameter of Wiki search variable." -msgstr "" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:120 -#: app/modules/web/themes/material-blue/views/config/wiki.inc:135 -msgid "Account name prefix" -msgstr "Account name prefix" - -#: app/modules/web/themes/material-blue/views/config/wiki.inc:126 -msgid "Prefix to determine which accounts have a link to the Wiki." -msgstr "" - -#: app/modules/web/themes/material-blue/views/error/error-database.inc:23 -#: app/modules/web/themes/material-blue/views/error/error-database.inc:25 -#: app/modules/web/themes/material-blue/views/install/index.inc:184 -#: app/modules/web/themes/material-blue/views/install/index.inc:186 -msgid "Install" -msgstr "Install" - -#: app/modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:21 -msgid "Filter ON" -msgstr "Filter ON" - -#: app/modules/web/themes/material-blue/views/install/index.inc:17 +#~ msgid "Installation %s" +#~ msgstr "Installation %s" + +#~ msgid "sysPass Admin" +#~ msgstr "sysPass Admin" + +#~ msgid "sysPass admin user" +#~ msgstr "sysPass admin user" + +#~ msgid "sysPass administrator's login" +#~ msgstr "sysPass administrator's login" + +#~ msgid "DB Configuration" +#~ msgstr "DB設定" + +#~ msgid "DB access user" +#~ msgstr "DBアクセスユーザー" + +#~ msgid "An user with MySQL admin rights" +#~ msgstr "MySQLのadmin権限を持ったユーザー" + +#~ msgid "DB access password" +#~ msgstr "DBアクセスのためのパスワード" + +#~ msgid "sysPass database name" +#~ msgstr "sysPassに利用するデータベース名" + +#~ msgid "sysPass database server" +#~ msgstr "DBホスト名" + +#~ msgid "Server name to install sysPass database" +#~ msgstr "sysPassのDBに使用するDBサーバーのホスト名" + +#~ msgid "Hosting Mode" +#~ msgstr "Hosting Mode" + +#~ msgid "It does not create or verify the user's permissions on the DB" +#~ msgstr "" +#~ "データベースを作成できませんでした、パーミッションを確認してください" + +#~ msgid "Others" +#~ msgstr "Others" + +#~ msgid "Creator" +#~ msgstr "Creator" + +#~ msgid "Delete History" +#~ msgstr "Delete History" + +#~ msgid "Select Action" +#~ msgstr "Select Action" + +#~ msgid "Options" +#~ msgstr "Options" + +#~ msgid "Refresh Authorization" +#~ msgstr "Refresh Authorization" + +#~ msgid "Token" +#~ msgstr "Token" + +#~ msgid "Sets whether the client is visible by all users" +#~ msgstr "クライアントが全てのユーザーに表示されるかどうかを設定できます" + +#~ msgid "" +#~ "By default, clients assigned to accounts only will be visible by users " +#~ "who are granted to access to the accounts." +#~ msgstr "デフォルトでは権限が付与されたユーザーのみが閲覧できます。" + +#~ msgid "Field name" +#~ msgstr "フィールド名" + +#~ msgid "Help Text" +#~ msgstr "Help Text" + +#~ msgid "Field's help" +#~ msgstr "フィールドの概要" + +#~ msgid "Required" +#~ msgstr "Required" + +#~ msgid "Length" +#~ msgstr "Length" + +#~ msgid "Score" +#~ msgstr "Score" + +#~ msgid "Include Numbers" +#~ msgstr "数字" + +#~ msgid "Include Letters" +#~ msgstr "英字" + +#~ msgid "Include Symbols" +#~ msgstr "記号" + +#~ msgid "Include Uppercase" +#~ msgstr "大文字" + +#~ msgid "Include Lowercase" +#~ msgstr "小文字" + +#~ msgid "Administrators won't be able to display the accounts." +#~ msgstr "管理者はアカウントを表示できません。" + +#~ msgid "" +#~ "Accounts will be only visible by the user and users belonging to the main " +#~ "group." +#~ msgstr "メイングループに設定されているユーザーのみが閲覧できます。" + +#~ msgid "IP Address" +#~ msgstr "IP Address" + +#~ msgid "Timeout" +#~ msgstr "Timeout" + +#~ msgid "Select Profile" +#~ msgstr "Select Profile" + +#~ msgid "Hash" +#~ msgstr "Hash" + +#~ msgid "URL" +#~ msgstr "URL" + +#~ msgid "Use" +#~ msgstr "Use" + +#~ msgid "Full username" +#~ msgstr "Full username" + +#~ msgid "Session login" +#~ msgstr "Session login" + +#~ msgid "SSO Login " +#~ msgstr "SSO Login " + +#~ msgid "Session login with SSO" +#~ msgstr "Session login with SSO" + +#~ msgid "Email address" +#~ msgstr "Email address" + +#~ msgid "Application administrator" +#~ msgstr "Application administrator" + +#~ msgid "Accounts administrator" +#~ msgstr "Accounts administrator" + +#~ msgid "Force password change" +#~ msgstr "Force password change" + +#~ msgid "Entries" +#~ msgstr "Entries" + +#~ msgid "Last Access" +#~ msgstr "Last Access" + +#~ msgid "Master Password Date" +#~ msgstr "Master Password Date" + +#~ msgid "Used in" +#~ msgstr "Used in" + +#~ msgid "Used by" +#~ msgstr "Used by" + +#~ msgid "(*) Listed in group" +#~ msgstr "(*) Listed in group" + +#~ msgid "Management" +#~ msgstr "Management" + +#~ msgid "Create new account" +#~ msgstr "新規アカウントの作成" + +#~ msgid "View account details" +#~ msgstr "アカウントの詳細を表示" + +#~ msgid "Edit account" +#~ msgstr "アカウントの編集" + +#~ msgid "Edit Password" +#~ msgstr "パスワードの編集" + +#~ msgid "Edit account password" +#~ msgstr "アカウントのパスワードを変更" + +#~ msgid "Remove account" +#~ msgstr "アカウントの削除" + +#~ msgid "View account files" +#~ msgstr "アカウントのファイルを表示" + +#~ msgid "Share Link" +#~ msgstr "共有リンク" + +#~ msgid "Share link to account" +#~ msgstr "アカウントの共有リンク" + +#~ msgid "Create private account" +#~ msgstr "プライベートアカウントを作成" + +#~ msgid "Create private account for group" +#~ msgstr "プライベートグループアカウントを作成" + +#~ msgid "Assign permissions" +#~ msgstr "権限付与" + +#~ msgid "Users management" +#~ msgstr "ユーザー管理" + +#~ msgid "Groups management" +#~ msgstr "グループ管理" + +#~ msgid "Profiles management" +#~ msgstr "プロファイル管理" + +#~ msgid "Categories management" +#~ msgstr "カテゴリー管理" + +#~ msgid "Tags management" +#~ msgstr "タグ管理" + +#~ msgid "Customers management" +#~ msgstr "カスタマー管理" + +#~ msgid "Custom fields management" +#~ msgstr "カスタムフィールド管理" + +#~ msgid "API authorizations management" +#~ msgstr "API認証管理" + +#~ msgid "Links management" +#~ msgstr "共有リンク管理" + +#~ msgid "Accounts management" +#~ msgstr "アカウント管理" + +#~ msgid "Default Values" +#~ msgstr "Default Values" + +#~ msgid "Default Values Management" +#~ msgstr "Default Values 管理" + +#~ msgid "General Configuration" +#~ msgstr "全体設定" + +#~ msgid "Encryption options" +#~ msgstr "暗号化オプション" + +#~ msgid "Make a backup and export" +#~ msgstr "バックアップの作成とエクスポート" + +#~ msgid "Make accounts import" +#~ msgstr "アカウントをインポート" + +#~ msgid "View event log" +#~ msgstr "event logを表示" + +#~ msgid "Profile name" +#~ msgstr "プロファイル名" + +#~ msgid "Previous Password" +#~ msgstr "前のパスワード" + +#~ msgid "Sign in" +#~ msgstr "サインイン" + +#~ msgid "Forgot password?" +#~ msgstr "パスワードを忘れた場合" + +#~ msgid "Updated" +#~ msgstr "最新のバージョンです" + +#~ msgid "Error while checking for updates" +#~ msgstr "アップデート中時にエラーが発生しました" + #, php-format -msgid "Installation %s" -msgstr "Installation %s" - -#: app/modules/web/themes/material-blue/views/install/index.inc:28 -msgid "sysPass Admin" -msgstr "sysPass Admin" - -#: app/modules/web/themes/material-blue/views/install/index.inc:37 -msgid "sysPass admin user" -msgstr "sysPass admin user" - -#: app/modules/web/themes/material-blue/views/install/index.inc:45 -msgid "sysPass administrator's login" -msgstr "sysPass administrator's login" - -#: app/modules/web/themes/material-blue/views/install/index.inc:79 -msgid "DB Configuration" -msgstr "DB設定" - -#: app/modules/web/themes/material-blue/views/install/index.inc:89 -msgid "DB access user" -msgstr "DBアクセスユーザー" - -#: app/modules/web/themes/material-blue/views/install/index.inc:97 -msgid "An user with MySQL admin rights" -msgstr "MySQLのadmin権限を持ったユーザー" - -#: app/modules/web/themes/material-blue/views/install/index.inc:105 -msgid "DB access password" -msgstr "DBアクセスのためのパスワード" - -#: app/modules/web/themes/material-blue/views/install/index.inc:114 -#: app/modules/web/themes/material-blue/views/install/index.inc:122 -msgid "sysPass database name" -msgstr "sysPassに利用するデータベース名" - -#: app/modules/web/themes/material-blue/views/install/index.inc:131 -msgid "sysPass database server" -msgstr "DBホスト名" - -#: app/modules/web/themes/material-blue/views/install/index.inc:139 -msgid "Server name to install sysPass database" -msgstr "sysPassのDBに使用するDBサーバーのホスト名" - -#: app/modules/web/themes/material-blue/views/install/index.inc:160 -msgid "Hosting Mode" -msgstr "Hosting Mode" - -#: app/modules/web/themes/material-blue/views/install/index.inc:167 -msgid "It does not create or verify the user's permissions on the DB" -msgstr "データベースを作成できませんでした、パーミッションを確認してください" - -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:32 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:39 -msgid "Others" -msgstr "Others" - -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:77 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 -msgid "Creator" -msgstr "Creator" - -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:263 -#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:265 -msgid "Delete History" -msgstr "Delete History" - -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:51 -msgid "Select Action" -msgstr "Select Action" - -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:73 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:28 -#: app/modules/web/themes/material-blue/views/notification/notification.inc:111 -msgid "Options" -msgstr "Options" - -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:81 -msgid "Refresh Authorization" -msgstr "Refresh Authorization" - -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:87 -#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:89 -msgid "Token" -msgstr "Token" - -#: app/modules/web/themes/material-blue/views/itemshow/client.inc:63 -msgid "Sets whether the client is visible by all users" -msgstr "クライアントが全てのユーザーに表示されるかどうかを設定できます" - -#: app/modules/web/themes/material-blue/views/itemshow/client.inc:66 -msgid "" -"By default, clients assigned to accounts only will be visible by users who " -"are granted to access to the accounts." -msgstr "デフォルトでは権限が付与されたユーザーのみが閲覧できます。" - -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:39 -msgid "Field name" -msgstr "フィールド名" - -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:74 -msgid "Help Text" -msgstr "Help Text" - -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:81 -msgid "Field's help" -msgstr "フィールドの概要" - -#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:94 -msgid "Required" -msgstr "Required" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:21 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:29 -msgid "Length" -msgstr "Length" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:49 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 -msgid "Score" -msgstr "Score" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:64 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:71 -msgid "Regular Expression" -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:91 -msgid "Include Numbers" -msgstr "数字" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:106 -msgid "Include Letters" -msgstr "英字" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:121 -msgid "Include Symbols" -msgstr "記号" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:136 -msgid "Include Uppercase" -msgstr "大文字" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:151 -msgid "Include Lowercase" -msgstr "小文字" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:37 -msgid "Accounts will be only visible by the user." -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:39 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:59 -msgid "Administrators won't be able to display the accounts." -msgstr "管理者はアカウントを表示できません。" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:57 -msgid "" -"Accounts will be only visible by the user and users belonging to the main " -"group." -msgstr "メイングループに設定されているユーザーのみが閲覧できます。" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:21 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 -msgid "IP Address" -msgstr "IP Address" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:34 -#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:42 -msgid "Timeout" -msgstr "Timeout" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:84 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:153 -msgid "Select Profile" -msgstr "Select Profile" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:103 -msgid "" -"Assignment priority if values match with others assigned by user, group or " -"profile." -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:116 -msgid "Assignment Priority" -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:139 -msgid "Enforces the values to be set either on creating or updating an item." -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:141 -msgid "Values will be merged with the existing ones." -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:91 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:93 -msgid "Hash" -msgstr "Hash" - -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:99 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:101 -msgid "URL" -msgstr "URL" - -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:109 -#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:111 -msgid "Use" -msgstr "Use" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:55 -msgid "Full username" -msgstr "Full username" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:70 -msgid "Session login" -msgstr "Session login" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:81 -msgid "SSO Login " -msgstr "SSO Login " - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:90 -msgid "Session login with SSO" -msgstr "Session login with SSO" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:106 -msgid "Email address" -msgstr "Email address" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:223 -msgid "Application administrator" -msgstr "Application administrator" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:242 -msgid "Accounts administrator" -msgstr "Accounts administrator" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:263 -msgid "Force password change" -msgstr "Force password change" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:296 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:298 -msgid "Entries" -msgstr "Entries" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:305 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:307 -msgid "Last Access" -msgstr "Last Access" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:323 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:325 -msgid "Master Password Date" -msgstr "Master Password Date" - -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:332 -#: app/modules/web/themes/material-blue/views/itemshow/user.inc:334 -msgid "Used in" -msgstr "Used in" - -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:98 -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:100 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:592 -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:594 -msgid "Used by" -msgstr "Used by" - -#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:119 -msgid "(*) Listed in group" -msgstr "(*) Listed in group" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:35 -msgid "Management" -msgstr "Management" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:48 -msgid "Create new account" -msgstr "新規アカウントの作成" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:65 -msgid "View account details" -msgstr "アカウントの詳細を表示" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:82 -msgid "View account password" -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:98 -msgid "View History" -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:99 -msgid "View account history" -msgstr "" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:117 -msgid "Edit account" -msgstr "アカウントの編集" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:133 -msgid "Edit Password" -msgstr "パスワードの編集" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 -msgid "Edit account password" -msgstr "アカウントのパスワードを変更" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 -msgid "Remove account" -msgstr "アカウントの削除" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:168 -msgid "View account files" -msgstr "アカウントのファイルを表示" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:184 -msgid "Share Link" -msgstr "共有リンク" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:185 -msgid "Share link to account" -msgstr "アカウントの共有リンク" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:202 -msgid "Create private account" -msgstr "プライベートアカウントを作成" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:219 -msgid "Create private account for group" -msgstr "プライベートグループアカウントを作成" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:237 -msgid "Assign permissions" -msgstr "権限付与" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:277 -msgid "Users management" -msgstr "ユーザー管理" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:294 -msgid "Groups management" -msgstr "グループ管理" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:311 -msgid "Profiles management" -msgstr "プロファイル管理" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:328 -msgid "Categories management" -msgstr "カテゴリー管理" - -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:345 -msgid "Tags management" -msgstr "タグ管理" +#~ msgid "Update %s" +#~ msgstr "Update %s" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 -msgid "Customers management" -msgstr "カスタマー管理" +#~ msgid "DB Update" +#~ msgstr "DB Update" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 -msgid "Custom fields management" -msgstr "カスタムフィールド管理" +#~ msgid "Application Update" +#~ msgstr "Application Update" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:396 -msgid "API authorizations management" -msgstr "API認証管理" +#~ msgid "Security Code" +#~ msgstr "セキュリティーコード" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:413 -msgid "Links management" -msgstr "共有リンク管理" +#~ msgid "" +#~ "This code is set in sysPass config file within the tag name \"upgradekey\"" +#~ msgstr "" +#~ "セキュリティーコードはsysPasの設定ファイルの”upgradekey”に記載されています" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:430 -msgid "Accounts management" -msgstr "アカウント管理" +#~ msgid "Enter a valid user login" +#~ msgstr "有効なユーザーでログインしてください" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 -msgid "Default Values" -msgstr "Default Values" +#~ msgid "I've done a full sysPass backup" +#~ msgstr "バックアップが完了しました" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:464 -msgid "Default Values Management" -msgstr "Default Values 管理" +#~ msgid "Please, wait while the process is running" +#~ msgstr "処理中です、しばらくお待ちください" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:485 -msgid "General Configuration" -msgstr "全体設定" +#~ msgid "Start Update" +#~ msgstr "アップデート開始" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:502 -msgid "Encryption options" -msgstr "暗号化オプション" +#~ msgid "Global notification" +#~ msgstr "グローバル通知" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:519 -msgid "Make a backup and export" -msgstr "バックアップの作成とエクスポート" +#~ msgid "Only for application administrators" +#~ msgstr "アプリケーション管理者のみ" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:536 -msgid "Make accounts import" -msgstr "アカウントをインポート" +#~ msgid "Plugin name" +#~ msgstr "プラグイン名" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:557 -msgid "View event log" -msgstr "event logを表示" +#~ msgid "Plugin version" +#~ msgstr "プラグインバージョン" -#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:585 -msgid "Profile name" -msgstr "プロファイル名" +#~ msgid "Compatible Version" +#~ msgstr "互換性のあるバージョン" -#: app/modules/web/themes/material-blue/views/login/index.inc:51 -msgid "Previous Password" -msgstr "前のパスワード" +#~ msgid "sysPass compatible version" +#~ msgstr "動作が確認されているsysPassのバージョン" -#: app/modules/web/themes/material-blue/views/login/index.inc:80 -msgid "Sign in" -msgstr "サインイン" +#~ msgid "Author" +#~ msgstr "開発者" -#: app/modules/web/themes/material-blue/views/login/index.inc:89 -msgid "Forgot password?" -msgstr "パスワードを忘れた場合" +#~ msgid "Plugin author" +#~ msgstr "プラグインの開発者" -#: app/modules/web/themes/material-blue/views/main/update.inc:42 -msgid "Updated" -msgstr "最新のバージョンです" +#~ msgid "The application needs to be updated" +#~ msgstr "このアプリケーションはアップデートが必要です" -#: app/modules/web/themes/material-blue/views/main/update.inc:49 -msgid "Error while checking for updates" -msgstr "アップデート中時にエラーが発生しました" +#~ msgid "Please enter the security code to start the upgrade" +#~ msgstr "アップグレード後にセキュリティーコードを入力してください" + +#~ msgid "Request Password Change" +#~ msgstr "パスワード変更リクエスト" + +#~ msgid "User's Email" +#~ msgstr "ユーザーのメールアドレス" + +#~ msgid "Go back to login" +#~ msgstr "ログイン画面に戻る" + +#~ msgid "Change" +#~ msgstr "変更" + +#~ msgid "Sort search results by views" +#~ msgstr "並び替え" + +#~ msgid "Sorts accounts search results by the number of account's views" +#~ msgstr "アカウント順で並び替え" + +#~ msgid "Navigation bar on top" +#~ msgstr "ナビゲーションバーは画面上部にあります" + +#~ msgid "Displays a navigation bar on top of the search results." +#~ msgstr "検索結果の上にナビゲーションバーを表示します。" + +#~ msgid "Show Hidden Actions" +#~ msgstr "表示・非表示" + +#~ msgid "Always display hidden actions on the accounts search page." +#~ msgstr "アカウント検索ページで表示・非表示を切り替えることを許可します。" + +#~ msgid "In-App Notifications" +#~ msgstr "アプリ内通知" + +#~ msgid "Enables the active In-App notifications polling" +#~ msgstr "アプリ内通知を確認します" + +#~ msgid "Displays the additional filters selection on the accounts search." +#~ msgstr "詳しい検索。" + +#~ msgid "View Wiki" +#~ msgstr "View Wiki" + +#~ msgid "Page not found" +#~ msgstr "Page not found" -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:17 #, php-format -msgid "Update %s" -msgstr "Update %s" +#~ msgid "Search results of '%s'" +#~ msgstr "Search results of '%s'" -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:24 -msgid "DB Update" -msgstr "DB Update" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:26 -msgid "Application Update" -msgstr "Application Update" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:34 -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:34 -msgid "Security Code" -msgstr "セキュリティーコード" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:42 -msgid "" -"This code is set in sysPass config file within the tag name \"upgradekey\"" -msgstr "" -"セキュリティーコードはsysPasの設定ファイルの”upgradekey”に記載されています" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:52 -msgid "" -"Some orphaned items have been found. Please, modify those items or enter the " -"default IDs for them." -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:54 -msgid "If items IDs are not set, they will be created." -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:80 -msgid "Enter a valid user ID for the accounts" -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:91 -msgid "Enter a valid category ID for the accounts" -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:102 -msgid "Enter a valid client ID for the accounts" -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:114 -msgid "Enter a valid group ID for the users" -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:124 -msgid "Enter a valid profile ID for the users" -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:134 -msgid "" -"This update uses a new encryption schema, so it will be needed to reencrypt " -"the whole encrypted data." -msgstr "" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:157 -msgid "Enter a valid user login" -msgstr "有効なユーザーでログインしてください" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:172 -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:41 -msgid "I've done a full sysPass backup" -msgstr "バックアップが完了しました" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:189 -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:49 -msgid "Please, wait while the process is running" -msgstr "処理中です、しばらくお待ちください" - -#: app/modules/web/themes/material-blue/views/main/upgrade.inc:200 -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:60 -msgid "Start Update" -msgstr "アップデート開始" - -#: app/modules/web/themes/material-blue/views/notification/notification.inc:115 -msgid "Global notification" -msgstr "グローバル通知" - -#: app/modules/web/themes/material-blue/views/notification/notification.inc:124 -msgid "Only for application administrators" -msgstr "アプリケーション管理者のみ" - -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:36 -msgid "Plugin name" -msgstr "プラグイン名" - -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:48 -msgid "Plugin version" -msgstr "プラグインバージョン" - -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:53 -msgid "Compatible Version" -msgstr "互換性のあるバージョン" - -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:61 -msgid "sysPass compatible version" -msgstr "動作が確認されているsysPassのバージョン" - -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:66 -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:43 -msgid "Author" -msgstr "開発者" - -#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:73 -msgid "Plugin author" -msgstr "プラグインの開発者" - -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:15 -msgid "The application needs to be updated" -msgstr "このアプリケーションはアップデートが必要です" - -#: app/modules/web/themes/material-blue/views/upgrade/index.inc:20 -msgid "Please enter the security code to start the upgrade" -msgstr "アップグレード後にセキュリティーコードを入力してください" - -#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:8 -#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:18 -msgid "Request Password Change" -msgstr "パスワード変更リクエスト" - -#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:32 -msgid "User's Email" -msgstr "ユーザーのメールアドレス" - -#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:43 -#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:59 -msgid "Go back to login" -msgstr "ログイン画面に戻る" - -#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:65 -#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:67 -msgid "Change" -msgstr "変更" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:121 -msgid "Sort search results by views" -msgstr "並び替え" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:123 -msgid "Sorts accounts search results by the number of account's views" -msgstr "アカウント順で並び替え" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:139 -msgid "Navigation bar on top" -msgstr "ナビゲーションバーは画面上部にあります" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:141 -msgid "Displays a navigation bar on top of the search results." -msgstr "検索結果の上にナビゲーションバーを表示します。" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:157 -msgid "Show Hidden Actions" -msgstr "表示・非表示" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:159 -msgid "Always display hidden actions on the accounts search page." -msgstr "アカウント検索ページで表示・非表示を切り替えることを許可します。" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:193 -msgid "In-App Notifications" -msgstr "アプリ内通知" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:195 -msgid "Enables the active In-App notifications polling" -msgstr "アプリ内通知を確認します" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:212 -msgid "Show Filters" -msgstr "" - -#: app/modules/web/themes/material-blue/views/usersettings/general.inc:214 -msgid "Displays the additional filters selection on the accounts search." -msgstr "詳しい検索。" - -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:20 -msgid "View Wiki" -msgstr "View Wiki" - -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:26 -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:35 -msgid "Page not found" -msgstr "Page not found" - -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:28 -#, php-format -msgid "Search results of '%s'" -msgstr "Search results of '%s'" - -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:31 -#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:41 -msgid "Page" -msgstr "Page" +#~ msgid "Page" +#~ msgstr "Page" #~ msgid "\"/config\" directory does not exist." #~ msgstr "\"/config\" directory does not exist." From b5b1bc0f0c8c4772a0f7d68fd612a70c10fd6fc6 Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 20 Sep 2020 21:59:16 +0900 Subject: [PATCH 14/36] [updte] source text --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 58406 -> 110667 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 8073 +++++++++++++-------- 2 files changed, 4864 insertions(+), 3209 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 818857030654759f3f7391a5f447fd4af6be077c..eaa412ecb77d8d2e5b6ff289534b38c179bd1be8 100644 GIT binary patch literal 110667 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%0A9L|H!n0@c&O2bV(S>!D_Uw(%C@vrzrO=TP-> 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 YAV@xVyLa_hVeVx?(qmkO5NTKa2jakhs{jB1 delta 18577 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\n" -"Language-Team: language@syspass.org\n" +"Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Poedit-KeywordsList: _;__;__u;gettext;gettext_noop\n" -"X-Poedit-SourceCharset: UTF-8\n" "X-Generator: Poedit 2.4.1\n" "Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-KeywordsList: _;__;__u;gettext;gettext_noop\n" +"X-Poedit-SourceCharset: UTF-8\n" "X-Poedit-Basepath: ../../../..\n" "X-Poedit-SearchPath-0: app/modules\n" "X-Poedit-SearchPath-1: lib\n" -"X-Poedit-SearchPath-2: app/config\n" +"X-Poedit-SearchPath-2: app/resources\n" "X-Poedit-SearchPathExcluded-0: app/modules/**/plugins\n" -#: app/modules/api/Controllers/AccountController.php:74 +#: app/modules/api/Controllers/AccountController.php:70 msgid "Account displayed" msgstr "アカウントを表示" -#: app/modules/api/Controllers/AccountController.php:75 -#: app/modules/api/Controllers/AccountController.php:107 -#: app/modules/api/Controllers/AccountController.php:143 -#: app/modules/api/Controllers/AccountController.php:193 -#: app/modules/api/Controllers/AccountController.php:244 -#: app/modules/api/Controllers/AccountController.php:319 -#: app/modules/api/Controllers/CategoryController.php:67 -#: app/modules/api/Controllers/CategoryController.php:96 -#: app/modules/api/Controllers/CategoryController.php:126 -#: app/modules/api/Controllers/CategoryController.php:155 -#: app/modules/api/Controllers/ClientController.php:68 -#: app/modules/api/Controllers/ClientController.php:98 -#: app/modules/api/Controllers/ClientController.php:129 -#: app/modules/api/Controllers/ClientController.php:158 -#: app/modules/api/Controllers/TagController.php:66 -#: app/modules/api/Controllers/TagController.php:94 -#: app/modules/api/Controllers/TagController.php:123 -#: app/modules/api/Controllers/TagController.php:152 -#: app/modules/api/Controllers/UserGroupController.php:66 -#: app/modules/api/Controllers/UserGroupController.php:96 -#: app/modules/api/Controllers/UserGroupController.php:127 -#: app/modules/api/Controllers/UserGroupController.php:157 -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:249 +#: app/modules/api/Controllers/AccountController.php:71 +#: app/modules/api/Controllers/AccountController.php:103 +#: app/modules/api/Controllers/AccountController.php:139 +#: app/modules/api/Controllers/AccountController.php:189 +#: app/modules/api/Controllers/AccountController.php:240 +#: app/modules/api/Controllers/AccountController.php:315 +#: app/modules/api/Controllers/CategoryController.php:63 +#: app/modules/api/Controllers/CategoryController.php:92 +#: app/modules/api/Controllers/CategoryController.php:122 +#: app/modules/api/Controllers/CategoryController.php:151 +#: app/modules/api/Controllers/ClientController.php:64 +#: app/modules/api/Controllers/ClientController.php:94 +#: app/modules/api/Controllers/ClientController.php:125 +#: app/modules/api/Controllers/ClientController.php:154 +#: app/modules/api/Controllers/TagController.php:62 +#: app/modules/api/Controllers/TagController.php:90 +#: app/modules/api/Controllers/TagController.php:119 +#: app/modules/api/Controllers/TagController.php:148 +#: app/modules/api/Controllers/UserGroupController.php:62 +#: app/modules/api/Controllers/UserGroupController.php:92 +#: app/modules/api/Controllers/UserGroupController.php:123 +#: app/modules/api/Controllers/UserGroupController.php:153 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:244 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:113 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:104 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:106 @@ -57,168 +56,197 @@ msgstr "アカウントを表示" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:108 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:107 -#: app/modules/web/Controllers/UserGroupController.php:290 -#: app/modules/web/Controllers/UserGroupController.php:333 -#: app/modules/web/Controllers/UserProfileController.php:282 -#: app/modules/web/Controllers/UserProfileController.php:325 -#: lib/SP/Plugin/PluginManager.php:367 lib/SP/Plugin/PluginManager.php:395 -#: lib/SP/Plugin/PluginManager.php:412 +#: app/modules/web/Controllers/UserGroupController.php:281 +#: app/modules/web/Controllers/UserGroupController.php:324 +#: app/modules/web/Controllers/UserProfileController.php:272 +#: app/modules/web/Controllers/UserProfileController.php:315 +#: lib/SP/Plugin/PluginManager.php:365 lib/SP/Plugin/PluginManager.php:393 +#: lib/SP/Plugin/PluginManager.php:410 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:30 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:43 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:22 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:24 +#: app/modules/web/themes/material-blue/views/account/account.inc:72 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:54 +#: app/modules/web/themes/material-blue/views/config/info.inc:45 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:22 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:23 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:23 +#: app/modules/web/themes/material-blue/views/itemshow/tag.inc:22 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:35 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:24 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:22 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:533 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:22 msgid "Name" msgstr "Name" -#: app/modules/api/Controllers/AccountController.php:76 -#: app/modules/api/Controllers/AccountController.php:108 -#: app/modules/api/Controllers/AccountController.php:144 -#: app/modules/api/Controllers/AccountController.php:194 -#: app/modules/api/Controllers/AccountController.php:245 -#: app/modules/api/Controllers/AccountController.php:320 -#: app/modules/web/Controllers/AccountController.php:264 -#: app/modules/web/Controllers/AccountController.php:842 -#: app/modules/web/Controllers/AccountController.php:891 -#: app/modules/web/Controllers/AccountController.php:938 -#: app/modules/web/Controllers/AccountController.php:981 -#: app/modules/web/Controllers/AccountController.php:1035 -#: app/modules/web/Controllers/AccountController.php:1084 -#: app/modules/web/Controllers/AccountFileController.php:257 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:129 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:168 -#: app/modules/web/Controllers/AccountManagerController.php:159 -#: app/modules/web/Controllers/ClientController.php:239 -#: app/modules/web/Controllers/ClientController.php:275 -#: app/modules/web/Controllers/ClientController.php:317 -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:242 +#: app/modules/api/Controllers/AccountController.php:72 +#: app/modules/api/Controllers/AccountController.php:104 +#: app/modules/api/Controllers/AccountController.php:140 +#: app/modules/api/Controllers/AccountController.php:190 +#: app/modules/api/Controllers/AccountController.php:241 +#: app/modules/api/Controllers/AccountController.php:316 +#: app/modules/web/Controllers/AccountController.php:253 +#: app/modules/web/Controllers/AccountController.php:833 +#: app/modules/web/Controllers/AccountController.php:882 +#: app/modules/web/Controllers/AccountController.php:927 +#: app/modules/web/Controllers/AccountController.php:970 +#: app/modules/web/Controllers/AccountController.php:1024 +#: app/modules/web/Controllers/AccountController.php:1071 +#: app/modules/web/Controllers/AccountFileController.php:246 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:121 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:160 +#: app/modules/web/Controllers/AccountManagerController.php:151 +#: app/modules/web/Controllers/ClientController.php:229 +#: app/modules/web/Controllers/ClientController.php:265 +#: app/modules/web/Controllers/ClientController.php:305 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:237 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:114 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:105 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:109 -#: lib/SP/Services/Import/CsvImportBase.php:165 +#: lib/SP/Services/Import/CsvImportBase.php:163 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:41 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:47 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:57 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:59 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:34 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:40 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:35 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:41 +#: app/modules/web/themes/material-blue/views/account/account.inc:87 +#: app/modules/web/themes/material-blue/views/account/account.inc:89 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:32 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:34 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:36 msgid "Client" msgstr "Client" -#: app/modules/api/Controllers/AccountController.php:106 -#: app/modules/web/Controllers/AccountController.php:667 -#: app/modules/web/Controllers/AccountController.php:727 +#: app/modules/api/Controllers/AccountController.php:102 +#: app/modules/web/Controllers/AccountController.php:656 +#: app/modules/web/Controllers/AccountController.php:716 msgid "Password viewed" msgstr "パスワードを表示しました" -#: app/modules/api/Controllers/AccountController.php:142 -#: app/modules/api/Controllers/AccountController.php:148 +#: app/modules/api/Controllers/AccountController.php:138 +#: app/modules/api/Controllers/AccountController.php:144 +#: app/modules/web/Controllers/AccountController.php:925 #: app/modules/web/Controllers/AccountController.php:936 -#: app/modules/web/Controllers/AccountController.php:947 -#: app/modules/web/Controllers/UserController.php:456 -#: app/modules/web/Controllers/UserController.php:460 -#: app/modules/web/Controllers/UserPassResetController.php:220 -#: app/modules/web/Controllers/UserPassResetController.php:228 +#: app/modules/web/Controllers/UserController.php:445 +#: app/modules/web/Controllers/UserController.php:449 +#: app/modules/web/Controllers/UserPassResetController.php:214 +#: app/modules/web/Controllers/UserPassResetController.php:222 msgid "Password updated" msgstr "パスワードを更新しました" -#: app/modules/api/Controllers/AccountController.php:192 -#: app/modules/api/Controllers/AccountController.php:198 -#: app/modules/web/Controllers/AccountController.php:840 -#: app/modules/web/Controllers/AccountController.php:853 +#: app/modules/api/Controllers/AccountController.php:188 +#: app/modules/api/Controllers/AccountController.php:194 +#: app/modules/web/Controllers/AccountController.php:831 +#: app/modules/web/Controllers/AccountController.php:842 msgid "Account created" msgstr "アカウントを作成しました" -#: app/modules/api/Controllers/AccountController.php:243 -#: app/modules/api/Controllers/AccountController.php:249 -#: app/modules/web/Controllers/AccountController.php:889 -#: app/modules/web/Controllers/AccountController.php:902 +#: app/modules/api/Controllers/AccountController.php:239 +#: app/modules/api/Controllers/AccountController.php:245 +#: app/modules/web/Controllers/AccountController.php:880 +#: app/modules/web/Controllers/AccountController.php:891 msgid "Account updated" msgstr "アカウントを更新しました" -#: app/modules/api/Controllers/AccountController.php:318 -#: app/modules/api/Controllers/AccountController.php:324 -#: app/modules/web/Controllers/AccountController.php:1033 -#: app/modules/web/Controllers/AccountController.php:1040 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:127 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:132 -#: app/modules/web/Controllers/AccountManagerController.php:157 -#: app/modules/web/Controllers/AccountManagerController.php:162 +#: app/modules/api/Controllers/AccountController.php:314 +#: app/modules/api/Controllers/AccountController.php:320 +#: app/modules/web/Controllers/AccountController.php:1022 +#: app/modules/web/Controllers/AccountController.php:1027 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:119 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:124 +#: app/modules/web/Controllers/AccountManagerController.php:149 +#: app/modules/web/Controllers/AccountManagerController.php:154 msgid "Account removed" msgstr "アカウントを削除しました" -#: app/modules/api/Controllers/CategoryController.php:66 +#: app/modules/api/Controllers/CategoryController.php:62 msgid "Category displayed" msgstr "カテゴリーを表示しました" -#: app/modules/api/Controllers/CategoryController.php:95 -#: app/modules/api/Controllers/CategoryController.php:100 -#: app/modules/web/Controllers/CategoryController.php:277 -#: app/modules/web/Controllers/CategoryController.php:283 +#: app/modules/api/Controllers/CategoryController.php:91 +#: app/modules/api/Controllers/CategoryController.php:96 +#: app/modules/web/Controllers/CategoryController.php:269 +#: app/modules/web/Controllers/CategoryController.php:273 msgid "Category added" msgstr "カテゴリーを追加しました" -#: app/modules/api/Controllers/CategoryController.php:125 -#: app/modules/api/Controllers/CategoryController.php:130 -#: app/modules/web/Controllers/CategoryController.php:321 -#: app/modules/web/Controllers/CategoryController.php:327 +#: app/modules/api/Controllers/CategoryController.php:121 +#: app/modules/api/Controllers/CategoryController.php:126 +#: app/modules/web/Controllers/CategoryController.php:313 +#: app/modules/web/Controllers/CategoryController.php:317 msgid "Category updated" msgstr "カテゴリーを更新しました" -#: app/modules/api/Controllers/CategoryController.php:154 -#: app/modules/api/Controllers/CategoryController.php:159 -#: app/modules/web/Controllers/CategoryController.php:241 -#: app/modules/web/Controllers/CategoryController.php:245 +#: app/modules/api/Controllers/CategoryController.php:150 +#: app/modules/api/Controllers/CategoryController.php:155 +#: app/modules/web/Controllers/CategoryController.php:231 +#: app/modules/web/Controllers/CategoryController.php:235 msgid "Category deleted" msgstr "カテゴリーを削除しました" -#: app/modules/api/Controllers/ClientController.php:67 +#: app/modules/api/Controllers/ClientController.php:63 msgid "Client displayed" msgstr "クライアントを表示しました" -#: app/modules/api/Controllers/ClientController.php:97 -#: app/modules/api/Controllers/ClientController.php:102 -#: app/modules/web/Controllers/ClientController.php:274 -#: app/modules/web/Controllers/ClientController.php:280 -#: lib/SP/Services/Import/KeepassImport.php:79 +#: app/modules/api/Controllers/ClientController.php:93 +#: app/modules/api/Controllers/ClientController.php:98 +#: app/modules/web/Controllers/ClientController.php:264 +#: app/modules/web/Controllers/ClientController.php:268 +#: lib/SP/Services/Import/KeepassImport.php:77 msgid "Client added" msgstr "クライアントを追加しました" -#: app/modules/api/Controllers/ClientController.php:128 -#: app/modules/api/Controllers/ClientController.php:133 -#: app/modules/web/Controllers/ClientController.php:316 -#: app/modules/web/Controllers/ClientController.php:322 +#: app/modules/api/Controllers/ClientController.php:124 +#: app/modules/api/Controllers/ClientController.php:129 +#: app/modules/web/Controllers/ClientController.php:304 +#: app/modules/web/Controllers/ClientController.php:308 msgid "Client updated" msgstr "クライアントを更新しました" -#: app/modules/api/Controllers/ClientController.php:157 -#: app/modules/api/Controllers/ClientController.php:162 -#: app/modules/web/Controllers/ClientController.php:238 -#: app/modules/web/Controllers/ClientController.php:242 +#: app/modules/api/Controllers/ClientController.php:153 +#: app/modules/api/Controllers/ClientController.php:158 +#: app/modules/web/Controllers/ClientController.php:228 +#: app/modules/web/Controllers/ClientController.php:232 msgid "Client deleted" msgstr "クライアントを削除しました" -#: app/modules/api/Controllers/ConfigController.php:59 -#: app/modules/web/Controllers/ConfigBackupController.php:71 +#: app/modules/api/Controllers/ConfigController.php:57 +#: app/modules/web/Controllers/ConfigBackupController.php:68 msgid "Application and database backup completed successfully" msgstr "アプリケーションとデーベースのバックアップが完了しました" -#: app/modules/api/Controllers/ConfigController.php:60 -#: app/modules/api/Controllers/ConfigController.php:85 +#: app/modules/api/Controllers/ConfigController.php:58 +#: app/modules/api/Controllers/ConfigController.php:83 #: app/modules/api/Controllers/Help/ConfigHelp.php:43 #: app/modules/api/Controllers/Help/ConfigHelp.php:54 msgid "Path" msgstr "Path" -#: app/modules/api/Controllers/ConfigController.php:63 -#: app/modules/web/Controllers/ConfigBackupController.php:74 +#: app/modules/api/Controllers/ConfigController.php:61 +#: app/modules/web/Controllers/ConfigBackupController.php:71 msgid "Backup process finished" msgstr "バックアップが完了しました" -#: app/modules/api/Controllers/ConfigController.php:84 -#: app/modules/web/Controllers/ConfigBackupController.php:99 +#: app/modules/api/Controllers/ConfigController.php:82 +#: app/modules/web/Controllers/ConfigBackupController.php:96 msgid "sysPass XML export" msgstr "sysPass XML export" -#: app/modules/api/Controllers/ConfigController.php:93 -#: app/modules/api/Controllers/ConfigController.php:96 -#: app/modules/web/Controllers/ConfigBackupController.php:109 -#: app/modules/web/Controllers/ConfigBackupController.php:137 +#: app/modules/api/Controllers/ConfigController.php:91 +#: app/modules/api/Controllers/ConfigController.php:94 +#: app/modules/web/Controllers/ConfigBackupController.php:106 +#: app/modules/web/Controllers/ConfigBackupController.php:134 msgid "Export process finished" msgstr "エクスポートが完了しました" -#: app/modules/api/Controllers/ControllerBase.php:150 -#: lib/SP/Services/Api/ApiService.php:202 +#: app/modules/api/Controllers/ControllerBase.php:146 +#: lib/SP/Services/Api/ApiService.php:186 msgid "Unauthorized access" msgstr "Unauthorized access" @@ -243,17 +271,55 @@ msgstr "Send details in the response" #: app/modules/api/Controllers/Help/AccountHelp.php:69 #: app/modules/api/Controllers/Help/AccountHelp.php:85 #: app/modules/api/Controllers/Help/ConfigHelp.php:55 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:74 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:80 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:91 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:89 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:92 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:101 +#: app/modules/web/themes/material-blue/views/account/account.inc:166 +#: app/modules/web/themes/material-blue/views/account/account.inc:175 +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:42 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:313 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:316 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:81 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:169 +#: app/modules/web/themes/material-blue/views/config/mail.inc:119 +#: app/modules/web/themes/material-blue/views/config/mail.inc:126 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:136 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:143 +#: app/modules/web/themes/material-blue/views/install/index.inc:45 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:52 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:59 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:100 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:108 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:45 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:52 +#: app/modules/web/themes/material-blue/views/login/index.inc:35 +#: app/modules/web/themes/material-blue/views/login/index.inc:98 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:29 msgid "Password" msgstr "Password" #: app/modules/api/Controllers/Help/AccountHelp.php:70 #: app/modules/api/Controllers/Help/AccountHelp.php:91 #: app/modules/api/Controllers/Help/AccountHelp.php:114 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:97 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:114 +#: app/modules/web/themes/material-blue/views/account/account.inc:195 +#: app/modules/web/themes/material-blue/views/account/details.inc:88 +#: app/modules/web/themes/material-blue/views/account/details.inc:90 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:243 msgid "Password Expiry Date" msgstr "パスワードの有効期限" #: app/modules/api/Controllers/Help/AccountHelp.php:82 #: app/modules/api/Controllers/Help/AccountHelp.php:106 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:36 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:52 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:29 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:30 +#: app/modules/web/themes/material-blue/views/account/account.inc:82 msgid "Account name" msgstr "アカウント名" @@ -275,31 +341,46 @@ msgstr "クライアントID" #: app/modules/api/Controllers/Help/AccountHelp.php:86 #: app/modules/api/Controllers/Help/AccountHelp.php:109 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:109 +#: app/modules/web/themes/material-blue/views/account/account.inc:160 msgid "Access user" msgstr "ログインユーザー名" #: app/modules/api/Controllers/Help/AccountHelp.php:87 #: app/modules/api/Controllers/Help/AccountHelp.php:110 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:96 +#: app/modules/web/themes/material-blue/views/account/account.inc:147 msgid "Access URL or IP" msgstr "ウェブサイトのURL or IP" #: app/modules/api/Controllers/Help/AccountHelp.php:88 #: app/modules/api/Controllers/Help/AccountHelp.php:111 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:134 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:85 +#: app/modules/web/themes/material-blue/views/account/account.inc:227 msgid "Notes about the account" msgstr "アカウントに関するメモ" #: app/modules/api/Controllers/Help/AccountHelp.php:89 #: app/modules/api/Controllers/Help/AccountHelp.php:112 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:220 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:119 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:29 msgid "Private Account" msgstr "Private Account" #: app/modules/api/Controllers/Help/AccountHelp.php:90 #: app/modules/api/Controllers/Help/AccountHelp.php:113 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:238 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:48 msgid "Private Account for Group" msgstr "Private Group Account" #: app/modules/api/Controllers/Help/AccountHelp.php:92 #: app/modules/api/Controllers/Help/AccountHelp.php:115 +#: app/modules/web/themes/material-blue/views/account/account.inc:277 +#: app/modules/web/themes/material-blue/views/account/account.inc:279 +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:13 msgid "Linked Account" msgstr "関連するアカウント" @@ -321,6 +402,7 @@ msgstr "グループID" #: app/modules/api/Controllers/Help/ClientHelp.php:81 #: app/modules/api/Controllers/Help/TagHelp.php:77 #: app/modules/api/Controllers/Help/UserGroupHelp.php:81 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:27 msgid "Text to search for" msgstr "検索" @@ -330,7 +412,7 @@ msgstr "検索" #: app/modules/api/Controllers/Help/TagHelp.php:78 #: app/modules/api/Controllers/Help/UserGroupHelp.php:82 msgid "Number of results to display" -msgstr "1ページあたりの表示数" +msgstr "Number of results to display" #: app/modules/api/Controllers/Help/AccountHelp.php:130 msgid "Category Id to filter on" @@ -350,21 +432,25 @@ msgstr "Filtering operator" #: app/modules/api/Controllers/Help/CategoryHelp.php:54 #: app/modules/api/Controllers/Help/CategoryHelp.php:67 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:29 msgid "Category name" msgstr "カテゴリー名" #: app/modules/api/Controllers/Help/CategoryHelp.php:55 #: app/modules/api/Controllers/Help/CategoryHelp.php:68 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:41 msgid "Category description" msgstr "カテゴリーの説明" #: app/modules/api/Controllers/Help/ClientHelp.php:54 #: app/modules/api/Controllers/Help/ClientHelp.php:68 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:30 msgid "Client name" msgstr "クライアント名" #: app/modules/api/Controllers/Help/ClientHelp.php:55 #: app/modules/api/Controllers/Help/ClientHelp.php:69 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:43 msgid "Client description" msgstr "クライアントの説明" @@ -372,6 +458,8 @@ msgstr "クライアントの説明" #: app/modules/api/Controllers/Help/ClientHelp.php:70 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:155 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:66 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:105 msgid "Global" msgstr "グローバル" @@ -383,16 +471,19 @@ msgstr "タグID" #: app/modules/api/Controllers/Help/TagHelp.php:54 #: app/modules/api/Controllers/Help/TagHelp.php:66 +#: app/modules/web/themes/material-blue/views/itemshow/tag.inc:29 msgid "Tag name" msgstr "タグ名" #: app/modules/api/Controllers/Help/UserGroupHelp.php:54 #: app/modules/api/Controllers/Help/UserGroupHelp.php:68 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:31 msgid "Group name" msgstr "グループ名" #: app/modules/api/Controllers/Help/UserGroupHelp.php:55 #: app/modules/api/Controllers/Help/UserGroupHelp.php:69 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:44 msgid "Group description" msgstr "グループの説明" @@ -401,1001 +492,1065 @@ msgstr "グループの説明" msgid "Array with users Id" msgstr "ユーザーID" -#: app/modules/api/Controllers/TagController.php:65 +#: app/modules/api/Controllers/TagController.php:61 msgid "Tag displayed" msgstr "タグを表示しました" -#: app/modules/api/Controllers/TagController.php:93 -#: app/modules/api/Controllers/TagController.php:98 -#: app/modules/web/Controllers/TagController.php:258 +#: app/modules/api/Controllers/TagController.php:89 +#: app/modules/api/Controllers/TagController.php:94 +#: app/modules/web/Controllers/TagController.php:249 msgid "Tag added" msgstr "タグを追加しました" -#: app/modules/api/Controllers/TagController.php:122 -#: app/modules/api/Controllers/TagController.php:127 -#: app/modules/web/Controllers/TagController.php:293 +#: app/modules/api/Controllers/TagController.php:118 +#: app/modules/api/Controllers/TagController.php:123 +#: app/modules/web/Controllers/TagController.php:284 msgid "Tag updated" msgstr "タグを更新しました" -#: app/modules/api/Controllers/TagController.php:151 -#: app/modules/api/Controllers/TagController.php:156 -#: app/modules/web/Controllers/TagController.php:228 +#: app/modules/api/Controllers/TagController.php:147 +#: app/modules/api/Controllers/TagController.php:152 +#: app/modules/web/Controllers/TagController.php:219 msgid "Tag removed" msgstr "タグを削除しました" -#: app/modules/api/Controllers/UserGroupController.php:65 +#: app/modules/api/Controllers/UserGroupController.php:61 msgid "Group viewed" msgstr "グループを表示しました" -#: app/modules/api/Controllers/UserGroupController.php:95 -#: app/modules/api/Controllers/UserGroupController.php:100 -#: app/modules/web/Controllers/UserGroupController.php:289 -#: app/modules/web/Controllers/UserGroupController.php:295 +#: app/modules/api/Controllers/UserGroupController.php:91 +#: app/modules/api/Controllers/UserGroupController.php:96 +#: app/modules/web/Controllers/UserGroupController.php:280 +#: app/modules/web/Controllers/UserGroupController.php:284 msgid "Group added" msgstr "グループを追加しました" -#: app/modules/api/Controllers/UserGroupController.php:126 -#: app/modules/api/Controllers/UserGroupController.php:132 -#: app/modules/web/Controllers/UserGroupController.php:332 -#: app/modules/web/Controllers/UserGroupController.php:339 +#: app/modules/api/Controllers/UserGroupController.php:122 +#: app/modules/api/Controllers/UserGroupController.php:128 +#: app/modules/web/Controllers/UserGroupController.php:323 +#: app/modules/web/Controllers/UserGroupController.php:328 msgid "Group updated" msgstr "グループを更新しました" -#: app/modules/api/Controllers/UserGroupController.php:156 -#: app/modules/api/Controllers/UserGroupController.php:162 -#: app/modules/web/Controllers/UserGroupController.php:250 -#: app/modules/web/Controllers/UserGroupController.php:257 +#: app/modules/api/Controllers/UserGroupController.php:152 +#: app/modules/api/Controllers/UserGroupController.php:158 +#: app/modules/web/Controllers/UserGroupController.php:241 +#: app/modules/web/Controllers/UserGroupController.php:246 msgid "Group deleted" msgstr "グループを削除しました" -#: app/modules/api/Init.php:154 +#: app/modules/api/Init.php:152 msgid "Updating needed" msgstr "更新が必要です" -#: app/modules/web/Controllers/AccountController.php:169 -#: app/modules/web/Controllers/AccountController.php:236 -#: app/modules/web/Controllers/AccountController.php:567 +#: app/modules/web/Controllers/AccountController.php:158 +#: app/modules/web/Controllers/AccountController.php:225 +#: app/modules/web/Controllers/AccountController.php:556 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:60 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:61 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:164 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:165 +#: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:28 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:58 msgid "Account Details" msgstr "アカウントの詳細" -#: app/modules/web/Controllers/AccountController.php:262 +#: app/modules/web/Controllers/AccountController.php:251 msgid "Link viewed" msgstr "Link viewed" -#: app/modules/web/Controllers/AccountController.php:263 -#: app/modules/web/Controllers/AccountController.php:668 -#: app/modules/web/Controllers/AccountController.php:728 -#: app/modules/web/Controllers/AccountController.php:772 -#: app/modules/web/Controllers/AccountController.php:809 -#: app/modules/web/Controllers/AccountController.php:841 -#: app/modules/web/Controllers/AccountController.php:890 -#: app/modules/web/Controllers/AccountController.php:937 -#: app/modules/web/Controllers/AccountController.php:980 -#: app/modules/web/Controllers/AccountController.php:1034 -#: app/modules/web/Controllers/AccountController.php:1083 -#: app/modules/web/Controllers/AccountFileController.php:256 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:128 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:167 -#: app/modules/web/Controllers/AccountManagerController.php:158 +#: app/modules/web/Controllers/AccountController.php:252 +#: app/modules/web/Controllers/AccountController.php:657 +#: app/modules/web/Controllers/AccountController.php:717 +#: app/modules/web/Controllers/AccountController.php:761 +#: app/modules/web/Controllers/AccountController.php:798 +#: app/modules/web/Controllers/AccountController.php:832 +#: app/modules/web/Controllers/AccountController.php:881 +#: app/modules/web/Controllers/AccountController.php:926 +#: app/modules/web/Controllers/AccountController.php:969 +#: app/modules/web/Controllers/AccountController.php:1023 +#: app/modules/web/Controllers/AccountController.php:1070 +#: app/modules/web/Controllers/AccountFileController.php:245 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:120 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:159 +#: app/modules/web/Controllers/AccountManagerController.php:150 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:106 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:108 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:25 +#: app/modules/web/themes/material-blue/views/account/account.inc:31 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:21 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:23 msgid "Account" msgstr "アカウント" -#: app/modules/web/Controllers/AccountController.php:265 +#: app/modules/web/Controllers/AccountController.php:254 msgid "Agent" msgstr "エージェント" -#: app/modules/web/Controllers/AccountController.php:266 +#: app/modules/web/Controllers/AccountController.php:255 msgid "HTTPS" msgstr "HTTPS" -#: app/modules/web/Controllers/AccountController.php:266 +#: app/modules/web/Controllers/AccountController.php:255 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:234 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:215 msgid "ON" -msgstr "ON" +msgstr "" -#: app/modules/web/Controllers/AccountController.php:266 +#: app/modules/web/Controllers/AccountController.php:255 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 msgid "OFF" msgstr "OFF" -#: app/modules/web/Controllers/AccountController.php:267 +#: app/modules/web/Controllers/AccountController.php:256 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:104 msgid "IP" msgstr "IP" -#: app/modules/web/Controllers/AccountController.php:268 -#: app/modules/web/Controllers/AccountController.php:1086 -#: app/modules/web/Controllers/PublicLinkController.php:273 -#: lib/SP/Services/Upgrade/UpgradePublicLink.php:91 -msgid "Link" -msgstr "Link" - -#: app/modules/web/Controllers/AccountController.php:301 -#: app/modules/web/Controllers/AccountController.php:353 -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:278 +#. (itstool) path: action/text +#: app/modules/web/Controllers/AccountController.php:290 +#: app/modules/web/Controllers/AccountController.php:342 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:274 +#: app/resources/actions.xml:157 msgid "New Account" msgstr "新規アカウントの登録" -#: app/modules/web/Controllers/AccountController.php:407 +#. (itstool) path: action/text +#: app/modules/web/Controllers/AccountController.php:396 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:176 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:177 +#: app/modules/web/themes/material-blue/views/account/linkedAccounts.inc:20 +#: app/resources/actions.xml:163 msgid "Edit Account" msgstr "アカウントの編集" -#: app/modules/web/Controllers/AccountController.php:462 +#. (itstool) path: action/text +#: app/modules/web/Controllers/AccountController.php:451 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:334 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:335 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:181 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:182 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:178 +#: app/resources/actions.xml:169 app/resources/actions.xml:487 +#: app/resources/actions.xml:799 msgid "Remove Account" msgstr "アカウントを削除" -#: app/modules/web/Controllers/AccountController.php:515 +#. (itstool) path: action/text +#: app/modules/web/Controllers/AccountController.php:504 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:155 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:156 +#: app/resources/actions.xml:181 msgid "Edit Account Password" msgstr "アカウントのパスワードを変更" -#: app/modules/web/Controllers/AccountController.php:771 -#: app/modules/web/Controllers/AccountController.php:808 +#: app/modules/web/Controllers/AccountController.php:760 +#: app/modules/web/Controllers/AccountController.php:797 msgid "Password copied" msgstr "パスワードをコピーしました" +#: app/modules/web/Controllers/AccountController.php:968 #: app/modules/web/Controllers/AccountController.php:979 -#: app/modules/web/Controllers/AccountController.php:990 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:166 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:171 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:158 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:163 msgid "Account restored" msgstr "アカウントを復元しました" -#: app/modules/web/Controllers/AccountController.php:1019 -#: app/modules/web/Controllers/AccountController.php:1024 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:116 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:119 -#: app/modules/web/Controllers/AccountManagerController.php:143 -#: app/modules/web/Controllers/AccountManagerController.php:146 +#: app/modules/web/Controllers/AccountController.php:1008 +#: app/modules/web/Controllers/AccountController.php:1011 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:108 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:111 +#: app/modules/web/Controllers/AccountManagerController.php:135 +#: app/modules/web/Controllers/AccountManagerController.php:138 msgid "Accounts removed" msgstr "アカウントを削除しました" -#: app/modules/web/Controllers/AccountController.php:1065 +#: app/modules/web/Controllers/AccountController.php:1052 #: app/modules/web/Forms/NotificationForm.php:106 msgid "A description is needed" msgstr "説明を入力してください" -#: app/modules/web/Controllers/AccountController.php:1081 -#: lib/SP/Providers/Notification/NotificationHandler.php:127 +#: app/modules/web/Controllers/AccountController.php:1068 +#: lib/SP/Providers/Notification/NotificationHandler.php:124 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:46 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:47 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:49 msgid "Request" msgstr "リクエスト" -#: app/modules/web/Controllers/AccountController.php:1082 +#: app/modules/web/Controllers/AccountController.php:1069 msgid "Requester" msgstr "Requester" -#: app/modules/web/Controllers/AccountController.php:1085 +#: app/modules/web/Controllers/AccountController.php:1072 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:106 #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:105 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:130 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:108 +#: app/modules/web/themes/material-blue/views/itemshow/category.inc:34 +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:36 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:37 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:61 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:69 msgid "Description" -msgstr "概要" +msgstr "Description" -#: app/modules/web/Controllers/AccountController.php:1101 +#: app/modules/web/Controllers/AccountController.php:1088 msgid "Request done" msgstr "リクエストを送信しました" -#: app/modules/web/Controllers/AccountFavoriteController.php:60 +#: app/modules/web/Controllers/AccountFavoriteController.php:56 msgid "Favorite added" msgstr "お気に入りに追加しました" -#: app/modules/web/Controllers/AccountFavoriteController.php:80 +#: app/modules/web/Controllers/AccountFavoriteController.php:76 msgid "Favorite deleted" msgstr "お気に入りから削除しました" -#: app/modules/web/Controllers/AccountFileController.php:83 -#: app/modules/web/Controllers/AccountFileController.php:146 +#: app/modules/web/Controllers/AccountFileController.php:74 +#: app/modules/web/Controllers/AccountFileController.php:137 msgid "File does not exist" msgstr "ファイルが存在しません" -#: app/modules/web/Controllers/AccountFileController.php:96 -#: app/modules/web/Controllers/AccountFileController.php:112 +#: app/modules/web/Controllers/AccountFileController.php:87 +#: app/modules/web/Controllers/AccountFileController.php:103 msgid "File viewed" msgstr "ファイルを表示しました" -#: app/modules/web/Controllers/AccountFileController.php:97 -#: app/modules/web/Controllers/AccountFileController.php:113 -#: app/modules/web/Controllers/AccountFileController.php:152 -#: app/modules/web/Controllers/AccountFileController.php:255 -#: app/modules/web/Controllers/AccountFileController.php:390 -#: app/modules/web/Controllers/ConfigBackupController.php:166 -#: app/modules/web/Controllers/ConfigBackupController.php:212 -#: app/modules/web/Controllers/ConfigBackupController.php:258 -#: app/modules/web/Controllers/ConfigGeneralController.php:213 -#: app/modules/web/Controllers/ConfigGeneralController.php:254 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:133 +#: app/modules/web/Controllers/AccountFileController.php:88 +#: app/modules/web/Controllers/AccountFileController.php:104 +#: app/modules/web/Controllers/AccountFileController.php:143 +#: app/modules/web/Controllers/AccountFileController.php:244 +#: app/modules/web/Controllers/AccountFileController.php:379 +#: app/modules/web/Controllers/ConfigBackupController.php:163 +#: app/modules/web/Controllers/ConfigBackupController.php:209 +#: app/modules/web/Controllers/ConfigBackupController.php:255 +#: app/modules/web/Controllers/ConfigGeneralController.php:209 +#: app/modules/web/Controllers/ConfigGeneralController.php:250 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:131 +#: app/modules/web/themes/material-blue/views/config/import.inc:72 msgid "File" msgstr "ファイル" -#: app/modules/web/Controllers/AccountFileController.php:126 +#: app/modules/web/Controllers/AccountFileController.php:117 +#: app/resources/strings.js.inc:40 msgid "File not supported for preview" msgstr "このファイルはプレビューできません" -#: app/modules/web/Controllers/AccountFileController.php:151 -#: app/modules/web/Controllers/ConfigBackupController.php:165 -#: app/modules/web/Controllers/ConfigBackupController.php:211 -#: app/modules/web/Controllers/ConfigBackupController.php:257 -#: app/modules/web/Controllers/ConfigGeneralController.php:212 -#: app/modules/web/Controllers/ConfigGeneralController.php:253 +#: app/modules/web/Controllers/AccountFileController.php:142 +#: app/modules/web/Controllers/ConfigBackupController.php:162 +#: app/modules/web/Controllers/ConfigBackupController.php:208 +#: app/modules/web/Controllers/ConfigBackupController.php:254 +#: app/modules/web/Controllers/ConfigGeneralController.php:208 +#: app/modules/web/Controllers/ConfigGeneralController.php:249 +#: app/resources/strings.js.inc:97 msgid "File downloaded" msgstr "ダウンロード" -#: app/modules/web/Controllers/AccountFileController.php:199 +#: app/modules/web/Controllers/AccountFileController.php:188 msgid "INVALID QUERY" msgstr "クエリーの文法エラー" -#: app/modules/web/Controllers/AccountFileController.php:205 +#: app/modules/web/Controllers/AccountFileController.php:194 msgid "There aren't any allowed MIME types" msgstr "このMIME typeは許可されていません" -#: app/modules/web/Controllers/AccountFileController.php:220 +#: app/modules/web/Controllers/AccountFileController.php:209 msgid "Invalid file" msgstr "不正なファイルです" -#: app/modules/web/Controllers/AccountFileController.php:222 -#, php-format +#: app/modules/web/Controllers/AccountFileController.php:211 msgid "File: %s" msgstr "File: %s" -#: app/modules/web/Controllers/AccountFileController.php:234 +#: app/modules/web/Controllers/AccountFileController.php:223 msgid "File size exceeded" msgstr "ファイルが大きすぎます" -#: app/modules/web/Controllers/AccountFileController.php:236 -#, php-format +#: app/modules/web/Controllers/AccountFileController.php:225 msgid "Maximum size: %d KB" msgstr "ファイルサイズの上限: %d KB" -#: app/modules/web/Controllers/AccountFileController.php:242 +#: app/modules/web/Controllers/AccountFileController.php:231 #: lib/SP/Services/Import/FileImport.php:106 msgid "Internal error while reading the file" msgstr "ファイルの読み込みエラーです" -#: app/modules/web/Controllers/AccountFileController.php:254 -#: app/modules/web/Controllers/AccountFileController.php:263 +#: app/modules/web/Controllers/AccountFileController.php:243 +#: app/modules/web/Controllers/AccountFileController.php:252 msgid "File saved" msgstr "ファイルを保存しました" -#: app/modules/web/Controllers/AccountFileController.php:258 +#: app/modules/web/Controllers/AccountFileController.php:247 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:109 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:109 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:109 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:128 -#: app/modules/web/Controllers/ItemPresetController.php:342 -#: app/modules/web/Controllers/ItemPresetController.php:385 -#: lib/SP/Services/Auth/LoginService.php:490 -#: lib/SP/Services/Auth/LoginService.php:568 -#: lib/SP/Services/Auth/LoginService.php:614 -#: lib/SP/Services/Auth/LoginService.php:663 +#: app/modules/web/Controllers/ItemPresetController.php:331 +#: app/modules/web/Controllers/ItemPresetController.php:374 +#: lib/SP/Services/Auth/LoginService.php:482 +#: lib/SP/Services/Auth/LoginService.php:560 +#: lib/SP/Services/Auth/LoginService.php:606 +#: lib/SP/Services/Auth/LoginService.php:655 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:35 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:37 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:23 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:30 msgid "Type" msgstr "Type" -#: app/modules/web/Controllers/AccountFileController.php:259 +#: app/modules/web/Controllers/AccountFileController.php:248 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:110 msgid "Size" msgstr "Size" -#: app/modules/web/Controllers/AccountFileController.php:297 +#: app/modules/web/Controllers/AccountFileController.php:286 #: lib/SP/Services/Import/FileImport.php:95 msgid "File type not allowed" msgstr "この種類のファイルは許可されていません" -#: app/modules/web/Controllers/AccountFileController.php:299 +#: app/modules/web/Controllers/AccountFileController.php:288 #: lib/SP/Services/Import/FileImport.php:97 -#, php-format msgid "MIME type: %s" msgstr "MIME type: %s" -#: app/modules/web/Controllers/AccountFileController.php:318 -#: app/modules/web/Controllers/AccountHistoryManagerController.php:72 -#: app/modules/web/Controllers/AccountManagerController.php:87 -#: app/modules/web/Controllers/AccountManagerController.php:221 -#: app/modules/web/Controllers/AuthTokenController.php:80 -#: app/modules/web/Controllers/AuthTokenController.php:120 -#: app/modules/web/Controllers/AuthTokenController.php:187 -#: app/modules/web/Controllers/AuthTokenController.php:222 -#: app/modules/web/Controllers/AuthTokenController.php:269 -#: app/modules/web/Controllers/AuthTokenController.php:309 -#: app/modules/web/Controllers/AuthTokenController.php:363 -#: app/modules/web/Controllers/CategoryController.php:79 -#: app/modules/web/Controllers/CategoryController.php:116 -#: app/modules/web/Controllers/CategoryController.php:182 -#: app/modules/web/Controllers/CategoryController.php:217 -#: app/modules/web/Controllers/CategoryController.php:264 -#: app/modules/web/Controllers/CategoryController.php:308 -#: app/modules/web/Controllers/CategoryController.php:352 -#: app/modules/web/Controllers/ClientController.php:80 -#: app/modules/web/Controllers/ClientController.php:117 -#: app/modules/web/Controllers/ClientController.php:183 -#: app/modules/web/Controllers/ClientController.php:217 -#: app/modules/web/Controllers/ClientController.php:261 -#: app/modules/web/Controllers/ClientController.php:305 -#: app/modules/web/Controllers/ClientController.php:347 -#: app/modules/web/Controllers/CustomFieldController.php:80 -#: app/modules/web/Controllers/CustomFieldController.php:117 -#: app/modules/web/Controllers/CustomFieldController.php:181 -#: app/modules/web/Controllers/CustomFieldController.php:215 -#: app/modules/web/Controllers/CustomFieldController.php:251 -#: app/modules/web/Controllers/CustomFieldController.php:292 -#: app/modules/web/Controllers/CustomFieldController.php:333 -#: app/modules/web/Controllers/EventlogController.php:115 -#: app/modules/web/Controllers/ItemPresetController.php:81 -#: app/modules/web/Controllers/ItemPresetController.php:170 -#: app/modules/web/Controllers/ItemPresetController.php:210 -#: app/modules/web/Controllers/ItemPresetController.php:251 -#: app/modules/web/Controllers/ItemPresetController.php:285 -#: app/modules/web/Controllers/ItemPresetController.php:328 -#: app/modules/web/Controllers/ItemPresetController.php:371 -#: app/modules/web/Controllers/NotificationController.php:119 -#: app/modules/web/Controllers/NotificationController.php:184 -#: app/modules/web/Controllers/NotificationController.php:202 -#: app/modules/web/Controllers/NotificationController.php:236 -#: app/modules/web/Controllers/NotificationController.php:321 -#: app/modules/web/Controllers/NotificationController.php:352 -#: app/modules/web/Controllers/NotificationController.php:389 -#: app/modules/web/Controllers/PluginController.php:123 -#: app/modules/web/Controllers/PluginController.php:145 -#: app/modules/web/Controllers/PluginController.php:298 -#: app/modules/web/Controllers/PublicLinkController.php:84 -#: app/modules/web/Controllers/PublicLinkController.php:121 -#: app/modules/web/Controllers/PublicLinkController.php:187 -#: app/modules/web/Controllers/PublicLinkController.php:217 -#: app/modules/web/Controllers/PublicLinkController.php:251 -#: app/modules/web/Controllers/PublicLinkController.php:296 -#: app/modules/web/Controllers/PublicLinkController.php:332 -#: app/modules/web/Controllers/PublicLinkController.php:378 -#: app/modules/web/Controllers/TagController.php:77 -#: app/modules/web/Controllers/TagController.php:114 -#: app/modules/web/Controllers/TagController.php:176 -#: app/modules/web/Controllers/TagController.php:210 -#: app/modules/web/Controllers/TagController.php:248 -#: app/modules/web/Controllers/TagController.php:283 -#: app/modules/web/Controllers/TagController.php:318 -#: app/modules/web/Controllers/UserController.php:86 -#: app/modules/web/Controllers/UserController.php:123 -#: app/modules/web/Controllers/UserController.php:210 -#: app/modules/web/Controllers/UserController.php:245 -#: app/modules/web/Controllers/UserController.php:283 -#: app/modules/web/Controllers/UserController.php:331 -#: app/modules/web/Controllers/UserController.php:398 -#: app/modules/web/Controllers/UserController.php:444 -#: app/modules/web/Controllers/UserController.php:485 -#: app/modules/web/Controllers/UserGroupController.php:86 -#: app/modules/web/Controllers/UserGroupController.php:123 -#: app/modules/web/Controllers/UserGroupController.php:196 -#: app/modules/web/Controllers/UserGroupController.php:230 -#: app/modules/web/Controllers/UserGroupController.php:277 -#: app/modules/web/Controllers/UserGroupController.php:320 -#: app/modules/web/Controllers/UserGroupController.php:364 -#: app/modules/web/Controllers/UserProfileController.php:80 -#: app/modules/web/Controllers/UserProfileController.php:117 -#: app/modules/web/Controllers/UserProfileController.php:186 -#: app/modules/web/Controllers/UserProfileController.php:220 -#: app/modules/web/Controllers/UserProfileController.php:269 -#: app/modules/web/Controllers/UserProfileController.php:312 -#: app/modules/web/Controllers/UserProfileController.php:356 -#: lib/SP/Core/Acl/UnauthorizedActionException.php:47 -#: lib/SP/Util/ErrorUtil.php:161 +#: app/modules/web/Controllers/AccountFileController.php:307 +#: app/modules/web/Controllers/AccountHistoryManagerController.php:64 +#: app/modules/web/Controllers/AccountManagerController.php:79 +#: app/modules/web/Controllers/AccountManagerController.php:213 +#: app/modules/web/Controllers/AuthTokenController.php:71 +#: app/modules/web/Controllers/AuthTokenController.php:111 +#: app/modules/web/Controllers/AuthTokenController.php:178 +#: app/modules/web/Controllers/AuthTokenController.php:213 +#: app/modules/web/Controllers/AuthTokenController.php:260 +#: app/modules/web/Controllers/AuthTokenController.php:300 +#: app/modules/web/Controllers/AuthTokenController.php:354 +#: app/modules/web/Controllers/CategoryController.php:69 +#: app/modules/web/Controllers/CategoryController.php:106 +#: app/modules/web/Controllers/CategoryController.php:172 +#: app/modules/web/Controllers/CategoryController.php:207 +#: app/modules/web/Controllers/CategoryController.php:254 +#: app/modules/web/Controllers/CategoryController.php:298 +#: app/modules/web/Controllers/CategoryController.php:342 +#: app/modules/web/Controllers/ClientController.php:70 +#: app/modules/web/Controllers/ClientController.php:107 +#: app/modules/web/Controllers/ClientController.php:173 +#: app/modules/web/Controllers/ClientController.php:207 +#: app/modules/web/Controllers/ClientController.php:251 +#: app/modules/web/Controllers/ClientController.php:293 +#: app/modules/web/Controllers/ClientController.php:333 +#: app/modules/web/Controllers/CustomFieldController.php:71 +#: app/modules/web/Controllers/CustomFieldController.php:108 +#: app/modules/web/Controllers/CustomFieldController.php:172 +#: app/modules/web/Controllers/CustomFieldController.php:206 +#: app/modules/web/Controllers/CustomFieldController.php:242 +#: app/modules/web/Controllers/CustomFieldController.php:283 +#: app/modules/web/Controllers/CustomFieldController.php:324 +#: app/modules/web/Controllers/EventlogController.php:107 +#: app/modules/web/Controllers/ItemPresetController.php:70 +#: app/modules/web/Controllers/ItemPresetController.php:159 +#: app/modules/web/Controllers/ItemPresetController.php:199 +#: app/modules/web/Controllers/ItemPresetController.php:240 +#: app/modules/web/Controllers/ItemPresetController.php:274 +#: app/modules/web/Controllers/ItemPresetController.php:317 +#: app/modules/web/Controllers/ItemPresetController.php:360 +#: app/modules/web/Controllers/NotificationController.php:110 +#: app/modules/web/Controllers/NotificationController.php:175 +#: app/modules/web/Controllers/NotificationController.php:193 +#: app/modules/web/Controllers/NotificationController.php:227 +#: app/modules/web/Controllers/NotificationController.php:312 +#: app/modules/web/Controllers/NotificationController.php:343 +#: app/modules/web/Controllers/NotificationController.php:380 +#: app/modules/web/Controllers/PluginController.php:116 +#: app/modules/web/Controllers/PluginController.php:138 +#: app/modules/web/Controllers/PluginController.php:291 +#: app/modules/web/Controllers/PublicLinkController.php:75 +#: app/modules/web/Controllers/PublicLinkController.php:112 +#: app/modules/web/Controllers/PublicLinkController.php:178 +#: app/modules/web/Controllers/PublicLinkController.php:208 +#: app/modules/web/Controllers/PublicLinkController.php:242 +#: app/modules/web/Controllers/PublicLinkController.php:287 +#: app/modules/web/Controllers/PublicLinkController.php:323 +#: app/modules/web/Controllers/PublicLinkController.php:369 +#: app/modules/web/Controllers/TagController.php:68 +#: app/modules/web/Controllers/TagController.php:105 +#: app/modules/web/Controllers/TagController.php:167 +#: app/modules/web/Controllers/TagController.php:201 +#: app/modules/web/Controllers/TagController.php:239 +#: app/modules/web/Controllers/TagController.php:274 +#: app/modules/web/Controllers/TagController.php:309 +#: app/modules/web/Controllers/UserController.php:75 +#: app/modules/web/Controllers/UserController.php:112 +#: app/modules/web/Controllers/UserController.php:199 +#: app/modules/web/Controllers/UserController.php:234 +#: app/modules/web/Controllers/UserController.php:272 +#: app/modules/web/Controllers/UserController.php:320 +#: app/modules/web/Controllers/UserController.php:387 +#: app/modules/web/Controllers/UserController.php:433 +#: app/modules/web/Controllers/UserController.php:474 +#: app/modules/web/Controllers/UserGroupController.php:77 +#: app/modules/web/Controllers/UserGroupController.php:114 +#: app/modules/web/Controllers/UserGroupController.php:187 +#: app/modules/web/Controllers/UserGroupController.php:221 +#: app/modules/web/Controllers/UserGroupController.php:266 +#: app/modules/web/Controllers/UserGroupController.php:309 +#: app/modules/web/Controllers/UserGroupController.php:353 +#: app/modules/web/Controllers/UserProfileController.php:70 +#: app/modules/web/Controllers/UserProfileController.php:107 +#: app/modules/web/Controllers/UserProfileController.php:176 +#: app/modules/web/Controllers/UserProfileController.php:210 +#: app/modules/web/Controllers/UserProfileController.php:255 +#: app/modules/web/Controllers/UserProfileController.php:300 +#: app/modules/web/Controllers/UserProfileController.php:344 +#: lib/SP/Core/Acl/UnauthorizedActionException.php:46 +#: lib/SP/Util/ErrorUtil.php:160 msgid "You don't have permission to do this operation" msgstr "この操作を行う権限がありません" -#: app/modules/web/Controllers/AccountFileController.php:381 -#: app/modules/web/Controllers/AccountFileController.php:384 +#: app/modules/web/Controllers/AccountFileController.php:370 +#: app/modules/web/Controllers/AccountFileController.php:373 msgid "Files deleted" msgstr "ファイルを削除しました" -#: app/modules/web/Controllers/AccountFileController.php:389 +#: app/modules/web/Controllers/AccountFileController.php:378 msgid "File deleted" msgstr "ファイルを削除しました" -#: app/modules/web/Controllers/AccountFileController.php:395 +#: app/modules/web/Controllers/AccountFileController.php:384 msgid "File Deleted" msgstr "ファイルを削除しました" -#: app/modules/web/Controllers/AccountFileController.php:433 +#: app/modules/web/Controllers/AccountFileController.php:422 msgid "Files management disabled" msgstr "ファイル管理機能は使えません" -#: app/modules/web/Controllers/AccountFileController.php:452 +#: app/modules/web/Controllers/AccountFileController.php:441 msgid "There are no linked files for the account" msgstr "このアカウントに紐づいているファイルはありません" -#: app/modules/web/Controllers/AccountManagerController.php:199 -#: app/modules/web/Controllers/AccountManagerController.php:202 -#: lib/SP/Services/Account/AccountCryptService.php:133 -#: lib/SP/Services/Account/AccountCryptService.php:214 +#: app/modules/web/Controllers/AccountManagerController.php:191 +#: app/modules/web/Controllers/AccountManagerController.php:194 +#: lib/SP/Services/Account/AccountCryptService.php:195 msgid "Accounts updated" msgstr "アカウントを更新しました" -#: app/modules/web/Controllers/AccountManagerController.php:224 +#. (itstool) path: action/text +#: app/modules/web/Controllers/AccountManagerController.php:216 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:199 +#: app/resources/actions.xml:493 msgid "Bulk Update" msgstr "複数件更新" -#: app/modules/web/Controllers/AuthTokenController.php:123 +#: app/modules/web/Controllers/AuthTokenController.php:114 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "New Authorization" msgstr "New Authorization" -#: app/modules/web/Controllers/AuthTokenController.php:190 +#: app/modules/web/Controllers/AuthTokenController.php:181 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:191 msgid "Edit Authorization" msgstr "Edit Authorization" -#: app/modules/web/Controllers/AuthTokenController.php:233 -#: app/modules/web/Controllers/AuthTokenController.php:236 +#: app/modules/web/Controllers/AuthTokenController.php:224 +#: app/modules/web/Controllers/AuthTokenController.php:227 msgid "Authorizations deleted" msgstr "Authorizations deleted" -#: app/modules/web/Controllers/AuthTokenController.php:246 -#: app/modules/web/Controllers/AuthTokenController.php:250 +#: app/modules/web/Controllers/AuthTokenController.php:237 +#: app/modules/web/Controllers/AuthTokenController.php:241 msgid "Authorization deleted" msgstr "Authorization deleted" -#: app/modules/web/Controllers/AuthTokenController.php:247 +#: app/modules/web/Controllers/AuthTokenController.php:238 +#: app/modules/web/Controllers/AuthTokenController.php:314 #: app/modules/web/Controllers/AuthTokenController.php:323 -#: app/modules/web/Controllers/AuthTokenController.php:332 -#: app/modules/web/Controllers/AuthTokenController.php:375 -#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:72 +#: app/modules/web/Controllers/AuthTokenController.php:366 +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 msgid "Authorization" -msgstr "Authorization" +msgstr "Authorization(認可)" -#: app/modules/web/Controllers/AuthTokenController.php:284 +#: app/modules/web/Controllers/AuthTokenController.php:275 msgid "Authorization added" msgstr "Authorization added" +#: app/modules/web/Controllers/AuthTokenController.php:313 #: app/modules/web/Controllers/AuthTokenController.php:322 -#: app/modules/web/Controllers/AuthTokenController.php:331 -#: app/modules/web/Controllers/AuthTokenController.php:338 -#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:71 +#: app/modules/web/Controllers/AuthTokenController.php:329 +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 msgid "Authorization updated" msgstr "Authorization updated" -#: app/modules/web/Controllers/AuthTokenController.php:366 +#: app/modules/web/Controllers/AuthTokenController.php:357 msgid "View Authorization" msgstr "View Authorization" -#: app/modules/web/Controllers/AuthTokenController.php:374 +#: app/modules/web/Controllers/AuthTokenController.php:365 msgid "Authorization viewed" msgstr "Authorization viewed" -#: app/modules/web/Controllers/CategoryController.php:119 +#. (itstool) path: action/text +#: app/modules/web/Controllers/CategoryController.php:109 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:152 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:153 +#: app/modules/web/themes/material-blue/views/account/account.inc:129 +#: app/resources/actions.xml:307 msgid "New Category" msgstr "カテゴリの追加" -#: app/modules/web/Controllers/CategoryController.php:185 +#. (itstool) path: action/text +#: app/modules/web/Controllers/CategoryController.php:175 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:170 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:171 +#: app/resources/actions.xml:313 msgid "Edit Category" msgstr "カテゴリーの編集" -#: app/modules/web/Controllers/CategoryController.php:228 -#: app/modules/web/Controllers/CategoryController.php:231 +#: app/modules/web/Controllers/CategoryController.php:218 +#: app/modules/web/Controllers/CategoryController.php:221 msgid "Categories deleted" msgstr "カテゴリーの削除" -#: app/modules/web/Controllers/CategoryController.php:242 -#: app/modules/web/Controllers/CategoryController.php:278 -#: app/modules/web/Controllers/CategoryController.php:322 -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:256 +#: app/modules/web/Controllers/CategoryController.php:232 +#: app/modules/web/Controllers/CategoryController.php:270 +#: app/modules/web/Controllers/CategoryController.php:314 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:251 #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:115 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:106 -#: lib/SP/Services/Import/KeepassImport.php:106 +#: lib/SP/Services/Import/KeepassImport.php:104 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:72 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:74 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:45 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:51 +#: app/modules/web/themes/material-blue/views/account/account.inc:113 +#: app/modules/web/themes/material-blue/views/account/account.inc:115 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:70 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:49 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:51 msgid "Category" msgstr "Category" -#: app/modules/web/Controllers/CategoryController.php:355 +#. (itstool) path: action/text +#: app/modules/web/Controllers/CategoryController.php:345 +#: app/resources/actions.xml:301 msgid "View Category" msgstr "カテゴリーを表示" -#: app/modules/web/Controllers/ClientController.php:120 +#. (itstool) path: action/text +#: app/modules/web/Controllers/ClientController.php:110 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:156 +#: app/modules/web/themes/material-blue/views/account/account.inc:103 +#: app/resources/actions.xml:337 msgid "New Client" msgstr "クライアントを追加" -#: app/modules/web/Controllers/ClientController.php:186 +#. (itstool) path: action/text +#: app/modules/web/Controllers/ClientController.php:176 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:174 +#: app/resources/actions.xml:343 msgid "Edit Client" msgstr "クライアントを編集" -#: app/modules/web/Controllers/ClientController.php:227 -#: app/modules/web/Controllers/ClientController.php:230 +#: app/modules/web/Controllers/ClientController.php:217 +#: app/modules/web/Controllers/ClientController.php:220 msgid "Clients deleted" msgstr "クライアントを削除" -#: app/modules/web/Controllers/ClientController.php:350 +#. (itstool) path: action/text +#: app/modules/web/Controllers/ClientController.php:336 +#: app/resources/actions.xml:331 msgid "View Client" msgstr "クライアントを表示" -#: app/modules/web/Controllers/ConfigAccountController.php:75 +#: app/modules/web/Controllers/ConfigAccountController.php:73 msgid "Maximum size per file is 16MB" msgstr "ファイルの最大サイズは16MBです" -#: app/modules/web/Controllers/ConfigAccountController.php:83 +#: app/modules/web/Controllers/ConfigAccountController.php:81 msgid "Files enabled" msgstr "ファイルを有効化しました" -#: app/modules/web/Controllers/ConfigAccountController.php:88 +#: app/modules/web/Controllers/ConfigAccountController.php:86 msgid "Files disabled" msgstr "ファイルを無効化しました" -#: app/modules/web/Controllers/ConfigAccountController.php:101 +#: app/modules/web/Controllers/ConfigAccountController.php:99 msgid "Public links enabled" msgstr "共有リンクを有効化" -#: app/modules/web/Controllers/ConfigAccountController.php:106 +#: app/modules/web/Controllers/ConfigAccountController.php:104 msgid "Public links disabled" msgstr "共有リンクを無効化" -#: app/modules/web/Controllers/ConfigBackupController.php:60 -#: app/modules/web/Controllers/ConfigBackupController.php:198 -#: app/modules/web/Controllers/ConfigBackupController.php:244 -#: app/modules/web/Controllers/ConfigEncryptionController.php:132 -#: app/modules/web/Controllers/ConfigEncryptionController.php:195 -#: app/modules/web/Controllers/ConfigGeneralController.php:201 -#: app/modules/web/Controllers/ConfigGeneralController.php:247 -#: app/modules/web/Controllers/ConfigImportController.php:62 -#: app/modules/web/Controllers/ConfigLdapController.php:237 -#: app/modules/web/Controllers/Traits/ConfigTrait.php:56 +#: app/modules/web/Controllers/ConfigBackupController.php:57 +#: app/modules/web/Controllers/ConfigBackupController.php:195 +#: app/modules/web/Controllers/ConfigBackupController.php:241 +#: app/modules/web/Controllers/ConfigEncryptionController.php:125 +#: app/modules/web/Controllers/ConfigEncryptionController.php:188 +#: app/modules/web/Controllers/ConfigGeneralController.php:197 +#: app/modules/web/Controllers/ConfigGeneralController.php:243 +#: app/modules/web/Controllers/ConfigImportController.php:59 +#: app/modules/web/Controllers/ConfigLdapController.php:233 +#: app/modules/web/Controllers/Traits/ConfigTrait.php:55 #: app/modules/web/Forms/UserForm.php:131 #: app/modules/web/Forms/UserForm.php:153 #: app/modules/web/Forms/UserForm.php:171 msgid "Ey, this is a DEMO!!" msgstr "これはデモです!" -#: app/modules/web/Controllers/ConfigBackupController.php:93 -#: app/modules/web/Controllers/UserPassResetController.php:203 -#: app/modules/web/Forms/AccountForm.php:136 +#: app/modules/web/Controllers/ConfigBackupController.php:90 +#: app/modules/web/Controllers/UserPassResetController.php:197 +#: app/modules/web/Forms/AccountForm.php:133 #: app/modules/web/Forms/UserForm.php:161 msgid "Passwords do not match" msgstr "パスワードが一致しません" -#: app/modules/web/Controllers/ConfigBackupController.php:124 +#: app/modules/web/Controllers/ConfigBackupController.php:121 msgid "Verification of exported data finished" msgstr "エクスポートが完了しました" -#: app/modules/web/Controllers/ConfigBackupController.php:125 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:124 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:262 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:311 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:336 -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:167 +#: app/modules/web/Controllers/ConfigBackupController.php:122 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:122 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:260 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:309 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:334 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:166 +#: app/modules/web/themes/material-blue/views/config/info.inc:55 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:34 msgid "Version" msgstr "Version" -#: app/modules/web/Controllers/ConfigBackupController.php:126 +#: app/modules/web/Controllers/ConfigBackupController.php:123 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:128 +#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:17 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 msgid "Encrypted" msgstr "Encrypted" -#: app/modules/web/Controllers/ConfigBackupController.php:126 +#: app/modules/web/Controllers/ConfigBackupController.php:123 +#: app/modules/web/themes/material-blue/views/config/info.inc:146 msgid "Yes" msgstr "Yes" -#: app/modules/web/Controllers/ConfigBackupController.php:126 +#: app/modules/web/Controllers/ConfigBackupController.php:123 +#: app/modules/web/themes/material-blue/views/config/info.inc:146 msgid "No" -msgstr "No" +msgstr "" + +#. (itstool) path: action/text +#: app/modules/web/Controllers/ConfigBackupController.php:124 +#: app/modules/web/Controllers/ConfigManagerController.php:192 +#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 +#: lib/SP/Providers/Notification/NotificationHandler.php:125 +#: lib/SP/Providers/Notification/NotificationHandler.php:156 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:74 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:25 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 +#: app/resources/actions.xml:13 +msgid "Accounts" +msgstr "Accounts" + +#: app/modules/web/Controllers/ConfigBackupController.php:125 +#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:76 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 +msgid "Clients" +msgstr "Clients" + +#: app/modules/web/Controllers/ConfigBackupController.php:126 +#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:75 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 +msgid "Categories" +msgstr "Categories" #: app/modules/web/Controllers/ConfigBackupController.php:127 -#: app/modules/web/Controllers/ConfigManagerController.php:204 -#: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:101 -#: lib/SP/Providers/Notification/NotificationHandler.php:128 -#: lib/SP/Providers/Notification/NotificationHandler.php:159 -#: lib/SP/Services/CustomField/CustomFieldDefService.php:79 -msgid "Accounts" -msgstr "アカウント" - -#: app/modules/web/Controllers/ConfigBackupController.php:128 -#: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 -#: lib/SP/Services/CustomField/CustomFieldDefService.php:81 -msgid "Clients" -msgstr "クライアント" - -#: app/modules/web/Controllers/ConfigBackupController.php:129 -#: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 -#: lib/SP/Services/CustomField/CustomFieldDefService.php:80 -msgid "Categories" -msgstr "カテゴリー" - -#: app/modules/web/Controllers/ConfigBackupController.php:130 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:94 +#: app/modules/web/themes/material-blue/views/account/account.inc:231 +#: app/modules/web/themes/material-blue/views/account/account.inc:233 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 msgid "Tags" -msgstr "タグ" +msgstr "Tags" -#: app/modules/web/Controllers/ConfigDokuWikiController.php:67 +#: app/modules/web/Controllers/ConfigDokuWikiController.php:65 msgid "Missing DokuWiki parameters" msgstr "DokuWikiの文法ではありません" -#: app/modules/web/Controllers/ConfigDokuWikiController.php:79 +#: app/modules/web/Controllers/ConfigDokuWikiController.php:77 msgid "DokuWiki enabled" msgstr "DokuWikiを有効化" -#: app/modules/web/Controllers/ConfigDokuWikiController.php:84 +#: app/modules/web/Controllers/ConfigDokuWikiController.php:82 msgid "DokuWiki disabled" msgstr "DokuWikiを無効化" -#: app/modules/web/Controllers/ConfigEncryptionController.php:81 -#: app/modules/web/Controllers/ConfigEncryptionController.php:181 -#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:124 -#: lib/SP/Services/Auth/LoginService.php:325 -#: lib/SP/Services/Auth/LoginService.php:351 -#: lib/SP/Services/User/UpdatedMasterPassException.php:46 -#: lib/SP/Util/ErrorUtil.php:165 +#: app/modules/web/Controllers/ConfigEncryptionController.php:74 +#: app/modules/web/Controllers/ConfigEncryptionController.php:174 +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +#: lib/SP/Services/Auth/LoginService.php:317 +#: lib/SP/Services/Auth/LoginService.php:343 +#: lib/SP/Services/User/UpdatedMasterPassException.php:45 +#: lib/SP/Util/ErrorUtil.php:164 msgid "Master password updated" msgstr "マスターパスワードを更新しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:82 -#: app/modules/web/Controllers/ConfigEncryptionController.php:182 -#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:124 -#: lib/SP/Services/User/UpdatedMasterPassException.php:46 -#: lib/SP/Util/ErrorUtil.php:166 +#: app/modules/web/Controllers/ConfigEncryptionController.php:75 +#: app/modules/web/Controllers/ConfigEncryptionController.php:175 +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:118 +#: lib/SP/Services/User/UpdatedMasterPassException.php:45 +#: lib/SP/Util/ErrorUtil.php:165 msgid "Please, restart the session for update it" msgstr "変更を適用するにはログインし直してください" -#: app/modules/web/Controllers/ConfigEncryptionController.php:89 +#: app/modules/web/Controllers/ConfigEncryptionController.php:82 msgid "Master password not entered" msgstr "マスターパスワードが入力されていません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:96 +#: app/modules/web/Controllers/ConfigEncryptionController.php:89 msgid "The password update must be confirmed" msgstr "入力されたパスワードが一致しません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:103 +#: app/modules/web/Controllers/ConfigEncryptionController.php:96 msgid "Passwords are the same" msgstr "入力されたパスワードが一致しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:110 +#: app/modules/web/Controllers/ConfigEncryptionController.php:103 msgid "Master passwords do not match" msgstr "マスターパスワードが一致しません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:117 +#: app/modules/web/Controllers/ConfigEncryptionController.php:110 msgid "The current master password does not match" msgstr "現在のマスターパスワードと一致しません" -#: app/modules/web/Controllers/ConfigEncryptionController.php:124 -msgid "Maintenance mode not enabled" -msgstr "メンテナンスモードが有効化されていません" - -#: app/modules/web/Controllers/ConfigEncryptionController.php:125 -msgid "Please, enable it to avoid unwanted behavior from other sessions" -msgstr "" -"他のユーザーがログインしていると予想外の変更が行われる可能性があるのでメンテ" -"ナンスモードを有効化してください" - -#: app/modules/web/Controllers/ConfigEncryptionController.php:175 +#: app/modules/web/Controllers/ConfigEncryptionController.php:168 msgid "Error while saving the Master Password's hash" msgstr "マスターパスワードのハッシュを保存する時にエラーが発生しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:202 -#: app/modules/web/Controllers/ConfigEncryptionController.php:204 +#: app/modules/web/Controllers/ConfigEncryptionController.php:195 +#: app/modules/web/Controllers/ConfigEncryptionController.php:197 msgid "Master password hash updated" msgstr "マスターパスワードのハッシュを更新しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:211 +#: app/modules/web/Controllers/ConfigEncryptionController.php:204 msgid "Error while updating the master password hash" msgstr "マスターパスワードのハッシュを更新する時にエラーが発生しました" -#: app/modules/web/Controllers/ConfigEncryptionController.php:240 -#: app/modules/web/Controllers/ConfigEncryptionController.php:250 -#: app/modules/web/Controllers/ConfigEncryptionController.php:256 +#: app/modules/web/Controllers/ConfigEncryptionController.php:233 +#: app/modules/web/Controllers/ConfigEncryptionController.php:243 +#: app/modules/web/Controllers/ConfigEncryptionController.php:249 msgid "Temporary password generated" msgstr "仮マスターパスワードの発行" -#: app/modules/web/Controllers/ConfigEncryptionController.php:241 -#: app/modules/web/Controllers/ConfigMailController.php:164 -#: app/modules/web/Controllers/ConfigMailController.php:170 -#: lib/SP/Services/Mail/MailService.php:150 +#: app/modules/web/Controllers/ConfigEncryptionController.php:234 +#: app/modules/web/Controllers/ConfigMailController.php:161 +#: app/modules/web/Controllers/ConfigMailController.php:167 +#: lib/SP/Services/Mail/MailService.php:149 msgid "Email sent" msgstr "メールの送信" -#: app/modules/web/Controllers/ConfigEncryptionController.php:251 -#: lib/SP/Services/Mail/MailService.php:82 -#: lib/SP/Services/Mail/MailService.php:160 +#: app/modules/web/Controllers/ConfigEncryptionController.php:244 +#: lib/SP/Services/Mail/MailService.php:81 +#: lib/SP/Services/Mail/MailService.php:159 msgid "Error while sending the email" msgstr "メールの送信ん失敗しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:103 +#: app/modules/web/Controllers/ConfigGeneralController.php:99 msgid "Missing remote syslog parameters" msgstr "remote syslogの設定を確認してください" -#: app/modules/web/Controllers/ConfigGeneralController.php:111 +#: app/modules/web/Controllers/ConfigGeneralController.php:107 msgid "Remote syslog enabled" msgstr "remote syslogを有効化しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:116 +#: app/modules/web/Controllers/ConfigGeneralController.php:112 msgid "Remote syslog disabled" msgstr "remote syslogを無効にしました" -#: app/modules/web/Controllers/ConfigGeneralController.php:129 +#: app/modules/web/Controllers/ConfigGeneralController.php:125 msgid "Missing Proxy parameters " msgstr "Proxy設定を確認してください " -#: app/modules/web/Controllers/ConfigGeneralController.php:143 +#: app/modules/web/Controllers/ConfigGeneralController.php:139 msgid "Proxy enabled" msgstr "Proxyを有効化しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:148 +#: app/modules/web/Controllers/ConfigGeneralController.php:144 msgid "Proxy disabled" msgstr "Proxyを無効にしました" -#: app/modules/web/Controllers/ConfigGeneralController.php:167 +#: app/modules/web/Controllers/ConfigGeneralController.php:163 msgid "Auth Basic enabled" msgstr "Basic認証を有効化しました" -#: app/modules/web/Controllers/ConfigGeneralController.php:173 +#: app/modules/web/Controllers/ConfigGeneralController.php:169 msgid "Auth Basic disabled" msgstr "Basic認証を無効にしました" -#: app/modules/web/Controllers/ConfigImportController.php:81 +#: app/modules/web/Controllers/ConfigImportController.php:78 msgid "Accounts imported" msgstr "アカウントのインポート" -#: app/modules/web/Controllers/ConfigImportController.php:87 -#: app/modules/web/Controllers/ConfigLdapController.php:276 +#: app/modules/web/Controllers/ConfigImportController.php:84 +#: app/modules/web/Controllers/ConfigLdapController.php:275 msgid "Import finished" msgstr "インポートが完了しました" -#: app/modules/web/Controllers/ConfigImportController.php:88 -#: app/modules/web/Controllers/ConfigImportController.php:95 -#: lib/SP/Services/Backup/FileBackupService.php:128 -#: lib/SP/Services/Export/XmlExportService.php:206 +#: app/modules/web/Controllers/ConfigImportController.php:85 +#: app/modules/web/Controllers/ConfigImportController.php:92 +#: lib/SP/Services/Backup/FileBackupService.php:120 +#: lib/SP/Services/Export/XmlExportService.php:201 msgid "Please check out the event log for more details" msgstr "詳細はevent logを確認してください" -#: app/modules/web/Controllers/ConfigImportController.php:94 +#: app/modules/web/Controllers/ConfigImportController.php:91 msgid "No accounts were imported" msgstr "インポートできるアカウントがありません" -#: app/modules/web/Controllers/ConfigLdapController.php:76 -#: app/modules/web/Controllers/ConfigLdapController.php:152 -#: app/modules/web/Controllers/ConfigLdapController.php:191 +#: app/modules/web/Controllers/ConfigLdapController.php:72 +#: app/modules/web/Controllers/ConfigLdapController.php:148 +#: app/modules/web/Controllers/ConfigLdapController.php:187 msgid "Missing LDAP parameters" msgstr "LDAP設定を確認してください" -#: app/modules/web/Controllers/ConfigLdapController.php:95 +#: app/modules/web/Controllers/ConfigLdapController.php:91 msgid "LDAP enabled" msgstr "LDAPを有効化しました" -#: app/modules/web/Controllers/ConfigLdapController.php:100 +#: app/modules/web/Controllers/ConfigLdapController.php:96 msgid "LDAP disabled" msgstr "LDAPを無効にしました" -#: app/modules/web/Controllers/ConfigLdapController.php:102 -#: app/modules/web/Controllers/ConfigMailController.php:114 +#: app/modules/web/Controllers/ConfigLdapController.php:98 +#: app/modules/web/Controllers/ConfigMailController.php:111 +#: app/resources/strings.js.inc:80 msgid "No changes" msgstr "変更はありません" -#: app/modules/web/Controllers/ConfigLdapController.php:126 -#: app/modules/web/Controllers/ConfigLdapController.php:257 +#: app/modules/web/Controllers/ConfigLdapController.php:122 +#: app/modules/web/Controllers/ConfigLdapController.php:253 msgid "Wrong LDAP parameters" msgstr "LDAP設定を確認してください" -#: app/modules/web/Controllers/ConfigLdapController.php:162 -#: app/modules/web/Controllers/ConfigLdapController.php:207 +#: app/modules/web/Controllers/ConfigLdapController.php:158 +#: app/modules/web/Controllers/ConfigLdapController.php:203 msgid "Results" msgstr "Results" -#: app/modules/web/Controllers/ConfigLdapController.php:167 -#: app/modules/web/Controllers/ConfigLdapController.php:213 +#: app/modules/web/Controllers/ConfigLdapController.php:163 +#: app/modules/web/Controllers/ConfigLdapController.php:209 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:99 msgid "LDAP connection OK" msgstr "LDAP connection OK" -#: app/modules/web/Controllers/ConfigLdapController.php:168 -#: app/modules/web/Controllers/ConfigLdapController.php:214 -#, php-format +#: app/modules/web/Controllers/ConfigLdapController.php:164 +#: app/modules/web/Controllers/ConfigLdapController.php:210 msgid "Objects found: %d" msgstr "Objects found: %d" -#: app/modules/web/Controllers/ConfigLdapController.php:264 +#: app/modules/web/Controllers/ConfigLdapController.php:260 msgid "LDAP Import" msgstr "LDAP Import" -#: app/modules/web/Controllers/ConfigLdapController.php:280 +#: app/modules/web/Controllers/ConfigLdapController.php:279 msgid "There aren't any objects to synchronize" msgstr "There aren't any objects to synchronize" -#: app/modules/web/Controllers/ConfigLdapController.php:285 +#: app/modules/web/Controllers/ConfigLdapController.php:284 msgid "LDAP users import finished" msgstr "LDAPからユーザーをインポートしました" -#: app/modules/web/Controllers/ConfigLdapController.php:287 -#, php-format +#: app/modules/web/Controllers/ConfigLdapController.php:286 msgid "Imported users: %d / %d" msgstr "Imported users: %d / %d" -#: app/modules/web/Controllers/ConfigLdapController.php:288 -#, php-format +#: app/modules/web/Controllers/ConfigLdapController.php:287 msgid "Errors: %d" msgstr "Errors: %d" -#: app/modules/web/Controllers/ConfigMailController.php:77 -#: app/modules/web/Controllers/ConfigMailController.php:150 +#: app/modules/web/Controllers/ConfigMailController.php:74 +#: app/modules/web/Controllers/ConfigMailController.php:147 msgid "Missing Mail parameters" msgstr "メール設定を確認してください" -#: app/modules/web/Controllers/ConfigMailController.php:105 +#: app/modules/web/Controllers/ConfigMailController.php:102 msgid "Mail enabled" msgstr "メールを有効化しました" -#: app/modules/web/Controllers/ConfigMailController.php:112 +#: app/modules/web/Controllers/ConfigMailController.php:109 msgid "Mail disabled" msgstr "メールを無効にしました" -#: app/modules/web/Controllers/ConfigMailController.php:165 -#: lib/SP/Services/Mail/MailService.php:151 +#: app/modules/web/Controllers/ConfigMailController.php:162 +#: lib/SP/Services/Mail/MailService.php:150 msgid "Recipient" -msgstr "" +msgstr "Recipient" -#: app/modules/web/Controllers/ConfigMailController.php:171 +#: app/modules/web/Controllers/ConfigMailController.php:168 msgid "Please, check your inbox" msgstr "届いたメールを確認してください" -#: app/modules/web/Controllers/ConfigManagerController.php:174 +#: app/modules/web/Controllers/ConfigManagerController.php:162 +#: app/modules/web/themes/material-blue/views/install/index.inc:134 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:20 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:18 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:446 msgid "General" msgstr "一般" -#: app/modules/web/Controllers/ConfigManagerController.php:219 +#. (itstool) path: action/text +#: app/modules/web/Controllers/ConfigManagerController.php:207 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:17 +#: app/resources/actions.xml:37 msgid "Wiki" msgstr "Wiki" -#: app/modules/web/Controllers/ConfigManagerController.php:246 +#: app/modules/web/Controllers/ConfigManagerController.php:234 msgid "LDAP" msgstr "LDAP" -#: app/modules/web/Controllers/ConfigManagerController.php:272 +#: app/modules/web/Controllers/ConfigManagerController.php:260 +#: app/modules/web/themes/material-blue/views/config/mail.inc:12 msgid "Mail" msgstr "メール" -#: app/modules/web/Controllers/ConfigManagerController.php:313 +#: app/modules/web/Controllers/ConfigManagerController.php:301 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:462 msgid "Encryption" -msgstr "Encryption" +msgstr "暗号化" -#: app/modules/web/Controllers/ConfigManagerController.php:341 +#: app/modules/web/Controllers/ConfigManagerController.php:329 +#: app/modules/web/themes/material-blue/views/config/backup.inc:62 msgid "There aren't any backups available" msgstr "バックアップが作成されていません" -#: app/modules/web/Controllers/ConfigManagerController.php:351 +#: app/modules/web/Controllers/ConfigManagerController.php:339 +#: app/modules/web/themes/material-blue/views/config/backup.inc:133 msgid "No export file found" msgstr "エクスポートできる項目がありません" -#: app/modules/web/Controllers/ConfigManagerController.php:354 +#. (itstool) path: action/text +#: app/modules/web/Controllers/ConfigManagerController.php:342 +#: app/modules/web/themes/material-blue/views/config/backup.inc:25 +#: app/modules/web/themes/material-blue/views/config/backup.inc:79 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 +#: app/resources/actions.xml:739 msgid "Backup" msgstr "Backup" -#: app/modules/web/Controllers/ConfigManagerController.php:377 +#: app/modules/web/Controllers/ConfigManagerController.php:365 msgid "Import Accounts" msgstr "Import Accounts" -#: app/modules/web/Controllers/ConfigManagerController.php:399 +#: app/modules/web/Controllers/ConfigManagerController.php:387 msgid "Not installed" msgstr "インストールされていません" -#: app/modules/web/Controllers/ConfigManagerController.php:409 -#: app/modules/web/themes/material-blue/inc/Icons.php:62 +#: app/modules/web/Controllers/ConfigManagerController.php:397 +#: app/modules/web/themes/material-blue/inc/Icons.php:63 msgid "Information" msgstr "Information" -#: app/modules/web/Controllers/ConfigWikiController.php:65 +#: app/modules/web/Controllers/ConfigWikiController.php:63 msgid "Missing Wiki parameters" msgstr "Wikiの文法エラー" -#: app/modules/web/Controllers/ConfigWikiController.php:75 +#: app/modules/web/Controllers/ConfigWikiController.php:73 msgid "Wiki enabled" msgstr "Wikiを有効化しました" -#: app/modules/web/Controllers/ConfigWikiController.php:80 +#: app/modules/web/Controllers/ConfigWikiController.php:78 msgid "Wiki disabled" msgstr "Wikiを無効にしました" -#: app/modules/web/Controllers/CustomFieldController.php:120 +#: app/modules/web/Controllers/CustomFieldController.php:111 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "New Field" msgstr "新規項目" -#: app/modules/web/Controllers/CustomFieldController.php:184 +#: app/modules/web/Controllers/CustomFieldController.php:175 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:178 msgid "Edit Field" msgstr "項目の編集" -#: app/modules/web/Controllers/CustomFieldController.php:222 -#: app/modules/web/Controllers/CustomFieldController.php:225 +#: app/modules/web/Controllers/CustomFieldController.php:213 +#: app/modules/web/Controllers/CustomFieldController.php:216 msgid "Fields deleted" msgstr "項目の削除" -#: app/modules/web/Controllers/CustomFieldController.php:231 +#: app/modules/web/Controllers/CustomFieldController.php:222 msgid "Field deleted" msgstr "項目の削除" -#: app/modules/web/Controllers/CustomFieldController.php:263 -#: app/modules/web/Controllers/CustomFieldController.php:267 +#: app/modules/web/Controllers/CustomFieldController.php:254 +#: app/modules/web/Controllers/CustomFieldController.php:258 msgid "Field added" msgstr "カスタムフィールドを作成しました" -#: app/modules/web/Controllers/CustomFieldController.php:264 -#: app/modules/web/Controllers/CustomFieldController.php:305 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:98 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:190 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:254 +#: app/modules/web/Controllers/CustomFieldController.php:255 +#: app/modules/web/Controllers/CustomFieldController.php:296 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:188 msgid "Field" msgstr "項目" -#: app/modules/web/Controllers/CustomFieldController.php:304 -#: app/modules/web/Controllers/CustomFieldController.php:308 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:75 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:97 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:189 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:253 +#: app/modules/web/Controllers/CustomFieldController.php:295 +#: app/modules/web/Controllers/CustomFieldController.php:299 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:74 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:96 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:187 msgid "Field updated" msgstr "項目を更新" -#: app/modules/web/Controllers/CustomFieldController.php:336 +#: app/modules/web/Controllers/CustomFieldController.php:327 msgid "View Field" msgstr "項目を表示" -#: app/modules/web/Controllers/ErrorController.php:109 +#: app/modules/web/Controllers/ErrorController.php:107 msgid "Application on maintenance" msgstr "現在メンテナンス中です" -#: app/modules/web/Controllers/ErrorController.php:110 +#: app/modules/web/Controllers/ErrorController.php:108 msgid "It will be running shortly" msgstr "もうしばらくお待ちください" -#: app/modules/web/Controllers/ErrorController.php:125 +#: app/modules/web/Controllers/ErrorController.php:123 #: lib/SP/Services/Install/MySQL.php:363 msgid "Error while checking the database" msgstr "データベースのチェック時にエラーが見つかりました" -#: app/modules/web/Controllers/ErrorController.php:126 -#: app/modules/web/Controllers/ErrorController.php:142 -#: app/modules/web/Controllers/UserPassResetController.php:105 -#: lib/SP/Core/Acl/AccountPermissionException.php:46 -#: lib/SP/Core/Acl/UnauthorizedActionException.php:47 -#: lib/SP/Core/Acl/UnauthorizedPageException.php:46 -#: lib/SP/Util/ErrorUtil.php:150 lib/SP/Util/ErrorUtil.php:154 -#: lib/SP/Util/ErrorUtil.php:158 lib/SP/Util/ErrorUtil.php:162 -#: lib/SP/Util/ErrorUtil.php:170 lib/SP/Util/ErrorUtil.php:177 +#: app/modules/web/Controllers/ErrorController.php:124 +#: app/modules/web/Controllers/ErrorController.php:140 +#: app/modules/web/Controllers/UserPassResetController.php:99 +#: lib/SP/Core/Acl/AccountPermissionException.php:45 +#: lib/SP/Core/Acl/UnauthorizedActionException.php:46 +#: lib/SP/Core/Acl/UnauthorizedPageException.php:45 +#: lib/SP/Util/ErrorUtil.php:149 lib/SP/Util/ErrorUtil.php:153 +#: lib/SP/Util/ErrorUtil.php:157 lib/SP/Util/ErrorUtil.php:161 +#: lib/SP/Util/ErrorUtil.php:169 lib/SP/Util/ErrorUtil.php:176 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:13 msgid "Please contact to the administrator" msgstr "管理者に連絡して対応を依頼してください" -#: app/modules/web/Controllers/ErrorController.php:141 +#: app/modules/web/Controllers/ErrorController.php:139 #: lib/SP/Services/Install/MySQL.php:99 -#: lib/SP/Storage/Database/MySQLHandler.php:99 -#: lib/SP/Storage/Database/MySQLHandler.php:119 -#: lib/SP/Storage/Database/MySQLHandler.php:166 -#: lib/SP/Storage/Database/MySQLHandler.php:178 +#: lib/SP/Storage/Database/MySQLHandler.php:98 +#: lib/SP/Storage/Database/MySQLHandler.php:118 +#: lib/SP/Storage/Database/MySQLHandler.php:165 +#: lib/SP/Storage/Database/MySQLHandler.php:177 msgid "Unable to connect to DB" msgstr "データベースにつながりません" -#: app/modules/web/Controllers/EventlogController.php:135 -#: app/modules/web/Controllers/EventlogController.php:138 +#: app/modules/web/Controllers/EventlogController.php:127 +#: app/modules/web/Controllers/EventlogController.php:130 msgid "Event log cleared" msgstr "Event logを削除します" @@ -1406,14 +1561,36 @@ msgstr "現在" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:135 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:136 -#: app/modules/web/themes/material-blue/inc/Icons.php:48 +#: app/modules/web/themes/material-blue/inc/Icons.php:49 +#: app/modules/web/themes/material-blue/views/_partials/error.inc:14 +#: app/modules/web/themes/material-blue/views/_partials/error.inc:15 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:123 +#: app/modules/web/themes/material-blue/views/account/account-request.inc:67 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:366 +#: app/modules/web/themes/material-blue/views/config/backup.inc:174 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:330 +#: app/modules/web/themes/material-blue/views/config/general.inc:27 +#: app/modules/web/themes/material-blue/views/config/import.inc:91 +#: app/modules/web/themes/material-blue/views/config/info.inc:199 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:304 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:449 +#: app/modules/web/themes/material-blue/views/config/mail.inc:206 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:177 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:138 +#: app/modules/web/themes/material-blue/views/error/error-database.inc:13 +#: app/modules/web/themes/material-blue/views/error/error-database.inc:14 +#: app/modules/web/themes/material-blue/views/error/error-maintenance.inc:13 +#: app/modules/web/themes/material-blue/views/error/error-maintenance.inc:14 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:42 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:55 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:211 msgid "Back" msgstr "Back" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:196 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:197 msgid "Request Modification" -msgstr "" +msgstr "Request Modification" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:217 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:218 @@ -1422,30 +1599,40 @@ msgstr "この時点のアカウントを復元する" #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:237 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:238 -#: app/modules/web/themes/material-blue/inc/Icons.php:50 +#: app/modules/web/themes/material-blue/inc/Icons.php:51 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:130 msgid "Save" msgstr "Save" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:354 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:355 +#: app/resources/actions.xml:439 msgid "Update Public Link" msgstr "共有リンクを更新しました" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:377 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:378 +#: app/resources/actions.xml:433 msgid "Delete Public Link" msgstr "共有リンクを削除しました" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:397 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:398 +#: app/resources/actions.xml:421 msgid "Create Public Link" msgstr "共有リンクを作成しました" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:418 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:419 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:463 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:464 -#: app/modules/web/themes/material-blue/inc/Icons.php:33 +#: app/modules/web/themes/material-blue/inc/Icons.php:34 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:69 +#: app/resources/actions.xml:175 app/resources/actions.xml:265 msgid "View password" msgstr "パスワードを表示" @@ -1456,76 +1643,115 @@ msgstr "パスワードを表示" msgid "Copy Password to Clipboard" msgstr "パスワードをコピー" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:508 #: app/modules/web/Controllers/Helpers/Account/AccountActionsHelper.php:509 +#: app/resources/actions.xml:193 msgid "Copy Account" msgstr "アカウントを複製" -#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:75 +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:69 +#: app/resources/strings.js.inc:72 msgid "Account Password" msgstr "アカウントのパスワード" -#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:102 -#: lib/SP/Core/Acl/AccountPermissionException.php:46 -#: lib/SP/Util/ErrorUtil.php:153 +#: app/modules/web/Controllers/Helpers/Account/AccountPasswordHelper.php:96 +#: lib/SP/Core/Acl/AccountPermissionException.php:45 +#: lib/SP/Util/ErrorUtil.php:152 msgid "You don't have permission to access this account" msgstr "このアカウントにアクセスする権限がありません" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:186 -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:187 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:181 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:182 msgid "More Actions" -msgstr "" +msgstr "More Actions" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:243 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:238 msgid "Sort by Client" msgstr "クライアント名順" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:250 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:245 msgid "Sort by Name" msgstr "名前順" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:257 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:252 msgid "Sort by Category" msgstr "カテゴリー名順" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:263 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:258 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:110 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:112 #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:105 -#: app/modules/web/Controllers/LoginController.php:126 -#: app/modules/web/Controllers/UserController.php:307 -#: app/modules/web/Controllers/UserController.php:344 -#: app/modules/web/Controllers/UserController.php:411 -#: app/modules/web/Controllers/UserController.php:457 -#: app/modules/web/Controllers/UserPassResetController.php:221 -#: lib/SP/Core/Acl/Acl.php:301 lib/SP/Providers/Auth/Ldap/LdapMsAds.php:114 -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:114 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:146 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:156 -#: lib/SP/Providers/Auth/Ldap/LdapStd.php:112 -#: lib/SP/Providers/Auth/Ldap/LdapStd.php:144 -#: lib/SP/Services/Auth/LoginService.php:238 -#: lib/SP/Services/Auth/LoginService.php:256 -#: lib/SP/Services/Auth/LoginService.php:422 -#: lib/SP/Services/Auth/LoginService.php:492 -#: lib/SP/Services/Auth/LoginService.php:615 -#: lib/SP/Services/Auth/LoginService.php:664 -#: lib/SP/Services/Ldap/LdapImportService.php:231 +#: app/modules/web/Controllers/LoginController.php:123 +#: app/modules/web/Controllers/UserController.php:296 +#: app/modules/web/Controllers/UserController.php:335 +#: app/modules/web/Controllers/UserController.php:402 +#: app/modules/web/Controllers/UserController.php:446 +#: app/modules/web/Controllers/UserPassResetController.php:215 +#: lib/SP/Core/Acl/Acl.php:301 lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:113 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:145 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:155 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:111 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:143 +#: lib/SP/Services/Auth/LoginService.php:230 +#: lib/SP/Services/Auth/LoginService.php:248 +#: lib/SP/Services/Auth/LoginService.php:414 +#: lib/SP/Services/Auth/LoginService.php:484 +#: lib/SP/Services/Auth/LoginService.php:607 +#: lib/SP/Services/Auth/LoginService.php:656 +#: lib/SP/Services/Ldap/LdapImportService.php:230 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:63 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:69 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:101 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:67 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:73 +#: app/modules/web/themes/material-blue/views/account/account.inc:152 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:76 +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:25 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:67 +#: app/modules/web/themes/material-blue/views/config/info.inc:67 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:148 +#: app/modules/web/themes/material-blue/views/config/mail.inc:106 +#: app/modules/web/themes/material-blue/views/config/mail.inc:113 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:116 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:130 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:22 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:24 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:31 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:33 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:36 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:65 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:67 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:18 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:97 +#: app/modules/web/themes/material-blue/views/login/index.inc:24 +#: app/modules/web/themes/material-blue/views/login/index.inc:94 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:81 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:83 +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:20 msgid "User" msgstr "User" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:264 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:259 msgid "Sort by Username" msgstr "ユーザー名順" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:270 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:265 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:52 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:58 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:88 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:56 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:62 +#: app/modules/web/themes/material-blue/views/account/account.inc:139 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:81 msgid "URL / IP" msgstr "URL / IP" -#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:271 +#: app/modules/web/Controllers/Helpers/Account/AccountSearchHelper.php:266 msgid "Sort by URL / IP" msgstr "URL / IP順" @@ -1547,6 +1773,8 @@ msgstr "URL / IP順" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:76 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:91 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:92 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:74 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:75 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:73 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:74 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:72 @@ -1561,15 +1789,25 @@ msgid "Delete Selected" msgstr "選択項目を削除する" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:116 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:176 +#: app/modules/web/themes/material-blue/views/account/details.inc:42 +#: app/modules/web/themes/material-blue/views/account/details.inc:44 msgid "Owner" msgstr "オーナー" #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:117 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:200 +#: app/modules/web/themes/material-blue/views/account/details.inc:50 +#: app/modules/web/themes/material-blue/views/account/details.inc:52 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:79 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:81 msgid "Main Group" msgstr "Main Group" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/AccountGrid.php:149 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 +#: app/resources/actions.xml:499 app/resources/actions.xml:805 msgid "Search for Account" msgstr "アカウント検索" @@ -1580,12 +1818,19 @@ msgstr "アカウントの変更履歴" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:107 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:127 #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:100 +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:106 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:122 +#: app/modules/web/themes/material-blue/views/account/account.inc:208 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:251 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:48 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:55 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:38 msgid "Date" msgstr "日付" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:108 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:131 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:103 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:109 msgid "Status" msgstr "ステータス" @@ -1597,17 +1842,22 @@ msgstr "変更" msgid "Removed" msgstr "削除" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:160 #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 +#: app/resources/actions.xml:187 app/resources/actions.xml:811 msgid "Account Restore" msgstr "戻す" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 msgid "API Authorizations" msgstr "APIトークン" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:108 #: lib/SP/Core/Acl/Acl.php:300 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:36 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:38 msgid "Action" msgstr "Action" @@ -1625,37 +1875,51 @@ msgstr "トークンを表示する" msgid "Delete Authorization" msgstr "許可を取り消す" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:137 +#: app/resources/actions.xml:325 msgid "Search for Category" msgstr "カテゴリーを検索する" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:187 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:188 +#: app/resources/actions.xml:319 msgid "Delete Category" msgstr "カテゴリーを削除" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: app/resources/strings.js.inc:66 msgid "YES" msgstr "YES" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 +#: app/resources/strings.js.inc:67 msgid "NO" -msgstr "NO" +msgstr "" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 +#: app/resources/actions.xml:355 msgid "Search for Client" msgstr "クライアントを検索" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:190 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:191 +#: app/resources/actions.xml:349 msgid "Delete Client" msgstr "クライアントを削除" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:95 +#: app/modules/web/themes/material-blue/views/account/account.inc:35 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:346 msgid "Custom Fields" msgstr "カスタムフィールド" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:108 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:49 +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:51 msgid "Module" msgstr "モジュール" @@ -1673,14 +1937,20 @@ msgstr "フィールドを検索" msgid "Delete Field" msgstr "フィールドを削除" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:87 +#: app/modules/web/themes/material-blue/views/eventlog/index.inc:1 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:514 +#: app/resources/actions.xml:133 msgid "Event Log" msgstr "Event Log" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:99 -#: app/modules/web/Controllers/ItemPresetController.php:306 -#: app/modules/web/Controllers/ItemPresetController.php:343 -#: app/modules/web/Controllers/ItemPresetController.php:386 +#: app/modules/web/Controllers/ItemPresetController.php:295 +#: app/modules/web/Controllers/ItemPresetController.php:332 +#: app/modules/web/Controllers/ItemPresetController.php:375 +#: app/modules/web/themes/material-blue/views/account/details.inc:97 +#: app/modules/web/themes/material-blue/views/account/details.inc:99 msgid "ID" msgstr "ID" @@ -1698,10 +1968,14 @@ msgstr "Event" #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:103 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:109 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:50 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:33 msgid "Login" msgstr "ログイン名" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/EventlogGrid.php:165 +#: app/resources/actions.xml:139 msgid "Search for Events" msgstr "イベントを検索" @@ -1717,26 +1991,43 @@ msgstr "Refresh" msgid "Clear the event log out" msgstr "Event logをクリア" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:94 +#: app/modules/web/themes/material-blue/views/account/account.inc:45 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:279 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:150 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:410 +#: app/resources/actions.xml:19 msgid "Files" msgstr "ファイル" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:145 +#: app/resources/actions.xml:475 msgid "Search for File" msgstr "ファイルを検索" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:160 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:161 +#: app/modules/web/themes/material-blue/views/account/files-list.inc:51 +#: app/resources/actions.xml:205 app/resources/actions.xml:451 msgid "View File" msgstr "ファイルを表示" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:178 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:179 +#: app/modules/web/themes/material-blue/views/account/files-list.inc:42 +#: app/resources/actions.xml:217 app/resources/actions.xml:457 msgid "Download File" msgstr "ファイルをダウンロード" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/FileGrid.php:199 +#: app/modules/web/themes/material-blue/views/account/files-list.inc:34 +#: app/resources/actions.xml:223 app/resources/actions.xml:463 msgid "Delete File" msgstr "ファイルを削除" @@ -1746,49 +2037,69 @@ msgstr "プリセット" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:111 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:111 -#: app/modules/web/Controllers/UserGroupController.php:251 +#: app/modules/web/Controllers/UserGroupController.php:242 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:122 -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:115 -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:146 -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:156 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:115 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:147 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:157 -#: lib/SP/Providers/Auth/Ldap/LdapStd.php:113 -#: lib/SP/Providers/Auth/Ldap/LdapStd.php:145 -#: lib/SP/Services/Ldap/LdapImportService.php:139 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:114 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:145 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:155 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:114 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:146 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:156 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:112 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:144 +#: lib/SP/Services/Ldap/LdapImportService.php:138 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:133 +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:25 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:293 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:296 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:215 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:242 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:48 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:50 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:53 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:146 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:148 msgid "Group" msgstr "Group" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:112 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:110 -#: app/modules/web/Controllers/UserProfileController.php:244 +#: app/modules/web/Controllers/UserProfileController.php:232 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:65 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:67 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:70 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:129 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:131 msgid "Profile" msgstr "プロファイル" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 msgid "Priority" msgstr "プロパティー" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 msgid "Forced" msgstr "Forced" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:148 +#: app/resources/actions.xml:859 msgid "Search for Value" -msgstr "" +msgstr "Search for Value" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 -#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:69 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:67 msgid "Permission Preset" -msgstr "" +msgstr "権限Preset" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "New Permission Preset" msgstr "新規権限のプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:187 -#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:89 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:87 msgid "Private Account Preset" msgstr "プライベートアカウントのプリセット" @@ -1797,7 +2108,7 @@ msgid "New Private Account Preset" msgstr "新しいプライベートアカウントのプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:211 -#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:105 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:103 msgid "Session Timeout Preset" msgstr "セッションの有効期限のプリセット" @@ -1806,7 +2117,7 @@ msgid "New Session Timeout Preset" msgstr "新しいセッションの有効期限のプリセットを作成" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:235 -#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:120 +#: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:118 msgid "Account Password Preset" msgstr "アカウントのパスワードのプリセット" @@ -1814,128 +2125,172 @@ msgstr "アカウントのパスワードのプリセット" msgid "New Account Password Preset" msgstr "新しいアカウントのパスワードのプリセットを作成" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:259 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:260 -#: app/modules/web/Controllers/ItemPresetController.php:254 +#: app/modules/web/Controllers/ItemPresetController.php:243 +#: app/resources/actions.xml:877 msgid "Edit Value" -msgstr "" +msgstr "編集" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:276 #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:277 +#: app/resources/actions.xml:883 msgid "Delete Value" -msgstr "" +msgstr "削除" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:114 -#: app/modules/web/themes/material-blue/inc/Icons.php:64 +#: app/modules/web/themes/material-blue/inc/Icons.php:65 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:106 +#: app/modules/web/themes/material-blue/views/notification/index.inc:1 +#: app/resources/actions.xml:685 msgid "Notifications" msgstr "通知" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:129 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:35 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:42 msgid "Component" -msgstr "" +msgstr "Component" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:153 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:117 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:121 msgid "Read" msgstr "Read" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:154 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:113 msgid "Only Admins" msgstr "Only Admins" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:171 +#: app/resources/actions.xml:847 msgid "Search for Notification" msgstr "通知を検索" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:187 -#: app/modules/web/Controllers/NotificationController.php:205 +#: app/modules/web/Controllers/NotificationController.php:196 msgid "New Notification" msgstr "新しい通知" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:204 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:205 -#: app/modules/web/Controllers/NotificationController.php:122 +#: app/modules/web/Controllers/NotificationController.php:113 +#: app/resources/actions.xml:817 msgid "View Notification" msgstr "通知を表示" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:234 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:235 +#: app/resources/actions.xml:841 msgid "Checkout Notification" -msgstr "" +msgstr "Checkout Notification" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:252 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:253 -#: app/modules/web/Controllers/NotificationController.php:239 +#: app/modules/web/Controllers/NotificationController.php:230 +#: app/resources/actions.xml:829 msgid "Edit Notification" -msgstr "" +msgstr "Edit Notification" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:269 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:270 +#: app/resources/actions.xml:835 msgid "Delete Notification" -msgstr "" +msgstr "Delete Notification" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:90 -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:334 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:96 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:330 +#: app/modules/web/themes/material-blue/views/plugin/index.inc:1 msgid "Plugins" msgstr "Plugins" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:102 -#: lib/SP/Plugin/PluginManager.php:208 lib/SP/Plugin/PluginManager.php:264 -#: lib/SP/Plugin/PluginManager.php:422 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:108 +#: lib/SP/Plugin/PluginManager.php:206 lib/SP/Plugin/PluginManager.php:262 +#: lib/SP/Plugin/PluginManager.php:420 msgid "Plugin" msgstr "Plugin" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:119 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:125 msgid "Unavailable" msgstr "利用できません" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:135 +#. (itstool) path: action/text +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:141 +#: app/resources/actions.xml:547 msgid "Search for Plugin" msgstr "プラグインを検索" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:150 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:151 -#: app/modules/web/Controllers/PluginController.php:148 +#. (itstool) path: action/text +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:156 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:157 +#: app/modules/web/Controllers/PluginController.php:141 +#: app/resources/actions.xml:541 msgid "View Plugin" -msgstr "" +msgstr "View Plugin" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:167 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:168 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:173 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:174 msgid "Enable" msgstr "Enable" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:186 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:187 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:192 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:193 msgid "Disable" msgstr "Disable" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:205 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:206 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:211 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:212 msgid "Reset Data" -msgstr "" +msgstr "Reset Data" -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:225 -#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:226 +#. (itstool) path: action/text +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:231 +#: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:232 +#: app/resources/actions.xml:571 msgid "Delete Plugin" msgstr "プラグインを削除" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:96 +#: app/modules/web/themes/material-blue/views/account/account.inc:55 msgid "Links" msgstr "Links" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:110 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:49 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:51 msgid "Creation Date" msgstr "作成日" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:111 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:195 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:57 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:59 msgid "Expiry Date " msgstr "有効期限 " #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:113 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:36 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:39 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:43 msgid "Notify" msgstr "通知" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:114 +#: app/modules/web/themes/material-blue/views/account/details.inc:14 +#: app/modules/web/themes/material-blue/views/account/details.inc:16 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:197 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:73 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:75 msgid "Visits" msgstr "閲覧者" @@ -1950,7 +2305,7 @@ msgstr "共有リンクを発行" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:184 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:185 -#: app/modules/web/Controllers/PublicLinkController.php:381 +#: app/modules/web/Controllers/PublicLinkController.php:372 msgid "View Link" msgstr "共有リンクを閲覧" @@ -1964,69 +2319,99 @@ msgstr "共有リンクを再発行" msgid "Delete Link" msgstr "共有リンクを削除" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:135 +#: app/resources/actions.xml:529 msgid "Search for Tag" msgstr "タグを検索" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:150 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:151 -#: app/modules/web/Controllers/TagController.php:117 +#: app/modules/web/Controllers/TagController.php:108 +#: app/modules/web/themes/material-blue/views/account/account.inc:247 +#: app/resources/actions.xml:505 msgid "New Tag" msgstr "新規タグを作成" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:168 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:169 -#: app/modules/web/Controllers/TagController.php:179 +#: app/modules/web/Controllers/TagController.php:170 +#: app/resources/actions.xml:517 msgid "Edit Tag" msgstr "タグを編集" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:185 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:186 +#: app/resources/actions.xml:523 msgid "Delete Tag" msgstr "タグを削除" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:88 msgid "Tracks" -msgstr "" +msgstr "Tracks" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 msgid "Date Unlocked" -msgstr "" +msgstr "Date Unlocked" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 msgid "Source" -msgstr "" +msgstr "Source" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:162 +#: app/resources/actions.xml:895 msgid "Search for track" -msgstr "" +msgstr "Search for track" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:96 -#: lib/SP/Services/CustomField/CustomFieldDefService.php:82 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:77 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:16 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:113 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:12 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:50 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:52 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:56 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:250 msgid "Users" msgstr "Users" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:148 +#: app/resources/actions.xml:607 msgid "Search for User" msgstr "ユーザーを検索" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:163 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:164 -#: app/modules/web/Controllers/UserController.php:126 +#: app/modules/web/Controllers/UserController.php:115 +#: app/resources/actions.xml:583 msgid "New User" msgstr "新規ユーザーを作成" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:181 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:182 -#: app/modules/web/Controllers/UserController.php:213 +#: app/modules/web/Controllers/UserController.php:202 +#: app/resources/actions.xml:589 msgid "Edit User" msgstr "ユーザーを編集" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:198 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:199 +#: app/resources/actions.xml:595 msgid "Delete User" msgstr "ユーザーを削除" +#: app/modules/web/themes/material-blue/views/config/ldap.inc:469 +msgid "Import users from LDAP" +msgstr "LDAPからユーザーをインポートする" + #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:215 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:216 msgid "View User Details" @@ -2034,52 +2419,74 @@ msgstr "ユーザー情報を表示" #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:232 #: app/modules/web/Controllers/Helpers/Grid/UserGrid.php:233 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:63 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:116 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:122 msgid "Change User's Password" msgstr "ユーザーのログインパスワードを変更" #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:95 -#: lib/SP/Services/CustomField/CustomFieldDefService.php:83 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:78 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:88 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:162 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:53 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:266 msgid "Groups" msgstr "Groups" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:138 +#: app/resources/actions.xml:637 msgid "Search for Group" msgstr "グループを検索" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:153 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:154 -#: app/modules/web/Controllers/UserGroupController.php:126 +#: app/modules/web/Controllers/UserGroupController.php:117 +#: app/resources/actions.xml:619 msgid "New Group" msgstr "新規グループを作成" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:171 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:172 -#: app/modules/web/Controllers/UserGroupController.php:367 +#: app/modules/web/Controllers/UserGroupController.php:356 +#: app/resources/actions.xml:613 msgid "View Group" msgstr "グループの詳細を表示" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:188 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:189 -#: app/modules/web/Controllers/UserGroupController.php:199 +#: app/modules/web/Controllers/UserGroupController.php:190 +#: app/resources/actions.xml:625 msgid "Edit Group" msgstr "グループを編集" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:205 #: app/modules/web/Controllers/Helpers/Grid/UserGroupGrid.php:206 +#: app/resources/actions.xml:631 msgid "Delete Group" msgstr "グループを削除" #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:95 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:282 msgid "Profiles" msgstr "プロファイル" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:136 +#: app/resources/actions.xml:667 msgid "Search for Profile" msgstr "プロファイルを検索" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:151 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:152 -#: app/modules/web/Controllers/UserProfileController.php:120 +#: app/modules/web/Controllers/UserProfileController.php:110 +#: app/resources/actions.xml:649 msgid "New Profile" msgstr "新規プロファイルを作成" @@ -2088,370 +2495,397 @@ msgstr "新規プロファイルを作成" msgid "View Profile Details" msgstr "プロファイルの詳細を表示" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:186 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:187 -#: app/modules/web/Controllers/UserProfileController.php:189 +#: app/modules/web/Controllers/UserProfileController.php:179 +#: app/resources/actions.xml:655 msgid "Edit Profile" msgstr "プロファイルを編集" +#. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:203 #: app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php:204 +#: app/resources/actions.xml:661 msgid "Delete Profile" msgstr "プロファイルを削除" -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:265 -#: app/modules/web/themes/material-blue/inc/Icons.php:57 +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:261 +#: app/modules/web/themes/material-blue/inc/Icons.php:58 msgid "Search" msgstr "検索" -#: app/modules/web/Controllers/Helpers/LayoutHelper.php:348 -#: app/modules/web/themes/material-blue/inc/Icons.php:60 +#. (itstool) path: action/text +#: app/modules/web/Controllers/Helpers/LayoutHelper.php:344 +#: app/modules/web/themes/material-blue/inc/Icons.php:61 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:24 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 +#: app/resources/actions.xml:691 msgid "Configuration" -msgstr "設定" +msgstr "Configuration" -#: app/modules/web/Controllers/InstallController.php:60 +#: app/modules/web/Controllers/InstallController.php:59 msgid "Module unavailable" msgstr "利用できるモジュールがありません" -#: app/modules/web/Controllers/InstallController.php:61 +#: app/modules/web/Controllers/InstallController.php:60 msgid "Without this module the application could not run correctly" msgstr "sysPassの動作に必要なモジュールが不足しています" -#: app/modules/web/Controllers/InstallController.php:90 +#: app/modules/web/Controllers/InstallController.php:89 msgid "Installation finished" msgstr "インストールが完了しました" -#: app/modules/web/Controllers/ItemPresetController.php:84 +#. (itstool) path: action/text +#: app/modules/web/Controllers/ItemPresetController.php:73 +#: app/resources/actions.xml:865 msgid "Display Value" -msgstr "" +msgstr "Display Value" -#: app/modules/web/Controllers/ItemPresetController.php:220 +#. (itstool) path: action/text +#: app/modules/web/Controllers/ItemPresetController.php:209 +#: app/resources/actions.xml:871 msgid "New Value" -msgstr "" +msgstr "New Value" + +#: app/modules/web/Controllers/ItemPresetController.php:283 +#: app/modules/web/Controllers/ItemPresetController.php:286 +msgid "Values deleted" +msgstr "Values deleted" #: app/modules/web/Controllers/ItemPresetController.php:294 -#: app/modules/web/Controllers/ItemPresetController.php:297 -msgid "Values deleted" -msgstr "" - -#: app/modules/web/Controllers/ItemPresetController.php:305 -#: app/modules/web/Controllers/ItemPresetController.php:309 +#: app/modules/web/Controllers/ItemPresetController.php:298 msgid "Value deleted" -msgstr "" +msgstr "Value deleted" -#: app/modules/web/Controllers/ItemPresetController.php:341 -#: app/modules/web/Controllers/ItemPresetController.php:346 +#: app/modules/web/Controllers/ItemPresetController.php:330 +#: app/modules/web/Controllers/ItemPresetController.php:335 msgid "Value created" -msgstr "" +msgstr "Value created" -#: app/modules/web/Controllers/ItemPresetController.php:384 -#: app/modules/web/Controllers/ItemPresetController.php:389 +#: app/modules/web/Controllers/ItemPresetController.php:373 +#: app/modules/web/Controllers/ItemPresetController.php:378 msgid "Value updated" -msgstr "" +msgstr "Value updated" -#: app/modules/web/Controllers/ItemsController.php:141 +#: app/modules/web/Controllers/ItemsController.php:134 msgid "There aren't any pending notifications" msgstr "お知らせはありません" -#: app/modules/web/Controllers/ItemsController.php:142 -#, php-format +#: app/modules/web/Controllers/ItemsController.php:135 msgid "There are pending notifications: %d" msgstr "お知らせが%d件あります" -#: app/modules/web/Controllers/LoginController.php:125 +#: app/modules/web/Controllers/LoginController.php:122 msgid "Logout session" msgstr "ログアウト" -#: app/modules/web/Controllers/LoginController.php:127 +#: app/modules/web/Controllers/LoginController.php:124 msgid "Inactive time" msgstr "ログイン時間" -#: app/modules/web/Controllers/LoginController.php:128 +#: app/modules/web/Controllers/LoginController.php:125 msgid "Total time" msgstr "合計時間" -#: app/modules/web/Controllers/NotificationController.php:279 -#: app/modules/web/Controllers/NotificationController.php:282 +#: app/modules/web/Controllers/NotificationController.php:270 +#: app/modules/web/Controllers/NotificationController.php:273 msgid "Notifications deleted" msgstr "通知を削除" -#: app/modules/web/Controllers/NotificationController.php:294 -#: app/modules/web/Controllers/NotificationController.php:298 +#: app/modules/web/Controllers/NotificationController.php:285 +#: app/modules/web/Controllers/NotificationController.php:289 msgid "Notification deleted" msgstr "通知を削除しました" -#: app/modules/web/Controllers/NotificationController.php:295 -#: app/modules/web/Controllers/NotificationController.php:330 -#: lib/SP/Providers/Notification/NotificationHandler.php:158 +#: app/modules/web/Controllers/NotificationController.php:286 +#: app/modules/web/Controllers/NotificationController.php:321 +#: lib/SP/Providers/Notification/NotificationHandler.php:155 msgid "Notification" msgstr "通知" -#: app/modules/web/Controllers/NotificationController.php:329 -#: app/modules/web/Controllers/NotificationController.php:333 +#: app/modules/web/Controllers/NotificationController.php:320 +#: app/modules/web/Controllers/NotificationController.php:324 msgid "Notification read" msgstr "既読にする" -#: app/modules/web/Controllers/NotificationController.php:363 -#: app/modules/web/Controllers/NotificationController.php:366 +#: app/modules/web/Controllers/NotificationController.php:354 +#: app/modules/web/Controllers/NotificationController.php:357 msgid "Notification created" msgstr "通知を作成しました" -#: app/modules/web/Controllers/NotificationController.php:400 -#: app/modules/web/Controllers/NotificationController.php:403 +#: app/modules/web/Controllers/NotificationController.php:391 +#: app/modules/web/Controllers/NotificationController.php:394 msgid "Notification updated" msgstr "通知を更新しました" -#: app/modules/web/Controllers/PluginController.php:213 -#: app/modules/web/Controllers/PluginController.php:216 +#: app/modules/web/Controllers/PluginController.php:206 +#: app/modules/web/Controllers/PluginController.php:209 msgid "Plugin enabled" msgstr "プラグインを有効化しました" -#: app/modules/web/Controllers/PluginController.php:242 -#: app/modules/web/Controllers/PluginController.php:245 -#: lib/SP/Plugin/PluginManager.php:233 lib/SP/Plugin/PluginManager.php:441 +#: app/modules/web/Controllers/PluginController.php:235 +#: app/modules/web/Controllers/PluginController.php:238 +#: lib/SP/Plugin/PluginManager.php:231 lib/SP/Plugin/PluginManager.php:439 msgid "Plugin disabled" msgstr "プラグインを無効にしました" -#: app/modules/web/Controllers/PluginController.php:272 -#: app/modules/web/Controllers/PluginController.php:275 +#: app/modules/web/Controllers/PluginController.php:265 +#: app/modules/web/Controllers/PluginController.php:268 msgid "Plugin reset" msgstr "プラグインをリセット" -#: app/modules/web/Controllers/PluginController.php:306 +#: app/modules/web/Controllers/PluginController.php:299 msgid "Plugins deleted" msgstr "プラグインを削除しました" -#: app/modules/web/Controllers/PluginController.php:312 +#: app/modules/web/Controllers/PluginController.php:305 msgid "Plugin deleted" msgstr "プラグインを削除しました" -#: app/modules/web/Controllers/PublicLinkController.php:124 +#: app/modules/web/Controllers/PublicLinkController.php:115 msgid "New Public Link" msgstr "共有リンクを発行しました" -#: app/modules/web/Controllers/PublicLinkController.php:194 -#: lib/SP/Services/Upgrade/UpgradePublicLink.php:90 +#: app/modules/web/Controllers/PublicLinkController.php:185 +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:89 msgid "Link updated" msgstr "共有リンクを更新しました" -#: app/modules/web/Controllers/PublicLinkController.php:220 +#: app/modules/web/Controllers/PublicLinkController.php:211 msgid "Edit Public Link" msgstr "共有リンクを編集" -#: app/modules/web/Controllers/PublicLinkController.php:261 -#: app/modules/web/Controllers/PublicLinkController.php:264 +#: app/modules/web/Controllers/PublicLinkController.php:252 +#: app/modules/web/Controllers/PublicLinkController.php:255 msgid "Links deleted" msgstr "共有リンクを削除しました" -#: app/modules/web/Controllers/PublicLinkController.php:272 -#: app/modules/web/Controllers/PublicLinkController.php:276 +#: app/modules/web/Controllers/PublicLinkController.php:263 +#: app/modules/web/Controllers/PublicLinkController.php:267 msgid "Link deleted" msgstr "共有リンクを削除しました" -#: app/modules/web/Controllers/PublicLinkController.php:306 -#: app/modules/web/Controllers/PublicLinkController.php:345 +#. (itstool) path: strings/text +#: app/modules/web/Controllers/AccountController.php:257 +#: app/modules/web/Controllers/AccountController.php:1073 +#: app/modules/web/Controllers/PublicLinkController.php:264 +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:90 +msgid "Link" +msgstr "Link" + +#: app/modules/web/Controllers/PublicLinkController.php:297 +#: app/modules/web/Controllers/PublicLinkController.php:336 msgid "Link created" msgstr "共有リンクを発行しました" -#: app/modules/web/Controllers/StatusController.php:95 +#: app/modules/web/Controllers/StatusController.php:93 msgid "Version unavailable" -msgstr "" +msgstr "Version unavailable" -#: app/modules/web/Controllers/StatusController.php:142 +#: app/modules/web/Controllers/StatusController.php:140 msgid "Notifications not available" -msgstr "" +msgstr "Notifications not available" -#: app/modules/web/Controllers/TagController.php:220 +#: app/modules/web/Controllers/TagController.php:211 msgid "Tags deleted" msgstr "タグを削除しました" -#: app/modules/web/Controllers/TagController.php:321 +#. (itstool) path: action/text +#: app/modules/web/Controllers/TagController.php:312 +#: app/resources/actions.xml:511 msgid "View Tag" msgstr "タグを表示" -#: app/modules/web/Controllers/TrackController.php:122 +#: app/modules/web/Controllers/TrackController.php:114 msgid "Track unlocked" -msgstr "" +msgstr "Track unlocked" -#: app/modules/web/Controllers/TrackController.php:150 +#: app/modules/web/Controllers/TrackController.php:142 msgid "Tracks cleared out" -msgstr "" +msgstr "Tracks cleared out" -#: app/modules/web/Controllers/Traits/ConfigTrait.php:69 +#: app/modules/web/Controllers/Traits/ConfigTrait.php:68 msgid "Configuration updated" -msgstr "" +msgstr "Configuration updated" -#: app/modules/web/Controllers/Traits/ConfigTrait.php:73 +#: app/modules/web/Controllers/Traits/ConfigTrait.php:72 msgid "Error while saving the configuration" msgstr "設定を保存中にエラーが発生しました" -#: app/modules/web/Controllers/Traits/ItemTrait.php:135 -#: app/modules/web/Controllers/Traits/ItemTrait.php:196 +#: app/modules/web/Controllers/Traits/ItemTrait.php:129 +#: app/modules/web/Controllers/Traits/ItemTrait.php:190 #: lib/SP/Core/Crypt/OldCrypt.php:176 lib/SP/Core/Crypt/OldCrypt.php:188 -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:62 -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:157 -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:247 -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:337 -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:392 -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:420 -#: lib/SP/Services/Account/AccountService.php:247 -#: lib/SP/Services/Account/AccountService.php:252 -#: lib/SP/Services/Api/ApiService.php:114 -#: lib/SP/Services/Api/ApiService.php:145 -#: lib/SP/Services/Api/ApiService.php:245 -#: lib/SP/Services/Api/ApiService.php:253 -#: lib/SP/Services/Auth/LoginService.php:208 -#: lib/SP/Services/Auth/LoginService.php:381 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:59 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:154 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:244 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:334 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:389 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:417 +#: lib/SP/Services/Account/AccountService.php:240 +#: lib/SP/Services/Account/AccountService.php:245 +#: lib/SP/Services/Api/ApiService.php:129 +#: lib/SP/Services/Api/ApiService.php:229 +#: lib/SP/Services/Api/ApiService.php:237 +#: lib/SP/Services/Auth/LoginService.php:200 +#: lib/SP/Services/Auth/LoginService.php:373 +#: lib/SP/Services/Auth/LoginService.php:542 #: lib/SP/Services/Auth/LoginService.php:550 -#: lib/SP/Services/Auth/LoginService.php:558 -#: lib/SP/Services/Auth/LoginService.php:591 -#: lib/SP/Services/Auth/LoginService.php:712 -#: lib/SP/Services/CustomField/CustomFieldService.php:207 -#: lib/SP/Services/Export/XmlVerifyService.php:110 -#: lib/SP/Services/Import/XmlFileImport.php:82 -#: lib/SP/Services/User/UserPassService.php:237 +#: lib/SP/Services/Auth/LoginService.php:583 +#: lib/SP/Services/Auth/LoginService.php:704 +#: lib/SP/Services/AuthToken/AuthTokenService.php:311 +#: lib/SP/Services/CustomField/CustomFieldService.php:203 +#: lib/SP/Services/Export/XmlVerifyService.php:108 +#: lib/SP/Services/Import/XmlFileImport.php:79 +#: lib/SP/Services/User/UserPassService.php:233 msgid "Internal error" msgstr "Internal error" -#: app/modules/web/Controllers/Traits/ItemTrait.php:192 +#: app/modules/web/Controllers/Traits/ItemTrait.php:186 msgid "Error while updating custom field's data" msgstr "カスタムフィールドを更新中にエラーが発生しました" -#: app/modules/web/Controllers/UpgradeController.php:72 +#: app/modules/web/Controllers/UpgradeController.php:68 msgid "The updating need to be confirmed" -msgstr "" +msgstr "The updating need to be confirmed" -#: app/modules/web/Controllers/UpgradeController.php:79 +#: app/modules/web/Controllers/UpgradeController.php:75 msgid "Wrong security code" msgstr "セキュリティーコードが一致しません" -#: app/modules/web/Controllers/UpgradeController.php:105 +#: app/modules/web/Controllers/UpgradeController.php:101 +#: app/modules/web/themes/material-blue/views/login/index.inc:88 msgid "Application successfully updated" msgstr "アプリケーションのアップデートが完了しました" -#: app/modules/web/Controllers/UpgradeController.php:106 +#: app/modules/web/Controllers/UpgradeController.php:102 msgid "You will be redirected to log in within 5 seconds" msgstr "5秒後にログイン画面に移ります" -#: app/modules/web/Controllers/UserController.php:250 -#: app/modules/web/Controllers/UserController.php:381 -#: app/modules/web/Controllers/UserPassResetController.php:119 -#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:72 +#: app/modules/web/Controllers/UserController.php:239 +#: app/modules/web/Controllers/UserController.php:370 +#: app/modules/web/Controllers/UserPassResetController.php:113 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:65 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:238 msgid "Password Change" msgstr "パスワードを変更" -#: app/modules/web/Controllers/UserController.php:292 -#: app/modules/web/Controllers/UserController.php:298 +#: app/modules/web/Controllers/UserController.php:283 +#: app/modules/web/Controllers/UserController.php:287 msgid "Users deleted" msgstr "ユーザーを削除" -#: app/modules/web/Controllers/UserController.php:306 -#: app/modules/web/Controllers/UserController.php:311 +#: app/modules/web/Controllers/UserController.php:295 +#: app/modules/web/Controllers/UserController.php:300 msgid "User deleted" msgstr "ユーザーを削除" -#: app/modules/web/Controllers/UserController.php:343 -#: app/modules/web/Controllers/UserController.php:351 +#: app/modules/web/Controllers/UserController.php:334 +#: app/modules/web/Controllers/UserController.php:340 msgid "User added" msgstr "ユーザーを作成しました" -#: app/modules/web/Controllers/UserController.php:410 -#: app/modules/web/Controllers/UserController.php:419 +#: app/modules/web/Controllers/UserController.php:401 +#: app/modules/web/Controllers/UserController.php:408 msgid "User updated" msgstr "ユーザーを更新" -#: app/modules/web/Controllers/UserController.php:488 +#. (itstool) path: action/text +#: app/modules/web/Controllers/UserController.php:477 +#: app/resources/actions.xml:577 msgid "View User" msgstr "ユーザーを表示" -#: app/modules/web/Controllers/UserGroupController.php:239 -#: app/modules/web/Controllers/UserGroupController.php:244 +#: app/modules/web/Controllers/UserGroupController.php:230 +#: app/modules/web/Controllers/UserGroupController.php:233 msgid "Groups deleted" msgstr "グループを削除しました" -#: app/modules/web/Controllers/UserPassResetController.php:98 +#: app/modules/web/Controllers/UserPassResetController.php:92 msgid "Wrong data" -msgstr "" +msgstr "Wrong data" -#: app/modules/web/Controllers/UserPassResetController.php:103 +#: app/modules/web/Controllers/UserPassResetController.php:97 msgid "Unable to reset the password" msgstr "パスワードリセットはできません" -#: app/modules/web/Controllers/UserPassResetController.php:114 +#: app/modules/web/Controllers/UserPassResetController.php:108 msgid "Password Recovery" -msgstr "" +msgstr "Password Recovery" -#: app/modules/web/Controllers/UserPassResetController.php:115 +#: app/modules/web/Controllers/UserPassResetController.php:109 msgid "Requested for" -msgstr "" +msgstr "Requested for" -#: app/modules/web/Controllers/UserPassResetController.php:125 +#: app/modules/web/Controllers/UserPassResetController.php:119 msgid "Request sent" msgstr "リクエストを送信" -#: app/modules/web/Controllers/UserPassResetController.php:126 +#: app/modules/web/Controllers/UserPassResetController.php:120 msgid "You will receive an email to complete the request shortly." msgstr "リクエストの完了まであと少しです。届いたメールを確認してください。" -#: app/modules/web/Controllers/UserPassResetController.php:149 -#: lib/SP/Services/Api/ApiService.php:100 -#: lib/SP/Services/Auth/LoginService.php:147 -#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:110 +#: app/modules/web/Controllers/UserPassResetController.php:143 +#: lib/SP/Services/Api/ApiService.php:96 +#: lib/SP/Services/Auth/LoginService.php:139 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:103 msgid "Attempts exceeded" msgstr "試行回数を超えました" -#: app/modules/web/Controllers/UserPassResetController.php:199 +#: app/modules/web/Controllers/UserPassResetController.php:193 #: app/modules/web/Forms/AuthTokenForm.php:101 #: app/modules/web/Forms/UserForm.php:157 msgid "Password cannot be blank" msgstr "パスワードを空欄にすることはできません" -#: app/modules/web/Controllers/UserProfileController.php:229 -#: app/modules/web/Controllers/UserProfileController.php:234 +#: app/modules/web/Controllers/UserProfileController.php:219 +#: app/modules/web/Controllers/UserProfileController.php:222 msgid "Profiles deleted" msgstr "プロファイルを削除しました" -#: app/modules/web/Controllers/UserProfileController.php:243 -#: app/modules/web/Controllers/UserProfileController.php:250 +#: app/modules/web/Controllers/UserProfileController.php:231 +#: app/modules/web/Controllers/UserProfileController.php:236 msgid "Profile deleted" msgstr "プロファイルを削除しました" -#: app/modules/web/Controllers/UserProfileController.php:281 -#: app/modules/web/Controllers/UserProfileController.php:287 +#: app/modules/web/Controllers/UserProfileController.php:271 +#: app/modules/web/Controllers/UserProfileController.php:275 msgid "Profile added" msgstr "プロファイルを作成しました" -#: app/modules/web/Controllers/UserProfileController.php:324 -#: app/modules/web/Controllers/UserProfileController.php:331 +#: app/modules/web/Controllers/UserProfileController.php:314 +#: app/modules/web/Controllers/UserProfileController.php:319 msgid "Profile updated" msgstr "プロファイルを更新しました" -#: app/modules/web/Controllers/UserProfileController.php:359 +#. (itstool) path: action/text +#: app/modules/web/Controllers/UserProfileController.php:347 +#: app/resources/actions.xml:643 msgid "View Profile" msgstr "プロファイルを表示" -#: app/modules/web/Controllers/UserSettingsGeneralController.php:79 +#: app/modules/web/Controllers/UserSettingsGeneralController.php:75 msgid "Preferences updated" msgstr "設定を更新しました" -#: app/modules/web/Controllers/UserSettingsManagerController.php:98 +#: app/modules/web/Controllers/UserSettingsManagerController.php:94 msgid "Preferences" msgstr "設定" -#: app/modules/web/Forms/AccountForm.php:132 +#: app/modules/web/Forms/AccountForm.php:129 msgid "A key is needed" -msgstr "" +msgstr "A key is needed" -#: app/modules/web/Forms/AccountForm.php:172 +#: app/modules/web/Forms/AccountForm.php:169 msgid "An account name needed" msgstr "アカウント名を空欄にすることはできません" -#: app/modules/web/Forms/AccountForm.php:176 +#: app/modules/web/Forms/AccountForm.php:173 #: app/modules/web/Forms/ClientForm.php:84 msgid "A client name needed" msgstr "クライアント名を空欄にすることはできません" -#: app/modules/web/Forms/AccountForm.php:180 +#: app/modules/web/Forms/AccountForm.php:177 msgid "A category is needed" msgstr "カテゴリー名を空欄にすることはできません" @@ -2477,11 +2911,11 @@ msgstr "フィールドタイプを空欄にすることはできません" #: app/modules/web/Forms/CustomFieldDefForm.php:95 msgid "Field module not set" -msgstr "" +msgstr "Field module not set" #: app/modules/web/Forms/ItemsPresetForm.php:116 msgid "Value type not set or incorrect" -msgstr "" +msgstr "Value type not set or incorrect" #: app/modules/web/Forms/ItemsPresetForm.php:133 msgid "There aren't any defined permissions" @@ -2489,7 +2923,7 @@ msgstr "権限設定を空欄にすることはできません" #: app/modules/web/Forms/ItemsPresetForm.php:182 msgid "Invalid regular expression" -msgstr "" +msgstr "Invalid regular expression" #: app/modules/web/Forms/ItemsPresetForm.php:208 msgid "An element of type user, group or profile need to be set" @@ -2497,7 +2931,7 @@ msgstr "ユーザー・グループ・プロファイルのいずれかを設定 #: app/modules/web/Forms/NotificationForm.php:98 msgid "A component is needed" -msgstr "" +msgstr "A component is needed" #: app/modules/web/Forms/NotificationForm.php:102 msgid "A type is needed" @@ -2537,7 +2971,7 @@ msgstr "メールアドレスを空欄にすることはできません" #: app/modules/web/Forms/UserForm.php:179 msgid "Unable to delete, user in use" -msgstr "" +msgstr "Unable to delete, user in use" #: app/modules/web/Forms/UserGroupForm.php:84 msgid "A group name is needed" @@ -2547,138 +2981,162 @@ msgstr "グループ名を空欄にすることはできません" msgid "A profile name is needed" msgstr "プロファイル名を空欄にすることはできません" -#: app/modules/web/themes/material-blue/inc/Icons.php:31 +#: app/modules/web/themes/material-blue/inc/Icons.php:32 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:36 msgid "Add" msgstr "Add" -#: app/modules/web/themes/material-blue/inc/Icons.php:32 +#: app/modules/web/themes/material-blue/inc/Icons.php:33 msgid "View Details" msgstr "View Details" -#: app/modules/web/themes/material-blue/inc/Icons.php:34 +#: app/modules/web/themes/material-blue/inc/Icons.php:35 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:68 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:72 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:140 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:144 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:148 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:198 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:46 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:87 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:102 msgid "Edit" msgstr "Edit" -#: app/modules/web/themes/material-blue/inc/Icons.php:35 -#: app/modules/web/themes/material-blue/inc/Icons.php:65 +#: app/modules/web/themes/material-blue/inc/Icons.php:36 +#: app/modules/web/themes/material-blue/inc/Icons.php:66 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:134 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:155 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:184 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:206 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:134 msgid "Delete" msgstr "Delete" -#: app/modules/web/themes/material-blue/inc/Icons.php:36 +#: app/modules/web/themes/material-blue/inc/Icons.php:37 msgid "Change Password" msgstr "Change Password" -#: app/modules/web/themes/material-blue/inc/Icons.php:37 +#: app/modules/web/themes/material-blue/inc/Icons.php:38 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:200 msgid "Application Admin" msgstr "Application Admin" -#: app/modules/web/themes/material-blue/inc/Icons.php:38 +#: app/modules/web/themes/material-blue/inc/Icons.php:39 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:218 msgid "Accounts Admin" msgstr "Accounts Admin" -#: app/modules/web/themes/material-blue/inc/Icons.php:39 +#: app/modules/web/themes/material-blue/inc/Icons.php:40 msgid "LDAP User" msgstr "LDAP User" -#: app/modules/web/themes/material-blue/inc/Icons.php:40 +#: app/modules/web/themes/material-blue/inc/Icons.php:41 +#: app/modules/web/themes/material-blue/views/config/mail.inc:138 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:257 msgid "Disabled" msgstr "Disabled" -#: app/modules/web/themes/material-blue/inc/Icons.php:41 +#: app/modules/web/themes/material-blue/inc/Icons.php:42 msgid "Enabled" msgstr "Enabled" -#: app/modules/web/themes/material-blue/inc/Icons.php:42 +#: app/modules/web/themes/material-blue/inc/Icons.php:43 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:184 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:49 msgid "Update" msgstr "Update" -#: app/modules/web/themes/material-blue/inc/Icons.php:43 +#: app/modules/web/themes/material-blue/inc/Icons.php:44 msgid "Copy" msgstr "Copy" -#: app/modules/web/themes/material-blue/inc/Icons.php:45 +#: app/modules/web/themes/material-blue/inc/Icons.php:46 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:84 msgid "Email" msgstr "Email" -#: app/modules/web/themes/material-blue/inc/Icons.php:49 +#: app/modules/web/themes/material-blue/inc/Icons.php:50 msgid "Restore" msgstr "Restore" -#: app/modules/web/themes/material-blue/inc/Icons.php:51 +#: app/modules/web/themes/material-blue/inc/Icons.php:52 +#: app/resources/strings.js.inc:79 msgid "Help" msgstr "Help" -#: app/modules/web/themes/material-blue/inc/Icons.php:52 +#: app/modules/web/themes/material-blue/inc/Icons.php:53 msgid "Clear" msgstr "クリア" -#: app/modules/web/themes/material-blue/inc/Icons.php:53 +#: app/modules/web/themes/material-blue/inc/Icons.php:54 msgid "Perform" msgstr "Perform" -#: app/modules/web/themes/material-blue/inc/Icons.php:54 +#: app/modules/web/themes/material-blue/inc/Icons.php:55 msgid "Download" msgstr "Download" -#: app/modules/web/themes/material-blue/inc/Icons.php:55 +#: app/modules/web/themes/material-blue/inc/Icons.php:56 +#: app/resources/strings.js.inc:85 msgid "Warning" msgstr "Warning" -#: app/modules/web/themes/material-blue/inc/Icons.php:56 +#: app/modules/web/themes/material-blue/inc/Icons.php:57 msgid "Check" msgstr "Check" -#: app/modules/web/themes/material-blue/inc/Icons.php:63 +#: app/modules/web/themes/material-blue/inc/Icons.php:64 msgid "Critical" msgstr "Critical" -#: app/modules/web/themes/material-blue/inc/Icons.php:66 +#: app/modules/web/themes/material-blue/inc/Icons.php:67 msgid "Previous page" msgstr "Previous page" -#: app/modules/web/themes/material-blue/inc/Icons.php:67 +#: app/modules/web/themes/material-blue/inc/Icons.php:68 msgid "Next page" msgstr "Next page" -#: app/modules/web/themes/material-blue/inc/Icons.php:68 +#: app/modules/web/themes/material-blue/inc/Icons.php:69 msgid "First page" msgstr "First page" -#: app/modules/web/themes/material-blue/inc/Icons.php:69 +#: app/modules/web/themes/material-blue/inc/Icons.php:70 msgid "Last page" msgstr "Last page" -#: lib/SP/Bootstrap.php:293 -#, php-format +#: lib/SP/Bootstrap.php:290 msgid "Required PHP version >= %s <= %s" msgstr "Required PHP version >= %s <= %s" -#: lib/SP/Bootstrap.php:295 +#: lib/SP/Bootstrap.php:292 msgid "Please update the PHP version to run sysPass" msgstr "" "お使いのサーバーはsysPassの推奨PHPバージョンを満たしていません。PHPのアップ" "デートを検討してください" -#: lib/SP/Config/ConfigUtil.php:102 -msgid "'/app/config' directory does not exist." +#: lib/SP/Config/ConfigUtil.php:94 +#, fuzzy +msgid "\"/config\" directory does not exist." msgstr "'/app/config' ディレクトリが存在しません。" -#: lib/SP/Config/ConfigUtil.php:108 -msgid "Unable to write into '/app/config' directory" +#: lib/SP/Config/ConfigUtil.php:100 +#, fuzzy +msgid "Unable to write into \"/config\" directory" msgstr "'/app/config' ディレクトリに書き込むことができませんでした" -#: lib/SP/Config/ConfigUtil.php:117 -msgid "'/app/config' directory permissions are wrong" +#: lib/SP/Config/ConfigUtil.php:109 +#, fuzzy +msgid "\"/config\" directory permissions are wrong" msgstr "'/app/config' ディレクトリのパーミッション設定が間違っています" #: lib/SP/Config/ConfigUtil.php:119 -#, php-format msgid "Current: %s - Needed: 750" msgstr "Current: %s - Needed: 750" -#: lib/SP/Core/Acl/Acl.php:294 -#: lib/SP/Services/Account/AccountCryptService.php:133 -#: lib/SP/Services/Auth/LoginService.php:660 +#. Not available +#: lib/SP/Core/Acl/Acl.php:294 lib/SP/Services/Auth/LoginService.php:652 msgid "N/A" msgstr "N/A" @@ -2686,12 +3144,12 @@ msgstr "N/A" msgid "Access denied" msgstr "Access denied" -#: lib/SP/Core/Acl/Actions.php:177 +#: lib/SP/Core/Acl/Actions.php:176 msgid "Action not found" msgstr "Action not found" -#: lib/SP/Core/Acl/UnauthorizedPageException.php:46 -#: lib/SP/Util/ErrorUtil.php:157 +#: lib/SP/Core/Acl/UnauthorizedPageException.php:45 +#: lib/SP/Util/ErrorUtil.php:156 msgid "You don't have permission to access this page" msgstr "このページにアクセスする権限がありません" @@ -2702,70 +3160,68 @@ msgstr "パスワードを変更することはできませんん" #: lib/SP/Core/Context/ContextBase.php:103 #: lib/SP/Core/Context/ContextBase.php:126 msgid "Context already initialized" -msgstr "" +msgstr "Context already initialized" #: lib/SP/Core/Context/ContextBase.php:109 msgid "Invalid context" -msgstr "" +msgstr "Invalid context" #: lib/SP/Core/Context/ContextBase.php:154 msgid "Context not initialized" -msgstr "" +msgstr "Context not initialized" #: lib/SP/Core/Context/SessionContext.php:492 msgid "Session cannot be initialized" -msgstr "" +msgstr "Session cannot be initialized" #: lib/SP/Core/Crypt/OldCrypt.php:178 msgid "Crypto module cannot be loaded" -msgstr "" +msgstr "Crypto module cannot be loaded" #: lib/SP/Core/Crypt/OldCrypt.php:190 msgid "Error while creating the encrypted data" -msgstr "" +msgstr "Error while creating the encrypted data" #: lib/SP/Core/Events/Event.php:57 msgid "An object is needed" -msgstr "" +msgstr "An object is needed" #: lib/SP/Core/Events/EventDispatcherBase.php:85 msgid "Observer not initialized" -msgstr "" +msgstr "Observer not initialized" #: lib/SP/Core/UI/Theme.php:185 msgid "Invalid icons class" -msgstr "" +msgstr "Invalid icons class" #: lib/SP/Html/DataGrid/DataGridBase.php:302 lib/SP/Mvc/View/Template.php:128 -#, php-format msgid "Unable to retrieve \"%s\" template: %s" -msgstr "" +msgstr "Unable to retrieve \"%s\" template: %s" #: lib/SP/Http/Address.php:49 lib/SP/Http/Address.php:51 #: lib/SP/Http/Address.php:68 lib/SP/Http/Address.php:70 #: lib/SP/Http/Address.php:90 lib/SP/Http/Address.php:109 msgid "Invalid IP" -msgstr "" +msgstr "Invalid IP" #: lib/SP/Http/Json.php:180 msgid "Encoding error" -msgstr "" +msgstr "Encoding error" -#: lib/SP/Http/XMLRPCResponseParse.php:70 +#: lib/SP/Http/XMLRPCResponseParse.php:69 msgid "Invalid XML-RPC response" -msgstr "" +msgstr "Invalid XML-RPC response" -#: lib/SP/Mvc/Controller/ControllerTrait.php:66 +#: lib/SP/Mvc/Controller/ControllerTrait.php:65 msgid "Session not started or timed out" -msgstr "" +msgstr "Session not started or timed out" -#: lib/SP/Mvc/Controller/ControllerTrait.php:117 -#: lib/SP/Mvc/Controller/ControllerTrait.php:131 +#: lib/SP/Mvc/Controller/ControllerTrait.php:116 +#: lib/SP/Mvc/Controller/ControllerTrait.php:130 msgid "Invalid Action" -msgstr "" +msgstr "Invalid Action" #: lib/SP/Mvc/Controller/Validators/PasswordValidator.php:71 -#, php-format msgid "Password needs to be %d characters long" msgstr "パスワードは%d文字以上にしてください" @@ -2793,454 +3249,421 @@ msgstr "パスワードには数字を含める必要があります" msgid "Password needs to contain symbols" msgstr "パスワードには記号を含める必要がります" -#: lib/SP/Mvc/Model/QueryCondition.php:73 +#: lib/SP/Mvc/Model/QueryCondition.php:71 msgid "Invalid filter type" -msgstr "" +msgstr "Invalid filter type" -#: lib/SP/Mvc/View/Components/SelectItemAdapter.php:96 -#: lib/SP/Mvc/View/Components/SelectItemAdapter.php:158 +#: lib/SP/Mvc/View/Components/SelectItemAdapter.php:95 +#: lib/SP/Mvc/View/Components/SelectItemAdapter.php:157 msgid "Wrong object type" -msgstr "" +msgstr "Wrong object type" #: lib/SP/Mvc/View/Template.php:303 lib/SP/Mvc/View/Template.php:367 -#, php-format msgid "Unable to retrieve \"%s\" variable" -msgstr "" +msgstr "Unable to retrieve \"%s\" variable" #: lib/SP/Mvc/View/Template.php:336 -#, php-format msgid "Unable to unset \"%s\" variable" -msgstr "" +msgstr "Unable to unset \"%s\" variable" #: lib/SP/Mvc/View/Template.php:357 msgid "Template does not contain files" msgstr "テンプレートにファイルが含まれていません" -#: lib/SP/Plugin/PluginManager.php:194 -#, php-format +#: lib/SP/Plugin/PluginManager.php:192 msgid "Plugin version not compatible (%s)" msgstr "このバージョンのsysPassとプラグインの互換性がありません (%s)" -#: lib/SP/Plugin/PluginManager.php:206 lib/SP/Plugin/PluginManager.php:262 -#, php-format +#: lib/SP/Plugin/PluginManager.php:204 lib/SP/Plugin/PluginManager.php:260 msgid "Unable to load the \"%s\" plugin" msgstr "プラグイン “%s” の読み込みに失敗しました" -#: lib/SP/Plugin/PluginManager.php:297 +#: lib/SP/Plugin/PluginManager.php:295 msgid "Plugin available" msgstr "プラグインを有効化" -#: lib/SP/Plugin/PluginManager.php:308 +#: lib/SP/Plugin/PluginManager.php:306 msgid "Plugin unavailable" msgstr "プラグインを無効化" -#: lib/SP/Plugin/PluginManager.php:341 +#: lib/SP/Plugin/PluginManager.php:339 msgid "Plugin loaded" msgstr "プラグインを読み込み" -#: lib/SP/Plugin/PluginManager.php:366 +#. (itstool) path: action/text +#: lib/SP/Plugin/PluginManager.php:364 app/resources/actions.xml:535 msgid "New Plugin" msgstr "新規プラグイン" -#: lib/SP/Plugin/PluginManager.php:394 -msgid "Upgrading plugin" -msgstr "プラグインの更新" - -#: lib/SP/Plugin/PluginManager.php:411 -msgid "Plugin upgraded" -msgstr "プラグインの更新が完了しました" - -#: lib/SP/Plugin/PluginManager.php:420 -#, php-format -msgid "Unable to upgrade the \"%s\" plugin" -msgstr "プラグイン \"%s\" の更新に失敗しました" +#: lib/SP/Providers/Auth/AuthProvider.php:216 +msgid "Method unavailable" +msgstr "Method unavailable" #: lib/SP/Providers/Auth/AuthProvider.php:220 -msgid "Method unavailable" -msgstr "" - -#: lib/SP/Providers/Auth/AuthProvider.php:224 msgid "Method already initialized" -msgstr "" - -#: lib/SP/Providers/Auth/Ldap/Ldap.php:110 -msgid "LDAP type not set" -msgstr "" +msgstr "Method already initialized" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:121 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:128 msgid "Error while searching the group RDN" -msgstr "" +msgstr "Error while searching the group RDN" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:226 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:231 msgid "Error while searching the user on LDAP" -msgstr "" +msgstr "Error while searching the user on LDAP" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:281 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:287 msgid "Error while searching objects in base DN" -msgstr "" +msgstr "Error while searching objects in base DN" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:145 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:149 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:232 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:237 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:213 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:218 msgid "Unable to connect to LDAP server" -msgstr "" +msgstr "Unable to connect to LDAP server" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:146 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:233 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:214 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:70 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:39 +#: app/modules/web/themes/material-blue/views/config/info.inc:81 +#: app/modules/web/themes/material-blue/views/config/info.inc:84 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:93 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:118 +#: app/modules/web/themes/material-blue/views/config/mail.inc:59 +#: app/modules/web/themes/material-blue/views/config/mail.inc:66 msgid "Server" msgstr "Server" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:174 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:176 msgid "LDAP parameters are not set" -msgstr "" +msgstr "LDAP parameters are not set" -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:275 -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:281 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:256 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:262 msgid "Connection error (BIND)" -msgstr "" +msgstr "Connection error (BIND)" -#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:345 +#: lib/SP/Providers/Auth/Ldap/LdapConnection.php:326 msgid "Error while disconnecting from LDAP server" -msgstr "" +msgstr "Error while disconnecting from LDAP server" -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:113 -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:154 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:113 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:155 -#: lib/SP/Providers/Auth/Ldap/LdapStd.php:111 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:112 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:153 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:112 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:154 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:110 msgid "User in group verified" -msgstr "" +msgstr "User in group verified" -#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:144 -#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:145 -#: lib/SP/Providers/Auth/Ldap/LdapStd.php:143 +#: lib/SP/Providers/Auth/Ldap/LdapMsAds.php:143 +#: lib/SP/Providers/Auth/Ldap/LdapMsAzureAd.php:144 +#: lib/SP/Providers/Auth/Ldap/LdapStd.php:142 msgid "User does not belong to the group" -msgstr "" +msgstr "User does not belong to the group" -#: lib/SP/Providers/Mail/MailHandler.php:153 -#, php-format -msgid "Event: %s" -msgstr "Event: %s" - -#: lib/SP/Providers/Mail/MailHandler.php:161 -#: lib/SP/Providers/Mail/MailHandler.php:163 -#, php-format +#: lib/SP/Providers/Mail/MailHandler.php:157 +#: lib/SP/Providers/Mail/MailHandler.php:159 msgid "Performed by: %s (%s)" msgstr "Performed by: %s (%s)" -#: lib/SP/Providers/Mail/MailHandler.php:166 -#, php-format +#: lib/SP/Providers/Mail/MailHandler.php:162 msgid "IP Address: %s" msgstr "IP Address: %s" -#: lib/SP/Providers/Mail/MailProvider.php:94 +#: lib/SP/Providers/Mail/MailProvider.php:91 msgid "Unable to initialize" msgstr "初期化できませんでした" -#: lib/SP/Repositories/Account/AccountFileRepository.php:80 +#: lib/SP/Repositories/Account/AccountFileRepository.php:77 msgid "Error while saving file" msgstr "ファイルの保存時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountFileRepository.php:282 +#: lib/SP/Repositories/Account/AccountFileRepository.php:279 msgid "Error while deleting the file" msgstr "ファイルの削除にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountFileRepository.php:305 -#: lib/SP/Services/Account/AccountFileService.php:149 +#: lib/SP/Repositories/Account/AccountFileRepository.php:302 +#: lib/SP/Services/Account/AccountFileService.php:145 msgid "Error while deleting the files" msgstr "ファイルの削除にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountHistoryRepository.php:144 +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:143 msgid "Error while updating history" msgstr "ファイル履歴の更新にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountHistoryRepository.php:163 -#: lib/SP/Repositories/Account/AccountRepository.php:323 -#: lib/SP/Services/Account/AccountHistoryService.php:195 +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:162 +#: lib/SP/Repositories/Account/AccountRepository.php:321 +#: lib/SP/Services/Account/AccountHistoryService.php:192 msgid "Error while deleting the account" msgstr "アカウントの削除にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountHistoryRepository.php:293 -#: lib/SP/Repositories/Account/AccountHistoryRepository.php:316 -#: lib/SP/Repositories/Account/AccountRepository.php:503 -#: lib/SP/Services/Account/AccountService.php:647 +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:292 +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:315 +#: lib/SP/Repositories/Account/AccountRepository.php:501 +#: lib/SP/Services/Account/AccountService.php:640 msgid "Error while deleting the accounts" msgstr "アカウント削除時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountHistoryRepository.php:437 -#: lib/SP/Repositories/Account/AccountRepository.php:237 -#: lib/SP/Repositories/Account/AccountRepository.php:262 -#: lib/SP/Repositories/User/UserRepository.php:166 -#: lib/SP/Services/Account/AccountHistoryService.php:236 -#: lib/SP/Services/User/UserService.php:334 +#: lib/SP/Repositories/Account/AccountHistoryRepository.php:436 +#: lib/SP/Repositories/Account/AccountRepository.php:235 +#: lib/SP/Repositories/Account/AccountRepository.php:260 +#: lib/SP/Repositories/User/UserRepository.php:165 +#: lib/SP/Services/Account/AccountHistoryService.php:233 +#: lib/SP/Services/User/UserService.php:331 msgid "Error while updating the password" msgstr "パスワードの更新時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountRepository.php:202 +#: lib/SP/Repositories/Account/AccountRepository.php:200 msgid "Error while creating the account" msgstr "アカウント作成時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountRepository.php:303 -#: lib/SP/Services/Account/AccountService.php:613 +#: lib/SP/Repositories/Account/AccountRepository.php:301 +#: lib/SP/Services/Account/AccountService.php:606 msgid "Error on restoring the account" msgstr "アカウント復元時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountRepository.php:384 -#: lib/SP/Repositories/Account/AccountRepository.php:433 +#: lib/SP/Repositories/Account/AccountRepository.php:382 +#: lib/SP/Repositories/Account/AccountRepository.php:431 msgid "Error while updating the account" msgstr "アカウント更新時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountRepository.php:453 -#: lib/SP/Repositories/Account/AccountRepository.php:625 -#: lib/SP/Services/Account/AccountHistoryService.php:78 +#: lib/SP/Repositories/Account/AccountRepository.php:451 +#: lib/SP/Repositories/Account/AccountRepository.php:623 +#: lib/SP/Services/Account/AccountHistoryService.php:75 msgid "Error while retrieving account's data" msgstr "アカウントのデータ復元時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:74 +#: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:71 msgid "Error while adding favorite" msgstr "お気に入り追加時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:94 +#: lib/SP/Repositories/Account/AccountToFavoriteRepository.php:91 msgid "Error while deleting favorite" msgstr "お気に入り解除時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToTagRepository.php:97 +#: lib/SP/Repositories/Account/AccountToTagRepository.php:94 msgid "Error while removing the account's tags" msgstr "タグを外す時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToTagRepository.php:118 +#: lib/SP/Repositories/Account/AccountToTagRepository.php:115 msgid "Error while adding the account's tags" msgstr "タグを追加する時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:109 -#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:142 -#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:194 +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:106 +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:139 +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:191 msgid "Error while deleting the account's groups" msgstr "グループへの追加時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:167 +#: lib/SP/Repositories/Account/AccountToUserGroupRepository.php:164 msgid "Error while updating the secondary groups" msgstr "グループからの解除時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToUserRepository.php:79 -#: lib/SP/Repositories/Account/AccountToUserRepository.php:135 +#: lib/SP/Repositories/Account/AccountToUserRepository.php:76 +#: lib/SP/Repositories/Account/AccountToUserRepository.php:132 msgid "Error while deleting the account users" msgstr "ユーザーの解除時にエラーが発生しました" -#: lib/SP/Repositories/Account/AccountToUserRepository.php:106 +#: lib/SP/Repositories/Account/AccountToUserRepository.php:103 msgid "Error while updating the account users" msgstr "ユーザーの更新時にエラーが発生しました" -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:224 -#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:312 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:221 +#: lib/SP/Repositories/AuthToken/AuthTokenRepository.php:309 msgid "The authorization already exist" msgstr "すでに許可されています" -#: lib/SP/Repositories/Category/CategoryRepository.php:61 +#: lib/SP/Repositories/Category/CategoryRepository.php:58 msgid "Duplicated category" msgstr "このカテゴリーはすでに存在します" -#: lib/SP/Repositories/Category/CategoryRepository.php:71 +#: lib/SP/Repositories/Category/CategoryRepository.php:68 msgid "Error while creating the category" msgstr "カテゴリー追加時にエラーが発生しました" -#: lib/SP/Repositories/Category/CategoryRepository.php:110 +#: lib/SP/Repositories/Category/CategoryRepository.php:107 msgid "Duplicated category name" msgstr "このカテゴリー名はすでに存在します" -#: lib/SP/Repositories/Category/CategoryRepository.php:128 +#: lib/SP/Repositories/Category/CategoryRepository.php:125 msgid "Error while updating the category" msgstr "カテゴリーの更新時にエラーが発生しました" -#: lib/SP/Repositories/Category/CategoryRepository.php:256 +#: lib/SP/Repositories/Category/CategoryRepository.php:253 msgid "Error while deleting the categories" msgstr "カテゴリーの削除時にエラーが発生しました" -#: lib/SP/Repositories/Category/CategoryRepository.php:278 +#: lib/SP/Repositories/Category/CategoryRepository.php:275 msgid "Error while deleting the category" msgstr "カテゴリーの削除時にエラーが発生しました" -#: lib/SP/Repositories/Client/ClientRepository.php:63 -#: lib/SP/Repositories/Client/ClientRepository.php:117 +#: lib/SP/Repositories/Client/ClientRepository.php:62 +#: lib/SP/Repositories/Client/ClientRepository.php:116 msgid "Duplicated client" msgstr "すでにこのクライアントは存在しています" -#: lib/SP/Repositories/Client/ClientRepository.php:81 +#: lib/SP/Repositories/Client/ClientRepository.php:80 msgid "Error while creating the client" msgstr "クライアント作成時にエラーが発生しました" -#: lib/SP/Repositories/Client/ClientRepository.php:137 +#: lib/SP/Repositories/Client/ClientRepository.php:136 msgid "Error while updating the client" msgstr "クライアント更新時にエラーが発生しました" -#: lib/SP/Repositories/Client/ClientRepository.php:265 -#: lib/SP/Services/Client/ClientService.php:132 +#: lib/SP/Repositories/Client/ClientRepository.php:264 +#: lib/SP/Services/Client/ClientService.php:127 msgid "Error while deleting the clients" msgstr "クライアントの削除時にエラーが発生しました" -#: lib/SP/Repositories/Client/ClientRepository.php:284 +#: lib/SP/Repositories/Client/ClientRepository.php:283 msgid "Error while deleting the client" msgstr "クライアントの削除時にエラーが発生しました" -#: lib/SP/Repositories/Client/ClientRepository.php:346 +#: lib/SP/Repositories/Client/ClientRepository.php:345 msgid "Wrong filter" -msgstr "" +msgstr "Wrong filter" -#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:78 +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:75 msgid "Error while creating the custom field" msgstr "カスタフィールドの作成時にエラーが発生しました" -#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:121 -#: lib/SP/Services/CustomField/CustomFieldDefService.php:170 -#: lib/SP/Services/CustomField/CustomFieldDefService.php:198 +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:118 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:165 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:193 msgid "Error while updating the custom field" msgstr "カスタムフィールドの更新時にエラーが発生しました" -#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:162 +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:159 msgid "Custom field not found" msgstr "カスタムフィ-ルドが存在しません" -#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:242 +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:239 msgid "Error while removing the custom fields" msgstr "かスタムフィールドの削除時にエラーが発生しました" -#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:262 +#: lib/SP/Repositories/CustomField/CustomFieldDefRepository.php:259 msgid "Error while removing the custom field" msgstr "カスタムフィールドの削除時にエラーが発生しました" -#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:63 +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 msgid "Error while creating the field type" -msgstr "" +msgstr "Error while creating the field type" -#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:99 +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 msgid "Error while updating the field type" -msgstr "" +msgstr "Error while updating the field type" -#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:181 -#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:200 +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 +#: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 msgid "Error while deleting the field type" -msgstr "" +msgstr "Error while deleting the field type" #: lib/SP/Repositories/EventLog/EventlogRepository.php:53 msgid "Error while clearing the event log out" -msgstr "" +msgstr "Error while clearing the event log out" -#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:79 +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:76 msgid "Error while creating the permission" msgstr "言言の設定j" -#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:118 +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:115 msgid "Error while updating the permission" msgstr "権限の設定時にエラーが発生しました" -#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:137 +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:134 msgid "Error while removing the permission" msgstr "権限の解除時にエラーが発生しました" -#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:262 +#: lib/SP/Repositories/ItemPreset/ItemPresetRepository.php:259 msgid "Error while removing the permissions" msgstr "権限の解除時にエラーが発生しました" -#: lib/SP/Repositories/Notification/NotificationRepository.php:80 +#: lib/SP/Repositories/Notification/NotificationRepository.php:79 msgid "Error while adding the notification" msgstr "通知を追加する時にエラーが発生しました" -#: lib/SP/Repositories/Notification/NotificationRepository.php:120 -#: lib/SP/Repositories/Notification/NotificationRepository.php:479 +#: lib/SP/Repositories/Notification/NotificationRepository.php:119 +#: lib/SP/Repositories/Notification/NotificationRepository.php:478 msgid "Error while updating the notification" msgstr "通知を更新する時にエラーが発生しました" -#: lib/SP/Repositories/Notification/NotificationRepository.php:139 -#: lib/SP/Repositories/Notification/NotificationRepository.php:158 +#: lib/SP/Repositories/Notification/NotificationRepository.php:138 +#: lib/SP/Repositories/Notification/NotificationRepository.php:157 msgid "Error while deleting the notification" msgstr "通知の削除時にエラーが発生しました" -#: lib/SP/Repositories/Notification/NotificationRepository.php:181 -#: lib/SP/Repositories/Notification/NotificationRepository.php:304 -#: lib/SP/Services/Notification/NotificationService.php:144 -#: lib/SP/Services/Notification/NotificationService.php:163 +#: lib/SP/Repositories/Notification/NotificationRepository.php:180 +#: lib/SP/Repositories/Notification/NotificationRepository.php:303 +#: lib/SP/Services/Notification/NotificationService.php:140 +#: lib/SP/Services/Notification/NotificationService.php:159 msgid "Error while deleting the notifications" msgstr "通知の削除時にエラーが発生しました" -#: lib/SP/Repositories/Notification/NotificationRepository.php:214 +#: lib/SP/Repositories/Notification/NotificationRepository.php:213 msgid "Error while retrieving notification" -msgstr "" +msgstr "Error while retrieving notification" -#: lib/SP/Repositories/Notification/NotificationRepository.php:244 -#: lib/SP/Repositories/Notification/NotificationRepository.php:516 -#: lib/SP/Repositories/Notification/NotificationRepository.php:549 -#: lib/SP/Repositories/Notification/NotificationRepository.php:583 -#: lib/SP/Repositories/Notification/NotificationRepository.php:616 +#: lib/SP/Repositories/Notification/NotificationRepository.php:243 +#: lib/SP/Repositories/Notification/NotificationRepository.php:515 +#: lib/SP/Repositories/Notification/NotificationRepository.php:548 +#: lib/SP/Repositories/Notification/NotificationRepository.php:582 +#: lib/SP/Repositories/Notification/NotificationRepository.php:615 msgid "Error while retrieving the notifications" -msgstr "" +msgstr "Error while retrieving the notifications" -#: lib/SP/Repositories/Plugin/PluginDataRepository.php:68 -msgid "Error while adding plugin's data" -msgstr "プラグイン追加時にエラーが発生しました" - -#: lib/SP/Repositories/Plugin/PluginDataRepository.php:97 -msgid "Error while updating plugin's data" -msgstr "プラグイイン更新時にエラーが発生しました" - -#: lib/SP/Repositories/Plugin/PluginDataRepository.php:116 -#: lib/SP/Repositories/Plugin/PluginDataRepository.php:136 -#: lib/SP/Repositories/Plugin/PluginDataRepository.php:242 -msgid "Error while deleting plugin's data" -msgstr "プラグイン削除時にエラーが発生しました" - -#: lib/SP/Repositories/Plugin/PluginRepository.php:70 +#: lib/SP/Repositories/Plugin/PluginRepository.php:69 msgid "Error while adding the plugin" msgstr "プラグイン追加時にエラーが発生しました" -#: lib/SP/Repositories/Plugin/PluginRepository.php:106 -#: lib/SP/Repositories/Plugin/PluginRepository.php:354 -#: lib/SP/Repositories/Plugin/PluginRepository.php:374 -#: lib/SP/Repositories/Plugin/PluginRepository.php:394 -#: lib/SP/Repositories/Plugin/PluginRepository.php:414 -#: lib/SP/Repositories/Plugin/PluginRepository.php:433 +#: lib/SP/Repositories/Plugin/PluginRepository.php:105 +#: lib/SP/Repositories/Plugin/PluginRepository.php:353 +#: lib/SP/Repositories/Plugin/PluginRepository.php:373 +#: lib/SP/Repositories/Plugin/PluginRepository.php:393 +#: lib/SP/Repositories/Plugin/PluginRepository.php:413 +#: lib/SP/Repositories/Plugin/PluginRepository.php:432 msgid "Error while updating the plugin" msgstr "プラグイン更新時にエラーが発生しました" -#: lib/SP/Repositories/Plugin/PluginRepository.php:217 -#: lib/SP/Services/Plugin/PluginService.php:139 +#: lib/SP/Repositories/Plugin/PluginRepository.php:216 +#: lib/SP/Services/Plugin/PluginService.php:137 msgid "Error while deleting the plugins" msgstr "プラグイン削除時にエラーが発生しました" -#: lib/SP/Repositories/Plugin/PluginRepository.php:237 +#: lib/SP/Repositories/Plugin/PluginRepository.php:236 msgid "Error while deleting the plugin" msgstr "プラグイン削除時にエラーが発生しました" -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:64 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:63 msgid "Error while removing the link" msgstr "関連するアカウント削除時にエラーが発生しました" -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:256 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:255 msgid "Link already created" msgstr "このアカウントはすでに追加済みです" -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:283 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:282 msgid "Error while creating the link" msgstr "関連するアカウント削除時にエラーが発生しました" -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:342 -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:390 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:341 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:389 msgid "Error while updating the link" msgstr "関連するアカウント更新時にエラーが発生しました" -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:425 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 msgid "Error while renewing link" -msgstr "" +msgstr "Error while renewing link" -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:467 -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:508 -#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:529 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 +#: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 msgid "Error while retrieving the link" -msgstr "" +msgstr "Error while retrieving the link" #: lib/SP/Repositories/Tag/TagRepository.php:60 #: lib/SP/Repositories/Tag/TagRepository.php:108 @@ -3256,7 +3679,7 @@ msgid "Error while updating the tag" msgstr "タグ更新時にエラーが発生しました" #: lib/SP/Repositories/Tag/TagRepository.php:243 -#: lib/SP/Services/Tag/TagService.php:132 +#: lib/SP/Services/Tag/TagService.php:126 msgid "Error while removing the tags" msgstr "タグ削除時にエラーが発生しました" @@ -3266,67 +3689,67 @@ msgstr "タグ削除時にエラーが発生しました" #: lib/SP/Repositories/Track/TrackRepository.php:68 msgid "Error while creating track" -msgstr "" +msgstr "Error while creating track" #: lib/SP/Repositories/Track/TrackRepository.php:85 msgid "Error while removing the track" -msgstr "" +msgstr "Error while removing the track" #: lib/SP/Repositories/Track/TrackRepository.php:102 msgid "Error while updating the track" -msgstr "" +msgstr "Error while updating the track" #: lib/SP/Repositories/Track/TrackRepository.php:118 msgid "Error while clearing tracks out" -msgstr "" +msgstr "Error while clearing tracks out" #: lib/SP/Repositories/Track/TrackRepository.php:146 msgid "Error while retrieving the track" -msgstr "" +msgstr "Error while retrieving the track" #: lib/SP/Repositories/Track/TrackRepository.php:169 #: lib/SP/Repositories/Track/TrackRepository.php:202 msgid "Error while retrieving the tracks" -msgstr "" +msgstr "Error while retrieving the tracks" -#: lib/SP/Repositories/User/UserPassRecoverRepository.php:89 +#: lib/SP/Repositories/User/UserPassRecoverRepository.php:86 msgid "Error while generating the recovering hash" -msgstr "" +msgstr "Error while generating the recovering hash" -#: lib/SP/Repositories/User/UserPassRecoverRepository.php:115 +#: lib/SP/Repositories/User/UserPassRecoverRepository.php:112 msgid "Error while checking hash" -msgstr "" +msgstr "ハッシュチェック" -#: lib/SP/Repositories/User/UserRepository.php:64 -#: lib/SP/Repositories/User/UserRepository.php:431 +#: lib/SP/Repositories/User/UserRepository.php:63 +#: lib/SP/Repositories/User/UserRepository.php:430 msgid "Duplicated user login/email" -msgstr "" +msgstr "Duplicated user login/email" -#: lib/SP/Repositories/User/UserRepository.php:101 -#: lib/SP/Repositories/User/UserRepository.php:678 -#: lib/SP/Services/User/UserService.php:313 +#: lib/SP/Repositories/User/UserRepository.php:100 +#: lib/SP/Repositories/User/UserRepository.php:677 +#: lib/SP/Services/User/UserService.php:310 msgid "Error while updating the user" msgstr "ユーザーの更新時にエラーが発生しました" -#: lib/SP/Repositories/User/UserRepository.php:185 +#: lib/SP/Repositories/User/UserRepository.php:184 msgid "Error while deleting the user" msgstr "ユーザーの削除時にエラーが発生しました" -#: lib/SP/Repositories/User/UserRepository.php:235 -#: lib/SP/Repositories/User/UserRepository.php:552 +#: lib/SP/Repositories/User/UserRepository.php:234 +#: lib/SP/Repositories/User/UserRepository.php:551 msgid "Error while retrieving the user's data" -msgstr "" +msgstr "Error while retrieving the user's data" -#: lib/SP/Repositories/User/UserRepository.php:354 -#: lib/SP/Services/User/UserService.php:212 +#: lib/SP/Repositories/User/UserRepository.php:353 +#: lib/SP/Services/User/UserService.php:209 msgid "Error while deleting the users" msgstr "ユーザーの削除時にエラーが発生しました" -#: lib/SP/Repositories/User/UserRepository.php:475 +#: lib/SP/Repositories/User/UserRepository.php:474 msgid "Error while creating the user" msgstr "ユーザーの作成時にエラーが発生しました" -#: lib/SP/Repositories/User/UserRepository.php:698 +#: lib/SP/Repositories/User/UserRepository.php:697 msgid "Error while updating the preferences" msgstr "設定の更新時にエラーが発生しました" @@ -3347,11 +3770,11 @@ msgstr "グループ作成時にエラーが発生しました" msgid "Error while updating the group" msgstr "グループの更新時にエラーが発生しました" -#: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:111 +#: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:108 msgid "Error while deleting the group users" msgstr "グループの削除時にエラーが発生しました" -#: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:143 +#: lib/SP/Repositories/UserGroup/UserToUserGroupRepository.php:140 msgid "Error while setting users in the group" msgstr "グループへユーザーを追加する時にエラーが発生しました" @@ -3360,7 +3783,7 @@ msgid "Error while removing the profile" msgstr "プロファイルの削除時にエラーが発生しました" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:181 -#: lib/SP/Services/UserProfile/UserProfileService.php:119 +#: lib/SP/Services/UserProfile/UserProfileService.php:114 msgid "Error while removing the profiles" msgstr "プロファイルの削除時にエラーが発生しました" @@ -3374,82 +3797,79 @@ msgid "Error while creating the profile" msgstr "プロファイルの作成時にエラーが発生しました" #: lib/SP/Repositories/UserProfile/UserProfileRepository.php:288 -#: lib/SP/Services/UserProfile/UserProfileService.php:146 +#: lib/SP/Services/UserProfile/UserProfileService.php:141 msgid "Error while updating the profile" msgstr "プロファイルの更新時にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:77 -#: lib/SP/Services/Account/AccountCryptService.php:86 -#: lib/SP/Services/Account/AccountCryptService.php:159 -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:72 -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:80 -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:88 -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:113 +#: lib/SP/Services/Account/AccountCryptService.php:71 +#: lib/SP/Services/Account/AccountCryptService.php:78 +#: lib/SP/Services/Account/AccountCryptService.php:140 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:67 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:75 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:83 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:108 msgid "Update Master Password" msgstr "マスターパスワードの更新" -#: lib/SP/Services/Account/AccountCryptService.php:105 +#: lib/SP/Services/Account/AccountCryptService.php:91 msgid "Error while updating the accounts' passwords" msgstr "パスワードの更新時にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:132 -msgid "There are no accounts for processing" -msgstr "処理中にエラーが発生しました" +#: lib/SP/Services/Account/AccountCryptService.php:117 +msgid "Error while retrieving the accounts' passwords" +msgstr "パスワードの復元時にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:134 -#: lib/SP/Services/Account/AccountCryptService.php:215 -msgid "Errors" -msgstr "エラー" - -#: lib/SP/Services/Account/AccountCryptService.php:160 -#, php-format +#: lib/SP/Services/Account/AccountCryptService.php:141 msgid "Accounts updated: %d / %d" msgstr "Accounts updated: %d / %d" -#: lib/SP/Services/Account/AccountCryptService.php:169 -#, php-format +#: lib/SP/Services/Account/AccountCryptService.php:150 msgid "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" msgstr "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" -#: lib/SP/Services/Account/AccountCryptService.php:179 +#: lib/SP/Services/Account/AccountCryptService.php:160 msgid "The record's master password does not match" msgstr "データベース上のマスターパスワードのハッシュ値と一致しません" -#: lib/SP/Services/Account/AccountCryptService.php:204 -#: lib/SP/Services/Account/AccountCryptService.php:209 +#: lib/SP/Services/Account/AccountCryptService.php:185 +#: lib/SP/Services/Account/AccountCryptService.php:190 msgid "Error while updating the account's password" msgstr "パスワードの更新時にエラーが発生しました" -#: lib/SP/Services/Account/AccountCryptService.php:236 -#: lib/SP/Services/Account/AccountCryptService.php:245 +#: lib/SP/Services/Account/AccountCryptService.php:196 +msgid "Errors" +msgstr "エラー" + +#: lib/SP/Services/Account/AccountCryptService.php:214 +#: lib/SP/Services/Account/AccountCryptService.php:221 msgid "Update Master Password (H)" msgstr "マスターパスワードの変更履歴" -#: lib/SP/Services/Account/AccountCryptService.php:265 +#: lib/SP/Services/Account/AccountCryptService.php:237 msgid "Error while updating the accounts' passwords in history" msgstr "パスワード履歴の更新時にエラーが発生しました" -#: lib/SP/Services/Account/AccountFileService.php:168 +#: lib/SP/Services/Account/AccountFileService.php:164 msgid "File not found" msgstr "ファイルが存在しません" -#: lib/SP/Services/Account/AccountService.php:170 -#: lib/SP/Services/Account/AccountService.php:630 +#: lib/SP/Services/Account/AccountService.php:163 +#: lib/SP/Services/Account/AccountService.php:623 msgid "Account not found" msgstr "アカウントが存在しません" -#: lib/SP/Services/Account/AccountService.php:240 +#: lib/SP/Services/Account/AccountService.php:233 msgid "Master password not set" msgstr "マスターパスワ-ドが入力されていません" -#: lib/SP/Services/Account/AccountService.php:303 -#: lib/SP/Services/Account/AccountService.php:703 -#: lib/SP/Services/Account/AccountService.php:758 +#: lib/SP/Services/Account/AccountService.php:296 +#: lib/SP/Services/Account/AccountService.php:696 +#: lib/SP/Services/Account/AccountService.php:751 msgid "The account doesn't exist" msgstr "アカウントが存在しません" #: lib/SP/Services/Api/ApiRequest.php:79 lib/SP/Services/Api/ApiRequest.php:113 -#: lib/SP/Services/Api/ApiService.php:247 +#: lib/SP/Services/Api/ApiService.php:231 msgid "Invalid data" msgstr "Invalid data" @@ -3457,159 +3877,157 @@ msgstr "Invalid data" msgid "Invalid format" msgstr "Invalid format" -#: lib/SP/Services/Api/ApiService.php:168 +#: lib/SP/Services/Api/ApiService.php:152 msgid "Wrong parameters" msgstr "Wrong parameters" -#: lib/SP/Services/Auth/LoginService.php:169 -#: lib/SP/Services/Auth/LoginService.php:495 -#: lib/SP/Services/Auth/LoginService.php:505 +#: lib/SP/Services/Auth/LoginService.php:161 +#: lib/SP/Services/Auth/LoginService.php:487 +#: lib/SP/Services/Auth/LoginService.php:497 +#: lib/SP/Services/Auth/LoginService.php:617 #: lib/SP/Services/Auth/LoginService.php:625 -#: lib/SP/Services/Auth/LoginService.php:633 +#: lib/SP/Services/Auth/LoginService.php:667 #: lib/SP/Services/Auth/LoginService.php:675 -#: lib/SP/Services/Auth/LoginService.php:683 msgid "Wrong login" msgstr "Wrong login" -#: lib/SP/Services/Auth/LoginService.php:237 -#: lib/SP/Services/Auth/LoginService.php:244 +#: lib/SP/Services/Auth/LoginService.php:229 +#: lib/SP/Services/Auth/LoginService.php:236 msgid "User disabled" msgstr "ユーザーを無効化" -#: lib/SP/Services/Auth/LoginService.php:296 +#: lib/SP/Services/Auth/LoginService.php:288 msgid "Using temporary password" msgstr "仮パスワードを利用する" -#: lib/SP/Services/Auth/LoginService.php:309 -#: lib/SP/Services/Auth/LoginService.php:315 -#: lib/SP/Services/Auth/LoginService.php:335 -#: lib/SP/Services/Auth/LoginService.php:341 +#: lib/SP/Services/Auth/LoginService.php:301 +#: lib/SP/Services/Auth/LoginService.php:307 +#: lib/SP/Services/Auth/LoginService.php:327 +#: lib/SP/Services/Auth/LoginService.php:333 msgid "Wrong master password" msgstr "マスターパスワードが一致しません" -#: lib/SP/Services/Auth/LoginService.php:357 +#: lib/SP/Services/Auth/LoginService.php:349 msgid "Your previous password is needed" msgstr "前のマスターパスワードが必要です" -#: lib/SP/Services/Auth/LoginService.php:369 +#: lib/SP/Services/Auth/LoginService.php:361 msgid "The Master Password either is not saved or is wrong" msgstr "" "マスターパスワードが未設定か入力されたマスターパスワ-ドが間違っています" -#: lib/SP/Services/Auth/LoginService.php:491 -#: lib/SP/Services/Auth/LoginService.php:569 +#: lib/SP/Services/Auth/LoginService.php:483 +#: lib/SP/Services/Auth/LoginService.php:561 msgid "LDAP Server" msgstr "LDAP Server" +#: lib/SP/Services/Auth/LoginService.php:505 #: lib/SP/Services/Auth/LoginService.php:513 -#: lib/SP/Services/Auth/LoginService.php:521 msgid "Account expired" -msgstr "" +msgstr "Account expired" +#: lib/SP/Services/Auth/LoginService.php:521 #: lib/SP/Services/Auth/LoginService.php:529 -#: lib/SP/Services/Auth/LoginService.php:537 msgid "User has no associated groups" msgstr "ユーザーはどのグループにも属していません" -#: lib/SP/Services/Auth/LoginService.php:665 +#: lib/SP/Services/Auth/LoginService.php:657 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:12 msgid "Authentication" -msgstr "Authentication" +msgstr "Authentication(認証)" -#: lib/SP/Services/AuthToken/AuthTokenService.php:146 -#: lib/SP/Services/AuthToken/AuthTokenService.php:284 -#: lib/SP/Services/AuthToken/AuthTokenService.php:298 -#: lib/SP/Services/AuthToken/AuthTokenService.php:318 +#: lib/SP/Services/AuthToken/AuthTokenService.php:139 +#: lib/SP/Services/AuthToken/AuthTokenService.php:277 +#: lib/SP/Services/AuthToken/AuthTokenService.php:291 msgid "Token not found" msgstr "トークンがありません" -#: lib/SP/Services/AuthToken/AuthTokenService.php:165 +#: lib/SP/Services/AuthToken/AuthTokenService.php:158 msgid "Error while removing the tokens" msgstr "トークン削除時にエラーが発生しました" -#: lib/SP/Services/Backup/FileBackupService.php:108 +#: lib/SP/Services/Backup/FileBackupService.php:100 msgid "Make Backup" msgstr "バックアップの作成" -#: lib/SP/Services/Backup/FileBackupService.php:115 +#: lib/SP/Services/Backup/FileBackupService.php:107 msgid "Error while doing the backup in compatibility mode" -msgstr "" +msgstr "Error while doing the backup in compatibility mode" -#: lib/SP/Services/Backup/FileBackupService.php:126 +#: lib/SP/Services/Backup/FileBackupService.php:118 msgid "Error while doing the backup" msgstr "バックアップ作成時にエラーが発生しました" -#: lib/SP/Services/Backup/FileBackupService.php:147 -#, php-format +#: lib/SP/Services/Backup/FileBackupService.php:139 msgid "Unable to create the backups directory (\"%s\")" msgstr "このディレクトリにはバックアップを作成できません (\"%s\")" -#: lib/SP/Services/Backup/FileBackupService.php:152 +#: lib/SP/Services/Backup/FileBackupService.php:144 msgid "Please, check the backup directory permissions" msgstr "“backup”ディレクトリのパーミッションを確認してください" -#: lib/SP/Services/Backup/FileBackupService.php:226 +#: lib/SP/Services/Backup/FileBackupService.php:218 msgid "Copying database" msgstr "データベースのコピー" -#: lib/SP/Services/Backup/FileBackupService.php:358 -#: lib/SP/Services/Backup/FileBackupService.php:382 +#: lib/SP/Services/Backup/FileBackupService.php:350 +#: lib/SP/Services/Backup/FileBackupService.php:374 msgid "Copying application" msgstr "アプリケーションのコピー" -#: lib/SP/Services/Backup/FileBackupService.php:377 +#: lib/SP/Services/Backup/FileBackupService.php:369 msgid "This operation is only available on Linux environments" msgstr "この操作はLinux以外の環境ではできません" -#: lib/SP/Services/Category/CategoryService.php:81 -#: lib/SP/Services/Category/CategoryService.php:102 -#: lib/SP/Services/Category/CategoryService.php:119 +#: lib/SP/Services/Category/CategoryService.php:77 +#: lib/SP/Services/Category/CategoryService.php:98 +#: lib/SP/Services/Category/CategoryService.php:115 msgid "Category not found" msgstr "カテゴリーが存在しません" -#: lib/SP/Services/Category/CategoryService.php:138 +#: lib/SP/Services/Category/CategoryService.php:134 msgid "Error while deleting categories" msgstr "カテゴリー削除時にエラーが発生しました" -#: lib/SP/Services/Client/ClientService.php:81 -#: lib/SP/Services/Client/ClientService.php:100 -#: lib/SP/Services/Client/ClientService.php:115 +#: lib/SP/Services/Client/ClientService.php:76 +#: lib/SP/Services/Client/ClientService.php:95 +#: lib/SP/Services/Client/ClientService.php:110 msgid "Client not found" msgstr "クライアントが存在しません" -#: lib/SP/Services/Config/ConfigBackupService.php:121 -#: lib/SP/Services/Config/ConfigBackupService.php:128 +#: lib/SP/Services/Config/ConfigBackupService.php:115 +#: lib/SP/Services/Config/ConfigBackupService.php:122 msgid "Unable to restore the configuration" msgstr "設定を復元することはできません" -#: lib/SP/Services/Config/ConfigService.php:71 -#: lib/SP/Services/Config/ConfigService.php:156 -#, php-format +#: lib/SP/Services/Config/ConfigService.php:68 +#: lib/SP/Services/Config/ConfigService.php:153 msgid "Parameter not found (%s)" msgstr "Parameter not found (%s)" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:109 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:103 msgid "Generate temporary password" msgstr "仮パスワードを発行する" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:116 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:110 msgid "Error while generating the temporary password" msgstr "仮パスワードの発行時にエラーが発生しました" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:137 -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:187 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:131 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:181 msgid "Temporary password expired" msgstr "仮パスワードの有効期限" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:166 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 msgid "Error while checking the temporary password" -msgstr "" +msgstr "Error while checking the temporary password" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:238 -#, php-format -msgid "%s Master Password" -msgstr "%s マスターパスワード" +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 +#, fuzzy +msgid "Master Password %s" +msgstr "新しいマスターパスワードは %s" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:239 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:233 msgid "" "A new sysPass master password has been generated, so next time you log into " "the application it will be requested." @@ -3617,128 +4035,122 @@ msgstr "" "マスターパスワードが変更されました。次回ログイン時に新しいマスターパスワード" "の入力が必要になります。" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:240 -#, php-format +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:234 msgid "The new Master Password is: %s" msgstr "新しいマスターパスワードは %s" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:241 -#, php-format +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:235 msgid "This password will be valid until: %s" msgstr "このパスワードの有効期限は%sです" -#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:242 +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:236 msgid "Please, don't forget to log in as soon as possible to save the changes." msgstr "パスワード変更後はできるだけすみやかに再度ログインしてください。" -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:73 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:68 msgid "There aren't any data from custom fields" msgstr "カスタムフィールドは存在しません" -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:81 -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:89 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:76 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:84 msgid "Updating encrypted data" -msgstr "" +msgstr "Updating encrypted data" -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:114 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:109 msgid "Records updated" -msgstr "" +msgstr "Records updated" -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:115 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:110 msgid "Records not updated" -msgstr "" +msgstr "Records not updated" -#: lib/SP/Services/CustomField/CustomFieldCryptService.php:141 +#: lib/SP/Services/CustomField/CustomFieldCryptService.php:136 msgid "Error while updating the custom fields data" msgstr "カスタムフィールドの更新時にエラーが発生しました" -#: lib/SP/Services/CustomField/CustomFieldDefService.php:114 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:109 msgid "Field not found" msgstr "フィールドが見つかりませんでした" -#: lib/SP/Services/CustomField/CustomFieldDefService.php:135 +#: lib/SP/Services/CustomField/CustomFieldDefService.php:130 msgid "Error while deleting the fields" msgstr "フィールドの削除時にエラーが発生しました" -#: lib/SP/Services/CustomField/CustomFieldTypeService.php:86 +#: lib/SP/Services/CustomField/CustomFieldTypeService.php:84 msgid "Field type not found" -msgstr "" +msgstr "Field type not found" -#: lib/SP/Services/Export/XmlExportService.php:130 +#: lib/SP/Services/Export/XmlExportService.php:125 #: lib/SP/Storage/File/FileCacheBase.php:98 -#, php-format msgid "Unable to create the directory (%s)" msgstr "ディレクトリーが作成できませんでした (%s)" -#: lib/SP/Services/Export/XmlExportService.php:204 +#: lib/SP/Services/Export/XmlExportService.php:199 msgid "Error while exporting" msgstr "エクスポート時にエラーが発生しました" -#: lib/SP/Services/Export/XmlExportService.php:271 +#: lib/SP/Services/Export/XmlExportService.php:266 msgid "Exporting categories" msgstr "カテゴリーをエクスポート中" -#: lib/SP/Services/Export/XmlExportService.php:383 +#: lib/SP/Services/Export/XmlExportService.php:378 msgid "Exporting clients" msgstr "クライアントをエクスポート中" -#: lib/SP/Services/Export/XmlExportService.php:429 +#: lib/SP/Services/Export/XmlExportService.php:424 msgid "Exporting tags" msgstr "タグをエクスポート中" -#: lib/SP/Services/Export/XmlExportService.php:473 +#: lib/SP/Services/Export/XmlExportService.php:468 msgid "Exporting accounts" msgstr "アカウントをエクスポート中" -#: lib/SP/Services/Export/XmlExportService.php:583 +#: lib/SP/Services/Export/XmlExportService.php:578 msgid "Error while creating the XML file" msgstr "XMLファイルを作成中" -#: lib/SP/Services/Export/XmlVerifyService.php:112 -#: lib/SP/Services/Import/XmlFileImport.php:84 +#: lib/SP/Services/Export/XmlVerifyService.php:110 +#: lib/SP/Services/Import/XmlFileImport.php:81 msgid "Unable to process the XML file" msgstr "XMLファイルを作成できません" -#: lib/SP/Services/Export/XmlVerifyService.php:183 -#: lib/SP/Services/Import/SyspassImport.php:185 +#: lib/SP/Services/Export/XmlVerifyService.php:181 +#: lib/SP/Services/Import/SyspassImport.php:177 msgid "Error while checking integrity hash" -msgstr "" +msgstr "Error while checking integrity hash" -#: lib/SP/Services/Export/XmlVerifyService.php:200 -#: lib/SP/Services/Export/XmlVerifyService.php:230 -#: lib/SP/Services/Import/SyspassImport.php:129 -#: lib/SP/Services/Import/SyspassImport.php:157 +#: lib/SP/Services/Export/XmlVerifyService.php:198 +#: lib/SP/Services/Export/XmlVerifyService.php:228 +#: lib/SP/Services/Import/SyspassImport.php:125 +#: lib/SP/Services/Import/SyspassImport.php:149 msgid "Wrong encryption password" -msgstr "" +msgstr "Wrong encryption password" -#: lib/SP/Services/Import/CsvImport.php:51 -#, php-format +#: lib/SP/Services/Import/CsvImport.php:50 msgid "Detected format: %s" -msgstr "" +msgstr "Detected format: %s" + +#: lib/SP/Services/Import/CsvImportBase.php:130 +#: lib/SP/Services/Import/CsvImportBase.php:180 +msgid "Wrong number of fields (%d)" +msgstr "Wrong number of fields (%d)" #: lib/SP/Services/Import/CsvImportBase.php:132 #: lib/SP/Services/Import/CsvImportBase.php:182 -#, php-format -msgid "Wrong number of fields (%d)" -msgstr "" - -#: lib/SP/Services/Import/CsvImportBase.php:134 -#: lib/SP/Services/Import/CsvImportBase.php:184 -#, php-format msgid "Please, check the CSV file format in line %s" msgstr "CSV ファイルの%s行目のフォーマットが破損しています" -#: lib/SP/Services/Import/CsvImportBase.php:164 -#: lib/SP/Services/Import/KeepassImport.php:105 -#: lib/SP/Services/Import/SyspassImport.php:396 +#: lib/SP/Services/Import/CsvImportBase.php:162 +#: lib/SP/Services/Import/KeepassImport.php:103 +#: lib/SP/Services/Import/SyspassImport.php:388 msgid "Account imported" msgstr "アカウントをインポートしました" -#: lib/SP/Services/Import/CsvImportBase.php:172 +#: lib/SP/Services/Import/CsvImportBase.php:170 msgid "Error while importing the account" msgstr "アカウントのインポート時にエラーが発生しました" -#: lib/SP/Services/Import/CsvImportBase.php:173 +#: lib/SP/Services/Import/CsvImportBase.php:171 msgid "Error while processing line" msgstr "処理中にエラーが発生しました" @@ -3754,47 +4166,46 @@ msgstr "webサーバーの所有者権限設定を確認してください" msgid "Please, check PHP configuration for upload files" msgstr "ファイルアップロードに関するPHP設定を確認してください" -#: lib/SP/Services/Import/ImportService.php:101 -#, php-format +#: lib/SP/Services/Import/ImportService.php:96 msgid "Mime type not supported (\"%s\")" msgstr "このMIME Typeはサポートしていません(“%s”)" -#: lib/SP/Services/Import/ImportService.php:103 +#: lib/SP/Services/Import/ImportService.php:98 msgid "Please, check the file format" msgstr "ファイルのフォーマットを確認してください" -#: lib/SP/Services/Import/ImportTrait.php:111 +#: lib/SP/Services/Import/ImportTrait.php:107 msgid "Category Id not set. Unable to import account." msgstr "" "カテゴリーIDが設定されていないためアカウントをインポートできませんでした。" -#: lib/SP/Services/Import/ImportTrait.php:115 +#: lib/SP/Services/Import/ImportTrait.php:111 msgid "Client Id not set. Unable to import account." msgstr "" "クライアントIDが設定されていないためアカウントをインポートできませんでした。" -#: lib/SP/Services/Import/KeepassImport.php:60 +#: lib/SP/Services/Import/KeepassImport.php:58 msgid "KeePass XML Import" msgstr "KeePassのXMLファイルをインポートする" -#: lib/SP/Services/Import/KeepassImport.php:93 -#: lib/SP/Services/Import/SyspassImport.php:220 +#: lib/SP/Services/Import/KeepassImport.php:91 +#: lib/SP/Services/Import/SyspassImport.php:212 msgid "Category imported" msgstr "カテゴリーをインポートしました" -#: lib/SP/Services/Import/SyspassImport.php:63 +#: lib/SP/Services/Import/SyspassImport.php:59 msgid "sysPass XML Import" msgstr "sysPassのXMLファイルをインポートする" -#: lib/SP/Services/Import/SyspassImport.php:74 +#: lib/SP/Services/Import/SyspassImport.php:70 msgid "Encryption password not set" msgstr "パスワードが設定されていません" -#: lib/SP/Services/Import/SyspassImport.php:171 +#: lib/SP/Services/Import/SyspassImport.php:163 msgid "Data unencrypted" msgstr "データが暗号化されていません" -#: lib/SP/Services/Import/SyspassImport.php:186 +#: lib/SP/Services/Import/SyspassImport.php:178 msgid "" "If you are importing an exported file from the same origin, the data could " "be compromised." @@ -3802,131 +4213,129 @@ msgstr "" "異なるオリジンで生成されたデータをインポートするとデータが破損する場合があり" "ます。" -#: lib/SP/Services/Import/SyspassImport.php:259 -#: lib/SP/Services/Import/SyspassImport.php:299 +#: lib/SP/Services/Import/SyspassImport.php:251 +#: lib/SP/Services/Import/SyspassImport.php:291 msgid "Client imported" msgstr "クライアントをインポートしました" -#: lib/SP/Services/Import/SyspassImport.php:335 +#: lib/SP/Services/Import/SyspassImport.php:327 msgid "Tag imported" msgstr "タグをインポートしました" -#: lib/SP/Services/Import/XmlFileImport.php:108 +#: lib/SP/Services/Import/XmlFileImport.php:105 msgid "XML file not supported" msgstr "XMLファイルに対応していません" -#: lib/SP/Services/Import/XmlFileImport.php:110 +#: lib/SP/Services/Import/XmlFileImport.php:107 msgid "Unable to guess the application which data was exported from" msgstr "" "このデータをエクスポートしたアプリケーションの種類が判別できませんでした" -#: lib/SP/Services/Import/XmlImport.php:101 +#: lib/SP/Services/Import/XmlImport.php:98 msgid "Format not detected" -msgstr "" +msgstr "Format not detected" -#: lib/SP/Services/Import/XmlImport.php:109 +#: lib/SP/Services/Import/XmlImport.php:106 msgid "Not implemented" -msgstr "" +msgstr "Not implemented" -#: lib/SP/Services/Import/XmlImportBase.php:111 -#: lib/SP/Services/Import/XmlImportTrait.php:80 +#: lib/SP/Services/Import/XmlImportBase.php:107 +#: lib/SP/Services/Import/XmlImportTrait.php:78 msgid "Invalid Method" -msgstr "" +msgstr "Invalid Method" -#: lib/SP/Services/Import/XmlImportBase.php:123 -#: lib/SP/Services/Import/XmlImportTrait.php:70 +#: lib/SP/Services/Import/XmlImportBase.php:119 +#: lib/SP/Services/Import/XmlImportTrait.php:68 msgid "Invalid XML format" -msgstr "" +msgstr "Invalid XML format" -#: lib/SP/Services/Import/XmlImportBase.php:125 -#: lib/SP/Services/Import/XmlImportTrait.php:72 -#, php-format +#: lib/SP/Services/Import/XmlImportBase.php:121 +#: lib/SP/Services/Import/XmlImportTrait.php:70 msgid "\"%s\" node doesn't exist" -msgstr "" +msgstr "\"%s\" node doesn't exist" -#: lib/SP/Services/Install/Installer.php:111 +#: lib/SP/Services/Install/Installer.php:105 msgid "Please, enter the admin username" msgstr "adminユーザー名を入力してください" -#: lib/SP/Services/Install/Installer.php:113 +#: lib/SP/Services/Install/Installer.php:107 msgid "Admin user to log into the application" -msgstr "" +msgstr "Admin user to log into the application" -#: lib/SP/Services/Install/Installer.php:118 +#: lib/SP/Services/Install/Installer.php:112 msgid "Please, enter the admin's password" msgstr "adminユーザーのパスワードを入力してください" -#: lib/SP/Services/Install/Installer.php:120 +#: lib/SP/Services/Install/Installer.php:114 msgid "Application administrator's password" msgstr "アプリケーション管理者のパスワードを入力してください" -#: lib/SP/Services/Install/Installer.php:125 +#: lib/SP/Services/Install/Installer.php:119 msgid "Please, enter the Master Password" msgstr "マスターパスワードを入力してください" -#: lib/SP/Services/Install/Installer.php:127 +#: lib/SP/Services/Install/Installer.php:121 msgid "Master password to encrypt the passwords" msgstr "マスターパスワードにより全てのパスワードが暗号化された形で保存されます" -#: lib/SP/Services/Install/Installer.php:132 +#: lib/SP/Services/Install/Installer.php:126 msgid "Master password too short" msgstr "マスターパスワードが短すぎます" -#: lib/SP/Services/Install/Installer.php:134 +#: lib/SP/Services/Install/Installer.php:128 msgid "The Master Password length need to be at least 11 characters" msgstr "マスターパスワードは11文字以上にしてください" -#: lib/SP/Services/Install/Installer.php:139 +#: lib/SP/Services/Install/Installer.php:133 msgid "Please, enter the database user" msgstr "データベース接続のためのユーザー名を入力してください" -#: lib/SP/Services/Install/Installer.php:141 +#: lib/SP/Services/Install/Installer.php:135 msgid "An user with database administrative rights" msgstr "データベースの管理者権限を持つユーザー" -#: lib/SP/Services/Install/Installer.php:146 +#: lib/SP/Services/Install/Installer.php:140 msgid "Please, enter the database password" msgstr "データベース接続のためのパスワードを入力してください" -#: lib/SP/Services/Install/Installer.php:148 +#: lib/SP/Services/Install/Installer.php:142 msgid "Database administrator's password" msgstr "データベースの管理者権限を持つユーザーのパスワードを入力してください" -#: lib/SP/Services/Install/Installer.php:153 +#: lib/SP/Services/Install/Installer.php:147 msgid "Please, enter the database name" msgstr "データベース名を入力してください" -#: lib/SP/Services/Install/Installer.php:155 +#: lib/SP/Services/Install/Installer.php:149 msgid "Application database name. eg. syspass" msgstr "sysPassで利用するデータベースです(例: sysPass)" -#: lib/SP/Services/Install/Installer.php:160 +#: lib/SP/Services/Install/Installer.php:154 msgid "Database name cannot contain \".\"" msgstr "データベース名に「.」を含めることはできません" -#: lib/SP/Services/Install/Installer.php:162 +#: lib/SP/Services/Install/Installer.php:156 msgid "Please, remove dots in database name" msgstr "データベース名にピリオドを含めることはできません" -#: lib/SP/Services/Install/Installer.php:167 +#: lib/SP/Services/Install/Installer.php:161 msgid "Please, enter the database server" msgstr "データベースのホスト名を入力してください" -#: lib/SP/Services/Install/Installer.php:169 +#: lib/SP/Services/Install/Installer.php:163 msgid "Server where the database will be installed" msgstr "データベースがインストールされているサーバーのホスト名" -#: lib/SP/Services/Install/Installer.php:324 -#: lib/SP/Services/Install/Installer.php:375 +#: lib/SP/Services/Install/Installer.php:318 +#: lib/SP/Services/Install/Installer.php:369 msgid "Warn to developer" -msgstr "" +msgstr "Warn to developer" -#: lib/SP/Services/Install/Installer.php:365 +#: lib/SP/Services/Install/Installer.php:359 msgid "Error while creating 'admin' user" msgstr "adminユーザー作成中にエラーが発生しました" #: lib/SP/Services/Install/MySQL.php:135 -#, php-format msgid "Unable to check the sysPass user (%s)" msgstr "ユーザーのチェック時中にエラーが発生しました(%s)" @@ -3935,9 +4344,8 @@ msgid "Please, check the DB connection user rights" msgstr "データベースとのコネクションを確認してください" #: lib/SP/Services/Install/MySQL.php:181 -#, php-format msgid "Error while creating the MySQL connection user '%s'" -msgstr "" +msgstr "Error while creating the MySQL connection user '%s'" #: lib/SP/Services/Install/MySQL.php:201 msgid "The database already exists" @@ -3949,7 +4357,6 @@ msgstr "異なるデータベース名を使用するか、既存のデータベ #: lib/SP/Services/Install/MySQL.php:213 lib/SP/Services/Install/MySQL.php:329 #: lib/SP/Services/Install/MySQL.php:341 -#, php-format msgid "Error while creating the DB ('%s')" msgstr "データベース作成時にエラーが発生しました(%s)" @@ -3958,7 +4365,6 @@ msgid "Please check the database user permissions" msgstr "データベースのパーミッションを確認してください" #: lib/SP/Services/Install/MySQL.php:237 -#, php-format msgid "Error while setting the database permissions ('%s')" msgstr "データベースのパーミッション設定時にエラーが発生しました(%s)" @@ -3971,9 +4377,8 @@ msgid "You need to create it and assign the needed permissions" msgstr "データベースに適切なパーミッションを持ったユーザーを作成してください" #: lib/SP/Services/Install/MySQL.php:309 -#, php-format msgid "Error while selecting '%s' database (%s)" -msgstr "" +msgstr "Error while selecting '%s' database (%s)" #: lib/SP/Services/Install/MySQL.php:311 msgid "" @@ -3991,30 +4396,30 @@ msgstr "データベース構築時にエラーが発生しました。" msgid "Please, try the installation again" msgstr "もういちど最初からインストール作業を行ってください" -#: lib/SP/Services/ItemPreset/ItemPresetService.php:86 -#: lib/SP/Services/ItemPreset/ItemPresetService.php:107 +#: lib/SP/Services/ItemPreset/ItemPresetService.php:84 +#: lib/SP/Services/ItemPreset/ItemPresetService.php:105 msgid "Value not found" -msgstr "" +msgstr "Value not found" -#: lib/SP/Services/ItemPreset/ItemPresetService.php:190 +#: lib/SP/Services/ItemPreset/ItemPresetService.php:188 msgid "Error while deleting the values" -msgstr "" +msgstr "Error while deleting the values" -#: lib/SP/Services/Ldap/LdapImportService.php:108 -#: lib/SP/Services/Ldap/LdapImportService.php:189 +#: lib/SP/Services/Ldap/LdapImportService.php:107 +#: lib/SP/Services/Ldap/LdapImportService.php:188 msgid "Objects found" -msgstr "" +msgstr "Objects found" -#: lib/SP/Services/Ldap/LdapImportService.php:133 -#: lib/SP/Services/Ldap/LdapImportService.php:222 +#: lib/SP/Services/Ldap/LdapImportService.php:132 +#: lib/SP/Services/Ldap/LdapImportService.php:221 msgid "Imported from LDAP" msgstr "LDAPをインポートしました" -#: lib/SP/Services/Mail/MailService.php:67 +#: lib/SP/Services/Mail/MailService.php:66 msgid "Mail test" msgstr "メールのテスト" -#: lib/SP/Services/Mail/MailService.php:68 +#: lib/SP/Services/Mail/MailService.php:67 msgid "" "This is a test email in order to verify that the configuration is working " "right." @@ -4022,2053 +4427,3303 @@ msgstr "" "本メールはsysPassのメール設定が正しく機能しているかを確認するためのテストメー" "ルです。" -#: lib/SP/Services/Notification/NotificationService.php:106 -#: lib/SP/Services/Notification/NotificationService.php:125 -#: lib/SP/Services/Notification/NotificationService.php:184 -#: lib/SP/Services/Notification/NotificationService.php:214 +#: lib/SP/Services/Mail/MailService.php:186 +#, fuzzy +msgid "Mail service unavailable" +msgstr "メール" + +#: lib/SP/Services/Notification/NotificationService.php:102 +#: lib/SP/Services/Notification/NotificationService.php:121 +#: lib/SP/Services/Notification/NotificationService.php:180 +#: lib/SP/Services/Notification/NotificationService.php:210 msgid "Notification not found" msgstr "通知はありません" -#: lib/SP/Services/Plugin/PluginDataService.php:103 -#: lib/SP/Services/Plugin/PluginDataService.php:127 -#: lib/SP/Services/Plugin/PluginDataService.php:171 -#: lib/SP/Services/Plugin/PluginDataService.php:189 -msgid "Plugin's data not found" -msgstr "プラグインデータがありません" - -#: lib/SP/Services/Plugin/PluginService.php:94 -#: lib/SP/Services/Plugin/PluginService.php:155 -#: lib/SP/Services/Plugin/PluginService.php:188 -#: lib/SP/Services/Plugin/PluginService.php:208 -#: lib/SP/Services/Plugin/PluginService.php:226 -#: lib/SP/Services/Plugin/PluginService.php:243 -#: lib/SP/Services/Plugin/PluginService.php:260 -#: lib/SP/Services/Plugin/PluginService.php:277 +#: lib/SP/Services/Plugin/PluginService.php:92 +#: lib/SP/Services/Plugin/PluginService.php:153 +#: lib/SP/Services/Plugin/PluginService.php:186 +#: lib/SP/Services/Plugin/PluginService.php:206 +#: lib/SP/Services/Plugin/PluginService.php:224 +#: lib/SP/Services/Plugin/PluginService.php:241 +#: lib/SP/Services/Plugin/PluginService.php:258 +#: lib/SP/Services/Plugin/PluginService.php:275 msgid "Plugin not found" msgstr "プラグインはありません" -#: lib/SP/Services/PublicLink/PublicLinkService.php:129 -#: lib/SP/Services/PublicLink/PublicLinkService.php:152 -#: lib/SP/Services/PublicLink/PublicLinkService.php:226 -#: lib/SP/Services/PublicLink/PublicLinkService.php:304 -#: lib/SP/Services/PublicLink/PublicLinkService.php:339 -#: lib/SP/Services/PublicLink/PublicLinkService.php:360 +#: lib/SP/Services/PublicLink/PublicLinkService.php:123 +#: lib/SP/Services/PublicLink/PublicLinkService.php:146 +#: lib/SP/Services/PublicLink/PublicLinkService.php:220 +#: lib/SP/Services/PublicLink/PublicLinkService.php:298 +#: lib/SP/Services/PublicLink/PublicLinkService.php:333 +#: lib/SP/Services/PublicLink/PublicLinkService.php:354 msgid "Link not found" msgstr "関連しているアカウントはありません" -#: lib/SP/Services/PublicLink/PublicLinkService.php:245 +#: lib/SP/Services/PublicLink/PublicLinkService.php:239 msgid "Error while removing the links" msgstr "関連するアカウントを解除する時にエラーが発生しました" -#: lib/SP/Services/Service.php:111 +#: lib/SP/Services/Service.php:109 msgid "Rollback" msgstr "Rollback" -#: lib/SP/Services/Service.php:117 +#: lib/SP/Services/Service.php:115 msgid "Unable to start a transaction" msgstr "トランザクションを開始できません" -#: lib/SP/Services/Service.php:135 lib/SP/Services/Service.php:142 +#: lib/SP/Services/Service.php:133 lib/SP/Services/Service.php:140 msgid "Error while retrieving master password from context" msgstr "マスターパスワードの復元時にエラーが発生しました" -#: lib/SP/Services/Service.php:162 lib/SP/Services/Service.php:166 +#: lib/SP/Services/Service.php:160 lib/SP/Services/Service.php:164 msgid "Error while setting master password in context" msgstr "マスターパスワードの設定時にエラーが発生しました" -#: lib/SP/Services/Tag/TagService.php:81 lib/SP/Services/Tag/TagService.php:100 -#: lib/SP/Services/Tag/TagService.php:117 +#: lib/SP/Services/Tag/TagService.php:75 lib/SP/Services/Tag/TagService.php:94 +#: lib/SP/Services/Tag/TagService.php:111 msgid "Tag not found" msgstr "タグが見つかりません" -#: lib/SP/Services/Task/TaskService.php:85 +#: lib/SP/Services/Task/TaskService.php:84 msgid "Unable to create the lock file" msgstr "ロックファイルが生成できません" -#: lib/SP/Services/Task/TaskService.php:94 -msgid "Task not set within wait time" -msgstr "" - -#: lib/SP/Services/Task/TaskService.php:183 +#: lib/SP/Services/Task/TaskService.php:182 msgid "Waiting for progress updating ..." msgstr "アップデート中です、しばらくお待ちください…" -#: lib/SP/Services/Track/TrackService.php:94 -#: lib/SP/Services/Track/TrackService.php:108 -#: lib/SP/Services/Track/TrackService.php:135 +#: lib/SP/Services/Track/TrackService.php:87 +#: lib/SP/Services/Track/TrackService.php:101 +#: lib/SP/Services/Track/TrackService.php:128 msgid "Track not found" msgstr "トラックがありません" -#: lib/SP/Services/Track/TrackService.php:169 -#, php-format +#: lib/SP/Services/Track/TrackService.php:162 msgid "Attempts exceeded (%d/%d)" -msgstr "" +msgstr "Attempts exceeded (%d/%d)" -#: lib/SP/Services/Track/TrackService.php:170 +#: lib/SP/Services/Track/TrackService.php:163 msgid "Seconds" msgstr "秒" -#: lib/SP/Services/Track/TrackService.php:215 +#: lib/SP/Services/Track/TrackService.php:208 msgid "IP address not set" msgstr "IPアドレスがありません" -#: lib/SP/Services/Upgrade/UpgradeAppService.php:72 -#: lib/SP/Services/Upgrade/UpgradeAppService.php:95 +#: lib/SP/Services/Upgrade/UpgradeAppService.php:69 +#: lib/SP/Services/Upgrade/UpgradeAppService.php:92 msgid "Update Application" msgstr "アプリケーションのアップデート" -#: lib/SP/Services/Upgrade/UpgradeAppService.php:79 +#: lib/SP/Services/Upgrade/UpgradeAppService.php:76 msgid "Error while applying the application update" msgstr "アプリケーションのアプデートを開始できませんでした" -#: lib/SP/Services/Upgrade/UpgradeAppService.php:81 -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:104 -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:112 +#: lib/SP/Services/Upgrade/UpgradeAppService.php:78 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:103 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:111 msgid "Please, check the event log for more details" msgstr "event logを確認してください" -#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:56 -#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:86 +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:55 +#: lib/SP/Services/Upgrade/UpgradeAuthToken.php:85 msgid "API authorizations update" msgstr "API認証の更新" -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:81 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:215 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:261 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:310 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:335 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:79 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:213 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:259 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:308 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:333 msgid "Update Configuration" msgstr "設定の更新" -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:93 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:91 msgid "Parameter" -msgstr "パラメ-ター" +msgstr "Parameter" -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:132 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:136 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:130 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:134 msgid "Error while updating the configuration" msgstr "設定の更新時にエラーが発生しました" -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:287 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:285 msgid "MIME type set for this extension" msgstr "この拡張子に設定されたMIME Type" -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:288 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:286 msgid "MIME type" msgstr "MIME Type" -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:289 -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:298 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:287 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:296 msgid "Extension" msgstr "Extension" -#: lib/SP/Services/Upgrade/UpgradeConfigService.php:297 +#: lib/SP/Services/Upgrade/UpgradeConfigService.php:295 msgid "MIME type not found for this extension" msgstr "この拡張子に対応するMIME Typeが見つかりませんでした" -#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:58 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:89 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:61 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:112 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:172 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:204 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:222 -#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:268 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:57 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldData.php:88 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:60 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:111 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:170 +#: lib/SP/Services/Upgrade/UpgradeCustomFieldDefinition.php:202 msgid "Custom fields update" msgstr "カスタムフィールドの更新" -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:95 -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:126 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:94 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:125 msgid "Update DB" msgstr "データベースの更新" -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:102 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:101 msgid "Error while applying an auxiliary update" -msgstr "" +msgstr "Error while applying an auxiliary update" -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:110 -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:181 -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:185 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:109 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:180 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:184 msgid "Error while updating the database" msgstr "データベースの更新中にエラーが発生しました" -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:158 -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:160 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:157 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:159 msgid "Update file does not contain data" msgstr "アップロードされたファイルにデータがありません" -#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:191 +#: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:190 msgid "Database updating was completed successfully." msgstr "データベースは正常に更新されました。" -#: lib/SP/Services/Upgrade/UpgradePlugin.php:49 -#: lib/SP/Services/Upgrade/UpgradePlugin.php:58 -msgid "Plugins upgrade" -msgstr "プラグインのアップデート" - -#: lib/SP/Services/Upgrade/UpgradePublicLink.php:57 -#: lib/SP/Services/Upgrade/UpgradePublicLink.php:103 +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:56 +#: lib/SP/Services/Upgrade/UpgradePublicLink.php:102 msgid "Public links update" msgstr "共有リンクの再発行" -#: lib/SP/Services/User/UserPassService.php:261 -#: lib/SP/Services/User/UserService.php:126 -#: lib/SP/Services/User/UserService.php:157 -#: lib/SP/Services/User/UserService.php:176 +#: lib/SP/Services/User/UserPassService.php:257 +#: lib/SP/Services/User/UserService.php:123 +#: lib/SP/Services/User/UserService.php:154 +#: lib/SP/Services/User/UserService.php:173 msgid "User does not exist" msgstr "ユーザーが存在しません" -#: lib/SP/Services/User/UserService.php:195 +#: lib/SP/Services/User/UserService.php:192 msgid "User not found" msgstr "ユーザーが見つかりません" -#: lib/SP/Services/UserGroup/UserGroupService.php:85 -#: lib/SP/Services/UserGroup/UserGroupService.php:103 -#: lib/SP/Services/UserGroup/UserGroupService.php:192 -#: lib/SP/Services/UserGroup/UserToUserGroupService.php:61 +#: lib/SP/Services/UserGroup/UserGroupService.php:80 +#: lib/SP/Services/UserGroup/UserGroupService.php:98 +#: lib/SP/Services/UserGroup/UserGroupService.php:187 +#: lib/SP/Services/UserGroup/UserToUserGroupService.php:57 msgid "Group not found" msgstr "グループが見つかりません" -#: lib/SP/Services/UserGroup/UserGroupService.php:120 +#: lib/SP/Services/UserGroup/UserGroupService.php:115 msgid "Error while deleting the groups" msgstr "グループ削除時にエラーが発生しました" -#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:73 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:66 msgid "A request for changing your user password has been done." msgstr "ユーザーパスワードの変更リクエストが完了しました。" -#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:75 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:68 msgid "In order to complete the process, please go to this URL:" msgstr "処理が完了しました。以下のURLにアクセスしてください:" -#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:79 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:72 msgid "If you have not requested this action, please dismiss this message." msgstr "この操作に見覚えがない場合はこのままこのメッセージを閉じてください。" -#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:94 -#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:162 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:87 +#: lib/SP/Services/UserPassRecover/UserPassRecoverService.php:155 msgid "Wrong hash or expired" msgstr "ハッシュが一致しないもしくは、有効期限切れです" -#: lib/SP/Services/UserProfile/UserProfileService.php:70 -#: lib/SP/Services/UserProfile/UserProfileService.php:102 +#: lib/SP/Services/UserProfile/UserProfileService.php:65 +#: lib/SP/Services/UserProfile/UserProfileService.php:97 msgid "Profile not found" msgstr "プロファイルが見つかりません" -#: lib/SP/Services/Wiki/DokuWikiApi.php:69 +#: lib/SP/Services/Wiki/DokuWikiApi.php:68 msgid "Authentication error" msgstr "認証エラー" -#: lib/SP/Services/Wiki/DokuWikiApiBase.php:198 +#: lib/SP/Services/Wiki/DokuWikiApiBase.php:196 msgid "Error while doing the query" msgstr "検索中にエラーが発生しました" -#: lib/SP/Services/Wiki/DokuWikiApiBase.php:230 +#: lib/SP/Services/Wiki/DokuWikiApiBase.php:228 msgid "Connection URL not set" -msgstr "" +msgstr "Connection URL not set" -#: lib/SP/Storage/Database/Database.php:132 +#: lib/SP/Storage/Database/Database.php:131 msgid "Blank query" -msgstr "" +msgstr "Blank query" -#: lib/SP/Storage/Database/Database.php:249 +#: lib/SP/Storage/Database/Database.php:248 msgid "Integrity constraint" -msgstr "" +msgstr "Integrity constraint" -#: lib/SP/Storage/Database/MySQLHandler.php:101 -#: lib/SP/Storage/Database/MySQLHandler.php:168 +#: lib/SP/Storage/Database/MySQLHandler.php:100 +#: lib/SP/Storage/Database/MySQLHandler.php:167 msgid "Please, check the connection parameters" msgstr "接続設定を確認してください" -#: lib/SP/Storage/Database/QueryData.php:338 +#: lib/SP/Storage/Database/QueryData.php:338 app/resources/strings.js.inc:26 msgid "Error while querying" -msgstr "" +msgstr "Error while querying" -#: lib/SP/Storage/File/FileCachePacked.php:47 -#, php-format +#: lib/SP/Storage/File/FileCachePacked.php:45 msgid "Error while decompressing the file data (%s)" -msgstr "" +msgstr "Error while decompressing the file data (%s)" -#: lib/SP/Storage/File/FileCachePacked.php:53 +#: lib/SP/Storage/File/FileCachePacked.php:51 msgid "Error while retrieving the data" -msgstr "" +msgstr "Error while retrieving the data" -#: lib/SP/Storage/File/FileCachePacked.php:72 -#, php-format +#: lib/SP/Storage/File/FileCachePacked.php:70 msgid "Error while compressing the file data (%s)" -msgstr "" +msgstr "Error while compressing the file data (%s)" #: lib/SP/Storage/File/FileHandler.php:76 #: lib/SP/Storage/File/FileHandler.php:165 -#, php-format msgid "Unable to read/write the file (%s)" -msgstr "" +msgstr "Unable to read/write the file (%s)" #: lib/SP/Storage/File/FileHandler.php:101 -#, php-format msgid "Unable to open the file (%s)" -msgstr "" +msgstr "Unable to open the file (%s)" #: lib/SP/Storage/File/FileHandler.php:119 -#, php-format msgid "Unable to obtain a lock (%s)" -msgstr "" +msgstr "Unable to obtain a lock (%s)" #: lib/SP/Storage/File/FileHandler.php:134 #: lib/SP/Storage/File/FileHandler.php:148 -#, php-format msgid "Unable to read from file (%s)" -msgstr "" +msgstr "Unable to read from file (%s)" #: lib/SP/Storage/File/FileHandler.php:207 -#, php-format msgid "Unable to close the file (%s)" -msgstr "" +msgstr "Unable to close the file (%s)" #: lib/SP/Storage/File/FileHandler.php:261 -#, php-format msgid "Unable to write in file (%s)" -msgstr "" +msgstr "Unable to write in file (%s)" #: lib/SP/Storage/File/FileHandler.php:276 -#, php-format msgid "File not found (%s)" msgstr "ファイルが見つかりませんでした(%s)" #: lib/SP/Storage/File/FileHandler.php:301 #: lib/SP/Storage/File/FileHandler.php:356 -#, php-format msgid "Unable to read/write file (%s)" -msgstr "" +msgstr "Unable to read/write file (%s)" #: lib/SP/Storage/File/FileHandler.php:328 -#, php-format msgid "Unable to delete file (%s)" -msgstr "" +msgstr "Unable to delete file (%s)" -#: lib/SP/Storage/File/XmlHandler.php:90 lib/SP/Storage/File/XmlHandler.php:310 +#: lib/SP/Storage/File/XmlHandler.php:89 lib/SP/Storage/File/XmlHandler.php:309 msgid "XML node does not exist" -msgstr "" +msgstr "XML node does not exist" -#: lib/SP/Storage/File/XmlHandler.php:168 +#: lib/SP/Storage/File/XmlHandler.php:167 msgid "There aren't any items to save" -msgstr "" +msgstr "There aren't any items to save" #: lib/SP/Util/Connection.php:157 msgid "Socket not initialized" -msgstr "" +msgstr "Socket not initialized" #: lib/SP/Util/Connection.php:164 msgid "Error while sending the data" -msgstr "" +msgstr "Error while sending the data" -#: lib/SP/Util/ErrorUtil.php:149 +#: lib/SP/Util/ErrorUtil.php:148 msgid "Option unavailable" -msgstr "" +msgstr "Option unavailable" -#: lib/SP/Util/ErrorUtil.php:169 lib/SP/Util/ErrorUtil.php:176 +#: lib/SP/Util/ErrorUtil.php:168 lib/SP/Util/ErrorUtil.php:175 msgid "An exception occured" -msgstr "" +msgstr "An exception occured" #: lib/SP/Util/ImageUtil.php:65 msgid "Invalid image" +msgstr "Invalid image" + +#: app/resources/strings.js.inc:27 +#, fuzzy +msgid "There was an error" +msgstr "認証エラー" + +#: app/resources/strings.js.inc:28 app/resources/strings.js.inc:86 +#, fuzzy +msgid "Session finished" +msgstr "インポートが完了しました" + +#: app/resources/strings.js.inc:29 +#, fuzzy +msgid "Delete account?" +msgstr "アカウントの削除" + +#: app/resources/strings.js.inc:30 +#, fuzzy +msgid "Delete user?" +msgstr "ユーザーを削除" + +#: app/resources/strings.js.inc:31 +msgid "You should save configuration in order to take effect" msgstr "" -#~ msgid "Error while retrieving the accounts' passwords" -#~ msgstr "パスワードの復元時にエラーが発生しました" - -#~ msgid "User preferences" -#~ msgstr "ユーザー設定" - -#~ msgid "Sign Out" -#~ msgstr "サインアウト" - -#~ msgid "Demo" -#~ msgstr "デモ" - -#~ msgid "Tells whether the connection uses HTTPS or not." -#~ msgstr "赤く表示される場合はHTTPS通信ではありません。" - -#~ msgid "" -#~ "Passwords sent from forms are encrypted using PKI, the remain data don't." -#~ msgstr "" -#~ "ブラウザからサーバーに送信されるパスワードはすべてPKIで暗号化された後に送" -#~ "信されますが、HTTPの場合はパスワード以外の情報だけはそのまま送信されます。" -#~ "HTTPSの場合は全ての情報が暗号化されています。" - -#~ msgid "Help :: FAQ :: Changelog" -#~ msgstr "Help :: FAQ :: Changelog" - -#~ msgid "A cygnux.org project" -#~ msgstr "A cygnux.org project" - -#~ msgid "Special parameters" -#~ msgstr "高度な検索" - -#~ msgid "" -#~ "You could use either one or several special parameters separated by blank " -#~ "spaces" -#~ msgstr "" -#~ "以下の検索クエリで高度な検索ができます、各クエリをスペースで区切ると複数条" -#~ "件で検索できます。" - -#~ msgid "Search for accounts which 'login' has access rights" -#~ msgstr "" -#~ "‘login’というユーザー名のアカウントがアクセスできるアカウントを検索します" - -#~ msgid "Get the accounts in which user login \"login\" is the owner" -#~ msgstr "‘login’という名前のユーザーが作成したアカウントを検索します" - -#~ msgid "Search for accounts which 'group_name' has access rights" -#~ msgstr "" -#~ "‘group_name’という名前のグループがアクセスできるアカウントを検索します" - -#~ msgid "Get the accounts in which main group \"group_name\" is set" -#~ msgstr "" -#~ "‘group_name’という名前のグループをmain groupに設定しているアカウントを検索" -#~ "します" - -#~ msgid "Search for accounts which contain a file with the name 'file_name'" -#~ msgstr "" -#~ "‘file_name’という名前のファイルが添付されているアカウントを検索します" - -#~ msgid "Search for accounts by client name" -#~ msgstr "クライアント名でアカウントを検索します" - -#~ msgid "Search for accounts by category name" -#~ msgstr "カテゴリー名でアカウントを検索します" - -#~ msgid "Returns the account for the given ID" -#~ msgstr "アカウントIDでアカウントを検索します" - -#~ msgid "Search for accounts name by regular expression" -#~ msgstr "正規表現でアカウント名を検索します" - -#~ msgid "Search for accounts with expired password" -#~ msgstr "有効期限が切れたアカウントを検索します" - -#~ msgid "Get private accounts for current user" -#~ msgstr "ログインしているユーザー自身のプライベートアカウントを検索します" - -#~ msgid "Operator for special parameters" -#~ msgstr "高度な検索に使える検索クエリ" - -#~ msgid "No records found" -#~ msgstr "該当するものはありません" - -#~ msgid "Password (repeat)" -#~ msgstr "Password (repeat)" - -#~ msgid "Select date" -#~ msgstr "日付選択" - -#~ msgid "History" -#~ msgstr "履歴" - -#~ msgid "Details" -#~ msgstr "詳細" - -#~ msgid "Select Category" -#~ msgstr "カテゴリーを選択" - -#~ msgid "Notes" -#~ msgstr "メモ" - -#~ msgid "Last Modification" -#~ msgstr "最終編集" - -#~ msgid "Select Users" -#~ msgstr "ユーザーを選択" - -#~ msgid "View" -#~ msgstr "表示" - -#~ msgid "Select Groups" -#~ msgstr "グループを選択" - -#~ msgid "Select User" -#~ msgstr "ユーザーを選択" - -#~ msgid "Select Group" -#~ msgstr "グループを選択" - -#~ msgid "Private" -#~ msgstr "プライベートアカウント" - -#~ msgid "Private for Group" -#~ msgstr "プライベートグループアカウント" - -#~ msgid "Request Account Modification" -#~ msgstr "アカウントの修正をリクエスト" - -#~ msgid "Request description" -#~ msgstr "リクエストの概要" - -#~ msgid "Send" -#~ msgstr "送信" - -#~ msgid "Permissions" -#~ msgstr "権限" - -#~ msgid "Select Client" -#~ msgstr "クライアントを選択" - -#~ msgid "Select Tags" -#~ msgstr "タグを選択" - -#~ msgid "Select Account" -#~ msgstr "アカウントを選択" - -#~ msgid "Public Link" -#~ msgstr "共有リンク" - -#~ msgid "Direct Link" -#~ msgstr "ダイレクトリンク" - -#~ msgid "Date Added" -#~ msgstr "日付を追加しました" - -#~ msgid "Date Modified" -#~ msgstr "日付を変更しました" - -#~ msgid "Editor" -#~ msgstr "Editor" - -#~ msgid "Drop files here (max. 5) or click to select" -#~ msgstr "" -#~ "ファイルをドラッグアンドドロップ(Max 5 files) / クリックしてファイルを選択" - -#, php-format -#~ msgid "Maximum file size: %d MB" -#~ msgstr "最大ファイルサイズ: %d MB" - -#~ msgid "Search in Wiki" -#~ msgstr "Wiki検索" - -#, php-format -#~ msgid "Open link to: %s" -#~ msgstr "Open link to: %s" - -#~ msgid "Password Expired" -#~ msgstr "パスワードの有効期限" - -#~ msgid "Private Account (Group)" -#~ msgstr "Private Account (Group)" - -#~ msgid "Delete Favorite" -#~ msgstr "お気に入りの解除" - -#~ msgid "Mark as Favorite" -#~ msgstr "お気に入りに追加" - -#~ msgid "Attachments" -#~ msgstr "添付" - -#~ msgid "Expiry Date" -#~ msgstr "有効期限" - -#~ msgid "Link to Wiki" -#~ msgstr "Wikiへのリンク" - -#~ msgid "View at Wiki" -#~ msgstr "Wikiを表示" - -#~ msgid "Global search" -#~ msgstr "Global search" - -#~ msgid "Display All" -#~ msgstr "Display All" - -#~ msgid "Show Favorites" -#~ msgstr "お気に入りを表示" - -#~ msgid "Favorites Filtering" -#~ msgstr "お気に入り済みのアカウントを表示" - -#~ msgid "Accounts per page" -#~ msgstr "1画面あたりの表示数" - -#~ msgid "More Filters" -#~ msgstr "詳細検索" - -#~ msgid "Select Tag" -#~ msgstr "タグの選択" - -#~ msgid "Copy Username" -#~ msgstr "ユーザー名をコピー" - -#~ msgid "Copy Password" -#~ msgstr "パスワードをコピー" - -#~ msgid "Data will be encrypted after saving" -#~ msgstr "データは暗号化処理をした後保存されます" - -#~ msgid "Data will be unencrypted after saving" -#~ msgstr "データは暗号化されずに保存されます" - -#, php-format -#~ msgid "The '%s' extension is unavailable" -#~ msgstr "“%s” プラグインが動作していません" - -#~ msgid "This extension is needed to display passwords as images" -#~ msgstr "" -#~ "このプラグインはパスワードを文字ではなく画像として表示するために必要です" - -#~ msgid "Searching" -#~ msgstr "検索中" - -#~ msgid "Results per page" -#~ msgstr "Results per page" - -#~ msgid "Number of results per page to display when performing a search." -#~ msgstr "1画面あたりの検索結果の表示数。" - -#~ msgid "Accounts password expiry" -#~ msgstr "アカウントのパスワードの有効期限" - -#~ msgid "Enables the accounts password expiry date." -#~ msgstr "アカウントのパスワードに有効期限を設定しました。" - -#~ msgid "Password expiry time" -#~ msgstr "パスワードの有効期限" - -#~ msgid "Number of days for account's password expiry date." -#~ msgstr "パスワードの有効期限。" - -#~ msgid "Expire time (days)" -#~ msgstr "有効期限(日)" - -#~ msgid "Account name as link" -#~ msgstr "アカウント名のリンク" - -#~ msgid "Enables to use the account name as a link to account details." -#~ msgstr "アカウント名をリンクにする。" - -#~ msgid "Global searches" -#~ msgstr "グローバル検索" - -#~ msgid "" -#~ "Allows the users to do searches that includes all accounts, they won't be " -#~ "able to display the account details if they don't have permission." -#~ msgstr "" -#~ "全てのアカウントから検索できますが、アカウントの詳細を閲覧できるのは権限を" -#~ "持ったユーザーのみです。" - -#~ msgid "Image to show password" -#~ msgstr "パスワードを画像で表示する" - -#~ msgid "Generate an image with a text of the account password." -#~ msgstr "パスワードを文字ではなく画像として表示します。" - -#~ msgid "" -#~ "Useful for environments where copying a password to clipboard is a " -#~ "security risk." -#~ msgstr "" -#~ "パスワードをクリップボードにコピーすることは、場合によってはセキュリティー" -#~ "リスクにつながります。" - -#~ msgid "Results like Cards" -#~ msgstr "カード表示" - -#~ msgid "Displays account's search results on a card like format." -#~ msgstr "アカウントを四角いカードスタイルで表示します。" - -#~ msgid "Secondary Groups Access" -#~ msgstr "Secondary Groups Access" - -#~ msgid "Public Links" -#~ msgstr "共有リンク" - -#~ msgid "Enable Public Links" -#~ msgstr "共有リンクを有効化" - -#~ msgid "" -#~ "Enables the ability to create public links to view an account's details" -#~ msgstr "共有リンク機能を有効化します" - -#~ msgid "Linked accounts will be visible by anyone that have the link." -#~ msgstr "" -#~ "共有リンクを知っている全てのユーザーがアクセスできるようになります。" - -#~ msgid "" -#~ "In order to create links, users must have activated the option on their " -#~ "profiles." -#~ msgstr "" -#~ "共有リンクを作成するには各ユーザーの個人設定から有効化する必要があります。" - -#~ msgid "Use an image for password" -#~ msgstr "パスワードを画像で表示する" - -#~ msgid "The account password is shown as image." -#~ msgstr "アカウントのパスワードを文字ではなく画像で表示します。" - -#~ msgid "Expire time" -#~ msgstr "有効期限" - -#~ msgid "Expire time (minutes)" -#~ msgstr "有効期限(分)" - -#~ msgid "Maximum visits" -#~ msgstr "最大閲覧数" - -#~ msgid "Files management" -#~ msgstr "ファイル管理" - -#~ msgid "Enables the uploading and downloading of accounts files." -#~ msgstr "ファイルのアップロード・ダウンロード機能を有効化します。" - -#~ msgid "Allowed MIME types" -#~ msgstr "このMIME Typeを許可する" - -#~ msgid "Allowed file MIME types for uploading." -#~ msgstr "このMIME Typeのアップロードは許可されています。" - -#~ msgid "" -#~ "In order to add more MIME types, you need to add them into mime.xml file " -#~ "within the config directory." -#~ msgstr "" -#~ "MIME Typebの設定を変更するには“config”ディレクトリ内の”mime.xml”ファイルを" -#~ "編集してください。" - -#~ msgid "Maximum file size" -#~ msgstr "最大ファイルサイズ" - -#~ msgid "Sets the maximum file size for uploading." -#~ msgstr "アップロードできる最大ファイルサイズ。" - -#~ msgid "Absolute maximum is 16MB." -#~ msgstr "設定できる上限値は16MBです。" - -#~ msgid "Maximum file size in kilobytes" -#~ msgstr "最大ファイルサイズはKB(キロバイト)で設定してください" - -#~ msgid "This extension is needed to build the application's backup files" -#~ msgstr "" -#~ "このエクステンションはアプリケーションのバックアップを作成するために必要で" -#~ "す" - -#~ msgid "Result" -#~ msgstr "Result" - -#~ msgid "Download Current" -#~ msgstr "ダウンロード" - -#~ msgid "DB Backup" -#~ msgstr "DB Backup" - -#~ msgid "sysPass Backup" -#~ msgstr "sysPass Backup" - -#~ msgid "" -#~ "The backup allows you to save and download sysPass database and " -#~ "application files including its configuration." -#~ msgstr "" -#~ "sysPassのアプリケーション構成とデータベースのバックアップファイルを作成・" -#~ "ダウンロードできます。" - -#~ msgid "" -#~ "With this method it's possible to either save all sysPass data in another " -#~ "place or use it to make the application portable." -#~ msgstr "" -#~ "sysPass全体のバックアップを作成し、別の場所に同じsysPassサーバーを構築する" -#~ "ことやそのままUSBなどにコピーしてオフラインで利用することができます。" - -#~ msgid "Export Accounts" -#~ msgstr "Export Accounts" - -#~ msgid "Export Password" -#~ msgstr "Export Password" - -#~ msgid "Export Password (repeat)" -#~ msgstr "Export Password (repeat)" - -#~ msgid "" -#~ "The accounts export allows you to save the accounts and their data in XML " -#~ "format to be imported in another sysPass instance." -#~ msgstr "" -#~ "アカウント情報をXML形式でエクスポートして、他のsysPassにインポートすること" -#~ "ができます。" - -#~ msgid "Exported items are accounts, clients, categories and tags." -#~ msgstr "アカウント・クライアント・カテゴリー・タグをエクスポートします。" - -#~ msgid "" -#~ "Accounts' password are exported in an encrypted way for better security." -#~ msgstr "" -#~ "エクスポート時に全てのアカウントのパスワードは暗号化された状態でエクスポー" -#~ "トされます。" - -#~ msgid "" -#~ "It's possible to set an export password to save all the encrypted data in " -#~ "the XML file." -#~ msgstr "" -#~ "エクスポートパスワードを用いて全てのデータを暗号化した状態でXMLファイルに" -#~ "エクスポートすることができます。" - -#~ msgid "Master Password" -#~ msgstr "マスターパスワード" - -#~ msgid "Last change" -#~ msgstr "最終変更" - -#~ msgid "Current Master Password" -#~ msgstr "Current Master Password" - -#~ msgid "New Master Password" -#~ msgstr "New Master Password" - -#~ msgid "New Master Password (repeat)" -#~ msgstr "New Master Password (repeat)" - -#~ msgid "You should save the new password on a secure place" -#~ msgstr "パスワードは安全な方法で保存されます" - -#~ msgid "All accounts passwords will be encrypted again." -#~ msgstr "保存されている全てのパスワードを再暗号化します。" - -#~ msgid "Users will need to enter the new Master Password." -#~ msgstr "" -#~ "全てのユーザーはログイン時に新しいマスターパスワードの入力を求められるよう" -#~ "になります。" - -#, php-format -#~ msgid "" -#~ "It will be updated %s accounts. This process could take some time long." -#~ msgstr "" -#~ "現在%s個目のアカウントを処理中です。処理の完了までしばらくお待ちください。" - -#~ msgid "Sets a new Master Password without re-encrypting the accounts." -#~ msgstr "アカウントを再暗号化せずにマスターパスワードを変更します。" - -#~ msgid "" -#~ "Confirm the master password change after you have been read all the above " -#~ "warnings." -#~ msgstr "" -#~ "上記の説明を全て読みマスターパスワードを変更することによって起こる影響を理" -#~ "解した上で処理を行ってください。" - -#~ msgid "" -#~ "The Master Password is used to encrypt sysPass accounts passwords and " -#~ "keep them safe." -#~ msgstr "" -#~ "マスターパスワードはsysPassのアカウント情報を暗号化する際に用いられます。" - -#~ msgid "" -#~ "It's advisable to change it from time to time and use a complex password " -#~ "that includes numbers, letters and symbols." -#~ msgstr "" -#~ "パスワードには英数字のほか記号を含めるなど複雑なものにすることをおすすめし" -#~ "ます。" - -#~ msgid "Update master password hash" -#~ msgstr "マスターパスワードのハッシュを再生成" - -#~ msgid "Temporary Password" -#~ msgstr "仮パスワード" - -#~ msgid "Not generated" -#~ msgstr "生成されていません" - -#~ msgid "Send email" -#~ msgstr "メールを送信する" - -#~ msgid "" -#~ "Sends an email to all users or only to those whose group is selected." -#~ msgstr "全てのユーザーまたは、選択したグループにメールを送信します。" - -#~ msgid "" -#~ "The temporary password is used as a Master Password for the users that " -#~ "need to enter it during login. By this way there is no need to tell them " -#~ "the real Master Password." -#~ msgstr "" -#~ "本来ならばsysPassを利用する全てのユーザーにマスターパスワードを教えなけれ" -#~ "ばなりませんが、期限付きの仮マスターパスワードを利用すれば本当のマスターパ" -#~ "スワードの代わりにこれを教えればいいので安心して利用できます。" - -#~ msgid "Generate" -#~ msgstr "生成" - -#~ msgid "Use Auth Basic" -#~ msgstr "Basic認証" - -#~ msgid "Use Auth Basic for authorizing accesses to the application" -#~ msgstr "Basic認証でアプリケーションにアクセスできるようにします" - -#~ msgid "Use Auth Basic SSO" -#~ msgstr "SSO" - -#~ msgid "Use auto-login through Auth Basic" -#~ msgstr "Basic認証を用いて自動ログインする" - -#~ msgid "Domain" -#~ msgstr "Domain" - -#~ msgid "" -#~ "The domain will be added to sysPass user name for checking against the " -#~ "Auth Basic one." -#~ msgstr "Basic認証のためのドメイン設定。" - -#~ msgid "Domain name" -#~ msgstr "ドメイン名" - -#~ msgid "Default Group" -#~ msgstr "Default Group" - -#~ msgid "Sets the default users group for newly created SSO users" -#~ msgstr "" -#~ "新しく作成したSSOユーザーが自動的に追加されるデフォルトユーザーグループを" -#~ "設定します" - -#~ msgid "Default Profile" -#~ msgstr "デフォルトプロファイル" - -#~ msgid "Sets the default profile for the newly created SSO users." -#~ msgstr "" -#~ "SSOから追加されたユーザーは全てこのデフォルトプロファイルが適用されます。" - -#~ msgid "Events" -#~ msgstr "Events" - -#~ msgid "Enable event log" -#~ msgstr "Enable event log" - -#~ msgid "Saves the actions done by the application." -#~ msgstr "アプリケーションの動作を保存します。" - -#~ msgid "Enable Syslog" -#~ msgstr "Enable Syslog" - -#~ msgid "Enable Remote Syslog" -#~ msgstr "Enable Remote Syslog" - -#~ msgid "Hostname or IP address" -#~ msgstr "Hostname or IP address" - -#~ msgid "Port" -#~ msgstr "Port" - -#~ msgid "Proxy" -#~ msgstr "Proxy" - -#~ msgid "Use Proxy" -#~ msgstr "Use Proxy" - -#~ msgid "Use a proxy server for checking out for updates and notifications." -#~ msgstr "" -#~ "sysPassとメール通知を行う際にプロキシサーバ-を経由させることができます。" - -#~ msgid "Proxy server" -#~ msgstr "Proxy server" - -#~ msgid "Proxy server port" -#~ msgstr "Proxy server port" - -#~ msgid "Proxy server user" -#~ msgstr "Proxy server user" - -#~ msgid "Proxy server password" -#~ msgstr "Proxy server password" - -#~ msgid "This extension is needed to check for sysPass updates and notices" -#~ msgstr "このエクステンションはsysPassの更新と通知機能のために必要です" - -#~ msgid "Site" -#~ msgstr "Site" - -#~ msgid "Language" -#~ msgstr "言語" - -#~ msgid "" -#~ "Sets the global app language. You can set a per user language on " -#~ "preferences." -#~ msgstr "" -#~ "sysPass全体の言語設定です、これの他にユーザー自身の個人設定から表示される" -#~ "言語を変更することもできます。" - -#~ msgid "" -#~ "To improve/add translations, you can get involved at https://poeditor.com/" -#~ "join/project/fmlsBuugyv" -#~ msgstr "" -#~ "探している言語がありませんか?よろしければこちらから翻訳に協力してください" -#~ "ませんか?https://poeditor.com/join/project/fmlsBuugyv" - -#~ msgid "Visual Theme" -#~ msgstr "テーマ" - -#~ msgid "" -#~ "Sets the global application visual theme. You can set a per user visual " -#~ "theme on preferences." -#~ msgstr "" -#~ "sysPass全体のテーマを設定です。これの他にユーザー自身の個人設定からもテー" -#~ "マを変更することができます。" - -#~ msgid "Session timeout (s)" -#~ msgstr "セッションの有効期限(秒)" - -#~ msgid "Application URL" -#~ msgstr "Application URL" - -#~ msgid "" -#~ "Sets the application URL when accessing through a reverse proxy or load " -#~ "balancer." -#~ msgstr "" -#~ "sysPassにアクセスできるURLを設定してください、リバースプロキシやロードバラ" -#~ "ンサを用いている場合に必要な設定です。" - -#~ msgid "Force HTTPS" -#~ msgstr "Force HTTPS" - -#~ msgid "It forces the use of HTTPS on all the connections" -#~ msgstr "HTTP通信を全てHTTPSにリダイレクトします" - -#~ msgid "Enable debug" -#~ msgstr "デバッグを有効化" - -#~ msgid "" -#~ "Displays some information about application configuration and performance." -#~ msgstr "" -#~ "アプリケーションの構成と動作に関する詳細情報を表示するようになります。" - -#~ msgid "Maintenance mode" -#~ msgstr "メンテナンスモード" - -#~ msgid "" -#~ "In this mode nobody can log into the application. To disable it, you need " -#~ "to either modify the configuration file or unset on the site tab." -#~ msgstr "" -#~ "このモードを有効化したユーザー以外は誰もログインできなくなります、メンテナ" -#~ "ンスモードを解除するには設定から無効化する、もしくは”config”ディレクトリ内" -#~ "の設定ファイルから直接メンテナンスモードを無効化してください。" - -#~ msgid "Check for updates" -#~ msgstr "アップデートを確認" - -#~ msgid "Check for application updates (only for administrators)." -#~ msgstr "" -#~ "新しいsysPassがないか確認をします(adminユーザーのみが実行できます)。" - -#~ msgid "Check for notifications" -#~ msgstr "通知を確認" - -#~ msgid "" -#~ "Check if there are either sysPass security or warning notices (only for " -#~ "administrators)." -#~ msgstr "" -#~ "sysPassにセキュリティー上の問題が見つかった場合adminユーザーに通知が届きま" -#~ "す。" - -#~ msgid "Encrypt Session" -#~ msgstr "セッションを暗号化" - -#~ msgid "Encrypt PHP session data" -#~ msgstr "PHPのセッションを暗号化します" - -#~ msgid "" -#~ "This feature increases the PHP sessions security, because the stored data " -#~ "won't be readable." -#~ msgstr "" -#~ "PHPのセッション情報を暗号化することでより安全にsysPassを利用することができ" -#~ "ます。" - -#~ msgid "CSV/XML Import" -#~ msgstr "CSV/XML Import" - -#~ msgid "Default User" -#~ msgstr "Default User" - -#~ msgid "Drop files here or click to select" -#~ msgstr "ファイルをドラッグ&ドロップするか、クリックして選択してください" - -#~ msgid "" -#~ "Allows to import Accounts, Categories and Clients from XML or CSV files." -#~ msgstr "" -#~ "アカウント・カテゴリー。クライアントをXML / CSVファイルからインポートする" -#~ "ことを許可する。" - -#~ msgid "Supported XML file formats are: sysPass, KeePass and KeePassX" -#~ msgstr "sysPass, KeePass, KeePassX形式のXMLファイルに対応しています" - -#~ msgid "Drag & Drop the file into the import zone or click over the arrow." -#~ msgstr "ファイルをドラッグ&ドロップしてください。" - -#~ msgid "" -#~ "For KeePass or KeePassX files, client name will be KeePass or KeePassX " -#~ "and category name like groups name." -#~ msgstr "" -#~ "KeePass/KeePassXからアカウントをインポートした際に自動的にKeePass/KeePassX" -#~ "というカテゴリーが追加されます。" - -#~ msgid "The CSV import file requires the following format:" -#~ msgstr "読み込ませるCSVファイルのラベルは以下のようにしてください。" - -#~ msgid "" -#~ "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" -#~ "\"notes\"" -#~ msgstr "" -#~ "\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" -#~ "\"notes\"" - -#~ msgid "" -#~ "In all cases, if the client or category do not exist they will be created " -#~ "automatically." -#~ msgstr "" -#~ "インポート時にsysPassに存在しないカテゴリー名・クライアント名は自動的に" -#~ "sysPassに追加されます。" - -#~ msgid "XML" -#~ msgstr "XML" - -#~ msgid "Import Password" -#~ msgstr "Import Password" - -#~ msgid "It's only needed for sysPass XML files that have been encrypted." -#~ msgstr "" -#~ "暗号化オプションを用いてsysPassからエクスポートしたXMLファイルの場合はエク" -#~ "スポート時に指定したエクスポートパスワードが必要です。" - -#~ msgid "" -#~ "It's only needed for sysPass XML files that have been encrypted with a " -#~ "different master password from the current one." -#~ msgstr "" -#~ "これはエクスポート後マスターパスワードを変更した場合など、エクスポート時と" -#~ "現在のsysPassのマスターパスワードが異なるときに必要です。" - -#~ msgid "CSV" -#~ msgstr "CSV" - -#~ msgid "It's only needed for CSV files." -#~ msgstr "対応しているのはCSVファイルのみです。" - -#~ msgid "sysPass version" -#~ msgstr "sysPass version" - -#~ msgid "Database" -#~ msgstr "データベース" - -#~ msgid "PHP" -#~ msgstr "PHP" - -#~ msgid "Extensions" -#~ msgstr "拡張機能" - -#~ msgid "Unavailable extensions" -#~ msgstr "拡張機能が利用できません" - -#~ msgid "Download rate" -#~ msgstr "ダウンロード速度" - -#~ msgid "Configuration Backup" -#~ msgstr "設定のバックアップ" - -#, php-format -#~ msgid "Download %s" -#~ msgstr "Download %s" - -#~ msgid "Tells whether the language is available or not." -#~ msgstr "利用可能な言語を表示します。" - -#~ msgid "" -#~ "If it is not installed, you would need install the right operating system " -#~ "locales. More info at Wiki." -#~ msgstr "" -#~ "お使いのサーバーのsystem localesに対象の言語が存在する必要があります。詳細" -#~ "はWikiを確認してください。" - -#~ msgid "Encrypted Session" -#~ msgstr "暗号化済みセッション" - -#~ msgid "" -#~ "Tells whether the session data are encrypted in the server side or not" -#~ msgstr "セッションの暗号化状況を表示します" - -#~ msgid "Loaded Plugins" -#~ msgstr "ロード済みのプラグイン" - -#~ msgid "Log file" -#~ msgstr "ログファイル" - -#~ msgid "This extension is needed to connect to the LDAP server" -#~ msgstr "LDAPさーばーに接続するための機能拡張です" - -#~ msgid "Enable LDAP" -#~ msgstr "LDAPが有効です" - -#~ msgid "Enables authentication against an LDAP server." -#~ msgstr "LDAPサーバーを用いた認証を有効化します。" - -#~ msgid "This method will use MySQL as fallback." -#~ msgstr "有効化できない場合はMySQLを用いた認証に切り替わります。" - -#~ msgid "Enables the connection over TLS" -#~ msgstr "TLSで暗号化する" - -#~ msgid "Server Type" -#~ msgstr "Server Type" - -#~ msgid "Hostname or IP address of LDAP server." -#~ msgstr "LDAPサーバーのホスト名 or IPアドレス。" - -#~ msgid "Examples:" -#~ msgstr "例:" - -#~ msgid "User to connect to LDAP service." -#~ msgstr "LDAPサーバに接続するためのユーザー。" - -#~ msgid "LDAP connection user's password" -#~ msgstr "LDAPサーバーに接続するためのパスワード" - -#~ msgid "Sets the default users group for newly created LDAP users" -#~ msgstr "" -#~ "LDAPからインポートされたユーザーは全てデフォルトに指定したグループに追加さ" -#~ "れます" - -#~ msgid "Sets the default profile for the newly created LDAP users." -#~ msgstr "" -#~ "LDAPからインポートされたユーザーにはデフォルトに指定したプロファイルが適用" -#~ "されます。" - -#~ msgid "Import" -#~ msgstr "インポート" - -#~ msgid "Login Attribute" -#~ msgstr "Login Attribute" - -#~ msgid "Import Groups" -#~ msgstr "インポートグループ" - -#~ msgid "Group Name Attribute" -#~ msgstr "グループ名引数" - -#~ msgid "Defines the attribute for the user group name when importing." -#~ msgstr "インポート時にユーザーグループ名を引数で指定する。" - -#~ msgid "Filter" -#~ msgstr "フィルター" - -#~ msgid "Filter for importing LDAP users or groups." -#~ msgstr "LDAPユーザーのフィルタリング。" - -#~ msgid "Import users from LDAP" -#~ msgstr "LDAPからユーザーをインポートする" - -#~ msgid "Enable email notifications" -#~ msgstr "メール通知を有効化" - -#~ msgid "Enable requests by email" -#~ msgstr "メールのリクエストを有効化" - -#~ msgid "" -#~ "Allows users to request for either modifications to existing accounts or " -#~ "access to accounts which they have no rights on." -#~ msgstr "" -#~ "ユーザーからアカウントの情報の変更リクエスト・アクセス権限リクエストを受け" -#~ "取れるようになります。" - -#~ msgid "Enable Authentication" -#~ msgstr "認証を有効化" - -#~ msgid "Security" -#~ msgstr "セキュリティー" - -#~ msgid "Sender email address" -#~ msgstr "送信元アドレス" - -#~ msgid "Recipients" -#~ msgstr "受信者" - -#~ msgid "This extension is needed to connect with DokuWiki" -#~ msgstr "DokuWikiに接続するためには専用のextensionが必要です" - -#~ msgid "DokuWiki API" -#~ msgstr "DokuWiki API" - -#~ msgid "Enables DokuWiki XML-RPC API for Wiki links." -#~ msgstr "DokuWikiの XML-RPC APIを用いたリンクを有効化する。" - -#~ msgid "" -#~ "In order to get this feature working, you should enable Wiki links for " -#~ "accounts filtering" -#~ msgstr "" -#~ "この機能を有効化するにはアカウントのフィルタリング設定からWikiリンクを有効" -#~ "化する必要があります" - -#~ msgid "API URL" -#~ msgstr "API URL" - -#~ msgid "DokuWiki API URL" -#~ msgstr "DokuWiki API URL" - -#~ msgid "Example:" -#~ msgstr "Example:" - -#~ msgid "Base URL" -#~ msgstr "Base URL" - -#~ msgid "DokuWiki base URL" -#~ msgstr "DokuWiki base URL" - -#~ msgid "User for connecting to the DokuWiki API." -#~ msgstr "DokuWiki APIに接続します。" - -#~ msgid "Namespace" -#~ msgstr "Namespace" - -#~ msgid "Namespace used to search pages." -#~ msgstr "ネームスペースを用いて検索する。" - -#~ msgid "Enable Wiki links" -#~ msgstr "Wikiリンクを有効化" - -#~ msgid "" -#~ "Enables the option to add a link to search for results in an external " -#~ "Wiki." -#~ msgstr "Wikiから検索リンクを有効化するにはこのオプションを有効化します。" - -#~ msgid "Wiki search URL" -#~ msgstr "Wiki search URL" - -#~ msgid "Wiki page URL" -#~ msgstr "Wiki page URL" - -#~ msgid "Account name prefix" -#~ msgstr "Account name prefix" - -#~ msgid "Install" -#~ msgstr "Install" - -#~ msgid "Filter ON" -#~ msgstr "Filter ON" - -#, php-format -#~ msgid "Installation %s" -#~ msgstr "Installation %s" - -#~ msgid "sysPass Admin" -#~ msgstr "sysPass Admin" - -#~ msgid "sysPass admin user" -#~ msgstr "sysPass admin user" - -#~ msgid "sysPass administrator's login" -#~ msgstr "sysPass administrator's login" - -#~ msgid "DB Configuration" -#~ msgstr "DB設定" - -#~ msgid "DB access user" -#~ msgstr "DBアクセスユーザー" - -#~ msgid "An user with MySQL admin rights" -#~ msgstr "MySQLのadmin権限を持ったユーザー" - -#~ msgid "DB access password" -#~ msgstr "DBアクセスのためのパスワード" - -#~ msgid "sysPass database name" -#~ msgstr "sysPassに利用するデータベース名" - -#~ msgid "sysPass database server" -#~ msgstr "DBホスト名" - -#~ msgid "Server name to install sysPass database" -#~ msgstr "sysPassのDBに使用するDBサーバーのホスト名" - -#~ msgid "Hosting Mode" -#~ msgstr "Hosting Mode" - -#~ msgid "It does not create or verify the user's permissions on the DB" -#~ msgstr "" -#~ "データベースを作成できませんでした、パーミッションを確認してください" - -#~ msgid "Others" -#~ msgstr "Others" - -#~ msgid "Creator" -#~ msgstr "Creator" - -#~ msgid "Delete History" -#~ msgstr "Delete History" - -#~ msgid "Select Action" -#~ msgstr "Select Action" - -#~ msgid "Options" -#~ msgstr "Options" - -#~ msgid "Refresh Authorization" -#~ msgstr "Refresh Authorization" - -#~ msgid "Token" -#~ msgstr "Token" - -#~ msgid "Sets whether the client is visible by all users" -#~ msgstr "クライアントが全てのユーザーに表示されるかどうかを設定できます" - -#~ msgid "" -#~ "By default, clients assigned to accounts only will be visible by users " -#~ "who are granted to access to the accounts." -#~ msgstr "デフォルトでは権限が付与されたユーザーのみが閲覧できます。" - -#~ msgid "Field name" -#~ msgstr "フィールド名" - -#~ msgid "Help Text" -#~ msgstr "Help Text" - -#~ msgid "Field's help" -#~ msgstr "フィールドの概要" - -#~ msgid "Required" -#~ msgstr "Required" - -#~ msgid "Length" -#~ msgstr "Length" - -#~ msgid "Score" -#~ msgstr "Score" - -#~ msgid "Include Numbers" -#~ msgstr "数字" - -#~ msgid "Include Letters" -#~ msgstr "英字" - -#~ msgid "Include Symbols" -#~ msgstr "記号" - -#~ msgid "Include Uppercase" -#~ msgstr "大文字" - -#~ msgid "Include Lowercase" -#~ msgstr "小文字" - -#~ msgid "Administrators won't be able to display the accounts." -#~ msgstr "管理者はアカウントを表示できません。" - -#~ msgid "" -#~ "Accounts will be only visible by the user and users belonging to the main " -#~ "group." -#~ msgstr "メイングループに設定されているユーザーのみが閲覧できます。" - -#~ msgid "IP Address" -#~ msgstr "IP Address" - -#~ msgid "Timeout" -#~ msgstr "Timeout" - -#~ msgid "Select Profile" -#~ msgstr "Select Profile" - -#~ msgid "Hash" -#~ msgstr "Hash" - -#~ msgid "URL" -#~ msgstr "URL" - -#~ msgid "Use" -#~ msgstr "Use" - -#~ msgid "Full username" -#~ msgstr "Full username" - -#~ msgid "Session login" -#~ msgstr "Session login" - -#~ msgid "SSO Login " -#~ msgstr "SSO Login " - -#~ msgid "Session login with SSO" -#~ msgstr "Session login with SSO" - -#~ msgid "Email address" -#~ msgstr "Email address" - -#~ msgid "Application administrator" -#~ msgstr "Application administrator" - -#~ msgid "Accounts administrator" -#~ msgstr "Accounts administrator" - -#~ msgid "Force password change" -#~ msgstr "Force password change" - -#~ msgid "Entries" -#~ msgstr "Entries" - -#~ msgid "Last Access" -#~ msgstr "Last Access" - -#~ msgid "Master Password Date" -#~ msgstr "Master Password Date" - -#~ msgid "Used in" -#~ msgstr "Used in" - -#~ msgid "Used by" -#~ msgstr "Used by" - -#~ msgid "(*) Listed in group" -#~ msgstr "(*) Listed in group" - -#~ msgid "Management" -#~ msgstr "Management" - -#~ msgid "Create new account" -#~ msgstr "新規アカウントの作成" - -#~ msgid "View account details" -#~ msgstr "アカウントの詳細を表示" - -#~ msgid "Edit account" -#~ msgstr "アカウントの編集" - -#~ msgid "Edit Password" -#~ msgstr "パスワードの編集" - -#~ msgid "Edit account password" -#~ msgstr "アカウントのパスワードを変更" - -#~ msgid "Remove account" -#~ msgstr "アカウントの削除" - -#~ msgid "View account files" -#~ msgstr "アカウントのファイルを表示" - -#~ msgid "Share Link" -#~ msgstr "共有リンク" - -#~ msgid "Share link to account" -#~ msgstr "アカウントの共有リンク" - -#~ msgid "Create private account" -#~ msgstr "プライベートアカウントを作成" - -#~ msgid "Create private account for group" -#~ msgstr "プライベートグループアカウントを作成" - -#~ msgid "Assign permissions" -#~ msgstr "権限付与" - -#~ msgid "Users management" -#~ msgstr "ユーザー管理" - -#~ msgid "Groups management" -#~ msgstr "グループ管理" - -#~ msgid "Profiles management" -#~ msgstr "プロファイル管理" - -#~ msgid "Categories management" -#~ msgstr "カテゴリー管理" - -#~ msgid "Tags management" -#~ msgstr "タグ管理" - -#~ msgid "Customers management" -#~ msgstr "カスタマー管理" - -#~ msgid "Custom fields management" -#~ msgstr "カスタムフィールド管理" - -#~ msgid "API authorizations management" -#~ msgstr "API認証管理" - -#~ msgid "Links management" -#~ msgstr "共有リンク管理" - -#~ msgid "Accounts management" -#~ msgstr "アカウント管理" - -#~ msgid "Default Values" -#~ msgstr "Default Values" - -#~ msgid "Default Values Management" -#~ msgstr "Default Values 管理" - -#~ msgid "General Configuration" -#~ msgstr "全体設定" - -#~ msgid "Encryption options" -#~ msgstr "暗号化オプション" - -#~ msgid "Make a backup and export" -#~ msgstr "バックアップの作成とエクスポート" - -#~ msgid "Make accounts import" -#~ msgstr "アカウントをインポート" - -#~ msgid "View event log" -#~ msgstr "event logを表示" - -#~ msgid "Profile name" -#~ msgstr "プロファイル名" - -#~ msgid "Previous Password" -#~ msgstr "前のパスワード" - -#~ msgid "Sign in" -#~ msgstr "サインイン" - -#~ msgid "Forgot password?" -#~ msgstr "パスワードを忘れた場合" - -#~ msgid "Updated" -#~ msgstr "最新のバージョンです" - -#~ msgid "Error while checking for updates" -#~ msgstr "アップデート中時にエラーが発生しました" - -#, php-format -#~ msgid "Update %s" -#~ msgstr "Update %s" - -#~ msgid "DB Update" -#~ msgstr "DB Update" - -#~ msgid "Application Update" -#~ msgstr "Application Update" - -#~ msgid "Security Code" -#~ msgstr "セキュリティーコード" - -#~ msgid "" -#~ "This code is set in sysPass config file within the tag name \"upgradekey\"" -#~ msgstr "" -#~ "セキュリティーコードはsysPasの設定ファイルの”upgradekey”に記載されています" - -#~ msgid "Enter a valid user login" -#~ msgstr "有効なユーザーでログインしてください" - -#~ msgid "I've done a full sysPass backup" -#~ msgstr "バックアップが完了しました" - -#~ msgid "Please, wait while the process is running" -#~ msgstr "処理中です、しばらくお待ちください" - -#~ msgid "Start Update" -#~ msgstr "アップデート開始" - -#~ msgid "Global notification" -#~ msgstr "グローバル通知" - -#~ msgid "Only for application administrators" -#~ msgstr "アプリケーション管理者のみ" - -#~ msgid "Plugin name" -#~ msgstr "プラグイン名" - -#~ msgid "Plugin version" -#~ msgstr "プラグインバージョン" - -#~ msgid "Compatible Version" -#~ msgstr "互換性のあるバージョン" - -#~ msgid "sysPass compatible version" -#~ msgstr "動作が確認されているsysPassのバージョン" - -#~ msgid "Author" -#~ msgstr "開発者" - -#~ msgid "Plugin author" -#~ msgstr "プラグインの開発者" - -#~ msgid "The application needs to be updated" -#~ msgstr "このアプリケーションはアップデートが必要です" - -#~ msgid "Please enter the security code to start the upgrade" -#~ msgstr "アップグレード後にセキュリティーコードを入力してください" - -#~ msgid "Request Password Change" -#~ msgstr "パスワード変更リクエスト" - -#~ msgid "User's Email" -#~ msgstr "ユーザーのメールアドレス" - -#~ msgid "Go back to login" -#~ msgstr "ログイン画面に戻る" - -#~ msgid "Change" -#~ msgstr "変更" - -#~ msgid "Sort search results by views" -#~ msgstr "並び替え" - -#~ msgid "Sorts accounts search results by the number of account's views" -#~ msgstr "アカウント順で並び替え" - -#~ msgid "Navigation bar on top" -#~ msgstr "ナビゲーションバーは画面上部にあります" - -#~ msgid "Displays a navigation bar on top of the search results." -#~ msgstr "検索結果の上にナビゲーションバーを表示します。" - -#~ msgid "Show Hidden Actions" -#~ msgstr "表示・非表示" - -#~ msgid "Always display hidden actions on the accounts search page." -#~ msgstr "アカウント検索ページで表示・非表示を切り替えることを許可します。" - -#~ msgid "In-App Notifications" -#~ msgstr "アプリ内通知" - -#~ msgid "Enables the active In-App notifications polling" -#~ msgstr "アプリ内通知を確認します" - -#~ msgid "Displays the additional filters selection on the accounts search." -#~ msgstr "詳しい検索。" - -#~ msgid "View Wiki" -#~ msgstr "View Wiki" - -#~ msgid "Page not found" -#~ msgstr "Page not found" - -#, php-format -#~ msgid "Search results of '%s'" -#~ msgstr "Search results of '%s'" - -#~ msgid "Page" -#~ msgstr "Page" - -#~ msgid "\"/config\" directory does not exist." -#~ msgstr "\"/config\" directory does not exist." - -#~ msgid "Unable to write into \"/config\" directory" -#~ msgstr "Unable to write into \"/config\" directory" - -#~ msgid "\"/config\" directory permissions are wrong" -#~ msgstr "\"/config\" directory permissions are wrong" - -#~ msgid "There was an error" -#~ msgstr "There was an error" - -#~ msgid "Session finished" -#~ msgstr "Session finished" - -#~ msgid "Delete account?" -#~ msgstr "Delete account?" - -#~ msgid "Delete user?" -#~ msgstr "Delete user?" - -#~ msgid "You should save configuration in order to take effect" -#~ msgstr "You should save configuration in order to take effect" - -#~ msgid "Generated Password" -#~ msgstr "Generated Password" - -#~ msgid "High level" -#~ msgstr "High level" - -#~ msgid "Average level" -#~ msgstr "Average level" - -#~ msgid "Low level" -#~ msgstr "Low level" - -#~ msgid "Very High level" -#~ msgstr "Very High level" - -#~ msgid "You should use at least 8 characters" -#~ msgstr "You should use at least 8 characters" - -#~ msgid "Delete item?" -#~ msgstr "Delete item?" - -#~ msgid "Delete file?" -#~ msgstr "Delete file?" - -#~ msgid "Your browser does not support HTML5 file uploads" -#~ msgstr "Your browser does not support HTML5 file uploads" - -#~ msgid "Too many files" -#~ msgstr "Too many files" - -#~ msgid "File size not allowed" -#~ msgstr "File size not allowed" - -#~ msgid "MIME type not allowed" -#~ msgstr "MIME type not allowed" - -#~ msgid "Clear the event log out?" -#~ msgstr "Clear the event log out?" - -#~ msgid "No results" -#~ msgstr "No results" - -#~ msgid "Password options" -#~ msgstr "Password options" - -#~ msgid "Generate random password" -#~ msgstr "Generate random password" - -#~ msgid "Complexity" -#~ msgstr "Complexity" - -#~ msgid "Reset" -#~ msgstr "Reset" - -#~ msgid "Password strength level" -#~ msgstr "Password strength level" - -#~ msgid "Show Password" -#~ msgstr "Show Password" - -#~ msgid "Accept" -#~ msgstr "Accept" - -#~ msgid "Cancel" -#~ msgstr "Cancel" - -#~ msgid "Password Copied into Clipboard" -#~ msgstr "Password Copied into Clipboard" - -#~ msgid "Error while copying to clipboard" -#~ msgstr "Error while copying to clipboard" - -#~ msgid "Send notifies?" -#~ msgstr "Send notifies?" - -#~ msgid "Clear Selection" -#~ msgstr "Clear Selection" - -#~ msgid "Now" -#~ msgstr "Now" - -#~ msgid "" -#~ "This process will import the detected LDAP users. Would you like to " -#~ "continue?" -#~ msgstr "" -#~ "This process will import the detected LDAP users. Would you like to " -#~ "continue?" - -#~ msgid "This action will reset all plugin data. Do you want to continue?" -#~ msgstr "This action will reset all plugin data. Do you want to continue?" - -#~ msgid "This process could take some time long. Do you wish to continue?" -#~ msgstr "This process could take some time long. Do you wish to continue?" - -#~ msgid "Performing task. Please, do not close browser's window/tab." -#~ msgstr "Performing task. Please, do not close browser's window/tab." - -#~ msgid "Cookies disabled. Application won't work properly." -#~ msgstr "Cookies disabled. Application won't work properly." - -#~ msgid "Clipboard not supported by your browser." -#~ msgstr "Clipboard not supported by your browser." - -#~ msgid "Performing auto-login" -#~ msgstr "Performing auto-login" - -#~ msgid "There is a more recent version of {0} plugin ({1})" -#~ msgstr "There is a more recent version of {0} plugin ({1})" - -#~ msgid "sysPass Notices" -#~ msgstr "sysPass Notices" - -#~ msgid "Clear the tracks out?" -#~ msgstr "Clear the tracks out?" - -#~ msgid "Search for Accounts" -#~ msgstr "Search for Accounts" - -#~ msgid "Requests" -#~ msgstr "Requests" - -#~ msgid "Favorites" -#~ msgstr "Favorites" - -#~ msgid "Items and Customizations" -#~ msgstr "Items and Customizations" - -#~ msgid "Categories Management" -#~ msgstr "Categories Management" - -#~ msgid "Customers Management" -#~ msgstr "Customers Management" - -#~ msgid "API Authorizations Management" -#~ msgstr "API Authorizations Management" - -#~ msgid "Custom Fields Management" -#~ msgstr "Custom Fields Management" - -#~ msgid "Files Management" -#~ msgstr "Files Management" - -#~ msgid "Accounts Management" -#~ msgstr "Accounts Management" - -#~ msgid "Tags Management" -#~ msgstr "Tags Management" - -#~ msgid "Plugins Management" -#~ msgstr "Plugins Management" - -#~ msgid "Users and Accesses" -#~ msgstr "Users and Accesses" - -#~ msgid "Security and Audit" -#~ msgstr "Security and Audit" - -#~ msgid "Users Management" -#~ msgstr "Users Management" - -#~ msgid "Groups Management" -#~ msgstr "Groups Management" - -#~ msgid "Profiles Management" -#~ msgstr "Profiles Management" - -#~ msgid "Clear Events" -#~ msgstr "Clear Events" - -#~ msgid "View Account" -#~ msgstr "View Account" - -#~ msgid "Upload File" -#~ msgstr "Upload File" - -#~ msgid "Search for Files" -#~ msgstr "Search for Files" - -#~ msgid "List Files" -#~ msgstr "List Files" - -#~ msgid "Add Wiki" -#~ msgstr "Add Wiki" - -#~ msgid "Edit Wiki" -#~ msgstr "Edit Wiki" - -#~ msgid "Delete Wiki" -#~ msgstr "Delete Wiki" - -#~ msgid "New API Token" -#~ msgstr "New API Token" - -#~ msgid "View API Token" -#~ msgstr "View API Token" - -#~ msgid "Edit API Token" -#~ msgstr "Edit API Token" - -#~ msgid "Delete API Token" -#~ msgstr "Delete API Token" - -#~ msgid "Search for API Token" -#~ msgstr "Search for API Token" - -#~ msgid "New Custom Field" -#~ msgstr "New Custom Field" - -#~ msgid "Show Custom Field" -#~ msgstr "Show Custom Field" - -#~ msgid "Edit Custom Field" -#~ msgstr "Edit Custom Field" - -#~ msgid "Delete Custom Field" -#~ msgstr "Delete Custom Field" - -#~ msgid "Search for Custom Field" -#~ msgstr "Search for Custom Field" - -#~ msgid "Show Public Link" -#~ msgstr "Show Public Link" - -#~ msgid "Search for Public Link" -#~ msgstr "Search for Public Link" - -#~ msgid "Enable Plugin" -#~ msgstr "Enable Plugin" - -#~ msgid "Disable Plugin" -#~ msgstr "Disable Plugin" - -#~ msgid "Reset Plugin" -#~ msgstr "Reset Plugin" - -#~ msgid "Edit User Password" -#~ msgstr "Edit User Password" - -#~ msgid "User Configuration" -#~ msgstr "User Configuration" - -#~ msgid "General Preferences" -#~ msgstr "General Preferences" - -#~ msgid "Accounts Configuration" -#~ msgstr "Accounts Configuration" - -#~ msgid "Wiki Configuration" -#~ msgstr "Wiki Configuration" - -#~ msgid "Encryption Configuration" -#~ msgstr "Encryption Configuration" - -#~ msgid "Update Hash" -#~ msgstr "Update Hash" - -#~ msgid "Temporary Master Password" -#~ msgstr "Temporary Master Password" - -#~ msgid "Backup Configuration" -#~ msgstr "Backup Configuration" - -#~ msgid "Import Configuration" -#~ msgstr "Import Configuration" - -#~ msgid "CSV Import" -#~ msgstr "CSV Import" - -#~ msgid "XML Import" -#~ msgstr "XML Import" - -#~ msgid "Export Configuration" -#~ msgstr "Export Configuration" - -#~ msgid "Export" -#~ msgstr "Export" - -#~ msgid "Email Configuration" -#~ msgstr "Email Configuration" - -#~ msgid "LDAP Configuration" -#~ msgstr "LDAP Configuration" - -#~ msgid "LDAP synchronization" -#~ msgstr "LDAP synchronization" - -#~ msgid "Account Management (H)" -#~ msgstr "Account Management (H)" - -#~ msgid "Create Notification" -#~ msgstr "Create Notification" - -#~ msgid "Preset Values Management" -#~ msgstr "Preset Values Management" - -#~ msgid "Tracks Management" -#~ msgstr "Tracks Management" - -#~ msgid "Unlock track" -#~ msgstr "Unlock track" - -#~ msgid "Clear the tracks out" -#~ msgstr "Clear the tracks out" - -#~ msgid "Color" -#~ msgstr "Color" - -#~ msgid "Number" -#~ msgstr "Number" - -#~ msgid "Phone" -#~ msgstr "Phone" - -#~ msgid "Text Area" -#~ msgstr "Text Area" - -#~ msgid "Text" -#~ msgstr "Text" +#: app/resources/strings.js.inc:32 +#, fuzzy +msgid "Generated Password" +msgstr "仮マスターパスワードの発行" + +#: app/resources/strings.js.inc:33 +#, fuzzy +msgid "High level" +msgstr "Level" + +#: app/resources/strings.js.inc:34 +#, fuzzy +msgid "Average level" +msgstr "Level" + +#: app/resources/strings.js.inc:35 +#, fuzzy +msgid "Low level" +msgstr "Level" + +#: app/resources/strings.js.inc:36 +#, fuzzy +msgid "Very High level" +msgstr "Level" + +#: app/resources/strings.js.inc:37 +msgid "You should use at least 8 characters" +msgstr "" + +#: app/resources/strings.js.inc:38 +#, fuzzy +msgid "Delete item?" +msgstr "Delete" + +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:22 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:31 +#: app/resources/strings.js.inc:39 +msgid "Page not found" +msgstr "Page not found" + +#: app/resources/strings.js.inc:41 +#, fuzzy +msgid "Delete file?" +msgstr "ファイルを削除" + +#: app/resources/strings.js.inc:42 +msgid "Your browser does not support HTML5 file uploads" +msgstr "" + +#: app/resources/strings.js.inc:43 +#, fuzzy +msgid "Too many files" +msgstr "マスターパスワードが短すぎます" + +#: app/resources/strings.js.inc:44 +#, fuzzy +msgid "File size not allowed" +msgstr "ファイルが大きすぎます" + +#: app/resources/strings.js.inc:45 +#, fuzzy +msgid "MIME type not allowed" +msgstr "このMIME Typeを許可する" + +#: app/resources/strings.js.inc:46 +#, fuzzy +msgid "Clear the event log out?" +msgstr "Event logをクリア" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:204 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:301 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:89 +#: app/modules/web/themes/material-blue/views/config/import.inc:59 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:262 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:84 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:54 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:152 +#: app/resources/strings.js.inc:47 +msgid "Select Group" +msgstr "グループを選択" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:180 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:114 +#: app/modules/web/themes/material-blue/views/config/import.inc:32 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:287 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:69 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:27 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:37 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:87 +#: app/resources/strings.js.inc:48 +msgid "Select User" +msgstr "ユーザーを選択" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:71 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:135 +#: app/resources/strings.js.inc:49 +msgid "Select Profile" +msgstr "Select Profile" + +#: app/modules/web/themes/material-blue/views/account/account.inc:94 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:35 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:39 +#: app/resources/strings.js.inc:50 +msgid "Select Client" +msgstr "クライアントを選択" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:78 +#: app/modules/web/themes/material-blue/views/account/account.inc:120 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:44 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:54 +#: app/resources/strings.js.inc:51 +msgid "Select Category" +msgstr "カテゴリーを選択" + +#: app/resources/strings.js.inc:52 +#, fuzzy +msgid "No results" +msgstr "Results" + +#: app/resources/strings.js.inc:53 +#, fuzzy +msgid "Password options" +msgstr "Options" + +#: app/resources/strings.js.inc:54 +#, fuzzy +msgid "Generate random password" +msgstr "仮パスワードを発行する" + +#: app/resources/strings.js.inc:55 +#, fuzzy +msgid "Complexity" +msgstr "" +"[FIX] Fixed wrong behavior when setting password complexity length. Thanks " +"to @andrucha97 for the feedback. Closes #1280" + +#: app/resources/strings.js.inc:56 +#, fuzzy +msgid "Reset" +msgstr "パスワードリセットはできません" + +#: app/resources/strings.js.inc:57 +#, fuzzy +msgid "Password strength level" +msgstr "Level" + +#: app/resources/strings.js.inc:58 +#, fuzzy +msgid "Show Password" +msgstr "パスワードを画像で表示する" + +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:24 +#: app/resources/strings.js.inc:59 +msgid "Copy Username" +msgstr "ユーザー名をコピー" + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/account/viewpass.inc:41 +#: app/resources/strings.js.inc:60 app/resources/actions.xml:199 +#: app/resources/actions.xml:271 +msgid "Copy Password" +msgstr "パスワードをコピー" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:84 +#: app/resources/strings.js.inc:61 +msgid "Include Numbers" +msgstr "数字" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:126 +#: app/resources/strings.js.inc:62 +msgid "Include Uppercase" +msgstr "大文字" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:112 +#: app/resources/strings.js.inc:63 +msgid "Include Symbols" +msgstr "記号" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:16 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 +#: app/resources/strings.js.inc:64 +msgid "Length" +msgstr "Length" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 +#: app/resources/strings.js.inc:65 +msgid "Select Action" +msgstr "Select Action" + +#: app/resources/strings.js.inc:68 +msgid "Accept" +msgstr "" + +#: app/resources/strings.js.inc:69 +msgid "Cancel" +msgstr "" + +#: app/resources/strings.js.inc:70 +#, fuzzy +msgid "Password Copied into Clipboard" +msgstr "パスワードをコピーしました" + +#: app/resources/strings.js.inc:71 +msgid "Error while copying to clipboard" +msgstr "" + +#: app/resources/strings.js.inc:73 +#, fuzzy +msgid "Send notifies?" +msgstr "送信" + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:160 +#: app/resources/strings.js.inc:74 app/resources/actions.xml:247 +msgid "Mark as Favorite" +msgstr "お気に入りに追加" + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:150 +#: app/resources/strings.js.inc:75 app/resources/actions.xml:253 +msgid "Delete Favorite" +msgstr "お気に入りの解除" + +#: app/resources/strings.js.inc:76 +#, fuzzy +msgid "Clear Selection" +msgstr "クリア" + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:81 +#: app/resources/strings.js.inc:77 app/resources/actions.xml:241 +msgid "Show Favorites" +msgstr "お気に入りを表示" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:75 +#: app/resources/strings.js.inc:78 +msgid "Display All" +msgstr "Display All" + +#: app/resources/strings.js.inc:81 +#, fuzzy +msgid "Now" +msgstr "" +"インストール時と同様にフォルダの所有者とパーミッション変更を行ってください" + +#: app/resources/strings.js.inc:82 +msgid "" +"This process will import the detected LDAP users. Would you like to continue?" +msgstr "" + +#: app/resources/strings.js.inc:83 +msgid "This action will reset all plugin data. Do you want to continue?" +msgstr "" + +#: app/resources/strings.js.inc:84 +msgid "This process could take some time long. Do you wish to continue?" +msgstr "" + +#: app/resources/strings.js.inc:87 +msgid "Performing task. Please, do not close browser's window/tab." +msgstr "" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 +#: app/resources/strings.js.inc:88 +msgid "Include Letters" +msgstr "英字" + +#: app/resources/strings.js.inc:89 +msgid "Cookies disabled. Application won't work properly." +msgstr "" + +#: app/resources/strings.js.inc:90 +msgid "Clipboard not supported by your browser." +msgstr "" + +#: app/resources/strings.js.inc:91 +msgid "Performing auto-login" +msgstr "" + +#: app/resources/strings.js.inc:92 +msgid "There is a more recent version of {0} plugin ({1})" +msgstr "" + +#: app/modules/web/themes/material-blue/views/main/update.inc:30 +#: app/resources/strings.js.inc:93 +msgid "Updated" +msgstr "最新のバージョンです" + +#: app/modules/web/themes/material-blue/views/main/update.inc:36 +#: app/resources/strings.js.inc:94 +msgid "Error while checking for updates" +msgstr "アップデート中時にエラーが発生しました" + +#: app/resources/strings.js.inc:95 +msgid "sysPass Notices" +msgstr "" + +#: app/resources/strings.js.inc:96 +#, fuzzy +msgid "Clear the tracks out?" +msgstr "Event logをクリア" + +#: app/modules/web/themes/material-blue/views/_layouts/main.inc:21 +msgid "Javascript is needed in order to run correctly" +msgstr "Javascript is needed in order to run correctly" + +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:70 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:127 +msgid "User preferences" +msgstr "ユーザー設定" + +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:74 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:77 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:148 +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:151 +msgid "Sign Out" +msgstr "サインアウト" + +#: app/modules/web/themes/material-blue/views/_partials/fixed-header.inc:164 +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:53 +msgid "Demo" +msgstr "デモ" + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "Tells whether the connection uses HTTPS or not." +msgstr "赤く表示される場合はHTTPS通信ではありません。" + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:44 +msgid "" +"Passwords sent from forms are encrypted using PKI, the remain data don't." +msgstr "" +"ブラウザからサーバーに送信されるパスワードはすべてPKIで暗号化された後に送信さ" +"れますが、HTTPの場合はパスワード以外の情報だけはそのまま送信されます。HTTPSの" +"場合は全ての情報が暗号化されています。" + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:66 +msgid "Help :: FAQ :: Changelog" +msgstr "Help :: FAQ :: Changelog" + +#: app/modules/web/themes/material-blue/views/_partials/footer.inc:70 +msgid "A cygnux.org project" +msgstr "A cygnux.org project" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:8 +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:12 +msgid "Special parameters" +msgstr "高度な検索" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:14 +msgid "" +"You could use either one or several special parameters separated by blank " +"spaces" +msgstr "" +"以下の検索クエリで高度な検索ができます、各クエリをスペースで区切ると複数条件" +"で検索できます。" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:16 +msgid "Search for accounts which 'login' has access rights" +msgstr "" +"‘login’というユーザー名のアカウントがアクセスできるアカウントを検索します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:17 +msgid "Get the accounts in which user login \"login\" is the owner" +msgstr "‘login’という名前のユーザーが作成したアカウントを検索します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:18 +msgid "Search for accounts which 'group_name' has access rights" +msgstr "" +"‘group_name’という名前のグループがアクセスできるアカウントが表示されます" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:19 +msgid "Get the accounts in which main group \"group_name\" is set" +msgstr "" +"‘group_name’という名前のグループをmain groupに設定しているアカウントを検索し" +"ます" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:20 +msgid "Search for accounts which contain a file with the name 'file_name'" +msgstr "‘file_name’という名前のファイルが存在するアカウントを表示します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:21 +msgid "Search for accounts by client name" +msgstr "’client_name’という名前のクライアントのアカウントを表示します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:22 +msgid "Search for accounts by category name" +msgstr "‘category_name’という名前のカテゴリーに属するアカウントを表示します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:23 +msgid "Returns the account for the given ID" +msgstr "‘account_id’に一致するアカウントを表示します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:24 +msgid "Search for accounts with expired password" +msgstr "有効期限の切れたアカウントを表示します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:25 +msgid "Get private accounts for current user" +msgstr "ログインしているユーザー自身のプライベートアカウントを検索します" + +#: app/modules/web/themes/material-blue/views/_partials/help_account_search.inc:26 +msgid "Operator for special parameters" +msgstr "高度な検索に使える検索クエリ" + +#: app/modules/web/themes/material-blue/views/_partials/no_records_found.inc:10 +#: app/modules/web/themes/material-blue/views/account/search-index.inc:19 +msgid "No records found" +msgstr "該当するものはありません" + +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:85 +#: app/modules/web/themes/material-blue/views/account/account.inc:180 +#: app/modules/web/themes/material-blue/views/account/account.inc:189 +#: app/modules/web/themes/material-blue/views/install/index.inc:64 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:115 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:122 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:59 +#: app/modules/web/themes/material-blue/views/itemshow/user_pass.inc:66 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:41 +msgid "Password (repeat)" +msgstr "Password (repeat)" + +#: app/modules/web/themes/material-blue/views/account/account-editpass.inc:109 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:147 +#: app/modules/web/themes/material-blue/views/account/account.inc:212 +#: app/modules/web/themes/material-blue/views/account/account.inc:305 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:254 +msgid "Select date" +msgstr "日付選択" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:19 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:140 +#: app/modules/web/themes/material-blue/views/account/account-history.inc:142 +#: app/modules/web/themes/material-blue/views/account/account.inc:297 +#: app/modules/web/themes/material-blue/views/account/account.inc:299 +msgid "History" +msgstr "履歴" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:28 +#: app/modules/web/themes/material-blue/views/account/account.inc:50 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:22 +msgid "Details" +msgstr "詳細" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:127 +#: app/modules/web/themes/material-blue/views/account/account-link.inc:78 +#: app/modules/web/themes/material-blue/views/account/account.inc:218 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:168 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:163 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:169 +msgid "Notes" +msgstr "Notes" + +#: app/modules/web/themes/material-blue/views/account/account-history.inc:160 +#: app/modules/web/themes/material-blue/views/account/account.inc:320 +#: app/modules/web/themes/material-blue/views/account/details.inc:32 +#: app/modules/web/themes/material-blue/views/account/details.inc:34 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:291 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:293 +msgid "Last Modification" +msgstr "最終編集" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:25 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:58 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:119 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:140 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:18 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:35 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:57 +msgid "Select Users" +msgstr "ユーザーを選択" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:35 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:39 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:107 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:111 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:127 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:176 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:29 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:70 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:53 +msgid "View" +msgstr "表示" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:97 +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:130 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:168 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:190 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:59 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-permission.inc:76 +msgid "Select Groups" +msgstr "グループを選択" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:228 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:182 +msgid "Private" +msgstr "プライベートアカウント" + +#: app/modules/web/themes/material-blue/views/account/account-permissions.inc:246 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:198 +msgid "Private for Group" +msgstr "プライベートグループアカウント" + +#: app/modules/web/themes/material-blue/views/account/account-request.inc:15 +msgid "Request Account Modification" +msgstr "アカウントの修正をリクエスト" + +#: app/modules/web/themes/material-blue/views/account/account-request.inc:52 +msgid "Request description" +msgstr "リクエストの概要" + +#: app/modules/web/themes/material-blue/views/account/account-request.inc:74 +msgid "Send" +msgstr "送信" + +#: app/modules/web/themes/material-blue/views/account/account.inc:40 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:133 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:21 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:214 +msgid "Permissions" +msgstr "Permissions(権限)" + +#: app/modules/web/themes/material-blue/views/account/account.inc:239 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:98 +msgid "Select Tags" +msgstr "タグを選択" + +#: app/modules/web/themes/material-blue/views/account/account.inc:288 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:26 +msgid "Select Account" +msgstr "アカウントを選択" + +#: app/modules/web/themes/material-blue/views/account/account.inc:328 +#: app/modules/web/themes/material-blue/views/account/account.inc:330 +#: app/modules/web/themes/material-blue/views/account/account.inc:334 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:193 +msgid "Public Link" +msgstr "共有リンク" + +#: app/modules/web/themes/material-blue/views/account/account.inc:342 +#: app/modules/web/themes/material-blue/views/account/account.inc:344 +#: app/modules/web/themes/material-blue/views/account/account.inc:348 +msgid "Direct Link" +msgstr "ダイレクトリンク" + +#: app/modules/web/themes/material-blue/views/account/details.inc:22 +#: app/modules/web/themes/material-blue/views/account/details.inc:24 +msgid "Date Added" +msgstr "日付を追加しました" + +#: app/modules/web/themes/material-blue/views/account/details.inc:60 +#: app/modules/web/themes/material-blue/views/account/details.inc:62 +msgid "Date Modified" +msgstr "日付を変更しました" + +#: app/modules/web/themes/material-blue/views/account/details.inc:68 +#: app/modules/web/themes/material-blue/views/account/details.inc:70 +msgid "Editor" +msgstr "Editor" + +#: app/modules/web/themes/material-blue/views/account/details.inc:78 +#: app/modules/web/themes/material-blue/views/account/details.inc:80 +msgid "Password Date" +msgstr "Password Date" + +#: app/modules/web/themes/material-blue/views/account/files.inc:37 +msgid "Drop files here (max. 5) or click to select" +msgstr "" +"ファイルをドラッグアンドドロップ(Max 5 files) / クリックしてファイルを選択" + +#: app/modules/web/themes/material-blue/views/account/files.inc:39 +msgid "Maximum file size: %d MB" +msgstr "最大ファイルサイズ: %d MB" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:35 +msgid "Search in Wiki" +msgstr "Wiki検索" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:84 +msgid "Open link to: %s" +msgstr "Open link to: %s" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:111 +msgid "Password Expired" +msgstr "パスワードの有効期限" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:125 +msgid "Private Account (Group)" +msgstr "Private Account (Group)" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:182 +msgid "Attachments" +msgstr "添付" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:209 +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:220 +msgid "Link to Wiki" +msgstr "Wikiへのリンク" + +#: app/modules/web/themes/material-blue/views/account/search-rows.inc:212 +msgid "View at Wiki" +msgstr "Wikiを表示" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:60 +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:64 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 +msgid "Global search" +msgstr "Global search" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:86 +msgid "Favorites Filtering" +msgstr "お気に入り済みのアカウントを表示" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:101 +msgid "Accounts per page" +msgstr "1画面あたりの表示数" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:109 +msgid "More Filters" +msgstr "詳細検索" + +#: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:114 +msgid "Select Tag" +msgstr "タグの選択" + +#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:22 +msgid "Data will be encrypted after saving" +msgstr "データは暗号化処理をした後保存されます" + +#: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:27 +msgid "Data will be unencrypted after saving" +msgstr "データは暗号化されずに保存されます" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:12 +#: app/modules/web/themes/material-blue/views/config/backup.inc:13 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:12 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:12 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:12 +msgid "The '%s' extension is unavailable" +msgstr "“%s” プラグインが動作していません" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:16 +msgid "This extension is needed to display passwords as images" +msgstr "" +"このプラグインはパスワードを文字ではなく画像として表示するために必要です" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:29 +msgid "Searching" +msgstr "検索中" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:35 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:51 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:56 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:72 +msgid "Results per page" +msgstr "Results per page" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:40 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:61 +msgid "Number of results per page to display when performing a search." +msgstr "1画面あたりの検索結果の表示数。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:69 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:30 +msgid "Accounts password expiry" +msgstr "アカウントのパスワードの有効期限" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:70 +msgid "Enables the accounts password expiry date." +msgstr "アカウントのパスワードに有効期限を設定しました。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:78 +msgid "Password expiry time" +msgstr "パスワードの有効期限" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:83 +msgid "Number of days for account's password expiry date." +msgstr "パスワードの有効期限。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:93 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:38 +msgid "Expire time (days)" +msgstr "有効期限(日)" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:111 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:90 +msgid "Account name as link" +msgstr "アカウント名のリンク" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:112 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:92 +msgid "Enables to use the account name as a link to account details." +msgstr "アカウント名をリンクにする。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:127 +msgid "Global searches" +msgstr "グローバル検索" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:128 +msgid "" +"Allows the users to do searches that includes all accounts, they won't be " +"able to display the account details if they don't have permission." +msgstr "" +"全てのアカウントから検索できますが、アカウントの詳細を閲覧できるのは権限を" +"持ったユーザーのみです。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:143 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 +msgid "Image to show password" +msgstr "パスワードを画像で表示する" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:145 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:156 +msgid "Generate an image with a text of the account password." +msgstr "パスワードを文字ではなく画像として表示します。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:147 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:158 +msgid "" +"Useful for environments where copying a password to clipboard is a security " +"risk." +msgstr "" +"パスワードをクリップボードにコピーすることは、場合によってはセキュリティーリ" +"スクにつながります。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:163 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:158 +msgid "Results like Cards" +msgstr "カード表示" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:165 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:160 +msgid "Displays account's search results on a card like format." +msgstr "アカウントを四角いカードスタイルで表示します。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:181 +msgid "Secondary Groups Access" +msgstr "Secondary Groups Access" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:183 +msgid "Grants access to users that are included in secondary groups." +msgstr "Grants access to users that are included in secondary groups." + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:185 +msgid "" +"By default, user in a secondary group is granted if the secondary group is " +"set as user's main group." +msgstr "" +"By default, user in a secondary group is granted if the secondary group is " +"set as user's main group." + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/config/accounts.inc:196 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:378 +#: app/resources/actions.xml:73 +msgid "Public Links" +msgstr "共有リンク" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:214 +msgid "Enable Public Links" +msgstr "共有リンクを有効化" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:216 +msgid "Enables the ability to create public links to view an account's details" +msgstr "共有リンク機能を有効化します" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:218 +msgid "Linked accounts will be visible by anyone that have the link." +msgstr "共有リンクを知っている全てのユーザーがアクセスできるようになります。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:220 +msgid "" +"In order to create links, users must have activated the option on their " +"profiles." +msgstr "" +"共有リンクを作成するには各ユーザーの個人設定から有効化する必要があります。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:236 +msgid "Use an image for password" +msgstr "パスワードを画像で表示する" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:238 +msgid "The account password is shown as image." +msgstr "アカウントのパスワードを文字ではなく画像で表示します。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:247 +msgid "Expire time" +msgstr "有効期限" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:262 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:271 +msgid "Maximum visits" +msgstr "最大閲覧数" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:297 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:411 +msgid "Files management" +msgstr "ファイル管理" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:298 +msgid "Enables the uploading and downloading of accounts files." +msgstr "ファイルのアップロード・ダウンロード機能を有効化します。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:306 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:319 +msgid "Allowed MIME types" +msgstr "このMIME Typeを許可する" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:311 +msgid "Allowed file MIME types for uploading." +msgstr "このMIME Typeのアップロードは許可されています。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:314 +msgid "" +"In order to add more MIME types, you need to add them into mime.xml file " +"within the config directory." +msgstr "" +"MIME Typebの設定を変更するには“config”ディレクトリ内の”mime.xml”ファイルを編" +"集してください。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:334 +msgid "Maximum file size" +msgstr "最大ファイルサイズ" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:339 +msgid "Sets the maximum file size for uploading." +msgstr "アップロードできる最大ファイルサイズ。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:343 +msgid "Absolute maximum is 16MB." +msgstr "設定できる上限値は16MBです。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:354 +msgid "Maximum file size in kilobytes" +msgstr "最大ファイルサイズはKB(キロバイト)で設定してください" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:17 +msgid "This extension is needed to build the application's backup files" +msgstr "" +"このエクステンションはアプリケーションのバックアップを作成するために必要です" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:31 +#: app/modules/web/themes/material-blue/views/config/backup.inc:34 +#: app/modules/web/themes/material-blue/views/config/backup.inc:110 +#: app/modules/web/themes/material-blue/views/config/backup.inc:113 +msgid "Result" +msgstr "Result" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:42 +#: app/modules/web/themes/material-blue/views/config/backup.inc:45 +#: app/modules/web/themes/material-blue/views/config/backup.inc:121 +#: app/modules/web/themes/material-blue/views/config/backup.inc:124 +msgid "Download Current" +msgstr "ダウンロード" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:52 +msgid "DB Backup" +msgstr "DB Backup" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:59 +msgid "sysPass Backup" +msgstr "sysPass Backup" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:81 +msgid "" +"The backup allows you to save and download sysPass database and application " +"files including its configuration." +msgstr "" +"sysPassのアプリケーション構成とデータベースのバックアップファイルを作成・ダウ" +"ンロードできます。" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:83 +msgid "" +"With this method it's possible to either save all sysPass data in another " +"place or use it to make the application portable." +msgstr "" +"sysPass全体のバックアップを作成し、別の場所に同じsysPassサーバーを構築するこ" +"とやそのままUSBなどにコピーしてオフラインで利用することができます。" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:102 +#: app/modules/web/themes/material-blue/views/config/backup.inc:186 +msgid "Export Accounts" +msgstr "Export Accounts" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:140 +#: app/modules/web/themes/material-blue/views/config/backup.inc:148 +msgid "Export Password" +msgstr "Export Password" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:154 +#: app/modules/web/themes/material-blue/views/config/backup.inc:162 +msgid "Export Password (repeat)" +msgstr "Export Password (repeat)" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:188 +msgid "" +"The accounts export allows you to save the accounts and their data in XML " +"format to be imported in another sysPass instance." +msgstr "" +"アカウント情報をXML形式でエクスポートして、他のsysPassにインポートすることが" +"できます。" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:190 +msgid "Exported items are accounts, clients, categories and tags." +msgstr "アカウント・クライアント・カテゴリー・タグをエクスポートします。" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:192 +msgid "" +"Accounts' password are exported in an encrypted way for better security." +msgstr "" +"エクスポート時に全てのアカウントのパスワードは暗号化された状態でエクスポート" +"されます。" + +#: app/modules/web/themes/material-blue/views/config/backup.inc:194 +msgid "" +"It's possible to set an export password to save all the encrypted data in " +"the XML file." +msgstr "" +"エクスポートパスワードを用いて全てのデータを暗号化した状態でXMLファイルにエク" +"スポートすることができます。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:19 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:168 +#: app/modules/web/themes/material-blue/views/config/import.inc:152 +#: app/modules/web/themes/material-blue/views/config/import.inc:167 +#: app/modules/web/themes/material-blue/views/install/index.inc:50 +#: app/modules/web/themes/material-blue/views/install/index.inc:56 +#: app/modules/web/themes/material-blue/views/login/index.inc:57 +#: app/modules/web/themes/material-blue/views/login/index.inc:102 +msgid "Master Password" +msgstr "マスターパスワード" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:26 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:29 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:214 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:217 +msgid "Last change" +msgstr "最終変更" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:37 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:46 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:142 +msgid "Current Master Password" +msgstr "Current Master Password" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:52 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:61 +msgid "New Master Password" +msgstr "New Master Password" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:67 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:76 +msgid "New Master Password (repeat)" +msgstr "New Master Password (repeat)" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:91 +msgid "You should save the new password on a secure place" +msgstr "パスワードは安全な方法で保存されます" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:95 +msgid "All accounts passwords will be encrypted again." +msgstr "保存されている全てのパスワードを再暗号化します。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:99 +msgid "Users will need to enter the new Master Password." +msgstr "" +"全てのユーザーはログイン時に新しいマスターパスワードの入力を求められるように" +"なります。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:103 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:130 +msgid "It will be updated %s accounts. This process could take some time long." +msgstr "" +"現在%s個目のアカウントを処理中です。処理の完了までしばらくお待ちください。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:121 +msgid "Do not modify accounts" +msgstr "Do not modify accounts" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:123 +msgid "Sets a new Master Password without re-encrypting the accounts." +msgstr "アカウントを再暗号化せずにマスターパスワードを変更します。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:140 +msgid "Confirm change" +msgstr "Confirm change" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:142 +msgid "" +"Confirm the master password change after you have been read all the above " +"warnings." +msgstr "" +"上記の説明を全て読みマスターパスワードを変更することによって起こる影響を理解" +"した上で処理を行ってください。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:170 +msgid "" +"The Master Password is used to encrypt sysPass accounts passwords and keep " +"them safe." +msgstr "" +"マスターパスワードはsysPassのアカウント情報を暗号化する際に用いられます。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:172 +msgid "" +"It's advisable to change it from time to time and use a complex password " +"that includes numbers, letters and symbols." +msgstr "" +"パスワードには英数字のほか記号を含めるなど複雑なものにすることをおすすめしま" +"す。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:174 +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:132 +msgid "You could get more info on: %s" +msgstr "You could get more info on: %s" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:184 +msgid "Update master password hash" +msgstr "マスターパスワードのハッシュを再生成" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:204 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:344 +msgid "Temporary Password" +msgstr "仮パスワード" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:219 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:234 +msgid "Not generated" +msgstr "生成されていません" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:224 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:227 +msgid "Valid until" +msgstr "Valid until" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:240 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:243 +msgid "Attempts" +msgstr "Attempts" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:250 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:262 +msgid "Life (s)" +msgstr "Life (s)" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:282 +msgid "Send email" +msgstr "メールを送信する" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:284 +msgid "Sends an email to all users or only to those whose group is selected." +msgstr "全てのユーザーまたは、選択したグループにメールを送信します。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:346 +msgid "" +"The temporary password is used as a Master Password for the users that need " +"to enter it during login. By this way there is no need to tell them the real " +"Master Password." +msgstr "" +"本来ならばsysPassを利用する全てのユーザーにマスターパスワードを教えなければな" +"りませんが、期限付きの仮マスターパスワードを利用すれば本当のマスターパスワー" +"ドの代わりにこれを教えればいいので安心して利用できます。" + +#: app/modules/web/themes/material-blue/views/config/encryption.inc:353 +msgid "Generate" +msgstr "生成" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:30 +msgid "Use Auth Basic" +msgstr "Basic認証" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:31 +msgid "Use Auth Basic for authorizing accesses to the application" +msgstr "Basic認証でアプリケーションにアクセスできるようにします" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:45 +msgid "Use Auth Basic SSO" +msgstr "SSO" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:46 +msgid "Use auto-login through Auth Basic" +msgstr "Basic認証を用いて自動ログインする" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:54 +msgid "Domain" +msgstr "Domain" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:59 +msgid "" +"The domain will be added to sysPass user name for checking against the Auth " +"Basic one." +msgstr "Basic認証のためのドメイン設定。" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:69 +msgid "Domain name" +msgstr "ドメイン名" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:75 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:85 +#: app/modules/web/themes/material-blue/views/config/import.inc:45 +#: app/modules/web/themes/material-blue/views/config/import.inc:55 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:248 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:258 +msgid "Default Group" +msgstr "Default Group" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:80 +msgid "Sets the default users group for newly created SSO users" +msgstr "" +"新しく作成したSSOユーザーが自動的に追加されるデフォルトユーザーグループを設定" +"します" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:100 +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:110 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:273 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:283 +msgid "Default Profile" +msgstr "デフォルトプロファイル" + +#: app/modules/web/themes/material-blue/views/config/general-auth.inc:105 +msgid "Sets the default profile for the newly created SSO users." +msgstr "" +"SSOから追加されたユーザーは全てこのデフォルトプロファイルが適用されます。" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:12 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:98 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:101 +#: app/modules/web/themes/material-blue/views/config/mail.inc:173 +#: app/modules/web/themes/material-blue/views/config/mail.inc:176 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:70 +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:72 +msgid "Events" +msgstr "Events" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:30 +msgid "Enable event log" +msgstr "Enable event log" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:31 +msgid "Saves the actions done by the application." +msgstr "アプリケーションの動作を保存します。" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:45 +msgid "Enable Syslog" +msgstr "Enable Syslog" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:60 +msgid "Enable Remote Syslog" +msgstr "Enable Remote Syslog" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:78 +msgid "Hostname or IP address" +msgstr "Hostname or IP address" + +#: app/modules/web/themes/material-blue/views/config/general-events.inc:84 +#: app/modules/web/themes/material-blue/views/config/general-events.inc:92 +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:53 +#: app/modules/web/themes/material-blue/views/config/mail.inc:72 +#: app/modules/web/themes/material-blue/views/config/mail.inc:79 +msgid "Port" +msgstr "Port" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:12 +msgid "Proxy" +msgstr "Proxy" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:30 +msgid "Use Proxy" +msgstr "Use Proxy" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:31 +msgid "Use a proxy server for checking out for updates and notifications." +msgstr "" +"sysPassとメール通知を行う際にプロキシサーバ-を経由させることができます。" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:47 +msgid "Proxy server" +msgstr "Proxy server" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:61 +msgid "Proxy server port" +msgstr "Proxy server port" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:75 +msgid "Proxy server user" +msgstr "Proxy server user" + +#: app/modules/web/themes/material-blue/views/config/general-proxy.inc:89 +msgid "Proxy server password" +msgstr "Proxy server password" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:17 +msgid "This extension is needed to check for sysPass updates and notices" +msgstr "このエクステンションはsysPassの更新と通知機能のために必要です" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:25 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:15 +msgid "Site" +msgstr "Site" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:31 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:45 +#: app/modules/web/themes/material-blue/views/config/info.inc:113 +#: app/modules/web/themes/material-blue/views/config/info.inc:127 +#: app/modules/web/themes/material-blue/views/install/index.inc:137 +#: app/modules/web/themes/material-blue/views/install/index.inc:139 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:26 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:28 +msgid "Language" +msgstr "言語" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:36 +msgid "" +"Sets the global app language. You can set a per user language on preferences." +msgstr "" +"sysPass全体の言語設定です、これの他にユーザー自身の個人設定から表示される言語" +"を変更することもできます。" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:40 +msgid "" +"To improve/add translations, you can get involved at https://poeditor.com/" +"join/project/fmlsBuugyv" +msgstr "" +"探している言語がありませんか?よろしければこちらから翻訳に協力してくださいま" +"せんか?https://poeditor.com/join/project/fmlsBuugyv" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:59 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:69 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:40 +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:42 +msgid "Visual Theme" +msgstr "テーマ" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:64 +msgid "" +"Sets the global application visual theme. You can set a per user visual " +"theme on preferences." +msgstr "" +"sysPass全体のテーマを設定です。これの他にユーザー自身の個人設定からもテーマを" +"変更することができます。" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:83 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:95 +msgid "Session timeout (s)" +msgstr "セッションの有効期限(秒)" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:136 +msgid "Force HTTPS" +msgstr "Force HTTPS" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:137 +msgid "It forces the use of HTTPS on all the connections" +msgstr "HTTP通信を全てHTTPSにリダイレクトします" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:152 +msgid "Enable debug" +msgstr "デバッグを有効化" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:153 +msgid "" +"Displays some information about application configuration and performance." +msgstr "アプリケーションの構成と動作に関する詳細情報を表示するようになります。" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:168 +msgid "Maintenance mode" +msgstr "メンテナンスモード" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:169 +msgid "" +"In this mode nobody can log into the application. To disable it, you need to " +"either modify the configuration file or unset on the site tab." +msgstr "" +"このモードを有効化したユーザー以外は誰もログインできなくなります、メンテナン" +"スモードを解除するには設定から無効化する、もしくは”config”ディレクトリ内の設" +"定ファイルから直接メンテナンスモードを無効化してください。" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:184 +msgid "Check for updates" +msgstr "アップデートを確認" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:185 +msgid "Check for application updates (only for administrators)." +msgstr "新しいsysPassがないか確認をします(adminユーザーのみが実行できます)。" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:200 +msgid "Check for notifications" +msgstr "通知を確認" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:201 +msgid "" +"Check if there are either sysPass security or warning notices (only for " +"administrators)." +msgstr "" +"sysPassにセキュリティー上の問題が見つかった場合adminユーザーに通知が届きま" +"す。" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:216 +msgid "Encrypt Session" +msgstr "セッションを暗号化" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:218 +msgid "Encrypt PHP session data" +msgstr "PHPのセッションを暗号化します" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:219 +msgid "" +"This feature increases the PHP sessions security, because the stored data " +"won't be readable." +msgstr "" +"PHPのセッション情報を暗号化することでより安全にsysPassを利用することができま" +"す。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:12 +#: app/modules/web/themes/material-blue/views/config/import.inc:103 +msgid "CSV/XML Import" +msgstr "CSV/XML Import" + +#: app/modules/web/themes/material-blue/views/config/import.inc:18 +#: app/modules/web/themes/material-blue/views/config/import.inc:28 +msgid "Default User" +msgstr "Default User" + +#: app/modules/web/themes/material-blue/views/config/import.inc:23 +msgid "Sets the default user for the accounts imported." +msgstr "Sets the default user for the accounts imported." + +#: app/modules/web/themes/material-blue/views/config/import.inc:50 +msgid "Sets the default group for the accounts imported." +msgstr "Sets the default group for the accounts imported." + +#: app/modules/web/themes/material-blue/views/config/import.inc:75 +msgid "Drop files here or click to select" +msgstr "ファイルをドラッグ&ドロップするか、クリックして選択してください" + +#: app/modules/web/themes/material-blue/views/config/import.inc:105 +msgid "" +"Allows to import Accounts, Categories and Clients from XML or CSV files." +msgstr "" +"アカウント・カテゴリー。クライアントをXML / CSVファイルからインポートすること" +"を許可する。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:107 +msgid "Supported XML file formats are: sysPass, KeePass and KeePassX" +msgstr "sysPass, KeePass, KeePassX形式のXMLファイルに対応しています" + +#: app/modules/web/themes/material-blue/views/config/import.inc:109 +msgid "Drag & Drop the file into the import zone or click over the arrow." +msgstr "ファイルをドラッグ&ドロップしてください。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:111 +msgid "" +"For KeePass or KeePassX files, client name will be KeePass or KeePassX and " +"category name like groups name." +msgstr "" +"KeePass/KeePassXからアカウントをインポートした際に自動的にKeePass/KeePassXと" +"いうカテゴリーが追加されます。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:113 +msgid "The CSV import file requires the following format:" +msgstr "読み込ませるCSVファイルのラベルは以下のようにしてください。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:115 +msgid "" +"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\"" +msgstr "" +"\"account_name\";\"client\";\"category\";\"url\";\"user\";\"password\";" +"\"notes\"" + +#: app/modules/web/themes/material-blue/views/config/import.inc:117 +msgid "" +"In all cases, if the client or category do not exist they will be created " +"automatically." +msgstr "" +"インポート時にsysPassに存在しないカテゴリー名・クライアント名は自動的に" +"sysPassに追加されます。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:125 +msgid "XML" +msgstr "XML" + +#: app/modules/web/themes/material-blue/views/config/import.inc:131 +#: app/modules/web/themes/material-blue/views/config/import.inc:146 +msgid "Import Password" +msgstr "Import Password" + +#: app/modules/web/themes/material-blue/views/config/import.inc:136 +msgid "It's only needed for sysPass XML files that have been encrypted." +msgstr "" +"暗号化オプションを用いてsysPassからエクスポートしたXMLファイルの場合はエクス" +"ポート時に指定したエクスポートパスワードが必要です。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:157 +msgid "" +"It's only needed for sysPass XML files that have been encrypted with a " +"different master password from the current one." +msgstr "" +"これはエクスポート後マスターパスワードを変更した場合など、エクスポート時と現" +"在のsysPassのマスターパスワードが異なるときに必要です。" + +#: app/modules/web/themes/material-blue/views/config/import.inc:174 +msgid "CSV" +msgstr "CSV" + +#: app/modules/web/themes/material-blue/views/config/import.inc:180 +#: app/modules/web/themes/material-blue/views/config/import.inc:195 +msgid "CSV delimiter" +msgstr "CSV delimiter" + +#: app/modules/web/themes/material-blue/views/config/import.inc:185 +msgid "It's only needed for CSV files." +msgstr "対応しているのはCSVファイルのみです。" + +#: app/modules/web/themes/material-blue/views/config/info.inc:14 +msgid "Application Information" +msgstr "Application Information" + +#: app/modules/web/themes/material-blue/views/config/info.inc:20 +#: app/modules/web/themes/material-blue/views/config/info.inc:23 +msgid "sysPass version" +msgstr "sysPass version" + +#: app/modules/web/themes/material-blue/views/config/info.inc:36 +#: app/modules/web/themes/material-blue/views/config/info.inc:39 +msgid "Database" +msgstr "データベース" + +#: app/modules/web/themes/material-blue/views/config/info.inc:50 +#: app/modules/web/themes/material-blue/views/config/info.inc:53 +msgid "PHP" +msgstr "PHP" + +#: app/modules/web/themes/material-blue/views/config/info.inc:57 +msgid "Extensions" +msgstr "拡張機能" + +#: app/modules/web/themes/material-blue/views/config/info.inc:61 +msgid "Unavailable extensions" +msgstr "拡張機能が利用できません" + +#: app/modules/web/themes/material-blue/views/config/info.inc:65 +msgid "Used Memory" +msgstr "Used Memory" + +#: app/modules/web/themes/material-blue/views/config/info.inc:69 +msgid "Download rate" +msgstr "ダウンロード速度" + +#: app/modules/web/themes/material-blue/views/config/info.inc:72 +msgid "OP Cache" +msgstr "OP Cache" + +#: app/modules/web/themes/material-blue/views/config/info.inc:91 +#: app/modules/web/themes/material-blue/views/config/info.inc:94 +msgid "Configuration Backup" +msgstr "設定のバックアップ" + +#: app/modules/web/themes/material-blue/views/config/info.inc:104 +#: app/modules/web/themes/material-blue/views/config/info.inc:186 +msgid "Download %s" +msgstr "Download %s" + +#: app/modules/web/themes/material-blue/views/config/info.inc:118 +msgid "Tells whether the language is available or not." +msgstr "利用可能な言語を表示します。" + +#: app/modules/web/themes/material-blue/views/config/info.inc:122 +msgid "" +"If it is not installed, you would need install the right operating system " +"locales. More info at Wiki." +msgstr "" +"お使いのサーバーのsystem localesに対象の言語が存在する必要があります。詳細は" +"Wikiを確認してください。" + +#: app/modules/web/themes/material-blue/views/config/info.inc:134 +#: app/modules/web/themes/material-blue/views/config/info.inc:144 +msgid "Encrypted Session" +msgstr "暗号化済みセッション" + +#: app/modules/web/themes/material-blue/views/config/info.inc:139 +msgid "Tells whether the session data are encrypted in the server side or not" +msgstr "セッションの暗号化状況を表示します" + +#: app/modules/web/themes/material-blue/views/config/info.inc:151 +#: app/modules/web/themes/material-blue/views/config/info.inc:154 +msgid "Loaded Plugins" +msgstr "ロード済みのプラグイン" + +#: app/modules/web/themes/material-blue/views/config/info.inc:177 +#: app/modules/web/themes/material-blue/views/config/info.inc:180 +msgid "Log file" +msgstr "ログファイル" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:16 +msgid "This extension is needed to connect to the LDAP server" +msgstr "LDAPさーばーに接続するための機能拡張です" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:46 +msgid "Enable LDAP" +msgstr "LDAPが有効です" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:48 +msgid "Enables authentication against an LDAP server." +msgstr "LDAPサーバーを用いた認証を有効化します。" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:50 +msgid "This method will use MySQL as fallback." +msgstr "有効化できない場合はMySQLを用いた認証に切り替わります。" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:65 +#, fuzzy +msgid "Active Directory" +msgstr "LDAP directory (OpenLDAP, eDirectory, Active Directory, freeIPA, etc)" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:67 +msgid "Enables Active Directory LDAP connection mode." +msgstr "" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:67 +msgid "Enables the connection over TLS" +msgstr "TLSで暗号化する" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:98 +msgid "Hostname or IP address of LDAP server." +msgstr "LDAPサーバーのホスト名 or IPアドレス。" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:102 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:133 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:194 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:228 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:119 +msgid "Examples:" +msgstr "例:" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:124 +msgid "Bind User" +msgstr "Bind User" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:129 +msgid "User to connect to LDAP service." +msgstr "LDAPサーバに接続するためのユーザー。" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:154 +msgid "Bind Password" +msgstr "Bind Password" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:159 +msgid "LDAP connection user's password" +msgstr "LDAPサーバーに接続するためのパスワード" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:185 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:209 +msgid "Search base" +msgstr "Search base" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:190 +msgid "LDAP base to perform the LDAP users search." +msgstr "LDAP base to perform the LDAP users search." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:220 +msgid "LDAP group which user must belong to for granting to log in." +msgstr "LDAP group which user must belong to for granting to log in." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:224 +msgid "This group needs to be placed in the LDAP search base." +msgstr "This group needs to be placed in the LDAP search base." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:253 +msgid "Sets the default users group for newly created LDAP users" +msgstr "" +"LDAPからインポートされたユーザーは全てデフォルトに指定したグループに追加され" +"ます" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:278 +msgid "Sets the default profile for the newly created LDAP users." +msgstr "" +"LDAPからインポートされたユーザーにはデフォルトに指定したプロファイルが適用さ" +"れます。" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:330 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:494 +msgid "Import" +msgstr "インポート" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:336 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:346 +msgid "Login Attribute" +msgstr "Login Attribute" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:341 +msgid "Defines the attribute for the user's login when importing." +msgstr "Defines the attribute for the user's login when importing." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:359 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:369 +msgid "Name Attribute" +msgstr "Name Attribute" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:364 +msgid "Defines the attribute for the user's name when importing." +msgstr "Defines the attribute for the user's name when importing." + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:394 +msgid "Import Groups" +msgstr "インポートグループ" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:403 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:413 +msgid "Group Name Attribute" +msgstr "グループ名引数" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:408 +msgid "Defines the attribute for the user group name when importing." +msgstr "インポート時にユーザーグループ名を引数で指定する。" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:424 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:438 +msgid "Filter" +msgstr "Filter" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:429 +msgid "Filter for importing LDAP users or groups." +msgstr "LDAPユーザーのフィルタリング。" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:33 +#: app/modules/web/themes/material-blue/views/config/mail.inc:34 +msgid "Enable email notifications" +msgstr "メール通知を有効化" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:48 +msgid "Enable requests by email" +msgstr "メールのリクエストを有効化" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:50 +msgid "" +"Allows users to request for either modifications to existing accounts or " +"access to accounts which they have no rights on." +msgstr "" +"ユーザーからアカウントの情報の変更リクエスト・アクセス権限リクエストを受け取" +"れるようになります。" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:97 +msgid "Enable Authentication" +msgstr "認証を有効化" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:132 +#: app/modules/web/themes/material-blue/views/config/mail.inc:135 +msgid "Security" +msgstr "セキュリティー" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:148 +#: app/modules/web/themes/material-blue/views/config/mail.inc:156 +#, fuzzy +msgid "Recipient email address" +msgstr "送信元アドレス" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:162 +#: app/modules/web/themes/material-blue/views/config/mail.inc:165 +msgid "Recipients" +msgstr "受信者" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:16 +msgid "This extension is needed to connect with DokuWiki" +msgstr "DokuWikiに接続するためには専用のextensionが必要です" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:29 +msgid "DokuWiki API" +msgstr "DokuWiki API" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:47 +msgid "Enable DokuWiki API" +msgstr "Enable DokuWiki API" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:49 +msgid "Enables DokuWiki XML-RPC API for Wiki links." +msgstr "DokuWikiの XML-RPC APIを用いたリンクを有効化する。" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:51 +msgid "" +"In order to get this feature working, you should enable Wiki links for " +"accounts filtering" +msgstr "" +"この機能を有効化するにはアカウントのフィルタリング設定からWikiリンクを有効化" +"する必要があります" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:61 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:82 +msgid "API URL" +msgstr "API URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:66 +msgid "DokuWiki API URL" +msgstr "DokuWiki API URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:70 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:97 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:57 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:90 +msgid "Example:" +msgstr "Example:" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:88 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:110 +msgid "Base URL" +msgstr "Base URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:93 +msgid "DokuWiki base URL" +msgstr "DokuWiki base URL" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:121 +msgid "User for connecting to the DokuWiki API." +msgstr "DokuWiki APIに接続します。" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:149 +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:165 +msgid "Namespace" +msgstr "Namespace" + +#: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:154 +msgid "Namespace used to search pages." +msgstr "ネームスペースを用いて検索する。" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:35 +msgid "Enable Wiki links" +msgstr "Wikiリンクを有効化" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:36 +msgid "" +"Enables the option to add a link to search for results in an external Wiki." +msgstr "Wikiから検索リンクを有効化するにはこのオプションを有効化します。" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:44 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:71 +msgid "Wiki search URL" +msgstr "Wiki search URL" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:49 +msgid "URL that Wiki uses for making an entry searching." +msgstr "URL that Wiki uses for making an entry searching." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:53 +msgid "The client's name is used as parameter." +msgstr "The client's name is used as parameter." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:77 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:104 +msgid "Wiki page URL" +msgstr "Wiki page URL" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:82 +msgid "URL that Wiki uses for accessing to the entry details." +msgstr "URL that Wiki uses for accessing to the entry details." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:86 +msgid "Account's name is used as parameter of Wiki search variable." +msgstr "Account's name is used as parameter of Wiki search variable." + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:110 +#: app/modules/web/themes/material-blue/views/config/wiki.inc:124 +msgid "Account name prefix" +msgstr "Account name prefix" + +#: app/modules/web/themes/material-blue/views/config/wiki.inc:115 +msgid "Prefix to determine which accounts have a link to the Wiki." +msgstr "Prefix to determine which accounts have a link to the Wiki." + +#: app/modules/web/themes/material-blue/views/error/error-database.inc:17 +#: app/modules/web/themes/material-blue/views/error/error-database.inc:19 +#: app/modules/web/themes/material-blue/views/install/index.inc:170 +#: app/modules/web/themes/material-blue/views/install/index.inc:172 +msgid "Install" +msgstr "Install" + +#: app/modules/web/themes/material-blue/views/grid/datagrid-nav-full.inc:18 +msgid "Filter ON" +msgstr "Filter ON" + +#: app/modules/web/themes/material-blue/views/install/index.inc:11 +msgid "Installation %s" +msgstr "Installation %s" + +#: app/modules/web/themes/material-blue/views/install/index.inc:21 +msgid "sysPass Admin" +msgstr "sysPass Admin" + +#: app/modules/web/themes/material-blue/views/install/index.inc:29 +msgid "sysPass admin user" +msgstr "sysPass admin user" + +#: app/modules/web/themes/material-blue/views/install/index.inc:37 +msgid "sysPass administrator's login" +msgstr "sysPass administrator's login" + +#: app/modules/web/themes/material-blue/views/install/index.inc:69 +msgid "DB Configuration" +msgstr "DB設定" + +#: app/modules/web/themes/material-blue/views/install/index.inc:79 +msgid "DB access user" +msgstr "DBアクセスユーザー" + +#: app/modules/web/themes/material-blue/views/install/index.inc:87 +msgid "An user with MySQL admin rights" +msgstr "MySQLのadmin権限を持ったユーザー" + +#: app/modules/web/themes/material-blue/views/install/index.inc:95 +msgid "DB access password" +msgstr "DBアクセスのためのパスワード" + +#: app/modules/web/themes/material-blue/views/install/index.inc:104 +#: app/modules/web/themes/material-blue/views/install/index.inc:112 +msgid "sysPass database name" +msgstr "sysPassに利用するデータベース名" + +#: app/modules/web/themes/material-blue/views/install/index.inc:121 +msgid "sysPass database server" +msgstr "DBホスト名" + +#: app/modules/web/themes/material-blue/views/install/index.inc:129 +msgid "Server name to install sysPass database" +msgstr "sysPassのDBに使用するDBサーバーのホスト名" + +#: app/modules/web/themes/material-blue/views/install/index.inc:149 +msgid "Hosting Mode" +msgstr "Hosting Mode" + +#: app/modules/web/themes/material-blue/views/install/index.inc:156 +msgid "It does not create or verify the user's permissions on the DB" +msgstr "データベースを作成できませんでした、パーミッションを確認してください" + +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:22 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:28 +msgid "Others" +msgstr "Others" + +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +msgid "Creator" +msgstr "Creator" + +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:232 +#: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:234 +msgid "Delete History" +msgstr "Delete History" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:64 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:19 +#: app/modules/web/themes/material-blue/views/notification/notification.inc:98 +msgid "Options" +msgstr "Options" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 +msgid "Refresh Authorization" +msgstr "Refresh Authorization" + +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 +#: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 +msgid "Token" +msgstr "Token" + +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:54 +msgid "Sets whether the client is visible by all users" +msgstr "クライアントが全てのユーザーに表示されるかどうかを設定できます" + +#: app/modules/web/themes/material-blue/views/itemshow/client.inc:57 +msgid "" +"By default, clients assigned to accounts only will be visible by users who " +"are granted to access to the accounts." +msgstr "デフォルトでは権限が付与されたユーザーのみが閲覧できます。" + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:30 +msgid "Field name" +msgstr "フィールド名" + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:63 +msgid "Help Text" +msgstr "Help Text" + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:69 +msgid "Field's help" +msgstr "フィールドの概要" + +#: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 +msgid "Required" +msgstr "Required" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 +msgid "Score" +msgstr "Score" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:58 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:65 +msgid "Regular Expression" +msgstr "Regular Expression" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:140 +msgid "Include Lowercase" +msgstr "小文字" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 +msgid "Accounts will be only visible by the user." +msgstr "Accounts will be only visible by the user." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 +msgid "Administrators won't be able to display the accounts." +msgstr "管理者はアカウントを表示できません。" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:50 +msgid "" +"Accounts will be only visible by the user and users belonging to the main " +"group." +msgstr "メイングループに設定されているユーザーのみが閲覧できます。" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:16 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:24 +msgid "IP Address" +msgstr "IP Address" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:29 +#: app/modules/web/themes/material-blue/views/itemshow/item_preset-session_timeout.inc:37 +msgid "Timeout" +msgstr "Timeout" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:89 +msgid "" +"Assignment priority if values match with others assigned by user, group or " +"profile." +msgstr "" +"Assignment priority if values match with others assigned by user, group or " +"profile." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +msgid "Assignment Priority" +msgstr "Assignment Priority" + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 +msgid "Enforces the values to be set either on creating or updating an item." +msgstr "Enforces the values to be set either on creating or updating an item." + +#: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 +msgid "Values will be merged with the existing ones." +msgstr "Values will be merged with the existing ones." + +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:81 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:83 +msgid "Hash" +msgstr "Hash" + +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:89 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:91 +msgid "URL" +msgstr "URL" + +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:99 +#: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:101 +msgid "Use" +msgstr "Use" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:44 +msgid "Full username" +msgstr "Full username" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:58 +msgid "Session login" +msgstr "Session login" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:69 +msgid "SSO Login " +msgstr "SSO Login " + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:77 +msgid "Session login with SSO" +msgstr "Session login with SSO" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:92 +msgid "Email address" +msgstr "Email address" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:202 +msgid "Application administrator" +msgstr "Application administrator" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:220 +msgid "Accounts administrator" +msgstr "Accounts administrator" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:240 +msgid "Force password change" +msgstr "Force password change" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:273 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:275 +msgid "Entries" +msgstr "Entries" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:282 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:284 +msgid "Last Access" +msgstr "Last Access" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:300 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:302 +msgid "Master Password Date" +msgstr "Master Password Date" + +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:309 +#: app/modules/web/themes/material-blue/views/itemshow/user.inc:311 +msgid "Used in" +msgstr "Used in" + +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:87 +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:89 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 +msgid "Used by" +msgstr "Used by" + +#: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +msgid "(*) Listed in group" +msgstr "(*) Listed in group" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:26 +msgid "Management" +msgstr "Management" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 +msgid "Create new account" +msgstr "新規アカウントの作成" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 +msgid "View account details" +msgstr "アカウントの詳細を表示" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 +msgid "View account password" +msgstr "View account password" + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 +#: app/resources/actions.xml:259 +msgid "View History" +msgstr "View History" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 +msgid "View account history" +msgstr "View account history" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 +msgid "Edit account" +msgstr "アカウントの編集" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 +msgid "Edit Password" +msgstr "パスワードの編集" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 +msgid "Edit account password" +msgstr "アカウントのパスワードを変更" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 +msgid "Remove account" +msgstr "アカウントの削除" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 +msgid "View account files" +msgstr "アカウントのファイルを表示" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:166 +msgid "Share Link" +msgstr "共有リンク" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:167 +msgid "Share link to account" +msgstr "アカウントの共有リンク" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:183 +msgid "Create private account" +msgstr "プライベートアカウントを作成" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:199 +msgid "Create private account for group" +msgstr "プライベートグループアカウントを作成" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 +msgid "Assign permissions" +msgstr "権限付与" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 +msgid "Users management" +msgstr "ユーザーごとに設定できる項目があります" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 +msgid "Groups management" +msgstr "グループ管理" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:283 +msgid "Profiles management" +msgstr "プロファイル管理" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 +msgid "Categories management" +msgstr "カテゴリーで整理することもできます" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 +msgid "Tags management" +msgstr "タグ管理" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:331 +msgid "Customers management" +msgstr "カスタマー管理" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:347 +msgid "Custom fields management" +msgstr "カスタムフィールド管理" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:363 +msgid "API authorizations management" +msgstr "API認証管理" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:379 +msgid "Links management" +msgstr "共有リンク管理" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 +msgid "Accounts management" +msgstr "アカウントを管理することができます" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 +msgid "Default Values" +msgstr "Default Values" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:427 +msgid "Default Values Management" +msgstr "Default Values 管理" + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:447 +#: app/resources/actions.xml:697 +msgid "General Configuration" +msgstr "全体設定" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:463 +msgid "Encryption options" +msgstr "暗号化オプション" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:479 +msgid "Make a backup and export" +msgstr "バックアップの作成とエクスポート" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:495 +msgid "Make accounts import" +msgstr "アカウントをインポート" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 +msgid "View event log" +msgstr "event logを表示" + +#: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 +msgid "Profile name" +msgstr "プロファイル名" + +#: app/modules/web/themes/material-blue/views/login/index.inc:46 +msgid "Previous Password" +msgstr "前のパスワード" + +#: app/modules/web/themes/material-blue/views/login/index.inc:73 +msgid "Sign in" +msgstr "サインイン" + +#: app/modules/web/themes/material-blue/views/login/index.inc:82 +msgid "Forgot password?" +msgstr "パスワードを忘れた場合" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:14 +msgid "Update %s" +msgstr "Update %s" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:20 +msgid "DB Update" +msgstr "DB Update" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:22 +msgid "Application Update" +msgstr "Application Update" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:29 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:28 +msgid "Security Code" +msgstr "セキュリティーコード" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:37 +msgid "" +"This code is set in sysPass config file within the tag name \"upgradekey\"" +msgstr "" +"セキュリティーコードはsysPasの設定ファイルの”upgradekey”に記載されています" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:47 +msgid "" +"Some orphaned items have been found. Please, modify those items or enter the " +"default IDs for them." +msgstr "" +"Some orphaned items have been found. Please, modify those items or enter the " +"default IDs for them." + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:49 +msgid "If items IDs are not set, they will be created." +msgstr "If items IDs are not set, they will be created." + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:74 +msgid "Enter a valid user ID for the accounts" +msgstr "Enter a valid user ID for the accounts" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:85 +msgid "Enter a valid category ID for the accounts" +msgstr "Enter a valid category ID for the accounts" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:96 +msgid "Enter a valid client ID for the accounts" +msgstr "Enter a valid client ID for the accounts" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:108 +msgid "Enter a valid group ID for the users" +msgstr "Enter a valid group ID for the users" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:118 +msgid "Enter a valid profile ID for the users" +msgstr "Enter a valid profile ID for the users" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:128 +msgid "" +"This update uses a new encryption schema, so it will be needed to reencrypt " +"the whole encrypted data." +msgstr "" +"This update uses a new encryption schema, so it will be needed to reencrypt " +"the whole encrypted data." + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:150 +msgid "Enter a valid user login" +msgstr "有効なユーザーでログインしてください" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:162 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:33 +msgid "I've done a full sysPass backup" +msgstr "バックアップが完了しました" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:176 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:41 +msgid "Please, wait while the process is running" +msgstr "処理中です、しばらくお待ちください" + +#: app/modules/web/themes/material-blue/views/main/upgrade.inc:186 +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:51 +msgid "Start Update" +msgstr "アップデート開始" + +#: app/modules/web/themes/material-blue/views/notification/notification.inc:101 +msgid "Global notification" +msgstr "グローバル通知" + +#: app/modules/web/themes/material-blue/views/notification/notification.inc:109 +msgid "Only for application administrators" +msgstr "アプリケーション管理者のみ" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:29 +msgid "Plugin name" +msgstr "プラグイン名" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:41 +msgid "Plugin version" +msgstr "プラグインバージョン" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:46 +msgid "Compatible Version" +msgstr "互換性のあるバージョン" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:53 +msgid "sysPass compatible version" +msgstr "動作が確認されているsysPassのバージョン" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:58 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:39 +msgid "Author" +msgstr "開発者" + +#: app/modules/web/themes/material-blue/views/plugin/plugin.inc:65 +msgid "Plugin author" +msgstr "プラグインの開発者" + +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:11 +msgid "The application needs to be updated" +msgstr "このアプリケーションはアップデートが必要です" + +#: app/modules/web/themes/material-blue/views/upgrade/index.inc:16 +msgid "Please enter the security code to start the upgrade" +msgstr "アップグレード後にセキュリティーコードを入力してください" + +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:6 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:13 +msgid "Request Password Change" +msgstr "パスワード変更リクエスト" + +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:30 +msgid "User's Email" +msgstr "ユーザーのメールアドレス" + +#: app/modules/web/themes/material-blue/views/userpassreset/request.inc:41 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:54 +msgid "Go back to login" +msgstr "ログイン画面に戻る" + +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:60 +#: app/modules/web/themes/material-blue/views/userpassreset/reset.inc:62 +msgid "Change" +msgstr "変更" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:107 +msgid "Sort search results by views" +msgstr "並び替え" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:109 +msgid "Sorts accounts search results by the number of account's views" +msgstr "アカウント順で並び替え" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:124 +msgid "Navigation bar on top" +msgstr "ナビゲーションバーは画面上部にあります" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:126 +#, fuzzy +msgid "Dysplays a navigation bar on top of the search results." +msgstr "検索結果の上にナビゲーションバーを表示します。" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:141 +msgid "Show Hidden Actions" +msgstr "表示・非表示" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:143 +msgid "Always display hidden actions on the accounts search page." +msgstr "アカウント検索ページで表示・非表示を切り替えることを許可します。" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:175 +msgid "In-App Notifications" +msgstr "アプリ内通知" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:177 +msgid "Enables the active In-App notifications polling" +msgstr "アプリ内通知を確認します" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:192 +msgid "Show Filters" +msgstr "Show Filters" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:194 +msgid "Displays the additional filters selection on the accounts search." +msgstr "詳しい検索。" + +#. (itstool) path: action/text +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:16 +#: app/resources/actions.xml:277 +msgid "View Wiki" +msgstr "View Wiki" + +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:24 +msgid "Search results of '%s'" +msgstr "Search results of '%s'" + +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:27 +#: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:37 +msgid "Page" +msgstr "Page" + +#. (itstool) path: action/text +#: app/resources/actions.xml:7 +#, fuzzy +msgid "Search for Accounts" +msgstr "アカウントの検索" + +#. (itstool) path: action/text +#: app/resources/actions.xml:25 +#, fuzzy +msgid "Requests" +msgstr "メールのリクエストを有効化" + +#. (itstool) path: action/text +#: app/resources/actions.xml:31 +#, fuzzy +msgid "Favorites" +msgstr "お気に入りを表示" + +#. (itstool) path: action/text +#: app/resources/actions.xml:43 +#, fuzzy +msgid "Items and Customizations" +msgstr "**Items**" + +#. (itstool) path: action/text +#: app/resources/actions.xml:49 +#, fuzzy +msgid "Categories Management" +msgstr "カテゴリー管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:55 +#, fuzzy +msgid "Customers Management" +msgstr "カスタマー管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:61 +#, fuzzy +msgid "API Authorizations Management" +msgstr "API認証管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:67 +#, fuzzy +msgid "Custom Fields Management" +msgstr "カスタムフィールド管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:79 +#, fuzzy +msgid "Files Management" +msgstr "ファイル管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:85 +#, fuzzy +msgid "Accounts Management" +msgstr "アカウント管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:91 +#, fuzzy +msgid "Tags Management" +msgstr "タグ管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:97 +#, fuzzy +msgid "Plugins Management" +msgstr "プラグインで機能を追加することができます" + +#. (itstool) path: action/text +#: app/resources/actions.xml:103 +#, fuzzy +msgid "Users and Accesses" +msgstr "Users" + +#. (itstool) path: action/text +#: app/resources/actions.xml:109 +#, fuzzy +msgid "Security and Audit" +msgstr "セキュリティー" + +#. (itstool) path: action/text +#: app/resources/actions.xml:115 +#, fuzzy +msgid "Users Management" +msgstr "ユーザー管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:121 +#, fuzzy +msgid "Groups Management" +msgstr "グループ管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:127 +#, fuzzy +msgid "Profiles Management" +msgstr "プロファイル管理" + +#. (itstool) path: action/text +#: app/resources/actions.xml:145 +#, fuzzy +msgid "Clear Events" +msgstr "クリア" + +#. (itstool) path: action/text +#: app/resources/actions.xml:151 app/resources/actions.xml:481 +#, fuzzy +msgid "View Account" +msgstr "" +"Files - アカウント情報と合わせて保存されているファイルにアクセスすることを許" +"可します" + +#. (itstool) path: action/text +#: app/resources/actions.xml:211 app/resources/actions.xml:469 +#, fuzzy +msgid "Upload File" +msgstr "ファイル" + +#. (itstool) path: action/text +#: app/resources/actions.xml:229 +#, fuzzy +msgid "Search for Files" +msgstr "検索" + +#. (itstool) path: action/text +#: app/resources/actions.xml:235 +#, fuzzy +msgid "List Files" +msgstr "ファイル" + +#. (itstool) path: action/text +#: app/resources/actions.xml:283 +#, fuzzy +msgid "Add Wiki" +msgstr "Add" + +#. (itstool) path: action/text +#: app/resources/actions.xml:289 +#, fuzzy +msgid "Edit Wiki" +msgstr "Edit" + +#. (itstool) path: action/text +#: app/resources/actions.xml:295 +#, fuzzy +msgid "Delete Wiki" +msgstr "Delete" + +#. (itstool) path: action/text +#: app/resources/actions.xml:361 +#, fuzzy +msgid "New API Token" +msgstr "User's API token" + +#. (itstool) path: action/text +#: app/resources/actions.xml:367 +#, fuzzy +msgid "View API Token" +msgstr "User's API token" + +#. (itstool) path: action/text +#: app/resources/actions.xml:373 +#, fuzzy +msgid "Edit API Token" +msgstr "User's API token" + +#. (itstool) path: action/text +#: app/resources/actions.xml:379 +#, fuzzy +msgid "Delete API Token" +msgstr "User's API token" + +#. (itstool) path: action/text +#: app/resources/actions.xml:385 +#, fuzzy +msgid "Search for API Token" +msgstr "User's API token" + +#. (itstool) path: action/text +#: app/resources/actions.xml:391 +#, fuzzy +msgid "New Custom Field" +msgstr "カスタムフィ-ルドが存在しません" + +#. (itstool) path: action/text +#: app/resources/actions.xml:397 +#, fuzzy +msgid "Show Custom Field" +msgstr "カスタフィールドの作成時にエラーが発生しました" + +#. (itstool) path: action/text +#: app/resources/actions.xml:403 +#, fuzzy +msgid "Edit Custom Field" +msgstr "カスタムフィ-ルドが存在しません" + +#. (itstool) path: action/text +#: app/resources/actions.xml:409 +#, fuzzy +msgid "Delete Custom Field" +msgstr "カスタムフィ-ルドが存在しません" + +#. (itstool) path: action/text +#: app/resources/actions.xml:415 +#, fuzzy +msgid "Search for Custom Field" +msgstr "フィールドを検索" + +#. (itstool) path: action/text +#: app/resources/actions.xml:427 +#, fuzzy +msgid "Show Public Link" +msgstr "共有リンク" + +#. (itstool) path: action/text +#: app/resources/actions.xml:445 +#, fuzzy +msgid "Search for Public Link" +msgstr "共有リンクを検索" + +#. (itstool) path: action/text +#: app/resources/actions.xml:553 +#, fuzzy +msgid "Enable Plugin" +msgstr "Enable" + +#. (itstool) path: action/text +#: app/resources/actions.xml:559 +#, fuzzy +msgid "Disable Plugin" +msgstr "Disable" + +#. (itstool) path: action/text +#: app/resources/actions.xml:565 +#, fuzzy +msgid "Reset Plugin" +msgstr "プラグインをリセット" + +#. (itstool) path: action/text +#: app/resources/actions.xml:601 +#, fuzzy +msgid "Edit User Password" +msgstr "パスワードの編集" + +#. (itstool) path: action/text +#: app/resources/actions.xml:673 +#, fuzzy +msgid "User Configuration" +msgstr "設定" + +#. (itstool) path: action/text +#: app/resources/actions.xml:679 +#, fuzzy +msgid "General Preferences" +msgstr "設定" + +#. (itstool) path: action/text +#: app/resources/actions.xml:703 +#, fuzzy +msgid "Accounts Configuration" +msgstr "アカウントの設定ができます" + +#. (itstool) path: action/text +#: app/resources/actions.xml:709 +#, fuzzy +msgid "Wiki Configuration" +msgstr "Wikiの設定ができます" + +#. (itstool) path: action/text +#: app/resources/actions.xml:715 +#, fuzzy +msgid "Encryption Configuration" +msgstr "暗号化" + +#. (itstool) path: action/text +#: app/resources/actions.xml:721 +#, fuzzy +msgid "Update Hash" +msgstr "マスターパスワードのハッシュを再生成" + +#. (itstool) path: action/text +#: app/resources/actions.xml:727 +msgid "Temporary Master Password" +msgstr "" + +#. (itstool) path: action/text +#: app/resources/actions.xml:733 +#, fuzzy +msgid "Backup Configuration" +msgstr "設定のバックアップ" + +#. (itstool) path: action/text +#: app/resources/actions.xml:745 +#, fuzzy +msgid "Import Configuration" +msgstr "Configuration" + +#. (itstool) path: action/text +#: app/resources/actions.xml:751 +#, fuzzy +msgid "CSV Import" +msgstr "読み込ませるCSVファイルのラベルは以下のようにしてください。" + +#. (itstool) path: action/text +#: app/resources/actions.xml:757 +#, fuzzy +msgid "XML Import" +msgstr "CSV/XML Import" + +#. (itstool) path: action/text +#: app/resources/actions.xml:763 +#, fuzzy +msgid "Export Configuration" +msgstr "設定" + +#. (itstool) path: action/text +#: app/resources/actions.xml:769 +#, fuzzy +msgid "Export" +msgstr "Export Accounts" + +#. (itstool) path: action/text +#: app/resources/actions.xml:775 +#, fuzzy +msgid "Email Configuration" +msgstr "" +"General - サイト・アカウント・Wiki・LDAP・メールに冠する全ての設定を変更する" +"ことを許可します" + +#. (itstool) path: action/text +#: app/resources/actions.xml:781 +#, fuzzy +msgid "LDAP Configuration" +msgstr "LDAPの設定ができます" + +#. (itstool) path: action/text +#: app/resources/actions.xml:787 +#, fuzzy +msgid "LDAP synchronization" +msgstr "LDAP方式の場合" + +#. (itstool) path: action/text +#: app/resources/actions.xml:793 +#, fuzzy +msgid "Account Management (H)" +msgstr "マスターパスワードの変更履歴" + +#. (itstool) path: action/text +#: app/resources/actions.xml:823 +#, fuzzy +msgid "Create Notification" +msgstr "通知" + +#. (itstool) path: action/text +#: app/resources/actions.xml:853 +#, fuzzy +msgid "Preset Values Management" +msgstr "プリセット" + +#. (itstool) path: action/text +#: app/resources/actions.xml:889 +#, fuzzy +msgid "Tracks Management" +msgstr "Tracks" + +#. (itstool) path: action/text +#: app/resources/actions.xml:901 +#, fuzzy +msgid "Unlock track" +msgstr "Track unlocked" + +#. (itstool) path: action/text +#: app/resources/actions.xml:907 +#, fuzzy +msgid "Clear the tracks out" +msgstr "Tracks cleared out" + +#. (itstool) path: strings/text +#: app/config/strings.xml:4 +msgid "Color" +msgstr "" + +#. (itstool) path: strings/text +#: app/config/strings.xml:5 +#, fuzzy +msgid "Number" +msgstr "1ページあたりの表示数" + +#. (itstool) path: strings/text +#: app/config/strings.xml:6 +msgid "Phone" +msgstr "" + +#. (itstool) path: strings/text +#: app/config/strings.xml:7 +#, fuzzy +msgid "Text Area" +msgstr "" +"[FIX] Wrong encoding in text area. Thanks to @pierrehenrymuller for the " +"feedback. Closes #1296" + +#. (itstool) path: strings/text +#: app/config/strings.xml:8 +#, fuzzy +msgid "Text" +msgstr "text" + +#: app/modules/web/Controllers/AccountFileController.php:192 +#, fuzzy +msgid "There aren't any allowed extensions" +msgstr "このMIME typeは許可されていません" + +#: app/modules/web/Controllers/AccountFileController.php:211 +#, fuzzy +msgid "Extension: %s" +msgstr "“%s” プラグインが動作していません" + +#: app/modules/web/Controllers/AccountFileController.php:226 +#, fuzzy +msgid "Maximum size: %s" +msgstr "最大ファイルサイズ" + +#: lib/SP/Services/Import/FileImport.php:102 +#, fuzzy +msgid "Please, check the file extension" +msgstr "ファイルのフォーマットを確認してください" + +#: lib/SP/Storage/File/FileCachePacked.php:144 +#, fuzzy +msgid "Data not loaded" +msgstr "ロード済みのプラグイン" + +#: app/config/strings.js.inc:45 +#, fuzzy +msgid "Extension not allowed" +msgstr "Extension" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:307 +#: app/modules/web/themes/material-blue/views/config/accounts.inc:320 +#, fuzzy +msgid "Allowed file extensions" +msgstr "この種類のファイルは許可されていません" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:312 +#, fuzzy +msgid "Allowed file extensions for uploading." +msgstr "このMIME Typeのアップロードは許可されています。" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:315 +msgid "" +"Write the extension and press enter to add. Remember to save the " +"configuration." +msgstr "" + +#: lib/SP/Providers/Auth/Ldap/Ldap.php:110 +msgid "LDAP type not set" +msgstr "LDAP type not set" + +#: app/modules/web/themes/material-blue/views/config/accounts.inc:256 +msgid "Expire time (minutes)" +msgstr "有効期限(分)" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:76 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:78 +#: app/modules/web/themes/material-blue/views/config/ldap.inc:82 +msgid "Server Type" +msgstr "Server Type" + +#: app/modules/web/themes/material-blue/views/config/ldap.inc:177 +msgid "" +"This isn't the real LDAP password. You should set the real one before " +"checking or importing LDAP objects" +msgstr "" +"This isn't the real LDAP password. You should set the real one before " +"checking or importing LDAP objects" + +#: app/modules/web/themes/material-blue/views/config/mail.inc:148 +#: app/modules/web/themes/material-blue/views/config/mail.inc:156 +msgid "Sender email address" +msgstr "送信元アドレス" + +#: app/modules/web/themes/material-blue/views/usersettings/general.inc:126 +msgid "Displays a navigation bar on top of the search results." +msgstr "検索結果の上にナビゲーションバーを表示します。" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:117 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:86 +msgid "Maintenance mode not enabled" +msgstr "メンテナンスモードが有効化されていません" + +#: app/modules/web/Controllers/ConfigEncryptionController.php:118 +#: app/modules/web/themes/material-blue/views/config/encryption.inc:86 +msgid "Please, enable it to avoid unwanted behavior from other sessions" +msgstr "" +"他のユーザーがログインしていると予想外の変更が行われる可能性があるのでメンテ" +"ナンスモードを有効化してください" + +#: lib/SP/Providers/Mail/MailHandler.php:149 +msgid "Event: %s" +msgstr "Event: %s" + +#: lib/SP/Services/Crypt/TemporaryMasterPassService.php:232 +msgid "%s Master Password" +msgstr "%s マスターパスワード" + +#: lib/SP/Services/Task/TaskService.php:93 +msgid "Task not set within wait time" +msgstr "Task not set within wait time" + +#: lib/SP/Config/ConfigUtil.php:102 +msgid "'/app/config' directory does not exist." +msgstr "'/app/config' ディレクトリが存在しません。" + +#: lib/SP/Config/ConfigUtil.php:108 +msgid "Unable to write into '/app/config' directory" +msgstr "'/app/config' ディレクトリに書き込むことができませんでした" + +#: lib/SP/Config/ConfigUtil.php:117 +msgid "'/app/config' directory permissions are wrong" +msgstr "'/app/config' ディレクトリのパーミッション設定が間違っています" + +#: lib/SP/Plugin/PluginManager.php:392 +msgid "Upgrading plugin" +msgstr "プラグインの更新" + +#: lib/SP/Plugin/PluginManager.php:409 +msgid "Plugin upgraded" +msgstr "プラグインの更新が完了しました" + +#: lib/SP/Plugin/PluginManager.php:418 +msgid "Unable to upgrade the \"%s\" plugin" +msgstr "プラグイン \"%s\" の更新に失敗しました" + +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:67 +msgid "Error while adding plugin's data" +msgstr "プラグイン追加時にエラーが発生しました" + +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:96 +msgid "Error while updating plugin's data" +msgstr "プラグイイン更新時にエラーが発生しました" + +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:115 +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:135 +#: lib/SP/Repositories/Plugin/PluginDataRepository.php:241 +msgid "Error while deleting plugin's data" +msgstr "プラグイン削除時にエラーが発生しました" + +#: lib/SP/Services/Plugin/PluginDataService.php:97 +#: lib/SP/Services/Plugin/PluginDataService.php:121 +#: lib/SP/Services/Plugin/PluginDataService.php:165 +#: lib/SP/Services/Plugin/PluginDataService.php:183 +msgid "Plugin's data not found" +msgstr "プラグインデータがありません" + +#: lib/SP/Services/Upgrade/UpgradePlugin.php:48 +#: lib/SP/Services/Upgrade/UpgradePlugin.php:57 +msgid "Plugins upgrade" +msgstr "プラグインのアップデート" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:101 +#: app/modules/web/themes/material-blue/views/config/general-site.inc:117 +msgid "Application URL" +msgstr "Application URL" + +#: app/modules/web/themes/material-blue/views/config/general-site.inc:106 +msgid "" +"Sets the application URL when accessing through a reverse proxy or load " +"balancer." +msgstr "" +"sysPassにアクセスできるURLを設定してください、リバースプロキシやロードバラン" +"サを用いている場合に必要な設定です。" From 8715b735022f393e12d2ffea652959f3fa10454d Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 20 Sep 2020 22:11:10 +0900 Subject: [PATCH 15/36] =?UTF-8?q?[fix]=20=E6=96=B0=E8=A6=8F=E3=82=A2?= =?UTF-8?q?=E3=82=AB=E3=82=A6=E3=83=B3=E3=83=88=E4=BD=9C=E6=88=90=E7=94=BB?= =?UTF-8?q?=E9=9D=A2=E3=81=AE=E7=BF=BB=E8=A8=B3=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 110667 -> 110973 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 19 ++++++------------- 2 files changed, 6 insertions(+), 13 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index eaa412ecb77d8d2e5b6ff289534b38c179bd1be8..e667d4911dd109722f1e168fc7e49d240b6eb9df 100644 GIT binary patch delta 27908 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 n`6rGS9l0iY#O~n6jvY}S0I4ZvmhG1K> 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 HNY4KQX5FkZ diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index 2a804c6d..9d694f97 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-20 18:55+0900\n" +"PO-Revision-Date: 2020-09-20 22:04+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -4903,31 +4903,24 @@ msgid "Password options" msgstr "Options" #: app/resources/strings.js.inc:54 -#, fuzzy msgid "Generate random password" -msgstr "仮パスワードを発行する" +msgstr "ランダムなパスワードを生成" #: app/resources/strings.js.inc:55 -#, fuzzy msgid "Complexity" -msgstr "" -"[FIX] Fixed wrong behavior when setting password complexity length. Thanks " -"to @andrucha97 for the feedback. Closes #1280" +msgstr "生成するパスワードの強度設定" #: app/resources/strings.js.inc:56 -#, fuzzy msgid "Reset" -msgstr "パスワードリセットはできません" +msgstr "リセット" #: app/resources/strings.js.inc:57 -#, fuzzy msgid "Password strength level" -msgstr "Level" +msgstr "パスワードの強度" #: app/resources/strings.js.inc:58 -#, fuzzy msgid "Show Password" -msgstr "パスワードを画像で表示する" +msgstr "パスワードを表示" #: app/modules/web/themes/material-blue/views/account/viewpass.inc:24 #: app/resources/strings.js.inc:59 From 7b57c066b24f126ddb8c0cc08f536f5f65f1586e Mon Sep 17 00:00:00 2001 From: magcho Date: Sun, 20 Sep 2020 23:59:42 +0900 Subject: [PATCH 16/36] =?UTF-8?q?[fix]=20=E3=83=A6=E3=83=BC=E3=82=B6?= =?UTF-8?q?=E3=83=BC=E3=81=A8=E3=82=A2=E3=82=AF=E3=82=BB=E3=82=B9=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E3=81=AE=E7=BF=BB=E8=A8=B3=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 110973 -> 111503 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 91 ++++++++++------------ 2 files changed, 41 insertions(+), 50 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index e667d4911dd109722f1e168fc7e49d240b6eb9df..7aeaa2fed2d438d3703d5cefd2f17b175b1593cb 100644 GIT binary patch delta 28823 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 H-T40lP#c#l diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index 9d694f97..e1bf847b 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-20 22:04+0900\n" +"PO-Revision-Date: 2020-09-21 00:25+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -440,7 +440,7 @@ msgstr "カテゴリー名" #: app/modules/api/Controllers/Help/CategoryHelp.php:68 #: app/modules/web/themes/material-blue/views/itemshow/category.inc:41 msgid "Category description" -msgstr "カテゴリーの説明" +msgstr "カテゴリーの概要" #: app/modules/api/Controllers/Help/ClientHelp.php:54 #: app/modules/api/Controllers/Help/ClientHelp.php:68 @@ -452,7 +452,7 @@ msgstr "クライアント名" #: app/modules/api/Controllers/Help/ClientHelp.php:69 #: app/modules/web/themes/material-blue/views/itemshow/client.inc:43 msgid "Client description" -msgstr "クライアントの説明" +msgstr "クライアントの概要" #: app/modules/api/Controllers/Help/ClientHelp.php:56 #: app/modules/api/Controllers/Help/ClientHelp.php:70 @@ -485,7 +485,7 @@ msgstr "グループ名" #: app/modules/api/Controllers/Help/UserGroupHelp.php:69 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:44 msgid "Group description" -msgstr "グループの説明" +msgstr "グループの概要" #: app/modules/api/Controllers/Help/UserGroupHelp.php:56 #: app/modules/api/Controllers/Help/UserGroupHelp.php:70 @@ -669,7 +669,7 @@ msgstr "アカウントを削除しました" #: app/modules/web/Controllers/AccountController.php:1052 #: app/modules/web/Forms/NotificationForm.php:106 msgid "A description is needed" -msgstr "説明を入力してください" +msgstr "概要を入力してください" #: app/modules/web/Controllers/AccountController.php:1068 #: lib/SP/Providers/Notification/NotificationHandler.php:124 @@ -695,7 +695,7 @@ msgstr "Requester" #: app/modules/web/themes/material-blue/views/notification/notification.inc:61 #: app/modules/web/themes/material-blue/views/notification/notification.inc:69 msgid "Description" -msgstr "Description" +msgstr "概要" #: app/modules/web/Controllers/AccountController.php:1088 msgid "Request done" @@ -948,7 +948,7 @@ msgstr "複数件更新" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:155 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:156 msgid "New Authorization" -msgstr "New Authorization" +msgstr "新しいトークンの生成" #: app/modules/web/Controllers/AuthTokenController.php:181 #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:190 @@ -1809,7 +1809,7 @@ msgstr "Main Group" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:145 #: app/resources/actions.xml:499 app/resources/actions.xml:805 msgid "Search for Account" -msgstr "アカウント検索" +msgstr "アカウントを検索" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:92 msgid "Accounts (H)" @@ -2794,7 +2794,7 @@ msgstr "ユーザーを更新" #: app/modules/web/Controllers/UserController.php:477 #: app/resources/actions.xml:577 msgid "View User" -msgstr "ユーザーを表示" +msgstr "ユーザー情報" #: app/modules/web/Controllers/UserGroupController.php:230 #: app/modules/web/Controllers/UserGroupController.php:233 @@ -4765,9 +4765,8 @@ msgid "Session finished" msgstr "インポートが完了しました" #: app/resources/strings.js.inc:29 -#, fuzzy msgid "Delete account?" -msgstr "アカウントの削除" +msgstr "アカウントを削除しますか?" #: app/resources/strings.js.inc:30 #, fuzzy @@ -4808,9 +4807,8 @@ msgid "You should use at least 8 characters" msgstr "" #: app/resources/strings.js.inc:38 -#, fuzzy msgid "Delete item?" -msgstr "Delete" +msgstr "削除しますか?" #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:22 #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:31 @@ -4875,7 +4873,7 @@ msgstr "ユーザーを選択" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:135 #: app/resources/strings.js.inc:49 msgid "Select Profile" -msgstr "Select Profile" +msgstr "プロファイルを選択" #: app/modules/web/themes/material-blue/views/account/account.inc:94 #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:35 @@ -4893,14 +4891,12 @@ msgid "Select Category" msgstr "カテゴリーを選択" #: app/resources/strings.js.inc:52 -#, fuzzy msgid "No results" -msgstr "Results" +msgstr "結果なし" #: app/resources/strings.js.inc:53 -#, fuzzy msgid "Password options" -msgstr "Options" +msgstr "パスワードオプション" #: app/resources/strings.js.inc:54 msgid "Generate random password" @@ -5378,7 +5374,7 @@ msgstr "Wikiを表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:230 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:231 msgid "Global search" -msgstr "Global search" +msgstr "全件検索" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:86 msgid "Favorites Filtering" @@ -5467,7 +5463,7 @@ msgstr "アカウント名をリンクにする。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:127 msgid "Global searches" -msgstr "グローバル検索" +msgstr "全件検索" #: app/modules/web/themes/material-blue/views/config/accounts.inc:128 msgid "" @@ -6625,7 +6621,7 @@ msgstr "Options" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:67 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:71 msgid "Refresh Authorization" -msgstr "Refresh Authorization" +msgstr "トークンの再生成" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:77 #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:79 @@ -6738,7 +6734,7 @@ msgstr "Full username" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:58 msgid "Session login" -msgstr "Session login" +msgstr "ログインユーザー名" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:69 msgid "SSO Login " @@ -6746,50 +6742,50 @@ msgstr "SSO Login " #: app/modules/web/themes/material-blue/views/itemshow/user.inc:77 msgid "Session login with SSO" -msgstr "Session login with SSO" +msgstr "SSOログインのユーザー名" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:92 msgid "Email address" -msgstr "Email address" +msgstr "メールアドレス" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:202 msgid "Application administrator" -msgstr "Application administrator" +msgstr "アプリケーション管理者" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:220 msgid "Accounts administrator" -msgstr "Accounts administrator" +msgstr "アカウント管理者" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:240 msgid "Force password change" -msgstr "Force password change" +msgstr "パスワードの強制変更" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:273 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:275 msgid "Entries" -msgstr "Entries" +msgstr "ログイン回数" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:282 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:284 msgid "Last Access" -msgstr "Last Access" +msgstr "最終アクセス日時" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:300 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:302 msgid "Master Password Date" -msgstr "Master Password Date" +msgstr "マスターパスワード入力日時" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:309 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:311 msgid "Used in" -msgstr "Used in" +msgstr "利用したアカウント" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:87 #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:89 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 msgid "Used by" -msgstr "Used by" +msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:108 msgid "(*) Listed in group" @@ -6801,7 +6797,7 @@ msgstr "Management" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:37 msgid "Create new account" -msgstr "新規アカウントの作成" +msgstr "新規アカウントを作成" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:54 msgid "View account details" @@ -6809,17 +6805,17 @@ msgstr "アカウントの詳細を表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:70 msgid "View account password" -msgstr "View account password" +msgstr "アカウントのパスワードを表示" #. (itstool) path: action/text #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:86 #: app/resources/actions.xml:259 msgid "View History" -msgstr "View History" +msgstr "パスワード履歴を表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:87 msgid "View account history" -msgstr "View account history" +msgstr "アカウントのパスワード履歴を表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:103 msgid "Edit account" @@ -6827,7 +6823,7 @@ msgstr "アカウントの編集" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:118 msgid "Edit Password" -msgstr "パスワードの編集" +msgstr "パスワードの変更" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:119 msgid "Edit account password" @@ -6835,7 +6831,7 @@ msgstr "アカウントのパスワードを変更" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:135 msgid "Remove account" -msgstr "アカウントの削除" +msgstr "アカウントを削除" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:151 msgid "View account files" @@ -6859,11 +6855,11 @@ msgstr "プライベートグループアカウントを作成" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:215 msgid "Assign permissions" -msgstr "権限付与" +msgstr "権限設定" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:251 msgid "Users management" -msgstr "ユーザーごとに設定できる項目があります" +msgstr "ユーザー管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:267 msgid "Groups management" @@ -6875,7 +6871,7 @@ msgstr "プロファイル管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:299 msgid "Categories management" -msgstr "カテゴリーで整理することもできます" +msgstr "カテゴリー管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:315 msgid "Tags management" @@ -6899,7 +6895,7 @@ msgstr "共有リンク管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:395 msgid "Accounts management" -msgstr "アカウントを管理することができます" +msgstr "アカウント管理" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:426 msgid "Default Values" @@ -6929,7 +6925,7 @@ msgstr "アカウントをインポート" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:515 msgid "View event log" -msgstr "event logを表示" +msgstr "event logの表示" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:541 msgid "Profile name" @@ -7147,7 +7143,6 @@ msgstr "Page" #. (itstool) path: action/text #: app/resources/actions.xml:7 -#, fuzzy msgid "Search for Accounts" msgstr "アカウントの検索" @@ -7219,9 +7214,8 @@ msgstr "プラグインで機能を追加することができます" #. (itstool) path: action/text #: app/resources/actions.xml:103 -#, fuzzy msgid "Users and Accesses" -msgstr "Users" +msgstr "ユーザーとアクセス管理" #. (itstool) path: action/text #: app/resources/actions.xml:109 @@ -7255,11 +7249,8 @@ msgstr "クリア" #. (itstool) path: action/text #: app/resources/actions.xml:151 app/resources/actions.xml:481 -#, fuzzy msgid "View Account" -msgstr "" -"Files - アカウント情報と合わせて保存されているファイルにアクセスすることを許" -"可します" +msgstr "アカウント情報の表示" #. (itstool) path: action/text #: app/resources/actions.xml:211 app/resources/actions.xml:469 From a664f6b1f3e735e36dfac5cdc38a8808d0b61665 Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 00:24:09 +0900 Subject: [PATCH 17/36] =?UTF-8?q?[update]=20=E3=82=BB=E3=82=AD=E3=83=A5?= =?UTF-8?q?=E3=83=AA=E3=83=86=E3=82=A3=E3=83=BC=E3=81=A8=E7=95=B0=E5=B8=B8?= =?UTF-8?q?=E6=A4=9C=E7=9F=A5=E3=82=92=E7=BF=BB=E8=A8=B3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 111503 -> 112756 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 115 +++++++++------------- 2 files changed, 44 insertions(+), 71 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 7aeaa2fed2d438d3703d5cefd2f17b175b1593cb..76277595b892e82c86e9da4d747a63142442149e 100644 GIT binary patch delta 29581 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 e!Hsxc!v5>TB\n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -595,7 +595,7 @@ msgstr "HTTPS" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:215 msgid "ON" -msgstr "" +msgstr "ON" #: app/modules/web/Controllers/AccountController.php:255 #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:133 @@ -681,7 +681,7 @@ msgstr "リクエスト" #: app/modules/web/Controllers/AccountController.php:1069 msgid "Requester" -msgstr "Requester" +msgstr "" #: app/modules/web/Controllers/AccountController.php:1072 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 @@ -959,12 +959,12 @@ msgstr "Edit Authorization" #: app/modules/web/Controllers/AuthTokenController.php:224 #: app/modules/web/Controllers/AuthTokenController.php:227 msgid "Authorizations deleted" -msgstr "Authorizations deleted" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:237 #: app/modules/web/Controllers/AuthTokenController.php:241 msgid "Authorization deleted" -msgstr "Authorization deleted" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:238 #: app/modules/web/Controllers/AuthTokenController.php:314 @@ -976,22 +976,22 @@ msgstr "Authorization(認可)" #: app/modules/web/Controllers/AuthTokenController.php:275 msgid "Authorization added" -msgstr "Authorization added" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:313 #: app/modules/web/Controllers/AuthTokenController.php:322 #: app/modules/web/Controllers/AuthTokenController.php:329 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 msgid "Authorization updated" -msgstr "Authorization updated" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:357 msgid "View Authorization" -msgstr "View Authorization" +msgstr "" #: app/modules/web/Controllers/AuthTokenController.php:365 msgid "Authorization viewed" -msgstr "Authorization viewed" +msgstr "" #. (itstool) path: action/text #: app/modules/web/Controllers/CategoryController.php:109 @@ -1000,7 +1000,7 @@ msgstr "Authorization viewed" #: app/modules/web/themes/material-blue/views/account/account.inc:129 #: app/resources/actions.xml:307 msgid "New Category" -msgstr "カテゴリの追加" +msgstr "新規カテゴリの作成" #. (itstool) path: action/text #: app/modules/web/Controllers/CategoryController.php:175 @@ -1131,7 +1131,7 @@ msgstr "Version" #: app/modules/web/themes/material-blue/views/common/aux-customfields.inc:17 #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:90 msgid "Encrypted" -msgstr "Encrypted" +msgstr "暗号化" #: app/modules/web/Controllers/ConfigBackupController.php:123 #: app/modules/web/themes/material-blue/views/config/info.inc:146 @@ -1141,7 +1141,7 @@ msgstr "Yes" #: app/modules/web/Controllers/ConfigBackupController.php:123 #: app/modules/web/themes/material-blue/views/config/info.inc:146 msgid "No" -msgstr "" +msgstr "No" #. (itstool) path: action/text #: app/modules/web/Controllers/ConfigBackupController.php:124 @@ -1154,21 +1154,21 @@ msgstr "" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:394 #: app/resources/actions.xml:13 msgid "Accounts" -msgstr "Accounts" +msgstr "アカウント" #: app/modules/web/Controllers/ConfigBackupController.php:125 #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:93 #: lib/SP/Services/CustomField/CustomFieldDefService.php:76 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:330 msgid "Clients" -msgstr "Clients" +msgstr "クライアント" #: app/modules/web/Controllers/ConfigBackupController.php:126 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:94 #: lib/SP/Services/CustomField/CustomFieldDefService.php:75 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:298 msgid "Categories" -msgstr "Categories" +msgstr "カテゴリー" #: app/modules/web/Controllers/ConfigBackupController.php:127 #: app/modules/web/Controllers/Helpers/Grid/TagGrid.php:94 @@ -1177,7 +1177,7 @@ msgstr "Categories" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:94 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:314 msgid "Tags" -msgstr "Tags" +msgstr "タグ" #: app/modules/web/Controllers/ConfigDokuWikiController.php:65 msgid "Missing DokuWiki parameters" @@ -1473,7 +1473,7 @@ msgstr "Wikiを無効にしました" #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:159 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:160 msgid "New Field" -msgstr "新規項目" +msgstr "新規カスタムフィールドの作成" #: app/modules/web/Controllers/CustomFieldController.php:175 #: app/modules/web/Controllers/Helpers/Grid/CustomFieldGrid.php:177 @@ -1847,7 +1847,7 @@ msgstr "削除" #: app/modules/web/Controllers/Helpers/Grid/AccountHistoryGrid.php:161 #: app/resources/actions.xml:187 app/resources/actions.xml:811 msgid "Account Restore" -msgstr "戻す" +msgstr "アカウントを復元" #: app/modules/web/Controllers/Helpers/Grid/AuthTokenGrid.php:95 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:362 @@ -2076,7 +2076,7 @@ msgstr "プロファイル" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:113 #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:83 msgid "Priority" -msgstr "プロパティー" +msgstr "優先度" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:114 #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:120 @@ -2092,7 +2092,7 @@ msgstr "Search for Value" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:163 #: app/modules/web/Controllers/Helpers/ItemPresetHelper.php:67 msgid "Permission Preset" -msgstr "権限Preset" +msgstr "権限のプリセット" #: app/modules/web/Controllers/Helpers/Grid/ItemPresetGrid.php:164 msgid "New Permission Preset" @@ -2292,7 +2292,7 @@ msgstr "通知" #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:73 #: app/modules/web/themes/material-blue/views/itemshow/public_link.inc:75 msgid "Visits" -msgstr "閲覧者" +msgstr "閲覧回数" #: app/modules/web/Controllers/Helpers/Grid/PublicLinkGrid.php:151 msgid "Search for Link" @@ -2355,7 +2355,7 @@ msgstr "Tracks" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:101 msgid "Date Unlocked" -msgstr "Date Unlocked" +msgstr "ログイン日時" #: app/modules/web/Controllers/Helpers/Grid/TrackGrid.php:102 msgid "Source" @@ -2546,7 +2546,7 @@ msgstr "Display Value" #: app/modules/web/Controllers/ItemPresetController.php:209 #: app/resources/actions.xml:871 msgid "New Value" -msgstr "New Value" +msgstr "" #: app/modules/web/Controllers/ItemPresetController.php:283 #: app/modules/web/Controllers/ItemPresetController.php:286 @@ -4841,9 +4841,8 @@ msgid "MIME type not allowed" msgstr "このMIME Typeを許可する" #: app/resources/strings.js.inc:46 -#, fuzzy msgid "Clear the event log out?" -msgstr "Event logをクリア" +msgstr "Event logをクリアしますか?" #: app/modules/web/themes/material-blue/views/account/account-permissions.inc:204 #: app/modules/web/themes/material-blue/views/config/encryption.inc:301 @@ -4949,7 +4948,7 @@ msgstr "記号" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:24 #: app/resources/strings.js.inc:64 msgid "Length" -msgstr "Length" +msgstr "長さ" #: app/modules/web/themes/material-blue/views/itemshow/auth_token.inc:42 #: app/resources/strings.js.inc:65 @@ -5065,9 +5064,8 @@ msgid "sysPass Notices" msgstr "" #: app/resources/strings.js.inc:96 -#, fuzzy msgid "Clear the tracks out?" -msgstr "Event logをクリア" +msgstr "trackをクリアしますか?" #: app/modules/web/themes/material-blue/views/_layouts/main.inc:21 msgid "Javascript is needed in order to run correctly" @@ -5314,7 +5312,7 @@ msgstr "ダイレクトリンク" #: app/modules/web/themes/material-blue/views/account/details.inc:22 #: app/modules/web/themes/material-blue/views/account/details.inc:24 msgid "Date Added" -msgstr "日付を追加しました" +msgstr "追加日" #: app/modules/web/themes/material-blue/views/account/details.inc:60 #: app/modules/web/themes/material-blue/views/account/details.inc:62 @@ -5329,7 +5327,7 @@ msgstr "Editor" #: app/modules/web/themes/material-blue/views/account/details.inc:78 #: app/modules/web/themes/material-blue/views/account/details.inc:80 msgid "Password Date" -msgstr "Password Date" +msgstr "パスワード設定日時" #: app/modules/web/themes/material-blue/views/account/files.inc:37 msgid "Drop files here (max. 5) or click to select" @@ -6652,7 +6650,7 @@ msgstr "フィールドの概要" #: app/modules/web/themes/material-blue/views/itemshow/custom_field.inc:80 msgid "Required" -msgstr "Required" +msgstr "必須" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:44 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:52 @@ -7148,69 +7146,58 @@ msgstr "アカウントの検索" #. (itstool) path: action/text #: app/resources/actions.xml:25 -#, fuzzy msgid "Requests" -msgstr "メールのリクエストを有効化" +msgstr "リクエスト" #. (itstool) path: action/text #: app/resources/actions.xml:31 -#, fuzzy msgid "Favorites" -msgstr "お気に入りを表示" +msgstr "お気に入り" #. (itstool) path: action/text #: app/resources/actions.xml:43 -#, fuzzy msgid "Items and Customizations" -msgstr "**Items**" +msgstr "アイテムとそのカスタマイズ" #. (itstool) path: action/text #: app/resources/actions.xml:49 -#, fuzzy msgid "Categories Management" msgstr "カテゴリー管理" #. (itstool) path: action/text #: app/resources/actions.xml:55 -#, fuzzy msgid "Customers Management" msgstr "カスタマー管理" #. (itstool) path: action/text #: app/resources/actions.xml:61 -#, fuzzy msgid "API Authorizations Management" msgstr "API認証管理" #. (itstool) path: action/text #: app/resources/actions.xml:67 -#, fuzzy msgid "Custom Fields Management" msgstr "カスタムフィールド管理" #. (itstool) path: action/text #: app/resources/actions.xml:79 -#, fuzzy msgid "Files Management" msgstr "ファイル管理" #. (itstool) path: action/text #: app/resources/actions.xml:85 -#, fuzzy msgid "Accounts Management" msgstr "アカウント管理" #. (itstool) path: action/text #: app/resources/actions.xml:91 -#, fuzzy msgid "Tags Management" msgstr "タグ管理" #. (itstool) path: action/text #: app/resources/actions.xml:97 -#, fuzzy msgid "Plugins Management" -msgstr "プラグインで機能を追加することができます" +msgstr "プラグイン管理" #. (itstool) path: action/text #: app/resources/actions.xml:103 @@ -7219,33 +7206,28 @@ msgstr "ユーザーとアクセス管理" #. (itstool) path: action/text #: app/resources/actions.xml:109 -#, fuzzy msgid "Security and Audit" -msgstr "セキュリティー" +msgstr "セキュリティーと異常検知" #. (itstool) path: action/text #: app/resources/actions.xml:115 -#, fuzzy msgid "Users Management" msgstr "ユーザー管理" #. (itstool) path: action/text #: app/resources/actions.xml:121 -#, fuzzy msgid "Groups Management" msgstr "グループ管理" #. (itstool) path: action/text #: app/resources/actions.xml:127 -#, fuzzy msgid "Profiles Management" msgstr "プロファイル管理" #. (itstool) path: action/text #: app/resources/actions.xml:145 -#, fuzzy msgid "Clear Events" -msgstr "クリア" +msgstr "イベントのクリア" #. (itstool) path: action/text #: app/resources/actions.xml:151 app/resources/actions.xml:481 @@ -7254,21 +7236,18 @@ msgstr "アカウント情報の表示" #. (itstool) path: action/text #: app/resources/actions.xml:211 app/resources/actions.xml:469 -#, fuzzy msgid "Upload File" -msgstr "ファイル" +msgstr "ファイルのアップロード" #. (itstool) path: action/text #: app/resources/actions.xml:229 -#, fuzzy msgid "Search for Files" -msgstr "検索" +msgstr "ファイル検索" #. (itstool) path: action/text #: app/resources/actions.xml:235 -#, fuzzy msgid "List Files" -msgstr "ファイル" +msgstr "ファイル一覧" #. (itstool) path: action/text #: app/resources/actions.xml:283 @@ -7513,39 +7492,33 @@ msgstr "Track unlocked" #. (itstool) path: action/text #: app/resources/actions.xml:907 -#, fuzzy msgid "Clear the tracks out" -msgstr "Tracks cleared out" +msgstr "trackをクリア" #. (itstool) path: strings/text #: app/config/strings.xml:4 msgid "Color" -msgstr "" +msgstr "カラー" #. (itstool) path: strings/text #: app/config/strings.xml:5 -#, fuzzy msgid "Number" -msgstr "1ページあたりの表示数" +msgstr "数字" #. (itstool) path: strings/text #: app/config/strings.xml:6 msgid "Phone" -msgstr "" +msgstr "電話番号" #. (itstool) path: strings/text #: app/config/strings.xml:7 -#, fuzzy msgid "Text Area" -msgstr "" -"[FIX] Wrong encoding in text area. Thanks to @pierrehenrymuller for the " -"feedback. Closes #1296" +msgstr "テキストエリア" #. (itstool) path: strings/text #: app/config/strings.xml:8 -#, fuzzy msgid "Text" -msgstr "text" +msgstr "テキスト" #: app/modules/web/Controllers/AccountFileController.php:192 #, fuzzy From 5e3bdf077050b16edc02ee8022af5a3a4f5670d5 Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 00:45:59 +0900 Subject: [PATCH 18/36] [update] translate plugins page --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 112756 -> 113357 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 34 ++++++++++------------ 2 files changed, 16 insertions(+), 18 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 76277595b892e82c86e9da4d747a63142442149e..f8064b8765c628949c8b4f23534d345299c85717 100644 GIT binary patch delta 29048 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 diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index b988a9e1..f1c13a2b 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-30 00:23+0900\n" +"PO-Revision-Date: 2020-09-30 00:45+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -2191,7 +2191,7 @@ msgstr "通知を表示" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:235 #: app/resources/actions.xml:841 msgid "Checkout Notification" -msgstr "Checkout Notification" +msgstr "通知を確認する" #. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:252 @@ -2199,26 +2199,26 @@ msgstr "Checkout Notification" #: app/modules/web/Controllers/NotificationController.php:230 #: app/resources/actions.xml:829 msgid "Edit Notification" -msgstr "Edit Notification" +msgstr "通知を編集" #. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:269 #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:270 #: app/resources/actions.xml:835 msgid "Delete Notification" -msgstr "Delete Notification" +msgstr "通知を削除" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:96 #: app/modules/web/Controllers/Helpers/LayoutHelper.php:330 #: app/modules/web/themes/material-blue/views/plugin/index.inc:1 msgid "Plugins" -msgstr "Plugins" +msgstr "プラグイン" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:108 #: lib/SP/Plugin/PluginManager.php:206 lib/SP/Plugin/PluginManager.php:262 #: lib/SP/Plugin/PluginManager.php:420 msgid "Plugin" -msgstr "Plugin" +msgstr "プラグイン" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:125 msgid "Unavailable" @@ -2236,7 +2236,7 @@ msgstr "プラグインを検索" #: app/modules/web/Controllers/PluginController.php:141 #: app/resources/actions.xml:541 msgid "View Plugin" -msgstr "View Plugin" +msgstr "プラグイン情報" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:173 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:174 @@ -2251,7 +2251,7 @@ msgstr "Disable" #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:211 #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:212 msgid "Reset Data" -msgstr "Reset Data" +msgstr "リセット" #. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/PluginGrid.php:231 @@ -2522,7 +2522,7 @@ msgstr "検索" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:27 #: app/resources/actions.xml:691 msgid "Configuration" -msgstr "Configuration" +msgstr "設定" #: app/modules/web/Controllers/InstallController.php:59 msgid "Module unavailable" @@ -4957,25 +4957,23 @@ msgstr "Select Action" #: app/resources/strings.js.inc:68 msgid "Accept" -msgstr "" +msgstr "Accept" #: app/resources/strings.js.inc:69 msgid "Cancel" -msgstr "" +msgstr "Cancel" #: app/resources/strings.js.inc:70 -#, fuzzy msgid "Password Copied into Clipboard" -msgstr "パスワードをコピーしました" +msgstr "パスワードをクリップボードへしました" #: app/resources/strings.js.inc:71 msgid "Error while copying to clipboard" -msgstr "" +msgstr "クリップボードへのコピーに失敗しました" #: app/resources/strings.js.inc:73 -#, fuzzy msgid "Send notifies?" -msgstr "送信" +msgstr "通知を送りますか?" #. (itstool) path: action/text #: app/modules/web/themes/material-blue/views/account/search-rows.inc:160 @@ -5003,7 +5001,7 @@ msgstr "お気に入りを表示" #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:75 #: app/resources/strings.js.inc:78 msgid "Display All" -msgstr "Display All" +msgstr "全て表示" #: app/resources/strings.js.inc:81 #, fuzzy @@ -5018,7 +5016,7 @@ msgstr "" #: app/resources/strings.js.inc:83 msgid "This action will reset all plugin data. Do you want to continue?" -msgstr "" +msgstr "初期化すると戻せません、プラグインを初期化しますか?" #: app/resources/strings.js.inc:84 msgid "This process could take some time long. Do you wish to continue?" From d1976a4b9e34ee2160f347493bf773c340737ffd Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 00:50:50 +0900 Subject: [PATCH 19/36] [update] general of configuration translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 113357 -> 113327 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 7 +++---- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index f8064b8765c628949c8b4f23534d345299c85717..a12560927c5d1d520afc918f89ef2ff7644fbf5b 100644 GIT binary patch delta 2937 zcmXZedu+~E9LMqVLtB(;D>b&FZZTF0)9m#U%4 zw4Rw;t1c_;SYy&9-Nm#rB3*359;Ulk=F)%4*!$CS63Od)f4|>zF5mAtr_MEmA880b zTKS@HpfP4imS@87Aco@+jKp&6h*i$Z*oF8WK7s86o{7W$sPB?p{07DnXSz7sz2AlH zcwX+}>VW5K>gbAlao@d&TxC1%iP8LE1kS|?I1@|p9gO(MGYfGs&cj143hS{aMr7NSC1P9RWEW3GWgs2(yEV>2_xw0& zrRSYj-TQx?;cGn8hWGJ48cKN|jK?HYDqlhkumCkc7S6)$sPFHhO4NwMFnq0NUcu3r zgn8H*t5E%1#cucj6R=B;XL_J-G>z#r=Hnjx5(nU%b)H#)d6utx&aVha3T#h|9 zcqSiZOr{H+vSFt4qQK>9; zR-^XFZ>RwyHru@ugZeJXIT2N|G}HtZx#uesGrrkQL$%tAWAJP2i(wyoM#nP=M`9{! zB|+2*j$?1UgzESqDie`g?10@+zkd={;@2@9kE2dcx2>M>X~6X~w2~UsCc2BNeeyQX zJdahV0mJe=vkrTs1};M#x67#S;f)uZ|0M zcxD`)!31oz(=+|BFKRc>aIVE6#HUcl^fqcD(Vy6O7)~Odj#}Y9T#PZhJTn7V;RyT% zU%-xqoPVWccA;l7@O#t%ql#<>mS7t39h{7>?Y7755cVg&fp215&@&OZ9E&l4x>2A0 z)J|*=>LQzpDpjg`{=Sb!6c09`Hc1hx#`{pa{v_&xI*rWBAG8HwF%YwpA6h=ZsL>WcFLD)pWA z+24&pm1GWf#}82h1f8|0J@y|aVE6q^rS+MyG&FD~YLjfnY^+8NIO%{*{kzznxDvI? z&!am09hJGrgZ3E4q6Usf-5=vo$8i?w`=zMN>}-lTf7LXSdGHr1wF8RnO44u;aW?9Y zMI~zBi>Q0zPt@jZUSdns3w7c2aq(c(o*9n1A97G7*n-O3b?mS6-{z40;Yid>$KfVS zMeTtG)Ig1>3B;G$2|R;(KEe5(GZ%GV9K#Oy4{GIMhwaMyqW0J{^l61@G}Q4f)Q4rL z-CKwH@K@A8w^84=8h?Y@WHqQv-9nY3)iE1)M}0R6b-oeA2{=masJgo zx%;rzeRu^mKm#fxF`wIxhM+Q%f_gs_Rof+~4ERtB2x1a`huUn7s1^4rv%epR8aKs9 zLo=O&>L?v`l`h2?Jc-K0S=3&*fI1a*&IVM+vB&KM6R?Ij3CH3i?1f`b*#8N=jh%=y zQRDhH($MbTiK^W-)XZ<8R@kN7PGkf|6Hi1P)7hwtDG#;6t*BFS#yzid{)|fbRm{Oh zs0HR!G;LC!IY&daZ~cX57T_?{F)Ttozl8I##YsD{G}MXLx5lm8RZ#A9b%p zo$}03OvI-!6`O8cY^Nm@l^vWies{CMNo5Up3Ub2&rJ<~&72C2rug}C#AQ%c%h5{vj ztlV+4Xm7}09P%H`Se7w)ZbnAPzb=%umKWE*3Wl;a*9X^!{HsI$10ny0kpFNfkRMV{ T{Hv%xPNdXZD delta 2948 zcmXZd4NTWX9LMqdS)!n#h8m_MKAYmuFf|`qqA9th*qSM3g_`EWtRy3+`4>ni9@Kac z5uZ>j5P48Sq#))RZPe8HP_E@%^Djd)Yn9;E5_^BV+t^-r_rKpgeD8ZlWm~}6wt%Yo zIlhU;n2pJv>5RuQ08e5!tiw=ja$dtHso%o^*e}I1eer2jzZh4K$H%BAx_Y|%{Sfw~ zz0TE}Q#{|pfv&qBI@}MzAKQUPVlO_Jj`27T7h@H!!JzG)S&tiWDc-pu9>H&LJTA-d%ofbWb=W)84!jjVpk9faaYUA9 z^6@a{;*=fs2+pI9BygvV#46MR5>Xp0KqBBXCn+dd8r=^UUHvvHgdO-O2JfcMJ2UDLa$g@o+0^{F_IdK_wprMLn6?DxzfOv5SoE6&0J z2e|(V$(si}lYnPY6U;bhBk&=aH%^_%z>h8B6I3vR_@n2LH)#~-!} zn}mAE7NU-7m1}?BMUt=D#E@B3QthDiu&*#Dk6Q4+A~ka>C}r+57c$%161e-er~^; zg*uXDI0TbW6BIiyqH@f9VHY$UIa;5YO+gbUqLL&J)36ye;erwy`t=w>y%BZaFQEp! zg^FBoslA4MQ4&`&T`ayaUT0&_X@l7p{Sk5pmHn$ecE9v1r7W)Dnu7h+1rll z_#bMgJu7X$@u>DWn1pet->;%J(t$lNsLC3OI*JiE2q(Jsg;m^tW&a8qbY=;t&=g@8 zY(|~=1=Jb0ppxu&RHV9{u#p&vsy~nF_ZsS&Ek{lKE^33@P~Y!%)|}w}E0mXA$2+d$ zebj&h3Mvw}P`U6I>Q=NnL%y^Fk3%i+IXs8+a3+S;cxE`pV-Ticf6PYB>pM>7mRxh~?aqHuA@9I+46C&pEJ2dg zXKqu_*^fHynU%N@bqyO(?RRlG4ym&XOGPDDEh=}KP%q(SRA>Xfvi3*4D-k#e=i(Sl zMtxU-J+*~~>e83z9_lpVnd-K`3wCx*s%Xi`yV0<(HYeHho|>PqDIqpKA;F(i;!i2^ zr_}pX%5H7j+j{V*KRNqmQKmmB_14}(e^Qx0CEuS??oZ~g)}LJSu;;En>$B+AT9etD Xd%~ZT=T9okuiD{-)wYy*-v|E>s$djw diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index f1c13a2b..1f3a39b4 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-30 00:45+0900\n" +"PO-Revision-Date: 2020-09-30 00:50+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -5902,7 +5902,7 @@ msgstr "Enable event log" #: app/modules/web/themes/material-blue/views/config/general-events.inc:31 msgid "Saves the actions done by the application." -msgstr "アプリケーションの動作を保存します。" +msgstr "アプリケーションログを保存します。" #: app/modules/web/themes/material-blue/views/config/general-events.inc:45 msgid "Enable Syslog" @@ -5934,8 +5934,7 @@ msgstr "Use Proxy" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:31 msgid "Use a proxy server for checking out for updates and notifications." -msgstr "" -"sysPassとメール通知を行う際にプロキシサーバ-を経由させることができます。" +msgstr "メール通知などsysPassから通信を行うときのプロキシ設定。" #: app/modules/web/themes/material-blue/views/config/general-proxy.inc:47 msgid "Proxy server" From 6900ff66e7e64f0fc3686f870d7448f60e27b2f2 Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 01:25:40 +0900 Subject: [PATCH 20/36] [update] wiki of configuration translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 113327 -> 113860 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 42 ++++++++++++---------- 2 files changed, 23 insertions(+), 19 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index a12560927c5d1d520afc918f89ef2ff7644fbf5b..2a0927ab5403a69ea47622ec923d5152da7c4b9e 100644 GIT binary patch delta 11247 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 CV)MWN diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index 1f3a39b4..e1114e16 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-30 00:50+0900\n" +"PO-Revision-Date: 2020-09-30 01:25+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -5432,7 +5432,7 @@ msgstr "アカウントのパスワードの有効期限" #: app/modules/web/themes/material-blue/views/config/accounts.inc:70 msgid "Enables the accounts password expiry date." -msgstr "アカウントのパスワードに有効期限を設定しました。" +msgstr "アカウントのパスワードを定期的に再設定させることができます。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:78 msgid "Password expiry time" @@ -5450,12 +5450,12 @@ msgstr "有効期限(日)" #: app/modules/web/themes/material-blue/views/config/accounts.inc:111 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:90 msgid "Account name as link" -msgstr "アカウント名のリンク" +msgstr "アカウント名リンク" #: app/modules/web/themes/material-blue/views/config/accounts.inc:112 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:92 msgid "Enables to use the account name as a link to account details." -msgstr "アカウント名をリンクにする。" +msgstr "アカウント名をクリック可能なリンクにします。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:127 msgid "Global searches" @@ -5466,8 +5466,9 @@ msgid "" "Allows the users to do searches that includes all accounts, they won't be " "able to display the account details if they don't have permission." msgstr "" -"全てのアカウントから検索できますが、アカウントの詳細を閲覧できるのは権限を" -"持ったユーザーのみです。" +"アカウント名だけが権限のないユーザーを含めた全てのユーザーの検索結果に表示さ" +"れるようになります。アカウントの詳細を閲覧できるのは権限を持ったユーザーのみ" +"です。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:143 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:154 @@ -5485,8 +5486,9 @@ msgid "" "Useful for environments where copying a password to clipboard is a security " "risk." msgstr "" -"パスワードをクリップボードにコピーすることは、場合によってはセキュリティーリ" -"スクにつながります。" +"パスワードが画像で表示されるため、クリップボードへコピーすることができなくな" +"ります。クリップボードを通じてパスワードが流出することを防げるかもしれませ" +"ん。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:163 #: app/modules/web/themes/material-blue/views/usersettings/general.inc:158 @@ -5500,19 +5502,21 @@ msgstr "アカウントを四角いカードスタイルで表示します。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:181 msgid "Secondary Groups Access" -msgstr "Secondary Groups Access" +msgstr "セカンダリグループに所属するユーザーからのアクセスを許可する" #: app/modules/web/themes/material-blue/views/config/accounts.inc:183 msgid "Grants access to users that are included in secondary groups." -msgstr "Grants access to users that are included in secondary groups." +msgstr "" +"アカウント情報のセカンダリーグループに設定したグループに所属するユーザーから" +"のアクセスを許可するか設定できます。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:185 msgid "" "By default, user in a secondary group is granted if the secondary group is " "set as user's main group." msgstr "" -"By default, user in a secondary group is granted if the secondary group is " -"set as user's main group." +"デフォルトではアカウントのセカンダリグループに設定したグループをメイングルー" +"プにするユーザーがアクセスできるようになっています。" #. (itstool) path: action/text #: app/modules/web/themes/material-blue/views/config/accounts.inc:196 @@ -6013,7 +6017,7 @@ msgstr "Force HTTPS" #: app/modules/web/themes/material-blue/views/config/general-site.inc:137 msgid "It forces the use of HTTPS on all the connections" -msgstr "HTTP通信を全てHTTPSにリダイレクトします" +msgstr "HTTP通信を全てHTTPSにリダイレクトします。" #: app/modules/web/themes/material-blue/views/config/general-site.inc:152 msgid "Enable debug" @@ -6491,7 +6495,7 @@ msgstr "Wikiリンクを有効化" #: app/modules/web/themes/material-blue/views/config/wiki.inc:36 msgid "" "Enables the option to add a link to search for results in an external Wiki." -msgstr "Wikiから検索リンクを有効化するにはこのオプションを有効化します。" +msgstr "外部のwikiを検索するリンクを追加できます。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:44 #: app/modules/web/themes/material-blue/views/config/wiki.inc:71 @@ -6500,11 +6504,11 @@ msgstr "Wiki search URL" #: app/modules/web/themes/material-blue/views/config/wiki.inc:49 msgid "URL that Wiki uses for making an entry searching." -msgstr "URL that Wiki uses for making an entry searching." +msgstr "外部wikiの検索リンクを設定してください。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:53 msgid "The client's name is used as parameter." -msgstr "The client's name is used as parameter." +msgstr "このURLにクライアント名を連結したリンクを生成します。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:77 #: app/modules/web/themes/material-blue/views/config/wiki.inc:104 @@ -6513,11 +6517,11 @@ msgstr "Wiki page URL" #: app/modules/web/themes/material-blue/views/config/wiki.inc:82 msgid "URL that Wiki uses for accessing to the entry details." -msgstr "URL that Wiki uses for accessing to the entry details." +msgstr "外部wikiの記事へのリンクを生成します。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:86 msgid "Account's name is used as parameter of Wiki search variable." -msgstr "Account's name is used as parameter of Wiki search variable." +msgstr "アカウント名を連結したリンクを生成します。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:110 #: app/modules/web/themes/material-blue/views/config/wiki.inc:124 @@ -6526,7 +6530,7 @@ msgstr "Account name prefix" #: app/modules/web/themes/material-blue/views/config/wiki.inc:115 msgid "Prefix to determine which accounts have a link to the Wiki." -msgstr "Prefix to determine which accounts have a link to the Wiki." +msgstr "どのアカウントでwikiへのリンクを生成するかを指定する接頭辞。" #: app/modules/web/themes/material-blue/views/error/error-database.inc:17 #: app/modules/web/themes/material-blue/views/error/error-database.inc:19 From 9e057c49ebe217580bc4126bda2a7441de5da934 Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 01:30:02 +0900 Subject: [PATCH 21/36] [update] ldap of configuration translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 113860 -> 113956 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 14 +++++++------- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 2a0927ab5403a69ea47622ec923d5152da7c4b9e..eb331c7f74f47be71d932aa16725b9bd78dc743e 100644 GIT binary patch delta 9178 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 Mw2>RV*3T;cziY~#`v3p{ delta 8853 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 diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index e1114e16..b432b9c4 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-30 01:25+0900\n" +"PO-Revision-Date: 2020-09-30 01:29+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -6322,15 +6322,15 @@ msgstr "Search base" #: app/modules/web/themes/material-blue/views/config/ldap.inc:190 msgid "LDAP base to perform the LDAP users search." -msgstr "LDAP base to perform the LDAP users search." +msgstr "LDAPユーザー検索を実行するためのLDAPベース。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:220 msgid "LDAP group which user must belong to for granting to log in." -msgstr "LDAP group which user must belong to for granting to log in." +msgstr "ログインを許可するためにユーザーが属している必要があるLDAPグループ。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:224 msgid "This group needs to be placed in the LDAP search base." -msgstr "This group needs to be placed in the LDAP search base." +msgstr "このグループがLDAPベース内に存在する必要があります。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:253 msgid "Sets the default users group for newly created LDAP users" @@ -6356,7 +6356,7 @@ msgstr "Login Attribute" #: app/modules/web/themes/material-blue/views/config/ldap.inc:341 msgid "Defines the attribute for the user's login when importing." -msgstr "Defines the attribute for the user's login when importing." +msgstr "インポート時のユーザーのログインの属性を設定します。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:359 #: app/modules/web/themes/material-blue/views/config/ldap.inc:369 @@ -6365,11 +6365,11 @@ msgstr "Name Attribute" #: app/modules/web/themes/material-blue/views/config/ldap.inc:364 msgid "Defines the attribute for the user's name when importing." -msgstr "Defines the attribute for the user's name when importing." +msgstr "インポート時のユーザー名の属性を設定します。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:394 msgid "Import Groups" -msgstr "インポートグループ" +msgstr "Import Groups" #: app/modules/web/themes/material-blue/views/config/ldap.inc:403 #: app/modules/web/themes/material-blue/views/config/ldap.inc:413 From 50686bc6df369b62748ed827cc202c429900af0d Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 01:32:33 +0900 Subject: [PATCH 22/36] [update] mail of configuration translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 113956 -> 113968 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 8 ++++---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index eb331c7f74f47be71d932aa16725b9bd78dc743e..51fe5ad3a7e50f424f40f057cb6ae57e8cbcb3e0 100644 GIT binary patch delta 10101 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 IPS#)cKP2oh=l}o! delta 10081 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\n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -6403,12 +6403,12 @@ msgid "" "Allows users to request for either modifications to existing accounts or " "access to accounts which they have no rights on." msgstr "" -"ユーザーからアカウントの情報の変更リクエスト・アクセス権限リクエストを受け取" -"れるようになります。" +"ユーザーは管理者などにアカウントの情報の変更リクエスト・アクセス権限リクエス" +"トを送れるようになります。" #: app/modules/web/themes/material-blue/views/config/mail.inc:97 msgid "Enable Authentication" -msgstr "認証を有効化" +msgstr "認証を使用する" #: app/modules/web/themes/material-blue/views/config/mail.inc:132 #: app/modules/web/themes/material-blue/views/config/mail.inc:135 From c2d3f8c0d374efa43d22ac5d9706203ab755550c Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 11:40:05 +0900 Subject: [PATCH 23/36] [update] encrypt of configuration translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 113968 -> 114213 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 19 ++++++++++--------- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 51fe5ad3a7e50f424f40f057cb6ae57e8cbcb3e0..0a2be8d0a3a4b9bda672cf79cd3a0eaeb28481c5 100644 GIT binary patch delta 10198 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\n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -5724,7 +5724,7 @@ msgstr "New Master Password (repeat)" #: app/modules/web/themes/material-blue/views/config/encryption.inc:91 msgid "You should save the new password on a secure place" -msgstr "パスワードは安全な方法で保存されます" +msgstr "新しいマスターパスワードを忘れないようにしてください。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:95 msgid "All accounts passwords will be encrypted again." @@ -5740,7 +5740,8 @@ msgstr "" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:130 msgid "It will be updated %s accounts. This process could take some time long." msgstr "" -"現在%s個目のアカウントを処理中です。処理の完了までしばらくお待ちください。" +"現在%d個のアカウントが保存されています。マスターパスワードを変更すると情報を" +"再暗号化するためアカウント数が多いと処理に時間がかかることがあります。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:121 msgid "Do not modify accounts" @@ -5748,19 +5749,19 @@ msgstr "Do not modify accounts" #: app/modules/web/themes/material-blue/views/config/encryption.inc:123 msgid "Sets a new Master Password without re-encrypting the accounts." -msgstr "アカウントを再暗号化せずにマスターパスワードを変更します。" +msgstr "アカウントを再暗号化せずにマスターパスワードの変更のみを行います。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:140 msgid "Confirm change" -msgstr "Confirm change" +msgstr "マスターパスワードを変更する" #: app/modules/web/themes/material-blue/views/config/encryption.inc:142 msgid "" "Confirm the master password change after you have been read all the above " "warnings." msgstr "" -"上記の説明を全て読みマスターパスワードを変更することによって起こる影響を理解" -"した上で処理を行ってください。" +"上記の説明を全て読み、マスターパスワードを変更することによって起こる影響を理" +"解した上でこの項目をONにしてマスターパスワードの変更処理を行ってください。" #: app/modules/web/themes/material-blue/views/config/encryption.inc:170 msgid "" @@ -5799,12 +5800,12 @@ msgstr "生成されていません" #: app/modules/web/themes/material-blue/views/config/encryption.inc:224 #: app/modules/web/themes/material-blue/views/config/encryption.inc:227 msgid "Valid until" -msgstr "Valid until" +msgstr "有効期限" #: app/modules/web/themes/material-blue/views/config/encryption.inc:240 #: app/modules/web/themes/material-blue/views/config/encryption.inc:243 msgid "Attempts" -msgstr "Attempts" +msgstr "入力回数" #: app/modules/web/themes/material-blue/views/config/encryption.inc:250 #: app/modules/web/themes/material-blue/views/config/encryption.inc:262 From cbd89815d2482bb73e791030fc8ca5f552655e7d Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 12:18:51 +0900 Subject: [PATCH 24/36] [update] confuguration translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 114213 -> 114320 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 17 +++++++++-------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 0a2be8d0a3a4b9bda672cf79cd3a0eaeb28481c5..27410f4f906cb6662af495a865fe6360dac9c42b 100644 GIT binary patch delta 9984 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 Gi~b))7g|#Q diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index bbd1ee10..e611ae51 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-30 11:39+0900\n" +"PO-Revision-Date: 2020-09-30 12:18+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -1442,11 +1442,11 @@ msgstr "エクスポートできる項目がありません" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:478 #: app/resources/actions.xml:739 msgid "Backup" -msgstr "Backup" +msgstr "バックアップ" #: app/modules/web/Controllers/ConfigManagerController.php:365 msgid "Import Accounts" -msgstr "Import Accounts" +msgstr "アカウントのインポート" #: app/modules/web/Controllers/ConfigManagerController.php:387 msgid "Not installed" @@ -6090,11 +6090,12 @@ msgstr "Default User" #: app/modules/web/themes/material-blue/views/config/import.inc:23 msgid "Sets the default user for the accounts imported." -msgstr "Sets the default user for the accounts imported." +msgstr "" +"アカウントをインポートしたときのオーナーとなるユーザーを指定してください。" #: app/modules/web/themes/material-blue/views/config/import.inc:50 msgid "Sets the default group for the accounts imported." -msgstr "Sets the default group for the accounts imported." +msgstr "アカウントをインポートしたときのグループを指定してください。" #: app/modules/web/themes/material-blue/views/config/import.inc:75 msgid "Drop files here or click to select" @@ -6200,11 +6201,11 @@ msgstr "PHP" #: app/modules/web/themes/material-blue/views/config/info.inc:57 msgid "Extensions" -msgstr "拡張機能" +msgstr "Extensions" #: app/modules/web/themes/material-blue/views/config/info.inc:61 msgid "Unavailable extensions" -msgstr "拡張機能が利用できません" +msgstr "Unavailable extensions" #: app/modules/web/themes/material-blue/views/config/info.inc:65 msgid "Used Memory" @@ -6212,7 +6213,7 @@ msgstr "Used Memory" #: app/modules/web/themes/material-blue/views/config/info.inc:69 msgid "Download rate" -msgstr "ダウンロード速度" +msgstr "Download rate" #: app/modules/web/themes/material-blue/views/config/info.inc:72 msgid "OP Cache" From 3ebbc540d48e6b1e9ce3d4ebb7590c23ab05a1f2 Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 15:55:25 +0900 Subject: [PATCH 25/36] [update] notification translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 114320 -> 114606 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 23 +++++++++++----------- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 27410f4f906cb6662af495a865fe6360dac9c42b..46ed90f0d0a608722c5b4c14b8ed25cac4f56631 100644 GIT binary patch delta 28611 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

Y9hH&cUlNFUsHK~UDRCw0&X1rb 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

#(!giTq~d$F%_(V&*_iUMIw_Q!gw1>ksUS ziN~cr_s^d;h*Tq7BIF|^qVhVzUxcERFQRf&8)UHZY{Cnut80eCcayTIlr^^UtX6*0 z%3IJ!0m>3^GY@dE#?MBhs3eM0X$lqo#sv6=5N-|sp`$~jGgEf}?y~%yq?eG^HJ7-q zCG?ev_zK#L$8T^N`P&1fJagnVCO({STOS#J(V)C_Qk2T!RLDWlRf_yulW30OQ?C#8x>?;=BJZUod*d~-pHsChU5{Y6 z=%kZl3Cv0Oa-E@kBKcWpbC(d=x(~;cmC``M&)mcp2Xg20M{dMAdD(D(& z6@GL{Us3X}5`ReLk(4dAaushUuNqELf-4JkeJRKqlnL90`b*| zt5Oh;$zd{L5q_ue7@6f5XdiJu;eZYL2OcJ^D<|>z)W1zSKk3SJyp+(L_yMc)2k8~0 zk6L@8{Lj7l_@~@Y*_W$|M`8q-kEwW^3N?veqVzAq8uBKRu182onXaXT`TyxO8B6=+ zdQQDn^jC{8j{1cOQK;L1{3C=DpPYZ{2_D#w9(~($VmptLDp1yRQg-+U~-@hXQ4HNoQfa{(=80g^c&sI1`z_ z(3!56`Jw5HS-hRNWgqYNxNbNh+IY*sDgqGyJA?PYXzOGK>>%(HYwf{)@B0@IG z@&#(}L11lmQ)fJR!}OD^3yJhrVLpx_oTuV_I^0iLaWx`-mG~yi!XUMYHzI5#J&SOI zI%lvnWg`gXDErO&6kP}($XiIAxWv;?$6Y)ZD@ZgZ9Ha0iLD!%74|x&s{%*1DZ1?kF zLFEQT>>F2L+tTsFvW50(*SmkGHtoXub#K+bRj014T6b-?E%DBugQE-xuivU`zjoVh z?~PX|IDe7+1-AYDYF(U^4^}RGxPAG<9n&5xUU+ZhhR2H*KU%i-;mW;_)^5DNY5ts+ zU;7h8A9a7)hI^w%-W$1kPDnC;`ZLMxMy`20V*bM=tLD_0?N798bQ-@`GSTMy->iE$b1h}}Motd&v*6yS zh+S`5`QwGe8#Uwi-4h;exyj9H*NYkc HrCI+Uqx8du delta 28494 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 diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index e611ae51..604906cb 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-30 12:18+0900\n" +"PO-Revision-Date: 2020-09-30 15:56+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -2191,7 +2191,7 @@ msgstr "通知を表示" #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:235 #: app/resources/actions.xml:841 msgid "Checkout Notification" -msgstr "通知を確認する" +msgstr "通知を既読にする" #. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/NotificationGrid.php:252 @@ -2546,7 +2546,7 @@ msgstr "Display Value" #: app/modules/web/Controllers/ItemPresetController.php:209 #: app/resources/actions.xml:871 msgid "New Value" -msgstr "" +msgstr "New Value" #: app/modules/web/Controllers/ItemPresetController.php:283 #: app/modules/web/Controllers/ItemPresetController.php:286 @@ -4428,9 +4428,8 @@ msgstr "" "ルです。" #: lib/SP/Services/Mail/MailService.php:186 -#, fuzzy msgid "Mail service unavailable" -msgstr "メール" +msgstr "メールは利用できません" #: lib/SP/Services/Notification/NotificationService.php:102 #: lib/SP/Services/Notification/NotificationService.php:121 @@ -7096,10 +7095,9 @@ msgstr "アカウント順で並び替え" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:124 msgid "Navigation bar on top" -msgstr "ナビゲーションバーは画面上部にあります" +msgstr "ナビゲーションバーを上部に表示" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:126 -#, fuzzy msgid "Dysplays a navigation bar on top of the search results." msgstr "検索結果の上にナビゲーションバーを表示します。" @@ -7109,7 +7107,7 @@ msgstr "表示・非表示" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:143 msgid "Always display hidden actions on the accounts search page." -msgstr "アカウント検索ページで表示・非表示を切り替えることを許可します。" +msgstr "検索結果に非表示設定のアカウントも含めて表示するようになります。" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:175 msgid "In-App Notifications" @@ -7117,15 +7115,15 @@ msgstr "アプリ内通知" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:177 msgid "Enables the active In-App notifications polling" -msgstr "アプリ内通知を確認します" +msgstr "アプリ内で通知を表示します。" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:192 msgid "Show Filters" -msgstr "Show Filters" +msgstr "詳細検索の表示" #: app/modules/web/themes/material-blue/views/usersettings/general.inc:194 msgid "Displays the additional filters selection on the accounts search." -msgstr "詳しい検索。" +msgstr "詳細検索画面を常に表示します。" #. (itstool) path: action/text #: app/modules/web/themes/material-blue/views/wiki/wikipage.inc:16 @@ -7565,10 +7563,13 @@ msgid "Allowed file extensions for uploading." msgstr "このMIME Typeのアップロードは許可されています。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:315 +#, fuzzy msgid "" "Write the extension and press enter to add. Remember to save the " "configuration." msgstr "" +"Write the extension and press enter to add. Remember to save the " +"configuration." #: lib/SP/Providers/Auth/Ldap/Ldap.php:110 msgid "LDAP type not set" From c82e0e4018ca8aca802bd3642921807b9f445e92 Mon Sep 17 00:00:00 2001 From: magcho Date: Wed, 30 Sep 2020 17:26:30 +0900 Subject: [PATCH 26/36] [update] translate --- app/locales/ja_JP/LC_MESSAGES/messages.mo | Bin 114606 -> 117019 bytes app/locales/ja_JP/LC_MESSAGES/messages.po | 368 +++++++++++----------- 2 files changed, 179 insertions(+), 189 deletions(-) diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.mo b/app/locales/ja_JP/LC_MESSAGES/messages.mo index 46ed90f0d0a608722c5b4c14b8ed25cac4f56631..5a1823ecf6f9432d79f8d7d67c4eadcfe4e4f1bb 100644 GIT binary patch delta 34662 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 Yl~D6l=ZYB{<6G0)spPx+j&tGv0{~{nbpQYW delta 32805 zcmc)S2bfLw!te3DX2$5f45Mwm_uhN-PLz-sGh>W0!xWt@TB3)It@j!&3`Ps01|bL$ z2@)kyA|#TKNO8Zv{r^kkyyw36Irq6`JQ0qiP>;C=D-;?z6P@s z-)rONkaj(;uL)!(;}2AYjDxtbC@Q@w4#sAv4)$VBJd4%w4yr>pg_K_fGhuVoK)YjJ z9Ed4#s*QUw7yY}o`2#N3X=LKAuTc#=!1VYBrp2^zrhyRD0P|xSEQcyz6SYz;ZGN~l z9y60Z-p1#m%CEt6^zYh5Kr=Xkn!#tN3J*{n{fVlOA>MY3wTYL*R5$?BVIpS0ahMfn zp;mMas=fU-{VZw)Z=y#TzY$Oe=@X3kFcg=hT1 zj`i078j_&X-yKyU0ks9=Pz^4!@$IOYp0<8v{Ta0)X~vs@Wkbb_paxhDwIU5|etRrL zy!UvPxCntsBxq!tumJ8vH(tgv_zP-Ti)ldU&Xl-YG9kqo6P%AnLHGs*e ziO$D5xZOjbCV}s<29}y=4p}5>rUOt7y@~2*mW?k%HM|vdnD*QFhp3J&+4S3}E&Co- zKWLK4&w^SRPXPkzpfYMkjZqD@MRo9+&F^dD!!U^SiKuc@P=|INs-vYgeY;IRfLht( zHvMDNK)%3gdj9Vbs7^wGw>WUv9UI^p)ZX7g4dhSMp-cO=d7krF%c9cjV=%Ty4Xi7s z!U!85h$=T6HGnC8+5hGccxTk1j7Bvu1~tHG zs1BE+-WMBD13ZpexyzUmzsJ(}3zo$q)7bx}1UgMK9~g_V9PtyFAD?1N44H1uNI2@T zS&Ulp&ru!RLmlFP8D=H2pazx)HNmo|C9i?nqE^@h`_5qfOA^>ZLUFu;g)v~J`Mob@ zZG-A45jB$;s5jU=RD(OwjpwllKE^_r^Bwc?SsT@UcPxeD(T!U@1oT2UhpKQN3t)y> zreJw2O1uYZMaH8Byb9fT7FGTcs)Nk4&Ec(ym5BF5<v=?ds<7|8_s-X|jjdyK+>Uk!;3~GR_Q3LL8or2oR4XFBOQ4@WLTG4DirF&ei zS_IrAyoPFM6snMo6+$1c6+fWnw5>?JwV4j}5 zSd4f@EJFXT?gTWVvFKlF)Buj5R^m2lCaD&hftEov+y*tEL8yAuQ8V3$s(%`D;eFK1 zgBF=HQ4-be>*y&pHe+-5zGI!r&H8$%bH4r`$X+7m-?0&1pGxK_+(TCFQ&qUHhmSQ zCB7N6;2zXr{0P(GP0Waotj{qg@rCOn7f@dm1;M>hVa%}=-19Min0DON-ER2TI;HA9Uo z9<@}H)^ck45tv1SI{qCs=Tz%V1Nl%L7s0Gp6*Yhsm=e39%J)JIcnDTS4{B|8VQ%~w zi{Q6d9W$>t-)Jq?b83P~m_UL$n2PFP8EUaNqXzIk*1@xw0@H0U9cDqTacxjC~8wDdI)F$vr!cmpq6%{jqgQu_z?!-1?y$h46kBp{25c?b5z4A z-!f`A ze#pj8qgLv3)RugQ88P@hvlTh4g-~a#JgVKsiqpTVBLU4I3iUW9q7K_TSOL%4bk{ci zW=K3YCSW*fPd~#U_zTv@*zNrD2EKy(Mi-m?_oN8inTFlhk48zU}oYyQ4@*9R5%6IzSrh2v+->^Sbuf+J_$NJCs3#T zEUMx~)JU&kHoS@cj;%pE%~EDYrMsv@@!GFKQwScC!AN2&^MPd%7F7 zH%CwdxPYqg1!_-k*!&+*19$B*k5?LW6Rm)1xC3h7y=*)ZHNbe(mW)N!U*I92j#r@u zvIX@sa}YIytEdWhQ7hmioANnOdlvcA@~j!$MvW$iSsty^DP1W zJ_hbKdshJU`&J3naR*d>f6R)LQ7g0rwa1%KXXFH`-sh-}f5i~YzQUEKVc|7M{QZ?KC>l7QR!7tujcls zcDtea>n-WuHGqKL$wM#~4o5ZYMeXTQRL4m+{V3{?eT>@sYc~EJ>ahNXT6$-{nQ1Om zJ4LOvFbDB==>J#aD4Q`H)$k0|3>RZ=+>Y9sv(`&kk@!`thZ)~DE7TUXMFUV18ibm0 zJgVJMs4bX+IdSp(tiP6QCkch{1Jq2vM(yPj)LF=Jz${@2)IchrW?CK9VO`XjXoxx! zO;JnyDypMisDTVe4PYE<<>nk<{qqr6O@c;v1T}#3s3p6Js_+!mQ0jxGVnM7xydtVx z1Qx^LSO8aGX*^=%-&?aBGU=63{e*c4Xs_aI!W7iV7NPcNqxCR0Cw>Jr(?TDZ6)BF| zs`99TzJglOuBa7?z;f6ROX5P*z>c9--1C?~B?37Pn~WA%p7>B3Uyr4TU&6BJ95FL3 zk7}qZ=EaGq6-G3coIkZ*zoh>u1$F2jO){tpqzPr@xMgn`FQ!D6WN=2#e` zu>{UQD!O*t_!p=%k>a@7!gQ#m4Mm-WQm7TJY2z(WTip%Q>iLf%pbGJr4kw@v-7Hka z)u@JcpgKN++Ols@&-I_E^1&xe`CQf#7({vv)Rxpmy-!+TEqopQ|7x_5fc9>^5^yi- zw0?*w@jPlES5O__L!AxhL-W4KiK<@_RlYH*omQxN-BAM^uI!;FAA4bjOQ`8K77#@h5D z9s-)d7}V0wLY?-Ns18n`8ajtsp)ar`eue5N?MJ4;%$SyVPE>n^Q4^?UZHd~NH>`tE z{dvX{(9+Ja39GF;ZTfN4ihPP{;3295*BP_KSy2rYM72}N#v7p~(h2p{49DuY7%Sl= zY^diy^;z>=w?Z{E1hsc>p-%ZcOpTjS14%|L>Bp!Qx{T@ZE7ZUqVg__RHtCsA1IuUQ zWicJ`+Wt8E-<*IdbU`h3AJkF~wvI+sm~7+oP+PGQb#~UF>K#S3^D*iyUB@Q)BWllU zoHOm#$6~}=VJZ4|B@oa|m!n>#$*37!vgxZPjjE=WrF3fJ;q=KJcKpzG1kB` z7tE_X3KgG^+JXz%8qlCQ7iPObrNcVQ?WO$#7vmt68o=)b6heF7eQrIv^GL5aVOM_2cwqqJ6ft%@#{98=Tmcb3ZVvC235WmYQW7tW&M@Wo&@dr8`l1)84SgYI0{v9nvE|&ZPfrnYYUzz`jLoMt}d>X2wpHcaFZL< zKs}~^Vty=tivf8Ev?GughhPZKK{sx~GI$0H;cuuV%zxV)rn;zl-LN(e#ca3(RqiC_ z!MoNJUz_xTsCo_1qk?Y`D2QWF6;_}+Jb;DqCb}`@H>P57>nm7*^azZ?NvQe{u{5T= zW8M?hQBPMZ%z<4o7-R3~{ZC*B30lIjs2O-s>FZGywqq!sM3uXZ>i8+<#$0#Ji>C@! zCSC`%l5wcVcM57N7orBT5d$&#F6*zo+(&{MK7}>$8fpMJ@0tIiSP*j&k3@CsK{d1j zQ{rZ9k2^64Q{FdcCLQX%5rTTp6h_srhfW^fbT z_@hnF_N~b;fGJ2Xiz-(cHK8V`j=S3QKBz-D6mz0y1A(*z4x;SQH~sD=`fF%ob!p z#q*%b6|?D;F*EVHNJFl6Hophz3`Juq9D}LxEmZkgHogk8(Z6dm0WH;Ge*#O5*@@pr zb?AC%W}F_=6U~D7JE2w}5i{U;%!0EY zv;GRKu?f3TPr+%_^L`Jt6+u6m=Q$KJ60eBe19&uT`jVf`W4aSH@L#YxhCDGpYV9y9 z@pY&-4$YQ16Fzs6%%SHN(rOC4GY0^Pt~M zgKo@8ygX*c=BSChh8oCdo4*b9YWJM736D@SOZB_i1 z{(@S8ynmSXdZGqA5ViNyP+PhP8K}p#jetgY%4R%39kzf!&5ubXREO=XiI|J{LhOP& zuq38?&Icz}L#@;v%!G$fhxR<`^gl;k4!tw7} zB!&kgl!S_D9sgl#ZH+@U;Ir}fP>1OfYDR(SO!*wvTBw2aLJcGe zE8$So&+|rn1Gm}y%%1d)|M4n-v1HUib+{R|BFAm~9BM}QP*1~i)C>w|a9nPzit4xv z>ae|zgE1cS;@7C956oyRg?g+#9c@A^>ap{oI{MJ2U$+KlGBYlVs@MQEz@Df>7lnEZ zC)@NLr~w^7l|P1R_XeumQ~XNLf5FV=5Cvv2r#=)_p`wkqK^>w#sFmq&^CwuBTlb?@ z<}=ix{lmudWHs>ysE&J~Ug=XYwVwaO1oZ0t2z59vq8hk{dJKO@o&Idu%)rW`X50d` zVgqb^32FcbQ8T@5eTG`8Oxf+@h>90N{Vz{lWeDi-bwQ0V4)s1*f;v2xQHL#U4#(98 z^I;>Lh?>bs)Ka@b%+r$+)j?L&O6En?uYvl_XoZ?Ucl78*Fp7X4qsgd|&&QUy1@)qN zhI*ki&uKcEhAQVpZOH~yM~7|vy7eilT&7&cqNsjqqw2NH#q+PnB*G>npcc=K+9`jh{K|O|Lt&LCv>x!Dl8>oI`Jp}Z|8;07W z38=mCp$4)C>);8D!W4PUkIq2U;X8{uBhOK1rcyrhTQJc2E~?xe)XL_}Zzfh5^;CIA z5YUo%P={|mY9L2!`lqOhk5D5|>o!ZB8x^mBs^0)ruDgv7vH3GmTeA$c0y}N~exyH- z>ypiI6)>;Jl&A{nQ3EN2s#w*g*Fo)NM{5+Sd-nx((;4swI%s~ANe}sBU3KTY{JOWie9@X(u z)ML39^?o_3xSs!81T@0$P=_nHh}|Pp10%3Fu0cH&XR#>$XbmlD-UAI#D>e*u7N%N{ zS)W^L6f^np=uyGV1k}MD)N`MyxGB&BHL!W8-~FxF3_rnAn5TppNHfe&JQg+JnW%R6 zVlDg$>tXqlj;lTnLLJ&|C3*g}G+&dT3Qj3wE!3w}BI+^Rj>Yg7)Ii*&&5RqP@<*cf z^aE5!7f`1@OBvH%Bh(vqG?vEsHvL!`k16onCe$cv;_=qasDa$E@xtXy{B`RhREM8g zbCx#)?24*43iXQKWBndA(P9;hVIBf1un4sz7p%b*O@W%$1nU;-UDT2ntYntFA*#cH zSP|c~>DN&0r>bnq)k6)qA8O@1@7j#-QIAjVDrO+%QF|R>-HfX61ofLxyQ(QS)p`)s z@Q>C?)yx*eTUVn7atU?%(^dCBo*q{z0&2Jks>7+MJ-&#V(J!c(R;gj^j5@4|=*Fd} zH|9aqQ*i^e#HngJuAbNswX(}m^)8~?{{xHa`7cn*WHiG(WDG_fwi&1a?ZU4395wT< zwN3gu)BwM?mZ@Vp?q^+%%D-;SUDv!Hx}wq-N&0tvMnEIXUe7e#+&UYzq+g&$oV&j1 zpdM<)hNEV9(5B~YU>fd%YHto|B|fzAfQF{Ms@5Us(POfUfcE4LszPuh^QNkgX^6ML z6xi9OzlM5jBW?Um)GK-_ro!2%AD2a_U&rOBkJZiAgQ!>Z`9}8l|4S0|WAX^~!g-F` zf}D*VS1+uOim$MqM7?N!Kn*-k6Eomir~x-YwbKsu#*9Y)mZJLEg_`*BCLS~Lr#9hF zTcF%4=4q&hdZl(k?O7D6;%b|J3H8puk7~F~Q`2!BRQy%c3iLr8(s=7!YqE!cI=EsJ z9$*FH8Jd|rtdFXgV4a70jCP~8>XA(^(cCP3OH_xQQ0<1HzdmXu=2`dIe9u<|w3I)h z_Ap-yvy??p@Az`4hF(K0Z4A!D;iwOn)Gf^xWJlGnjOwr!X2qVUy&i1yJ*WXrGI5W~ zOF*Z2A!?7lLN$=8mD&4}sK3cf#cucqYH7Q)Hb28rs0K${r=Sj}57%Q7>hShxV}6!< zqrNW&V*x$?Z}|g!Y}$;|s19zRmh1fD0I`=l?1J&EOX1!0)j#rfg?cq&5Z+k3gOFC>x)I+LFnr&+0ko##J~Sk77CO z(BAR?`{Fq4L;O$FN=J6!`PWRR6VQ?`LG9H+RQegz3S7go7|_x2|9654sJ|I?!bvy) zC*Y6R3Ws$vf0;doQ;ApU%y)pp&ogSp{&>}xsSD4)ma(p)av8X616M!l;3kL;W_iwDGsm{~Lj7=Mw7hJw>f( zK!mB68;j}ruSTFAzJWSC%dA&0nt0Yo^Y?<$sD?LMuc8K!zK?nAN?<|aL$DMsz#@1I zwIbi54(o5ImCF&u^Iwxd2?9ki0##uu>halzdc3ZpUQ9uK&0)-q+WXe1hC87K7J)h| zbFC{ekoZ>AnMguCMY~aF=tN(he^oqBLKzH*HgCA{*o1gn8=s4s=??2T)BqpYct}69 zw3SegYb(^L?}ZxRXw*ceqqcA-s{PabJZ6tF_cw>D66*K7E2`ikRL9#;BR*rjjCv*C zKyBG=)ZXSBU`}^6)T!@}T9J29?JPkJXb);YCp`pG5cmOgSe~MmHrGH?!ELRL>YyvC zfx$NYO;q_MHhr~C-(l0wSudm7zm9s9yJE}=dCC#c9<@Tvs2%D#?udFSdZ51D`k@9e z3iX)IMa^IZX2O%GE%_XExKhNLS9MO*0NtpSD2D2O`n4L0$PPy($7)9ichTB2buDfQCss0YM^6LPuY4@`MX#}&wt9n=5M`qPz5HV zp68RO27=>EdVN&Iv8VwqL+$Zy>owGyEg;^cSH)0=FDKOLACh2JWF+crjmMny?^-}W zr*=DPiH@V5hEGtZ)JZglvMFjnQ?L^r#Tl4ui1~}jdeockDXL!mp^pDQN>4(qz-Ood zyM~zw7D502)mU!=y-1&hEAcVv#WQ!fS?cFlj(F7(=0~Ov>akseZSYgniWM1Y;=NG= z*@jxtXV?;JjxsAW33Z6~j7qhlSE&Wi`;hKj!%^Pg`X;l6D zsFe#IW6D=XtyD+U;ardE_!HC?+#194uMU4DLFOYKgpE+Awi&A7w%8T>qZ&AhYTzR3 zDY=h2yuY9Z7BJS7D~$S5s*E}ttx)yGq6Rw8LqIb+irS;g*5{~##oja{uY=0(iz@#P z>JYB7>HBT`Hfn%>px!I#$C-cs&uXoJI%927?R$C<(Bls11$J34SRbNR zD$RH^^NiM9sKZp;j?1m*KRp30Nm*+x)QFp*_NX1I!Wf%A z5!KLi)SGV!*2gWV7uF+8gTJ6wC~%V5`&6hcsf}u{A*R*y-<*I(-q{+1I_+XEy!=YAI8`W%5H&?UY9iu(^$QL$woU(`VT9rRY(^$pkc$GZ==~u^ZNZ+wuRO z=Pkq-;wdJZe{e`Zy@)QL>ZO}vW}FxGolqS0G}OcH*c|oFUybT-J!*mnrtti0@2-)c zkq1mQdzBj%FM%3)LsZ4rtqC@L3Tmcnt-EagaqCso);>lp`E%5FLGU!wexYeRuj-&S z3F@FLYQ!<93MWy&cIU7Us$Z}H=J4q~!t>XafZomHQNLozsG0nPnnB9>=G9vQ)o^?CA4XJ% z38?xbu?ucRZDq;@=IKd5b@(OfuoqZp&d@73O3(j%0u3?yBGX}4oJxEI>gP3hvDxd+ zsB$w=zXcbtG(JPU5sNJ`1L=S|T$8Y>!$&G=A~~0tpXHk9CO#fLdc&=4@z{8k`3uYLRXqQr zNJz2T@&9i&$6-6--(q#Fy~ccaBw{4-HK}BUCfGlr5->H^eF0ubPKgrKiPC= zo%zOeqqeLZYKyC`^O#fLoCLk0+Mo_$2dsv#p=RPmz46ZCE0}7%IZSO)OFt0ZI3L^M z9;}6_H<;g$CKyUQ9(4$3pjKp)hk*7b*SqFFCe=c{p@v)Mp_V=gRq+edOn=3Km~*4) zpq4cnb;x|^#{H*Y^a1Nce1<>F642 z0MAha$iCgAm$kOD#-ZL9b5JXE9yQaus56m1$sDrks0p@2wL2D7ZXTx4^S_UPPU8ot znO;N{d}7nn?J)ntqx`7+6{ypF1odTe&UziS6%Q~!{%+Ir>@=spBx=iQpjIXdJt+yy zB%p6LA8L;`q7K=1)KZ;Ct;BaW9=ywxD~K9M2~@{bQ3HPkRlkRIB&z;GRJkNnxg)#m z_x}|Vv?M><0-?!fMM|OuPzSZQ-B2qKj+((l)al-gTJr0t6-m9@)DJ;*ToN_VMyPh$ zq28q3ck}$~>vstWT8XWwvyhB>D)w8ipc;OHnnBPW$8{F7VI#bSMX=aj^Ci?8a}n=~ z>NpN{`aP&acnmf0^GeVR1NNDL?27l zM_4~Nw+WXgzkt$7TR}V1x%-lKpFCZixZfj9%RU>&lin0RqfE6R`tM4hiS4{7h1g=( z0}6%O21s(T3E{sY$BcA(s5gn5^_ZjoP@y19wh;{KF- z3Gt68^VAL^fpWS$iAGmn3hA1R*YP}!Tqk_d7VJmGpKTeH8%X>|o5y>~)suJx={Kl1 zj&e6_M>k1(WW#!72irCt63!c7_dk$Iy4D+9Yi)&GG`x=RZ0O5PO8{bK^wxK_)oowL@8USfk@ijW^Wb>n_ zb%rvRNFRY|NbklyjrbK?H#3J**LKoE2|pv;jJpNx1bRpqOC$}(kuZbsEN%~t|ZBggspIh!k^oQa*+4()kU3>|B=nt4@qwuewFYf^3vNn)ku${{hc;H zHQ{%tA5NLa+&}UALf0yEuj2c#$++ov|`$-xGdr%lpXxkZ>K+ z^);%uX@1foxi=8jRh@dp$bW94uKm`H9x~pdU^rHyz!){cwS)M}*EXB}CSKv5Kz;@~ zEloH(ovx(tJnjp&-b6gby@30mt=oz6B?u?c-xs96kDjjxd`n_aBDzl4!aGUV^%j** z;cw(WCygIER~qg-ww%8Ze{3V~B4x^RpCR0XJNiW?&gBj!FB5}}qwXi%V*=U#+BEh9 zh0Efv6i7jM5$Y;zaD7AG8-(YP7fN^n`Kt)$rID1VD~7PHFY$F-e;09m*tD>D=}0fD zLiU;z*x!WC*@UVT)X(QT6ufNHd~_H}C;7>XAgt?a$#WO!BnKoEZbH;!jZJ~BkITh(O-k0|3f6i*n|dz8*%G8!abA*UggeD_^>ULmJWgm z$CCEccK$mKC;bc3auV)B_z&)rwoW_iZRNRiNy5+{GC5_mnSh>t?qd22l5uO;a166W+xgLfNIn*Aebcc&IYD^7{Y3jB0KIH5A z3BBaKLbxdTqiq@e{asfo@&`nM>8f!-3 zhjvh(kiM93kZr8EEiWoi_Qh4nhBuNhgz~*9U(TlO#{snS9(gUezawnlfBcA(S&;<& zKg%ym_%wO5Z07|C=d&Gq376zfLEagBMxC)XkEm;%{;=0H$`m8-Ey|=Me2;dk;5PD) z6aEc7c{K{ImJ}>#8>&v`Ez)*S_$uK{*pR&G+)pTf3=fdDAL|jHNZIz>?Fi@M{?{uV zX&t$rkg<{Ws#7mB^+)P^I|l(>BS~z}9ZrERmRMO}HQe1HOX2xp-}BkqdaBS{<2 z{k6XouVLFsdE%*TU1bGQCYZd8+%bfA*-l##{*}8v@gw-+(tn?GMKQ{jq!c7$2xce# zA>jdpZGBfB$~`Bdzr6DgORkf6j&egtt7!`@c~O|W!Q5-P_flpH9R-&Y4x>_E(oYkgO8CW9$p$)5M%QXAY{Mrht7{bIBdv{zy7m$d zpzQ#>XwyWf_WxrtR#QP=p4%u;h0Y$6Im33Ej-@O?`W)_Fq}S)JOxYLLtAtBX<`(6@ zrkygB>rCb};@_f*zGe%LC+{uFG$ipGe;e$-F8y2T%U4}0e^0>xZe4G3r{`Y7?IZ0& z8q)O^_jFt47pzD6e0)IT#rz%cjwkIL?d`^e-Wpg+Ii zE=7d^dZd-dV!)Xy7jCt+{m_Cr#Hg$`mE9E8!H>Pw=OjKdO>mkvqr^ zYO|^9aXljNk!_$TmDW=znD|iaPu?8vdp3Uzm3t9C$~~J~R~pg+ZCLRyskegrb8cN_ z@D=ih6Fx>esr{+^Wsz`LAoH(5U?c@D(~#PEO@(ZOWpSUA%GUJO$r zc@1c%9`W&XoS?QzzH94@BRr72Ma1u*fBoy)Orow0RBp-r;wnx!3;ES4{5toiGu&Q)+5BrZ{|$ZrS0ytWv-t)` zkWrdSsR-90JcCYt#%%b6+f7*4uQc=l@e-6BipeI~wTt*N;=1M&*0qebiW6Q%oyqt% zzC-#Be=hrfki_mp#&CZ{<)5g~#5Pik!fx`*a_g#3`gQVk{lT4+^kz0sX&ot_mHRp6 z;wd-KmQ7FE9qt2^Swmhc<#Ye_{5__T``o>i$TbKvuqwL7b5G*lL<3$LY>T?$xpUbL za#8+!(kBvMNjN=iJth2^za;f-IYm2?zlD1(3* zl3#&vEdFW>uC^Ygek^rnlm8iEU2hQINZApjjUxUh>Az#h-}7fw6lzX^o!oERikWdJ z_f-mKC;i3MkFpPlzd~M5>}AW}r@-5Eq-!eHA^ot4`v2TcJ^m}oUst@I|AH)YJ(3!7 zkET*F3f;3s=3@r#KW(Mc=*E1cN7{lna2fHGOr(h|vy{52ZKuEB`{e5y zW%EBYQT}^78CQthq0pOTF0}=ezk{?^I870*l9c_Ddl2C!+?@#Lw4HowElS!r!gCow z7FFVEM*J}G^xU@zA0w?X{p{24zeBn7FQTgtJiLE8cs{+%bd?*fQS| zUq$?=txu5uGj_gq$alzlakU^kmb816J5GK(!k5VWNzdOp5~q^TnL8hux|VYrY;R~6DWyi_<7@tHQB8h3E*}?cL^T$)}%cOPS&P=^Nw7bu?eF#f&r=#vv%H5#MIm+Zv`@Kkf z!mX>OZ8VyU0fcAS2L2#_33qAARQ8wTN5GMNY$q|A$J72)pO z$H=?Jt?Lo~sxk$O#20kO#70EABVr@tV~QoXBZox?#3y+B4Bnizc*zp(R?+bZkrD3b z7Lm3Zve*fTi13CE`y{FK@a#dU+Qmi3#ziL#_f{GGByGd6 z@cu6SkvPbkJf=dn=$Ht1=lIAtSHl5eG5y_x6C>k>d%qd;z!#p$aVP!Z=@8%@Ixch4 zpmF6K?}y`0_lk*$3{QxTjd6GG(24;jxZ@)eT#aJ?N{)<+i;Z&^Z`iy|;}S|wh#Z#S z4jT{`85S{|(MBgkhYg4x5gGAUp4xaR-Fsxh5O3>=eaccJAvVs{h>=H!hYcVwd{9EH zdthut;($nZcvy@o_KtK9hz*N~j7ZuxF}suW>7;xC-V~E7dRtCDnJp|lJT@^Vp`NR8 z8?wmoXqnS~Ze>LmOt&*m1WO)DRm?(Eb-`VT4 zdz$#?KD2MN1~?!xEY4&_x+8}~#w0M(D0ggPg6rQGi(^mX|7(8iz(H}5@$oNO>Z7(J z!V<#V#f!w3_-9kzxVei$TMzHpzLh)t?+r<0bKS*?#253Pn;Ys)KW}4($e3`gC8tLX zDLGA_=*R&P?u6lkBK@Uy&wI~%ZEl(h8q+`eh=>gTZwKUUH$O+xVBbV1g=wta{LrKy z=8tu}ug_0cVThJG{-5nd$G;dVtJo(lcA&de;|A?GRB=Nh<`5&m{tp3EZ(eb{UswjVR7Mo)qHI4empwynnmxh_(*r-Hvd?Pc+QI{n9w)U zJk;(E|7{un&hjK`#r~zK0eVR3lYP%v%s&)=mpU`vjZ1R*XOy&Y$&G;2f9-tI;N{C4 zJEK|4L%o?+u1W1~V4k6P@8>J8Bwb#WTkD0q>tl7nAPnSn7CZ?#h|;{;rx%QkvZzoursORUBX17$>jy$lhAsbo<&T z#q8@CkaX<*_@JaIhY9_8G-FUw(UaK&k~*Gl;ds}5RNwp4N8flKooVImcy?t{x{nVA zCSASIJ5|)9&p%t!l+ZCd5VaqH+6wI(XL&8W5HcS<_u4-u3sG{#j@UZz#>sTjXxZ zEHS*uP2Ine8{J)!#=m%`mnV1oc%$z%_g=b}G3m^``;PbEw{Ij>crZU8FgkLm_uGf= zqYuPyoIk_fRn}h*7Io@?Xl)Jbx?F%WW?MboUHSros7Ps zS)7b>+c{;jz9~qKYJkwvfiGz5TL`L|Y1~|RFy@!_aZ3}c}rt$xd_Tk4W z!q*|lDQ|wfi~GI}a-R4$6?8Jp9pnThM+H0m0=*?imhfdv<1F{?9NF4;K8=&p*E+#T z?K_vo$)!+wU*}Rz7GKq|PR``TX`Ql8)&~4`M8yo$@6Su$0iAtsr+2QV@P7>W-VAZF z`tD|M>Sb^E@4g0-i)M5xI>~$wR1V14sBc(IRHVCISbY4@*tm$~ty!FS$JZsBlRf#> zY)-ELU*-^Je0F~K`$R`2#_^`+{q$neU)6K+`VNIS-$#-EfB7?l&x=9BwXeR|T+T9I zhvKYC`A}zRxkmrlcZGM`#7fEOb31LEA$TL1()Y+&Fe1FNfsd!cKueUqfxnnc|$FF~yw5KK`GDysKy~{n5;~ zFtwA;SD}Q{&9`PD$8cQ<=TP#(lFp_8->YSux=HtEr+1RSE$ggxiog8r5H@JgfZ=+} zzx$?j`h!Ko7RZ%hCG`m(t-ZtJb_@7@|e z{?>TkE#I{qEbxp9&Q0(6xw-zEZ=B@VicU61h5pS~PRL)sb&;-H%YH~{-1qN<>hp3HXyt9}8;|w%u>}&{7qWQq`oo(RM z_LXSrtp3L*R>|Z-&77)^Z*+6#hitF-KgsQ1ckExZk{7jb;scV)w|3?_-pOn8`5v`# zZhKp;E13TF?y+~@-sJjv;`-a~dwuEKIm>+oJWfdRwRX;ez~nbOIky6mNAsPQHhE=l zr?2C^vm$m|a+FgoAbCo(vn(LF$pGhw|8s4WkN;!Ui@x`A zJL!^_$2unhll#Xzhl7(Rk5I!c#yBfeCa0L>Gzm=ZHQ9OK_#&q|jgn7Hb<#U?AM?ul zZJN{5H+s5rD!JDTr$lh_mN`zzVBfQaPWR-9Mb3dhUxQ`NxSTh~E-n&(bLzqH653YAE26?yMj`7Xe;@t4f+3GY+zO$95J@4P2H{t*I zEnD<-8ZBB^$rE>rFL(o@bo3pR_-=+Se@4-mlm)o4PRsOF1AAB47`d8$a@z{1J z(;I)+*T>%f@h?T+#qCbdCNFpLzx~nZE1%?4d}-|y|LX^&FD%J|5KcQOo)t$=lv4z ztGv^R@vRMULVYn!oK(rzb~;-ElD)f~>`wB&J^X9CteS&L4MX2Y)?z`mHy&_-^Q1<=zRWqOZh< H&g1_9cYKDh diff --git a/app/locales/ja_JP/LC_MESSAGES/messages.po b/app/locales/ja_JP/LC_MESSAGES/messages.po index 604906cb..50a06d50 100644 --- a/app/locales/ja_JP/LC_MESSAGES/messages.po +++ b/app/locales/ja_JP/LC_MESSAGES/messages.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: sysPass\n" "POT-Creation-Date: 2019-04-21 15:54+0200\n" -"PO-Revision-Date: 2020-09-30 15:56+0900\n" +"PO-Revision-Date: 2020-09-30 17:26+0900\n" "Last-Translator: magcho \n" "Language-Team: nuxsmin@syspass.org \n" "Language: ja_JP\n" @@ -248,7 +248,7 @@ msgstr "エクスポートが完了しました" #: app/modules/api/Controllers/ControllerBase.php:146 #: lib/SP/Services/Api/ApiService.php:186 msgid "Unauthorized access" -msgstr "Unauthorized access" +msgstr "アクセスが許可されていません" #: app/modules/api/Controllers/Help/AccountHelp.php:43 #: app/modules/api/Controllers/Help/AccountHelp.php:54 @@ -428,7 +428,7 @@ msgstr "タグIDで検索" #: app/modules/api/Controllers/Help/AccountHelp.php:133 msgid "Filtering operator" -msgstr "Filtering operator" +msgstr "詳細検索に使える文法" #: app/modules/api/Controllers/Help/CategoryHelp.php:54 #: app/modules/api/Controllers/Help/CategoryHelp.php:67 @@ -681,7 +681,7 @@ msgstr "リクエスト" #: app/modules/web/Controllers/AccountController.php:1069 msgid "Requester" -msgstr "" +msgstr "リクエスト送信者" #: app/modules/web/Controllers/AccountController.php:1072 #: app/modules/web/Controllers/Helpers/Grid/CategoryGrid.php:107 @@ -959,12 +959,12 @@ msgstr "Edit Authorization" #: app/modules/web/Controllers/AuthTokenController.php:224 #: app/modules/web/Controllers/AuthTokenController.php:227 msgid "Authorizations deleted" -msgstr "" +msgstr "権限を削除" #: app/modules/web/Controllers/AuthTokenController.php:237 #: app/modules/web/Controllers/AuthTokenController.php:241 msgid "Authorization deleted" -msgstr "" +msgstr "権限を削除" #: app/modules/web/Controllers/AuthTokenController.php:238 #: app/modules/web/Controllers/AuthTokenController.php:314 @@ -976,22 +976,22 @@ msgstr "Authorization(認可)" #: app/modules/web/Controllers/AuthTokenController.php:275 msgid "Authorization added" -msgstr "" +msgstr "権限を追加" #: app/modules/web/Controllers/AuthTokenController.php:313 #: app/modules/web/Controllers/AuthTokenController.php:322 #: app/modules/web/Controllers/AuthTokenController.php:329 #: lib/SP/Services/Upgrade/UpgradeAuthToken.php:70 msgid "Authorization updated" -msgstr "" +msgstr "権限を追加" #: app/modules/web/Controllers/AuthTokenController.php:357 msgid "View Authorization" -msgstr "" +msgstr "権限を表示" #: app/modules/web/Controllers/AuthTokenController.php:365 msgid "Authorization viewed" -msgstr "" +msgstr "権限を表示" #. (itstool) path: action/text #: app/modules/web/Controllers/CategoryController.php:109 @@ -1896,7 +1896,7 @@ msgstr "YES" #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:123 #: app/resources/strings.js.inc:67 msgid "NO" -msgstr "" +msgstr "NO" #. (itstool) path: action/text #: app/modules/web/Controllers/Helpers/Grid/ClientGrid.php:140 @@ -2707,7 +2707,7 @@ msgstr "Tracks cleared out" #: app/modules/web/Controllers/Traits/ConfigTrait.php:68 msgid "Configuration updated" -msgstr "Configuration updated" +msgstr "設定の更新" #: app/modules/web/Controllers/Traits/ConfigTrait.php:72 msgid "Error while saving the configuration" @@ -2874,7 +2874,7 @@ msgstr "設定" #: app/modules/web/Forms/AccountForm.php:129 msgid "A key is needed" -msgstr "A key is needed" +msgstr "keyを入力してください" #: app/modules/web/Forms/AccountForm.php:169 msgid "An account name needed" @@ -2911,7 +2911,7 @@ msgstr "フィールドタイプを空欄にすることはできません" #: app/modules/web/Forms/CustomFieldDefForm.php:95 msgid "Field module not set" -msgstr "Field module not set" +msgstr "モジュールが設定されていません" #: app/modules/web/Forms/ItemsPresetForm.php:116 msgid "Value type not set or incorrect" @@ -2931,7 +2931,7 @@ msgstr "ユーザー・グループ・プロファイルのいずれかを設定 #: app/modules/web/Forms/NotificationForm.php:98 msgid "A component is needed" -msgstr "A component is needed" +msgstr "componentを入力してください" #: app/modules/web/Forms/NotificationForm.php:102 msgid "A type is needed" @@ -2970,6 +2970,7 @@ msgid "An email is needed" msgstr "メールアドレスを空欄にすることはできません" #: app/modules/web/Forms/UserForm.php:179 +#, fuzzy msgid "Unable to delete, user in use" msgstr "Unable to delete, user in use" @@ -3015,17 +3016,17 @@ msgstr "Delete" #: app/modules/web/themes/material-blue/inc/Icons.php:37 msgid "Change Password" -msgstr "Change Password" +msgstr "パスワードの変更" #: app/modules/web/themes/material-blue/inc/Icons.php:38 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:200 msgid "Application Admin" -msgstr "Application Admin" +msgstr "アプリケーション管理者" #: app/modules/web/themes/material-blue/inc/Icons.php:39 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:218 msgid "Accounts Admin" -msgstr "Accounts Admin" +msgstr "アカウント管理" #: app/modules/web/themes/material-blue/inc/Icons.php:40 msgid "LDAP User" @@ -3049,7 +3050,7 @@ msgstr "Update" #: app/modules/web/themes/material-blue/inc/Icons.php:44 msgid "Copy" -msgstr "Copy" +msgstr "コピー" #: app/modules/web/themes/material-blue/inc/Icons.php:46 #: app/modules/web/themes/material-blue/views/itemshow/user.inc:84 @@ -3087,6 +3088,7 @@ msgid "Check" msgstr "Check" #: app/modules/web/themes/material-blue/inc/Icons.php:64 +#, fuzzy msgid "Critical" msgstr "Critical" @@ -3117,19 +3119,16 @@ msgstr "" "デートを検討してください" #: lib/SP/Config/ConfigUtil.php:94 -#, fuzzy msgid "\"/config\" directory does not exist." -msgstr "'/app/config' ディレクトリが存在しません。" +msgstr "'/config' ディレクトリが存在しません。" #: lib/SP/Config/ConfigUtil.php:100 -#, fuzzy msgid "Unable to write into \"/config\" directory" -msgstr "'/app/config' ディレクトリに書き込むことができませんでした" +msgstr "'/config' ディレクトリに書き込むことができませんでした" #: lib/SP/Config/ConfigUtil.php:109 -#, fuzzy msgid "\"/config\" directory permissions are wrong" -msgstr "'/app/config' ディレクトリのパーミッション設定が間違っています" +msgstr "‘/config' ディレクトリのパーミッション設定が間違っています" #: lib/SP/Config/ConfigUtil.php:119 msgid "Current: %s - Needed: 750" @@ -3142,11 +3141,11 @@ msgstr "N/A" #: lib/SP/Core/Acl/Acl.php:299 msgid "Access denied" -msgstr "Access denied" +msgstr "アクセスできませんでした。" #: lib/SP/Core/Acl/Actions.php:176 msgid "Action not found" -msgstr "Action not found" +msgstr "Actionがありません" #: lib/SP/Core/Acl/UnauthorizedPageException.php:45 #: lib/SP/Util/ErrorUtil.php:156 @@ -3159,6 +3158,7 @@ msgstr "パスワードを変更することはできませんん" #: lib/SP/Core/Context/ContextBase.php:103 #: lib/SP/Core/Context/ContextBase.php:126 +#, fuzzy msgid "Context already initialized" msgstr "Context already initialized" @@ -3167,6 +3167,7 @@ msgid "Invalid context" msgstr "Invalid context" #: lib/SP/Core/Context/ContextBase.php:154 +#, fuzzy msgid "Context not initialized" msgstr "Context not initialized" @@ -3175,16 +3176,18 @@ msgid "Session cannot be initialized" msgstr "Session cannot be initialized" #: lib/SP/Core/Crypt/OldCrypt.php:178 +#, fuzzy msgid "Crypto module cannot be loaded" msgstr "Crypto module cannot be loaded" #: lib/SP/Core/Crypt/OldCrypt.php:190 +#, fuzzy msgid "Error while creating the encrypted data" msgstr "Error while creating the encrypted data" #: lib/SP/Core/Events/Event.php:57 msgid "An object is needed" -msgstr "An object is needed" +msgstr "objectを入力してください" #: lib/SP/Core/Events/EventDispatcherBase.php:85 msgid "Observer not initialized" @@ -3195,6 +3198,7 @@ msgid "Invalid icons class" msgstr "Invalid icons class" #: lib/SP/Html/DataGrid/DataGridBase.php:302 lib/SP/Mvc/View/Template.php:128 +#, fuzzy msgid "Unable to retrieve \"%s\" template: %s" msgstr "Unable to retrieve \"%s\" template: %s" @@ -3259,10 +3263,12 @@ msgid "Wrong object type" msgstr "Wrong object type" #: lib/SP/Mvc/View/Template.php:303 lib/SP/Mvc/View/Template.php:367 +#, fuzzy msgid "Unable to retrieve \"%s\" variable" msgstr "Unable to retrieve \"%s\" variable" #: lib/SP/Mvc/View/Template.php:336 +#, fuzzy msgid "Unable to unset \"%s\" variable" msgstr "Unable to unset \"%s\" variable" @@ -3305,16 +3311,19 @@ msgstr "Method already initialized" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:121 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:128 +#, fuzzy msgid "Error while searching the group RDN" msgstr "Error while searching the group RDN" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:226 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:231 +#, fuzzy msgid "Error while searching the user on LDAP" msgstr "Error while searching the user on LDAP" #: lib/SP/Providers/Auth/Ldap/LdapActions.php:281 #: lib/SP/Providers/Auth/Ldap/LdapActions.php:287 +#, fuzzy msgid "Error while searching objects in base DN" msgstr "Error while searching objects in base DN" @@ -3322,6 +3331,7 @@ msgstr "Error while searching objects in base DN" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:149 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:213 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:218 +#, fuzzy msgid "Unable to connect to LDAP server" msgstr "Unable to connect to LDAP server" @@ -3345,10 +3355,12 @@ msgstr "LDAP parameters are not set" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:256 #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:262 +#, fuzzy msgid "Connection error (BIND)" msgstr "Connection error (BIND)" #: lib/SP/Providers/Auth/Ldap/LdapConnection.php:326 +#, fuzzy msgid "Error while disconnecting from LDAP server" msgstr "Error while disconnecting from LDAP server" @@ -3551,19 +3563,23 @@ msgid "Error while removing the custom field" msgstr "カスタムフィールドの削除時にエラーが発生しました" #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:61 +#, fuzzy msgid "Error while creating the field type" msgstr "Error while creating the field type" #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:97 +#, fuzzy msgid "Error while updating the field type" msgstr "Error while updating the field type" #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:179 #: lib/SP/Repositories/CustomField/CustomFieldTypeRepository.php:198 +#, fuzzy msgid "Error while deleting the field type" msgstr "Error while deleting the field type" #: lib/SP/Repositories/EventLog/EventlogRepository.php:53 +#, fuzzy msgid "Error while clearing the event log out" msgstr "Error while clearing the event log out" @@ -3605,6 +3621,7 @@ msgid "Error while deleting the notifications" msgstr "通知の削除時にエラーが発生しました" #: lib/SP/Repositories/Notification/NotificationRepository.php:213 +#, fuzzy msgid "Error while retrieving notification" msgstr "Error while retrieving notification" @@ -3613,6 +3630,7 @@ msgstr "Error while retrieving notification" #: lib/SP/Repositories/Notification/NotificationRepository.php:548 #: lib/SP/Repositories/Notification/NotificationRepository.php:582 #: lib/SP/Repositories/Notification/NotificationRepository.php:615 +#, fuzzy msgid "Error while retrieving the notifications" msgstr "Error while retrieving the notifications" @@ -3656,12 +3674,14 @@ msgid "Error while updating the link" msgstr "関連するアカウント更新時にエラーが発生しました" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:424 +#, fuzzy msgid "Error while renewing link" msgstr "Error while renewing link" #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:466 #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:507 #: lib/SP/Repositories/PublicLink/PublicLinkRepository.php:528 +#, fuzzy msgid "Error while retrieving the link" msgstr "Error while retrieving the link" @@ -3688,31 +3708,38 @@ msgid "Error while removing the tag" msgstr "タグ削除時にエラーが発生しました" #: lib/SP/Repositories/Track/TrackRepository.php:68 +#, fuzzy msgid "Error while creating track" msgstr "Error while creating track" #: lib/SP/Repositories/Track/TrackRepository.php:85 +#, fuzzy msgid "Error while removing the track" msgstr "Error while removing the track" #: lib/SP/Repositories/Track/TrackRepository.php:102 +#, fuzzy msgid "Error while updating the track" msgstr "Error while updating the track" #: lib/SP/Repositories/Track/TrackRepository.php:118 +#, fuzzy msgid "Error while clearing tracks out" msgstr "Error while clearing tracks out" #: lib/SP/Repositories/Track/TrackRepository.php:146 +#, fuzzy msgid "Error while retrieving the track" msgstr "Error while retrieving the track" #: lib/SP/Repositories/Track/TrackRepository.php:169 #: lib/SP/Repositories/Track/TrackRepository.php:202 +#, fuzzy msgid "Error while retrieving the tracks" msgstr "Error while retrieving the tracks" #: lib/SP/Repositories/User/UserPassRecoverRepository.php:86 +#, fuzzy msgid "Error while generating the recovering hash" msgstr "Error while generating the recovering hash" @@ -3737,6 +3764,7 @@ msgstr "ユーザーの削除時にエラーが発生しました" #: lib/SP/Repositories/User/UserRepository.php:234 #: lib/SP/Repositories/User/UserRepository.php:551 +#, fuzzy msgid "Error while retrieving the user's data" msgstr "Error while retrieving the user's data" @@ -3821,7 +3849,7 @@ msgstr "パスワードの復元時にエラーが発生しました" #: lib/SP/Services/Account/AccountCryptService.php:141 msgid "Accounts updated: %d / %d" -msgstr "Accounts updated: %d / %d" +msgstr "更新済みのアカウント: %d / %d" #: lib/SP/Services/Account/AccountCryptService.php:150 msgid "Updated accounts: %d / %d - %d%% - ETA: %ds (%.2f/s)" @@ -3924,7 +3952,7 @@ msgstr "LDAP Server" #: lib/SP/Services/Auth/LoginService.php:505 #: lib/SP/Services/Auth/LoginService.php:513 msgid "Account expired" -msgstr "Account expired" +msgstr "有効期限" #: lib/SP/Services/Auth/LoginService.php:521 #: lib/SP/Services/Auth/LoginService.php:529 @@ -3951,6 +3979,7 @@ msgid "Make Backup" msgstr "バックアップの作成" #: lib/SP/Services/Backup/FileBackupService.php:107 +#, fuzzy msgid "Error while doing the backup in compatibility mode" msgstr "Error while doing the backup in compatibility mode" @@ -4019,13 +4048,13 @@ msgid "Temporary password expired" msgstr "仮パスワードの有効期限" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:160 +#, fuzzy msgid "Error while checking the temporary password" msgstr "Error while checking the temporary password" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:213 -#, fuzzy msgid "Master Password %s" -msgstr "新しいマスターパスワードは %s" +msgstr "マスターパスワード %s" #: lib/SP/Services/Crypt/TemporaryMasterPassService.php:233 msgid "" @@ -4116,6 +4145,7 @@ msgstr "XMLファイルを作成できません" #: lib/SP/Services/Export/XmlVerifyService.php:181 #: lib/SP/Services/Import/SyspassImport.php:177 +#, fuzzy msgid "Error while checking integrity hash" msgstr "Error while checking integrity hash" @@ -4233,7 +4263,7 @@ msgstr "" #: lib/SP/Services/Import/XmlImport.php:98 msgid "Format not detected" -msgstr "Format not detected" +msgstr "文法エラー" #: lib/SP/Services/Import/XmlImport.php:106 msgid "Not implemented" @@ -4251,6 +4281,7 @@ msgstr "Invalid XML format" #: lib/SP/Services/Import/XmlImportBase.php:121 #: lib/SP/Services/Import/XmlImportTrait.php:70 +#, fuzzy msgid "\"%s\" node doesn't exist" msgstr "\"%s\" node doesn't exist" @@ -4260,7 +4291,7 @@ msgstr "adminユーザー名を入力してください" #: lib/SP/Services/Install/Installer.php:107 msgid "Admin user to log into the application" -msgstr "Admin user to log into the application" +msgstr "アプリケーションにログインするための管理者ユーザー" #: lib/SP/Services/Install/Installer.php:112 msgid "Please, enter the admin's password" @@ -4344,6 +4375,7 @@ msgid "Please, check the DB connection user rights" msgstr "データベースとのコネクションを確認してください" #: lib/SP/Services/Install/MySQL.php:181 +#, fuzzy msgid "Error while creating the MySQL connection user '%s'" msgstr "Error while creating the MySQL connection user '%s'" @@ -4377,6 +4409,7 @@ msgid "You need to create it and assign the needed permissions" msgstr "データベースに適切なパーミッションを持ったユーザーを作成してください" #: lib/SP/Services/Install/MySQL.php:309 +#, fuzzy msgid "Error while selecting '%s' database (%s)" msgstr "Error while selecting '%s' database (%s)" @@ -4402,6 +4435,7 @@ msgid "Value not found" msgstr "Value not found" #: lib/SP/Services/ItemPreset/ItemPresetService.php:188 +#, fuzzy msgid "Error while deleting the values" msgstr "Error while deleting the values" @@ -4578,6 +4612,7 @@ msgid "Update DB" msgstr "データベースの更新" #: lib/SP/Services/Upgrade/UpgradeDatabaseService.php:101 +#, fuzzy msgid "Error while applying an auxiliary update" msgstr "Error while applying an auxiliary update" @@ -4654,10 +4689,12 @@ msgid "Error while doing the query" msgstr "検索中にエラーが発生しました" #: lib/SP/Services/Wiki/DokuWikiApiBase.php:228 +#, fuzzy msgid "Connection URL not set" msgstr "Connection URL not set" #: lib/SP/Storage/Database/Database.php:131 +#, fuzzy msgid "Blank query" msgstr "Blank query" @@ -4671,44 +4708,54 @@ msgid "Please, check the connection parameters" msgstr "接続設定を確認してください" #: lib/SP/Storage/Database/QueryData.php:338 app/resources/strings.js.inc:26 +#, fuzzy msgid "Error while querying" msgstr "Error while querying" #: lib/SP/Storage/File/FileCachePacked.php:45 +#, fuzzy msgid "Error while decompressing the file data (%s)" msgstr "Error while decompressing the file data (%s)" #: lib/SP/Storage/File/FileCachePacked.php:51 +#, fuzzy msgid "Error while retrieving the data" msgstr "Error while retrieving the data" #: lib/SP/Storage/File/FileCachePacked.php:70 +#, fuzzy msgid "Error while compressing the file data (%s)" msgstr "Error while compressing the file data (%s)" #: lib/SP/Storage/File/FileHandler.php:76 #: lib/SP/Storage/File/FileHandler.php:165 +#, fuzzy msgid "Unable to read/write the file (%s)" msgstr "Unable to read/write the file (%s)" #: lib/SP/Storage/File/FileHandler.php:101 +#, fuzzy msgid "Unable to open the file (%s)" msgstr "Unable to open the file (%s)" #: lib/SP/Storage/File/FileHandler.php:119 +#, fuzzy msgid "Unable to obtain a lock (%s)" msgstr "Unable to obtain a lock (%s)" #: lib/SP/Storage/File/FileHandler.php:134 #: lib/SP/Storage/File/FileHandler.php:148 +#, fuzzy msgid "Unable to read from file (%s)" msgstr "Unable to read from file (%s)" #: lib/SP/Storage/File/FileHandler.php:207 +#, fuzzy msgid "Unable to close the file (%s)" msgstr "Unable to close the file (%s)" #: lib/SP/Storage/File/FileHandler.php:261 +#, fuzzy msgid "Unable to write in file (%s)" msgstr "Unable to write in file (%s)" @@ -4718,10 +4765,12 @@ msgstr "ファイルが見つかりませんでした(%s)" #: lib/SP/Storage/File/FileHandler.php:301 #: lib/SP/Storage/File/FileHandler.php:356 +#, fuzzy msgid "Unable to read/write file (%s)" msgstr "Unable to read/write file (%s)" #: lib/SP/Storage/File/FileHandler.php:328 +#, fuzzy msgid "Unable to delete file (%s)" msgstr "Unable to delete file (%s)" @@ -4738,6 +4787,7 @@ msgid "Socket not initialized" msgstr "Socket not initialized" #: lib/SP/Util/Connection.php:164 +#, fuzzy msgid "Error while sending the data" msgstr "Error while sending the data" @@ -4747,63 +4797,56 @@ msgstr "Option unavailable" #: lib/SP/Util/ErrorUtil.php:168 lib/SP/Util/ErrorUtil.php:175 msgid "An exception occured" -msgstr "An exception occured" +msgstr "例外が発生しました" #: lib/SP/Util/ImageUtil.php:65 msgid "Invalid image" msgstr "Invalid image" #: app/resources/strings.js.inc:27 -#, fuzzy msgid "There was an error" -msgstr "認証エラー" +msgstr "エラーが発生しました" #: app/resources/strings.js.inc:28 app/resources/strings.js.inc:86 -#, fuzzy msgid "Session finished" -msgstr "インポートが完了しました" +msgstr "セッションが終了しました" #: app/resources/strings.js.inc:29 msgid "Delete account?" msgstr "アカウントを削除しますか?" #: app/resources/strings.js.inc:30 -#, fuzzy msgid "Delete user?" -msgstr "ユーザーを削除" +msgstr "ユーザーを削除しますか?" #: app/resources/strings.js.inc:31 msgid "You should save configuration in order to take effect" -msgstr "" +msgstr "保存するまで、有効化されません。" #: app/resources/strings.js.inc:32 -#, fuzzy msgid "Generated Password" -msgstr "仮マスターパスワードの発行" +msgstr "パスワードを生成" #: app/resources/strings.js.inc:33 -#, fuzzy msgid "High level" -msgstr "Level" +msgstr "High level" #: app/resources/strings.js.inc:34 #, fuzzy msgid "Average level" -msgstr "Level" +msgstr "Average level" #: app/resources/strings.js.inc:35 -#, fuzzy msgid "Low level" -msgstr "Level" +msgstr "Low level" #: app/resources/strings.js.inc:36 -#, fuzzy msgid "Very High level" -msgstr "Level" +msgstr "Very High level" #: app/resources/strings.js.inc:37 msgid "You should use at least 8 characters" -msgstr "" +msgstr "8文字以上にしてください" #: app/resources/strings.js.inc:38 msgid "Delete item?" @@ -4816,28 +4859,24 @@ msgid "Page not found" msgstr "Page not found" #: app/resources/strings.js.inc:41 -#, fuzzy msgid "Delete file?" -msgstr "ファイルを削除" +msgstr "ファイルを削除しますか?" #: app/resources/strings.js.inc:42 msgid "Your browser does not support HTML5 file uploads" -msgstr "" +msgstr "お使いのブラウザはHTML5によるファイルアップロードに対応していません" #: app/resources/strings.js.inc:43 -#, fuzzy msgid "Too many files" -msgstr "マスターパスワードが短すぎます" +msgstr "ファイルが多すぎます" #: app/resources/strings.js.inc:44 -#, fuzzy msgid "File size not allowed" msgstr "ファイルが大きすぎます" #: app/resources/strings.js.inc:45 -#, fuzzy msgid "MIME type not allowed" -msgstr "このMIME Typeを許可する" +msgstr "このMIME Typeを許可されていません" #: app/resources/strings.js.inc:46 msgid "Clear the event log out?" @@ -4987,9 +5026,8 @@ msgid "Delete Favorite" msgstr "お気に入りの解除" #: app/resources/strings.js.inc:76 -#, fuzzy msgid "Clear Selection" -msgstr "クリア" +msgstr "選択したものをクリア" #. (itstool) path: action/text #: app/modules/web/themes/material-blue/views/account/search-searchbox.inc:81 @@ -5003,15 +5041,13 @@ msgid "Display All" msgstr "全て表示" #: app/resources/strings.js.inc:81 -#, fuzzy msgid "Now" -msgstr "" -"インストール時と同様にフォルダの所有者とパーミッション変更を行ってください" +msgstr "Now" #: app/resources/strings.js.inc:82 msgid "" "This process will import the detected LDAP users. Would you like to continue?" -msgstr "" +msgstr "検出されたLDAPユーザーをインポートしますか?" #: app/resources/strings.js.inc:83 msgid "This action will reset all plugin data. Do you want to continue?" @@ -5019,11 +5055,11 @@ msgstr "初期化すると戻せません、プラグインを初期化します #: app/resources/strings.js.inc:84 msgid "This process could take some time long. Do you wish to continue?" -msgstr "" +msgstr "この処理には時間がかかる場合があります、続行しますか?" #: app/resources/strings.js.inc:87 msgid "Performing task. Please, do not close browser's window/tab." -msgstr "" +msgstr "処理中です、この画面を閉じないでください。" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-password.inc:98 #: app/resources/strings.js.inc:88 @@ -5033,18 +5069,20 @@ msgstr "英字" #: app/resources/strings.js.inc:89 msgid "Cookies disabled. Application won't work properly." msgstr "" +"ブラウザのcookieが無効になっています。無効に設定されているとアプリケーション" +"が正しく動作しないことがあります。" #: app/resources/strings.js.inc:90 msgid "Clipboard not supported by your browser." -msgstr "" +msgstr "お使いのブラウザはクリップボード機能をサポートしていません。" #: app/resources/strings.js.inc:91 msgid "Performing auto-login" -msgstr "" +msgstr "ログイン情報を記憶" #: app/resources/strings.js.inc:92 msgid "There is a more recent version of {0} plugin ({1})" -msgstr "" +msgstr "プラグイン「{0}」にアップデートがあります({1})" #: app/modules/web/themes/material-blue/views/main/update.inc:30 #: app/resources/strings.js.inc:93 @@ -5058,7 +5096,7 @@ msgstr "アップデート中時にエラーが発生しました" #: app/resources/strings.js.inc:95 msgid "sysPass Notices" -msgstr "" +msgstr "sysPass通知" #: app/resources/strings.js.inc:96 msgid "Clear the tracks out?" @@ -5401,7 +5439,7 @@ msgstr "データは暗号化されずに保存されます" #: app/modules/web/themes/material-blue/views/config/ldap.inc:12 #: app/modules/web/themes/material-blue/views/config/wiki-dokuwiki.inc:12 msgid "The '%s' extension is unavailable" -msgstr "“%s” プラグインが動作していません" +msgstr "エクステンション「%s」が動作していません" #: app/modules/web/themes/material-blue/views/config/accounts.inc:16 msgid "This extension is needed to display passwords as images" @@ -5709,7 +5747,7 @@ msgstr "最終変更" #: app/modules/web/themes/material-blue/views/config/encryption.inc:46 #: app/modules/web/themes/material-blue/views/main/upgrade.inc:142 msgid "Current Master Password" -msgstr "Current Master Password" +msgstr "現在のマスターパスワード" #: app/modules/web/themes/material-blue/views/config/encryption.inc:52 #: app/modules/web/themes/material-blue/views/config/encryption.inc:61 @@ -5851,7 +5889,7 @@ msgstr "Basic認証を用いて自動ログインする" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:54 msgid "Domain" -msgstr "Domain" +msgstr "ドメイン" #: app/modules/web/themes/material-blue/views/config/general-auth.inc:59 msgid "" @@ -6181,7 +6219,7 @@ msgstr "対応しているのはCSVファイルのみです。" #: app/modules/web/themes/material-blue/views/config/info.inc:14 msgid "Application Information" -msgstr "Application Information" +msgstr "アプリケーション情報" #: app/modules/web/themes/material-blue/views/config/info.inc:20 #: app/modules/web/themes/material-blue/views/config/info.inc:23 @@ -6204,7 +6242,7 @@ msgstr "Extensions" #: app/modules/web/themes/material-blue/views/config/info.inc:61 msgid "Unavailable extensions" -msgstr "Unavailable extensions" +msgstr "利用できないエクステンション" #: app/modules/web/themes/material-blue/views/config/info.inc:65 msgid "Used Memory" @@ -6276,13 +6314,12 @@ msgid "This method will use MySQL as fallback." msgstr "有効化できない場合はMySQLを用いた認証に切り替わります。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:65 -#, fuzzy msgid "Active Directory" -msgstr "LDAP directory (OpenLDAP, eDirectory, Active Directory, freeIPA, etc)" +msgstr "Active Directory" #: app/modules/web/themes/material-blue/views/config/ldap.inc:67 msgid "Enables Active Directory LDAP connection mode." -msgstr "" +msgstr "Active DirectoryLDAP接続モードの有効化。" #: app/modules/web/themes/material-blue/views/config/ldap.inc:67 msgid "Enables the connection over TLS" @@ -6301,6 +6338,7 @@ msgid "Examples:" msgstr "例:" #: app/modules/web/themes/material-blue/views/config/ldap.inc:124 +#, fuzzy msgid "Bind User" msgstr "Bind User" @@ -6418,9 +6456,8 @@ msgstr "セキュリティー" #: app/modules/web/themes/material-blue/views/config/mail.inc:148 #: app/modules/web/themes/material-blue/views/config/mail.inc:156 -#, fuzzy msgid "Recipient email address" -msgstr "送信元アドレス" +msgstr "送信先アドレス" #: app/modules/web/themes/material-blue/views/config/mail.inc:162 #: app/modules/web/themes/material-blue/views/config/mail.inc:165 @@ -6527,7 +6564,7 @@ msgstr "アカウント名を連結したリンクを生成します。" #: app/modules/web/themes/material-blue/views/config/wiki.inc:110 #: app/modules/web/themes/material-blue/views/config/wiki.inc:124 msgid "Account name prefix" -msgstr "Account name prefix" +msgstr "アカウント名のプレフィックス" #: app/modules/web/themes/material-blue/views/config/wiki.inc:115 msgid "Prefix to determine which accounts have a link to the Wiki." @@ -6604,6 +6641,7 @@ msgstr "Others" #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:64 #: app/modules/web/themes/material-blue/views/itemshow/account_bulkedit.inc:66 +#, fuzzy msgid "Creator" msgstr "Creator" @@ -6670,7 +6708,7 @@ msgstr "小文字" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:31 msgid "Accounts will be only visible by the user." -msgstr "Accounts will be only visible by the user." +msgstr "メイングループに設定されているユーザーのみが閲覧できます。" #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:33 #: app/modules/web/themes/material-blue/views/itemshow/item_preset-private.inc:52 @@ -6698,16 +6736,17 @@ msgid "" "Assignment priority if values match with others assigned by user, group or " "profile." msgstr "" -"Assignment priority if values match with others assigned by user, group or " -"profile." +"値がユーザー、グループ、またはプロファイルによって割り当てられた他の値と一致" +"する場合、どのプロファイルの優先度を設定できます。" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:100 +#, fuzzy msgid "Assignment Priority" msgstr "Assignment Priority" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:122 msgid "Enforces the values to be set either on creating or updating an item." -msgstr "Enforces the values to be set either on creating or updating an item." +msgstr "アイテムの作成時・更新時にこの値で上書きします。" #: app/modules/web/themes/material-blue/views/itemshow/item_preset.inc:124 msgid "Values will be merged with the existing ones." @@ -6730,7 +6769,7 @@ msgstr "Use" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:44 msgid "Full username" -msgstr "Full username" +msgstr "フルネーム" #: app/modules/web/themes/material-blue/views/itemshow/user.inc:58 msgid "Session login" @@ -6785,9 +6824,10 @@ msgstr "利用したアカウント" #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:548 #: app/modules/web/themes/material-blue/views/itemshow/user_profile.inc:550 msgid "Used by" -msgstr "" +msgstr "Used by" #: app/modules/web/themes/material-blue/views/itemshow/user_group.inc:108 +#, fuzzy msgid "(*) Listed in group" msgstr "(*) Listed in group" @@ -6953,7 +6993,7 @@ msgstr "DB Update" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:22 msgid "Application Update" -msgstr "Application Update" +msgstr "アプリケーションのアプデート" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:29 #: app/modules/web/themes/material-blue/views/upgrade/index.inc:28 @@ -6980,23 +7020,23 @@ msgstr "If items IDs are not set, they will be created." #: app/modules/web/themes/material-blue/views/main/upgrade.inc:74 msgid "Enter a valid user ID for the accounts" -msgstr "Enter a valid user ID for the accounts" +msgstr "有効なユーザーIDを入力してください" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:85 msgid "Enter a valid category ID for the accounts" -msgstr "Enter a valid category ID for the accounts" +msgstr "有効なカテゴリーIDを入力してください" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:96 msgid "Enter a valid client ID for the accounts" -msgstr "Enter a valid client ID for the accounts" +msgstr "有効なクライアントIDを入力してください" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:108 msgid "Enter a valid group ID for the users" -msgstr "Enter a valid group ID for the users" +msgstr "有効なグループIDを入力してください" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:118 msgid "Enter a valid profile ID for the users" -msgstr "Enter a valid profile ID for the users" +msgstr "有効なプロフィールIDを入力してください" #: app/modules/web/themes/material-blue/views/main/upgrade.inc:128 msgid "" @@ -7252,244 +7292,203 @@ msgstr "ファイル一覧" #. (itstool) path: action/text #: app/resources/actions.xml:283 -#, fuzzy msgid "Add Wiki" -msgstr "Add" +msgstr "Add Wiki" #. (itstool) path: action/text #: app/resources/actions.xml:289 -#, fuzzy msgid "Edit Wiki" -msgstr "Edit" +msgstr "Edit Wiki" #. (itstool) path: action/text #: app/resources/actions.xml:295 -#, fuzzy msgid "Delete Wiki" -msgstr "Delete" +msgstr "Delete Wiki" #. (itstool) path: action/text #: app/resources/actions.xml:361 -#, fuzzy msgid "New API Token" -msgstr "User's API token" +msgstr "New API Token" #. (itstool) path: action/text #: app/resources/actions.xml:367 -#, fuzzy msgid "View API Token" -msgstr "User's API token" +msgstr "View API Token" #. (itstool) path: action/text #: app/resources/actions.xml:373 -#, fuzzy msgid "Edit API Token" -msgstr "User's API token" +msgstr "Edit API Token" #. (itstool) path: action/text #: app/resources/actions.xml:379 -#, fuzzy msgid "Delete API Token" -msgstr "User's API token" +msgstr "Delete API Token" #. (itstool) path: action/text #: app/resources/actions.xml:385 -#, fuzzy msgid "Search for API Token" -msgstr "User's API token" +msgstr "Search for API Token" #. (itstool) path: action/text #: app/resources/actions.xml:391 -#, fuzzy msgid "New Custom Field" -msgstr "カスタムフィ-ルドが存在しません" +msgstr "新規カスタムフィ-ルドの作成" #. (itstool) path: action/text #: app/resources/actions.xml:397 -#, fuzzy msgid "Show Custom Field" -msgstr "カスタフィールドの作成時にエラーが発生しました" +msgstr "カスタフィールドを表示" #. (itstool) path: action/text #: app/resources/actions.xml:403 -#, fuzzy msgid "Edit Custom Field" -msgstr "カスタムフィ-ルドが存在しません" +msgstr "カスタムフィ-ルドの編集" #. (itstool) path: action/text #: app/resources/actions.xml:409 -#, fuzzy msgid "Delete Custom Field" -msgstr "カスタムフィ-ルドが存在しません" +msgstr "カスタムフィ-ルドの削除" #. (itstool) path: action/text #: app/resources/actions.xml:415 -#, fuzzy msgid "Search for Custom Field" -msgstr "フィールドを検索" +msgstr "カスタムフィールドを検索" #. (itstool) path: action/text #: app/resources/actions.xml:427 -#, fuzzy msgid "Show Public Link" msgstr "共有リンク" #. (itstool) path: action/text #: app/resources/actions.xml:445 -#, fuzzy msgid "Search for Public Link" msgstr "共有リンクを検索" #. (itstool) path: action/text #: app/resources/actions.xml:553 -#, fuzzy msgid "Enable Plugin" -msgstr "Enable" +msgstr "Enable Plugin" #. (itstool) path: action/text #: app/resources/actions.xml:559 -#, fuzzy msgid "Disable Plugin" -msgstr "Disable" +msgstr "Disable Plugin" #. (itstool) path: action/text #: app/resources/actions.xml:565 -#, fuzzy msgid "Reset Plugin" msgstr "プラグインをリセット" #. (itstool) path: action/text #: app/resources/actions.xml:601 -#, fuzzy msgid "Edit User Password" msgstr "パスワードの編集" #. (itstool) path: action/text #: app/resources/actions.xml:673 -#, fuzzy msgid "User Configuration" -msgstr "設定" +msgstr "ユーザー設定" #. (itstool) path: action/text #: app/resources/actions.xml:679 -#, fuzzy msgid "General Preferences" -msgstr "設定" +msgstr "一般設定" #. (itstool) path: action/text #: app/resources/actions.xml:703 -#, fuzzy msgid "Accounts Configuration" -msgstr "アカウントの設定ができます" +msgstr "アカウントの設定" #. (itstool) path: action/text #: app/resources/actions.xml:709 -#, fuzzy msgid "Wiki Configuration" -msgstr "Wikiの設定ができます" +msgstr "Wikiの設定" #. (itstool) path: action/text #: app/resources/actions.xml:715 -#, fuzzy msgid "Encryption Configuration" -msgstr "暗号化" +msgstr "暗号化設定" #. (itstool) path: action/text #: app/resources/actions.xml:721 -#, fuzzy msgid "Update Hash" -msgstr "マスターパスワードのハッシュを再生成" +msgstr "ハッシュの再生成" #. (itstool) path: action/text #: app/resources/actions.xml:727 msgid "Temporary Master Password" -msgstr "" +msgstr "仮マスターパスワード" #. (itstool) path: action/text #: app/resources/actions.xml:733 -#, fuzzy msgid "Backup Configuration" msgstr "設定のバックアップ" #. (itstool) path: action/text #: app/resources/actions.xml:745 -#, fuzzy msgid "Import Configuration" -msgstr "Configuration" +msgstr "設定をインポート" #. (itstool) path: action/text #: app/resources/actions.xml:751 -#, fuzzy msgid "CSV Import" -msgstr "読み込ませるCSVファイルのラベルは以下のようにしてください。" +msgstr "CSV Import" #. (itstool) path: action/text #: app/resources/actions.xml:757 -#, fuzzy msgid "XML Import" -msgstr "CSV/XML Import" +msgstr "XML Import" #. (itstool) path: action/text #: app/resources/actions.xml:763 -#, fuzzy msgid "Export Configuration" -msgstr "設定" +msgstr "設定のエクスポート" #. (itstool) path: action/text #: app/resources/actions.xml:769 -#, fuzzy msgid "Export" -msgstr "Export Accounts" +msgstr "Export" #. (itstool) path: action/text #: app/resources/actions.xml:775 -#, fuzzy msgid "Email Configuration" -msgstr "" -"General - サイト・アカウント・Wiki・LDAP・メールに冠する全ての設定を変更する" -"ことを許可します" +msgstr "メール設定" #. (itstool) path: action/text #: app/resources/actions.xml:781 -#, fuzzy msgid "LDAP Configuration" -msgstr "LDAPの設定ができます" +msgstr "LDAPの設定" #. (itstool) path: action/text #: app/resources/actions.xml:787 -#, fuzzy msgid "LDAP synchronization" -msgstr "LDAP方式の場合" +msgstr "LDAP synchronization" #. (itstool) path: action/text #: app/resources/actions.xml:793 -#, fuzzy msgid "Account Management (H)" -msgstr "マスターパスワードの変更履歴" +msgstr "アカウント管理(H)" #. (itstool) path: action/text #: app/resources/actions.xml:823 -#, fuzzy msgid "Create Notification" -msgstr "通知" +msgstr "通知の作成" #. (itstool) path: action/text #: app/resources/actions.xml:853 -#, fuzzy msgid "Preset Values Management" -msgstr "プリセット" +msgstr "プリセットの管理" #. (itstool) path: action/text #: app/resources/actions.xml:889 -#, fuzzy msgid "Tracks Management" -msgstr "Tracks" +msgstr "Track管理" #. (itstool) path: action/text #: app/resources/actions.xml:901 -#, fuzzy msgid "Unlock track" -msgstr "Track unlocked" +msgstr "Unlock track" #. (itstool) path: action/text #: app/resources/actions.xml:907 @@ -7522,54 +7521,45 @@ msgid "Text" msgstr "テキスト" #: app/modules/web/Controllers/AccountFileController.php:192 -#, fuzzy msgid "There aren't any allowed extensions" -msgstr "このMIME typeは許可されていません" +msgstr "このエクステンションは許可されていません" #: app/modules/web/Controllers/AccountFileController.php:211 -#, fuzzy msgid "Extension: %s" -msgstr "“%s” プラグインが動作していません" +msgstr "Extension: %s" #: app/modules/web/Controllers/AccountFileController.php:226 -#, fuzzy msgid "Maximum size: %s" msgstr "最大ファイルサイズ" #: lib/SP/Services/Import/FileImport.php:102 -#, fuzzy msgid "Please, check the file extension" -msgstr "ファイルのフォーマットを確認してください" +msgstr "ファイルを確認してください" #: lib/SP/Storage/File/FileCachePacked.php:144 -#, fuzzy msgid "Data not loaded" -msgstr "ロード済みのプラグイン" +msgstr "データを読み込んでいません" #: app/config/strings.js.inc:45 -#, fuzzy msgid "Extension not allowed" -msgstr "Extension" +msgstr "Extension not allowed" #: app/modules/web/themes/material-blue/views/config/accounts.inc:307 #: app/modules/web/themes/material-blue/views/config/accounts.inc:320 -#, fuzzy msgid "Allowed file extensions" -msgstr "この種類のファイルは許可されていません" +msgstr "この種類のファイルは利用できます" #: app/modules/web/themes/material-blue/views/config/accounts.inc:312 -#, fuzzy msgid "Allowed file extensions for uploading." -msgstr "このMIME Typeのアップロードは許可されています。" +msgstr "このMIME Typeのファイルはアップロードできます。" #: app/modules/web/themes/material-blue/views/config/accounts.inc:315 -#, fuzzy msgid "" "Write the extension and press enter to add. Remember to save the " "configuration." msgstr "" -"Write the extension and press enter to add. Remember to save the " -"configuration." +"エクステンションを記述し、Enterキーを押して追加します。 構成を保存することを" +"忘れないでください。" #: lib/SP/Providers/Auth/Ldap/Ldap.php:110 msgid "LDAP type not set" From a55548f4c48495c42f57c7c8ca3e553697449fe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 20 Dec 2020 15:25:20 +0100 Subject: [PATCH 27/36] * [MOD] Update dependencies * [FIX] Fix displaying install page when the app is already installed. Thanks to @kmmndr for the notice. Closes #1629 * [FIX] Fix issue when dropping DB user after an errored installation. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- .../web/Controllers/InstallController.php | 6 + composer.lock | 2089 +++++++++++++---- lib/SP/Services/Install/Installer.php | 4 +- lib/SP/Services/Install/MySQL.php | 66 +- 4 files changed, 1649 insertions(+), 516 deletions(-) diff --git a/app/modules/web/Controllers/InstallController.php b/app/modules/web/Controllers/InstallController.php index b403af88..68146dd2 100644 --- a/app/modules/web/Controllers/InstallController.php +++ b/app/modules/web/Controllers/InstallController.php @@ -49,6 +49,12 @@ final class InstallController extends ControllerBase */ public function indexAction() { + if ($this->configData->isInstalled()) { + $this->router->response() + ->redirect('index.php?r=login'); + return; + } + $layoutHelper = $this->dic->get(LayoutHelper::class); $layoutHelper->getPublicLayout('index', 'install'); diff --git a/composer.lock b/composer.lock index a64a7de0..d7559937 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "91dab3bfbcce096704aa0735ad728ad5", + "content-hash": "bed785c07fc2768f6e410cd762b7e4ff", "packages": [ { "name": "ademarre/binary-to-text-php", @@ -23,6 +23,7 @@ "require": { "php": ">=5.2.14" }, + "default-branch": true, "type": "library", "autoload": { "psr-0": { @@ -49,6 +50,10 @@ "octal", "rfc4648" ], + "support": { + "issues": "https://github.com/ademarre/binary-to-text-php/issues", + "source": "https://github.com/ademarre/binary-to-text-php/tree/v3.0.0" + }, "time": "2015-02-27T05:11:22+00:00" }, { @@ -112,34 +117,41 @@ "security", "symmetric key cryptography" ], + "support": { + "issues": "https://github.com/defuse/php-encryption/issues", + "source": "https://github.com/defuse/php-encryption/tree/master" + }, "time": "2018-07-24T23:27:56+00:00" }, { "name": "doctrine/annotations", - "version": "v1.4.0", + "version": "1.11.1", "source": { "type": "git", "url": "https://github.com/doctrine/annotations.git", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97" + "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/annotations/zipball/54cacc9b81758b14e3ce750f205a393d52339e97", - "reference": "54cacc9b81758b14e3ce750f205a393d52339e97", + "url": "https://api.github.com/repos/doctrine/annotations/zipball/ce77a7ba1770462cd705a91a151b6c3746f9c6ad", + "reference": "ce77a7ba1770462cd705a91a151b6c3746f9c6ad", "shasum": "" }, "require": { "doctrine/lexer": "1.*", - "php": "^5.6 || ^7.0" + "ext-tokenizer": "*", + "php": "^7.1 || ^8.0" }, "require-dev": { "doctrine/cache": "1.*", - "phpunit/phpunit": "^5.7" + "doctrine/coding-standard": "^6.0 || ^8.1", + "phpstan/phpstan": "^0.12.20", + "phpunit/phpunit": "^7.5 || ^9.1.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4.x-dev" + "dev-master": "1.11.x-dev" } }, "autoload": { @@ -152,6 +164,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -160,10 +176,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -174,43 +186,52 @@ } ], "description": "Docblock Annotations Parser", - "homepage": "http://www.doctrine-project.org", + "homepage": "https://www.doctrine-project.org/projects/annotations.html", "keywords": [ "annotations", "docblock", "parser" ], - "time": "2017-02-24T16:22:25+00:00" + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/1.11.1" + }, + "time": "2020-10-26T10:28:16+00:00" }, { "name": "doctrine/cache", - "version": "v1.6.2", + "version": "1.10.2", "source": { "type": "git", "url": "https://github.com/doctrine/cache.git", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b" + "reference": "13e3381b25847283a91948d04640543941309727" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/cache/zipball/eb152c5100571c7a45470ff2a35095ab3f3b900b", - "reference": "eb152c5100571c7a45470ff2a35095ab3f3b900b", + "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727", + "reference": "13e3381b25847283a91948d04640543941309727", "shasum": "" }, "require": { - "php": "~5.5|~7.0" + "php": "~7.1 || ^8.0" }, "conflict": { "doctrine/common": ">2.2,<2.4" }, "require-dev": { - "phpunit/phpunit": "~4.8|~5.0", - "predis/predis": "~1.0", - "satooshi/php-coveralls": "~0.6" + "alcaeus/mongo-php-adapter": "^1.1", + "doctrine/coding-standard": "^6.0", + "mongodb/mongodb": "^1.1", + "phpunit/phpunit": "^7.0", + "predis/predis": "~1.0" + }, + "suggest": { + "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6.x-dev" + "dev-master": "1.9.x-dev" } }, "autoload": { @@ -223,6 +244,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -231,10 +256,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -244,44 +265,66 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Caching library offering an object-oriented API for many cache backends", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.", + "homepage": "https://www.doctrine-project.org/projects/cache.html", "keywords": [ + "abstraction", + "apcu", "cache", - "caching" + "caching", + "couchdb", + "memcached", + "php", + "redis", + "xcache" ], - "time": "2017-07-22T12:49:21+00:00" + "support": { + "issues": "https://github.com/doctrine/cache/issues", + "source": "https://github.com/doctrine/cache/tree/1.10.x" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache", + "type": "tidelift" + } + ], + "time": "2020-07-07T18:54:01+00:00" }, { "name": "doctrine/collections", - "version": "v1.4.0", + "version": "1.6.7", "source": { "type": "git", "url": "https://github.com/doctrine/collections.git", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba" + "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/collections/zipball/1a4fb7e902202c33cce8c55989b945612943c2ba", - "reference": "1a4fb7e902202c33cce8c55989b945612943c2ba", + "url": "https://api.github.com/repos/doctrine/collections/zipball/55f8b799269a1a472457bd1a41b4f379d4cfba4a", + "reference": "55f8b799269a1a472457bd1a41b4f379d4cfba4a", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1.3 || ^8.0" }, "require-dev": { - "doctrine/coding-standard": "~0.1@dev", - "phpunit/phpunit": "^5.7" + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan-shim": "^0.9.2", + "phpunit/phpunit": "^7.0", + "vimeo/psalm": "^3.8.1" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3.x-dev" - } - }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Collections\\": "lib/" + "psr-4": { + "Doctrine\\Common\\Collections\\": "lib/Doctrine/Common/Collections" } }, "notification-url": "https://packagist.org/downloads/", @@ -289,6 +332,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -297,10 +344,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -310,14 +353,19 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Collections Abstraction library", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.", + "homepage": "https://www.doctrine-project.org/projects/collections.html", "keywords": [ "array", "collections", - "iterator" + "iterators", + "php" ], - "time": "2017-01-03T10:49:41+00:00" + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/1.6.7" + }, + "time": "2020-07-27T17:53:49+00:00" }, { "name": "doctrine/common", @@ -390,37 +438,46 @@ "persistence", "spl" ], + "support": { + "issues": "https://github.com/doctrine/common/issues", + "source": "https://github.com/doctrine/common/tree/v2.7.3" + }, "time": "2017-07-22T08:35:12+00:00" }, { "name": "doctrine/inflector", - "version": "v1.2.0", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c", + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c", "shasum": "" }, "require": { - "php": "^7.0" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^6.2" + "doctrine/coding-standard": "^7.0", + "phpstan/phpstan": "^0.11", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-strict-rules": "^0.11", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector", + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -428,6 +485,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -436,10 +497,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -449,40 +506,66 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Common String Manipulations with regard to casing and singular/plural rules.", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", "keywords": [ "inflection", - "pluralize", - "singularize", - "string" + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" ], - "time": "2017-07-22T12:18:28+00:00" + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/1.4.x" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2020-05-29T07:19:59+00:00" }, { "name": "doctrine/lexer", - "version": "1.0.2", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8" + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/1febd6c3ef84253d7c815bed85fc622ad207a9f8", - "reference": "1febd6c3ef84253d7c815bed85fc622ad207a9f8", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^4.5" + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { @@ -495,14 +578,14 @@ "MIT" ], "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" @@ -517,31 +600,51 @@ "parser", "php" ], - "time": "2019-06-08T11:03:04+00:00" + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2020-05-25T17:44:05+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "6.3.3", + "version": "6.5.5", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba" + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/407b0cb880ace85c9b63c5f9551db498cb2d50ba", - "reference": "407b0cb880ace85c9b63c5f9551db498cb2d50ba", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", "shasum": "" }, "require": { + "ext-json": "*", "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.4", - "php": ">=5.5" + "guzzlehttp/psr7": "^1.6.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.17.0" }, "require-dev": { "ext-curl": "*", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", - "psr/log": "^1.0" + "psr/log": "^1.1" }, "suggest": { "psr/log": "Required for using the Log middleware" @@ -549,16 +652,16 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "6.3-dev" + "dev-master": "6.5-dev" } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\": "src/" - } + }, + "files": [ + "src/functions_include.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -582,27 +685,31 @@ "rest", "web service" ], - "time": "2018-04-22T15:46:56+00:00" + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/6.5" + }, + "time": "2020-06-16T21:01:06+00:00" }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -633,20 +740,24 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.0" + }, + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.6.1", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/239400de7a173fe9901b9ac7c06497751f00727a", - "reference": "239400de7a173fe9901b9ac7c06497751f00727a", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { @@ -659,15 +770,15 @@ }, "require-dev": { "ext-zlib": "*", - "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.8" + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" }, "suggest": { - "zendframework/zend-httphandlerrunner": "Emit PSR-7 responses" + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -704,10 +815,14 @@ "uri", "url" ], - "time": "2019-07-01T23:21:34+00:00" + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.7.0" + }, + "time": "2020-09-30T07:37:11+00:00" }, { - "name": "jeremeamia/SuperClosure", + "name": "jeremeamia/superclosure", "version": "2.4.0", "source": { "type": "git", @@ -762,6 +877,11 @@ "serialize", "tokenizer" ], + "support": { + "issues": "https://github.com/jeremeamia/super_closure/issues", + "source": "https://github.com/jeremeamia/super_closure/tree/master" + }, + "abandoned": "opis/closure", "time": "2018-03-21T22:21:57+00:00" }, { @@ -818,20 +938,24 @@ "routing", "sinatra" ], + "support": { + "issues": "https://github.com/klein/klein.php/issues", + "source": "https://github.com/klein/klein.php/tree/master" + }, "time": "2017-02-01T23:08:58+00:00" }, { "name": "monolog/monolog", - "version": "1.24.0", + "version": "1.26.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266" + "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", - "reference": "bfc9ebb28f97e7a24c45bdc3f0ff482e47bb0266", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33", + "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33", "shasum": "" }, "require": { @@ -845,11 +969,10 @@ "aws/aws-sdk-php": "^2.4.9 || ^3.0", "doctrine/couchdb": "~1.0@dev", "graylog2/gelf-php": "~1.0", - "jakub-onderka/php-parallel-lint": "0.9", "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", + "phpstan/phpstan": "^0.12.59", "phpunit/phpunit": "~4.5", - "phpunit/phpunit-mock-objects": "2.3.0", "ruflin/elastica": ">=0.90 <3.0", "sentry/sentry": "^0.13", "swiftmailer/swiftmailer": "^5.3|^6.0" @@ -868,11 +991,6 @@ "sentry/sentry": "Allow sending log messages to a Sentry server" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-4": { "Monolog\\": "src/Monolog" @@ -896,20 +1014,34 @@ "logging", "psr-3" ], - "time": "2018-11-05T09:00:11+00:00" + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/1.26.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2020-12-14T12:56:38+00:00" }, { "name": "nikic/php-parser", - "version": "v4.2.3", + "version": "v4.10.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "e612609022e935f3d0337c1295176505b41188c8" + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/e612609022e935f3d0337c1295176505b41188c8", - "reference": "e612609022e935f3d0337c1295176505b41188c8", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", "shasum": "" }, "require": { @@ -917,7 +1049,8 @@ "php": ">=7.0" }, "require-dev": { - "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0" + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -925,7 +1058,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "4.2-dev" + "dev-master": "4.9-dev" } }, "autoload": { @@ -947,24 +1080,28 @@ "parser", "php" ], - "time": "2019-08-12T20:17:41+00:00" + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + }, + "time": "2020-12-20T10:01:03+00:00" }, { "name": "paragonie/random_compat", - "version": "v9.99.99", + "version": "v9.99.100", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95" + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", - "reference": "84b4dfb120c6f9b4ff7b3685f9b8f1aa365a0c95", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a", + "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a", "shasum": "" }, "require": { - "php": "^7" + "php": ">= 7" }, "require-dev": { "phpunit/phpunit": "4.*|5.*", @@ -992,28 +1129,35 @@ "pseudorandom", "random" ], - "time": "2018-07-02T15:55:56+00:00" + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "time": "2020-10-15T08:29:30+00:00" }, { "name": "php-di/invoker", - "version": "2.0.0", + "version": "2.2.0", "source": { "type": "git", "url": "https://github.com/PHP-DI/Invoker.git", - "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a" + "reference": "e08a7c87068daeaeef464b95d81643ea530bc535" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/540c27c86f663e20fe39a24cd72fa76cdb21d41a", - "reference": "540c27c86f663e20fe39a24cd72fa76cdb21d41a", + "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/e08a7c87068daeaeef464b95d81643ea530bc535", + "reference": "e08a7c87068daeaeef464b95d81643ea530bc535", "shasum": "" }, "require": { + "php": ">=7.3", "psr/container": "~1.0" }, "require-dev": { "athletic/athletic": "~0.1.8", - "phpunit/phpunit": "~4.5" + "mnapoli/hard-mode": "~0.3.0", + "phpunit/phpunit": "^9.0" }, "type": "library", "autoload": { @@ -1035,20 +1179,30 @@ "invoke", "invoker" ], - "time": "2017-03-20T19:28:22+00:00" + "support": { + "issues": "https://github.com/PHP-DI/Invoker/issues", + "source": "https://github.com/PHP-DI/Invoker/tree/2.2.0" + }, + "funding": [ + { + "url": "https://github.com/mnapoli", + "type": "github" + } + ], + "time": "2020-10-12T12:15:50+00:00" }, { "name": "php-di/php-di", - "version": "6.0.9", + "version": "6.0.11", "source": { "type": "git", "url": "https://github.com/PHP-DI/PHP-DI.git", - "reference": "00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1" + "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1", - "reference": "00a5eb0f0dd94deabb71acfbf44c37b80d53d0a1", + "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", + "reference": "9bdcc2f41f5fb700ddd01bc4fa8d5bd7b3f94620", "shasum": "" }, "require": { @@ -1098,27 +1252,32 @@ "ioc", "psr11" ], - "time": "2019-07-08T07:24:22+00:00" + "support": { + "issues": "https://github.com/PHP-DI/PHP-DI/issues", + "source": "https://github.com/PHP-DI/PHP-DI/tree/master" + }, + "time": "2019-12-12T07:58:02+00:00" }, { "name": "php-di/phpdoc-reader", - "version": "2.1.0", + "version": "2.2.1", "source": { "type": "git", "url": "https://github.com/PHP-DI/PhpDocReader.git", - "reference": "7d0de60b9341933c8afd172a6255cd7557601e0e" + "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/7d0de60b9341933c8afd172a6255cd7557601e0e", - "reference": "7d0de60b9341933c8afd172a6255cd7557601e0e", + "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c", + "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c", "shasum": "" }, "require": { - "php": ">=5.4.0" + "php": ">=7.2.0" }, "require-dev": { - "phpunit/phpunit": "~4.6" + "mnapoli/hard-mode": "~0.3.0", + "phpunit/phpunit": "^8.5|^9.0" }, "type": "library", "autoload": { @@ -1135,35 +1294,39 @@ "phpdoc", "reflection" ], - "time": "2018-02-18T17:39:01+00:00" + "support": { + "issues": "https://github.com/PHP-DI/PhpDocReader/issues", + "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1" + }, + "time": "2020-10-12T12:39:22+00:00" }, { "name": "phpmailer/phpmailer", - "version": "v6.0.7", + "version": "v6.2.0", "source": { "type": "git", "url": "https://github.com/PHPMailer/PHPMailer.git", - "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59" + "reference": "e38888a75c070304ca5514197d4847a59a5c853f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/0c41a36d4508d470e376498c1c0c527aa36a2d59", - "reference": "0c41a36d4508d470e376498c1c0c527aa36a2d59", + "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e38888a75c070304ca5514197d4847a59a5c853f", + "reference": "e38888a75c070304ca5514197d4847a59a5c853f", "shasum": "" }, "require": { "ext-ctype": "*", "ext-filter": "*", + "ext-hash": "*", "php": ">=5.5.0" }, "require-dev": { - "doctrine/annotations": "1.2.*", - "friendsofphp/php-cs-fixer": "^2.2", - "phpdocumentor/phpdocumentor": "2.*", - "phpunit/phpunit": "^4.8 || ^5.7", - "zendframework/zend-eventmanager": "3.0.*", - "zendframework/zend-i18n": "2.7.3", - "zendframework/zend-serializer": "2.7.*" + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "doctrine/annotations": "^1.2", + "phpcompatibility/php-compatibility": "^9.3.5", + "roave/security-advisories": "dev-latest", + "squizlabs/php_codesniffer": "^3.5.6", + "yoast/phpunit-polyfills": "^0.2.0" }, "suggest": { "ext-mbstring": "Needed to send email in multibyte encoding charset", @@ -1181,17 +1344,17 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "LGPL-2.1" + "LGPL-2.1-only" ], "authors": [ - { - "name": "Jim Jagielski", - "email": "jimjag@gmail.com" - }, { "name": "Marcus Bointon", "email": "phpmailer@synchromedia.co.uk" }, + { + "name": "Jim Jagielski", + "email": "jimjag@gmail.com" + }, { "name": "Andy Prevost", "email": "codeworxtech@users.sourceforge.net" @@ -1201,20 +1364,30 @@ } ], "description": "PHPMailer is a full-featured email creation and transfer class for PHP", - "time": "2019-02-01T15:04:28+00:00" + "support": { + "issues": "https://github.com/PHPMailer/PHPMailer/issues", + "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.2.0" + }, + "funding": [ + { + "url": "https://github.com/Synchro", + "type": "github" + } + ], + "time": "2020-11-25T15:24:57+00:00" }, { "name": "phpseclib/phpseclib", - "version": "2.0.21", + "version": "2.0.30", "source": { "type": "git", "url": "https://github.com/phpseclib/phpseclib.git", - "reference": "9f1287e68b3f283339a9f98f67515dd619e5bf9d" + "reference": "136b9ca7eebef78be14abf90d65c5e57b6bc5d36" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/9f1287e68b3f283339a9f98f67515dd619e5bf9d", - "reference": "9f1287e68b3f283339a9f98f67515dd619e5bf9d", + "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/136b9ca7eebef78be14abf90d65c5e57b6bc5d36", + "reference": "136b9ca7eebef78be14abf90d65c5e57b6bc5d36", "shasum": "" }, "require": { @@ -1222,8 +1395,7 @@ }, "require-dev": { "phing/phing": "~2.7", - "phpunit/phpunit": "^4.8.35|^5.7|^6.0", - "sami/sami": "~2.0", + "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4", "squizlabs/php_codesniffer": "~2.0" }, "suggest": { @@ -1248,28 +1420,28 @@ "authors": [ { "name": "Jim Wigginton", - "role": "Lead Developer", - "email": "terrafrost@php.net" + "email": "terrafrost@php.net", + "role": "Lead Developer" }, { "name": "Patrick Monnerat", - "role": "Developer", - "email": "pm@datasphere.ch" + "email": "pm@datasphere.ch", + "role": "Developer" }, { "name": "Andreas Fischer", - "role": "Developer", - "email": "bantu@phpbb.com" + "email": "bantu@phpbb.com", + "role": "Developer" }, { "name": "Hans-Jürgen Petrich", - "role": "Developer", - "email": "petrich@tronic-media.com" + "email": "petrich@tronic-media.com", + "role": "Developer" }, { "name": "Graham Campbell", - "role": "Developer", - "email": "graham@alt-three.com" + "email": "graham@alt-three.com", + "role": "Developer" } ], "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.", @@ -1293,7 +1465,25 @@ "x.509", "x509" ], - "time": "2019-07-12T12:53:49+00:00" + "support": { + "issues": "https://github.com/phpseclib/phpseclib/issues", + "source": "https://github.com/phpseclib/phpseclib/tree/2.0.30" + }, + "funding": [ + { + "url": "https://github.com/terrafrost", + "type": "github" + }, + { + "url": "https://www.patreon.com/phpseclib", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib", + "type": "tidelift" + } + ], + "time": "2020-12-17T05:42:04+00:00" }, { "name": "psr/container", @@ -1342,6 +1532,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/master" + }, "time": "2017-02-14T16:28:37+00:00" }, { @@ -1392,20 +1586,23 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { "name": "psr/log", - "version": "1.1.0", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd" + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", - "reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", "shasum": "" }, "require": { @@ -1414,7 +1611,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -1439,7 +1636,10 @@ "psr", "psr-3" ], - "time": "2018-11-20T15:27:04+00:00" + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, + "time": "2020-03-23T09:12:05+00:00" }, { "name": "ralouphie/getallheaders", @@ -1479,6 +1679,10 @@ } ], "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, "time": "2019-03-08T08:55:37+00:00" }, { @@ -1487,12 +1691,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "ea693fa060702164985511acc3ceb5389c9ac761" + "reference": "d5961914bf7f90e81af509b81e51450bff419815" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/ea693fa060702164985511acc3ceb5389c9ac761", - "reference": "ea693fa060702164985511acc3ceb5389c9ac761", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/d5961914bf7f90e81af509b81e51450bff419815", + "reference": "d5961914bf7f90e81af509b81e51450bff419815", "shasum": "" }, "conflict": { @@ -1501,22 +1705,32 @@ "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1", "amphp/artax": "<1.0.6|>=2,<2.0.6", "amphp/http": "<1.0.1", + "amphp/http-client": ">=4,<4.4", "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6", "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99", "aws/aws-sdk-php": ">=3,<3.2.1", + "bagisto/bagisto": "<0.1.5", + "barrelstrength/sprout-base-email": "<1.2.7", + "barrelstrength/sprout-forms": "<3.9", + "baserproject/basercms": ">=4,<=4.3.6|>=4.4,<4.4.1", + "bolt/bolt": "<3.7.1", "brightlocal/phpwhois": "<=4.2.5", + "buddypress/buddypress": "<5.1.2", "bugsnag/bugsnag-laravel": ">=2,<2.0.2", "cakephp/cakephp": ">=1.3,<1.3.18|>=2,<2.4.99|>=2.5,<2.5.99|>=2.6,<2.6.12|>=2.7,<2.7.6|>=3,<3.5.18|>=3.6,<3.6.15|>=3.7,<3.7.7", "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4", "cartalyst/sentry": "<=2.1.6", + "centreon/centreon": "<18.10.8|>=19,<19.4.5", + "cesnet/simplesamlphp-module-proxystatistics": "<3.1", "codeigniter/framework": "<=3.0.6", "composer/composer": "<=1-alpha.11", "contao-components/mediaelement": ">=2.14.2,<2.21.1", "contao/core": ">=2,<3.5.39", - "contao/core-bundle": ">=4,<4.4.39|>=4.5,<4.7.5", + "contao/core-bundle": ">=4,<4.4.52|>=4.5,<4.9.6|= 4.10.0", "contao/listing-bundle": ">=4,<4.4.8", - "contao/newsletter-bundle": ">=4,<4.1", + "datadog/dd-trace": ">=0.30,<0.30.2", "david-garcia/phpwhois": "<=4.3.1", + "derhansen/sf_event_mgt": "<4.3.1|>=5,<5.1.1", "doctrine/annotations": ">=1,<1.2.7", "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1", @@ -1526,112 +1740,184 @@ "doctrine/mongodb-odm": ">=1,<1.0.2", "doctrine/mongodb-odm-bundle": ">=2,<3.0.1", "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1", + "dolibarr/dolibarr": "<11.0.4", "dompdf/dompdf": ">=0.6,<0.6.2", - "drupal/core": ">=7,<7.67|>=8,<8.6.16|>=8.7,<8.7.1|>8.7.3,<8.7.5", - "drupal/drupal": ">=7,<7.67|>=8,<8.6.16|>=8.7,<8.7.1|>8.7.3,<8.7.5", + "drupal/core": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8", + "drupal/drupal": ">=7,<7.74|>=8,<8.8.11|>=8.9,<8.9.9|>=9,<9.0.8", + "endroid/qr-code-bundle": "<3.4.2", + "enshrined/svg-sanitize": "<0.13.1", "erusev/parsedown": "<1.7.2", - "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.4", - "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.13.1|>=6,<6.7.9.1|>=6.8,<6.13.5.1|>=7,<7.2.4.1|>=7.3,<7.3.2.1", - "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.12.3|>=2011,<2017.12.4.3|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3", + "ezsystems/demobundle": ">=5.4,<5.4.6.1", + "ezsystems/ez-support-tools": ">=2.2,<2.2.3", + "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1", + "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1", + "ezsystems/ezplatform": ">=1.7,<1.7.9.1|>=1.13,<1.13.5.1|>=2.5,<2.5.4", + "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6", + "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2.1|>=5,<5.0.1|>=5.1,<5.1.1", + "ezsystems/ezplatform-kernel": ">=1,<1.0.2.1", + "ezsystems/ezplatform-user": ">=1,<1.0.1", + "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.14.2|>=6,<6.7.9.1|>=6.8,<6.13.6.3|>=7,<7.2.4.1|>=7.3,<7.3.2.1|>=7.5,<7.5.7.1", + "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.14.2|>=2011,<2017.12.7.3|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3|>=2019.3,<2019.3.5.1", + "ezsystems/platform-ui-assets-bundle": ">=4.2,<4.2.3", "ezsystems/repository-forms": ">=2.3,<2.3.2.1", "ezyang/htmlpurifier": "<4.1.1", "firebase/php-jwt": "<2", "fooman/tcpdf": "<6.2.22", "fossar/tcpdf-parser": "<6.2.22", + "friendsofsymfony/oauth2-php": "<1.3", "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2", "friendsofsymfony/user-bundle": ">=1.2,<1.3.5", + "friendsoftypo3/mediace": ">=7.6.2,<7.6.5", "fuel/core": "<1.8.1", + "getgrav/grav": "<1.7-beta.8", + "getkirby/cms": ">=3,<3.4.5", + "getkirby/panel": "<2.5.14", + "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3", "gree/jose": "<=2.2", "gregwar/rst": "<1.0.3", "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1", "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10", - "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.42|>=5.6,<5.6.30", - "illuminate/database": ">=4,<4.0.99|>=4.1,<4.1.29", + "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4", + "illuminate/database": ">=4,<4.0.99|>=4.1,<4.1.29|>=5.5,<=5.5.44|>=6,<6.18.34|>=7,<7.23.2", "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15", + "illuminate/view": ">=7,<7.1.2", "ivankristianto/phpwhois": "<=4.3", "james-heinrich/getid3": "<1.9.9", "joomla/session": "<1.3.1", "jsmitty12/phpwhois": "<5.1", "kazist/phpwhois": "<=4.2.6", + "kitodo/presentation": "<3.1.2", "kreait/firebase-php": ">=3.2,<3.8.1", "la-haute-societe/tcpdf": "<6.2.22", - "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.42|>=5.6,<5.6.30", + "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.34|>=7,<7.23.2", "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10", "league/commonmark": "<0.18.3", - "magento/magento1ce": "<1.9.4.1", - "magento/magento1ee": ">=1.9,<1.14.4.1", - "magento/product-community-edition": ">=2,<2.2.8|>=2.3,<2.3.1", + "librenms/librenms": "<1.53", + "livewire/livewire": ">2.2.4,<2.2.6", + "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3", + "magento/magento1ce": "<1.9.4.3", + "magento/magento1ee": ">=1,<1.14.4.3", + "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2", + "marcwillmann/turn": "<0.3.3", + "mediawiki/core": ">=1.27,<1.27.6|>=1.29,<1.29.3|>=1.30,<1.30.2|>=1.31,<1.31.9|>=1.32,<1.32.6|>=1.32.99,<1.33.3|>=1.33.99,<1.34.3|>=1.34.99,<1.35", + "mittwald/typo3_forum": "<1.2.1", "monolog/monolog": ">=1.8,<1.12", "namshi/jose": "<2.2", + "nette/application": ">=2,<2.0.19|>=2.1,<2.1.13|>=2.2,<2.2.10|>=2.3,<2.3.14|>=2.4,<2.4.16|>=3,<3.0.6", + "nette/nette": ">=2,<2.0.19|>=2.1,<2.1.13", + "nystudio107/craft-seomatic": "<3.3", + "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1", + "october/backend": ">=1.0.319,<1.0.470", + "october/cms": "= 1.0.469|>=1.0.319,<1.0.469", + "october/october": ">=1.0.319,<1.0.466", + "october/rain": ">=1.0.319,<1.0.468", "onelogin/php-saml": "<2.10.4", + "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5", "openid/php-openid": "<2.3", + "openmage/magento-lts": "<19.4.8|>=20,<20.0.4", + "orchid/platform": ">=9,<9.4.4", "oro/crm": ">=1.7,<1.7.4", "oro/platform": ">=1.7,<1.7.4", "padraic/humbug_get_contents": "<1.1.2", "pagarme/pagarme-php": ">=0,<3", "paragonie/random_compat": "<2", + "passbolt/passbolt_api": "<2.11", "paypal/merchant-sdk-php": "<3.12", - "pear/archive_tar": "<1.4.4", - "phpmailer/phpmailer": ">=5,<5.2.27|>=6,<6.0.6", - "phpoffice/phpexcel": "<=1.8.1", - "phpoffice/phpspreadsheet": "<=1.5", + "pear/archive_tar": "<1.4.11", + "personnummer/personnummer": "<3.0.2", + "phpfastcache/phpfastcache": ">=5,<5.0.13", + "phpmailer/phpmailer": "<6.1.6", + "phpmussel/phpmussel": ">=1,<1.6", + "phpmyadmin/phpmyadmin": "<4.9.6|>=5,<5.0.3", + "phpoffice/phpexcel": "<1.8.2", + "phpoffice/phpspreadsheet": "<1.8", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", + "pimcore/pimcore": "<6.3", + "pocketmine/pocketmine-mp": "<3.15.4", + "prestashop/autoupgrade": ">=4,<4.10.1", + "prestashop/contactform": ">1.0.1,<4.3", + "prestashop/gamification": "<2.3.2", + "prestashop/productcomments": ">=4,<4.2", + "prestashop/ps_facetedsearch": "<3.4.1", + "privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2", "propel/propel": ">=2-alpha.1,<=2-alpha.7", "propel/propel1": ">=1,<=1.7.1", + "pterodactyl/panel": "<0.7.19|>=1-rc.0,<=1-rc.6", "pusher/pusher-php-server": "<2.2.1", - "robrichards/xmlseclibs": ">=1,<3.0.2", + "rainlab/debugbar-plugin": "<3.1", + "robrichards/xmlseclibs": "<3.0.4", + "sabberworm/php-css-parser": ">=1,<1.0.1|>=2,<2.0.1|>=3,<3.0.1|>=4,<4.0.1|>=5,<5.0.9|>=5.1,<5.1.3|>=5.2,<5.2.1|>=6,<6.0.2|>=7,<7.0.4|>=8,<8.0.1|>=8.1,<8.1.1|>=8.2,<8.2.1|>=8.3,<8.3.1", "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9", + "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11", "sensiolabs/connect": "<4.2.3", "serluck/phpwhois": "<=4.2.6", - "shopware/shopware": "<5.3.7", - "silverstripe/cms": ">=3,<=3.0.11|>=3.1,<3.1.11", + "shopware/core": "<=6.3.2", + "shopware/platform": "<=6.3.2", + "shopware/shopware": "<5.6.9", + "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1", + "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2", + "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4", + "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", - "silverstripe/framework": ">=3,<3.6.7|>=3.7,<3.7.3|>=4,<4.4", - "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2", + "silverstripe/framework": "<4.4.7|>=4.5,<4.5.4", + "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2|>=3.2,<3.2.4", "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4", + "silverstripe/subsites": ">=2,<2.1.1", + "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1", "silverstripe/userforms": "<3", "simple-updates/phpwhois": "<=1", "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4", - "simplesamlphp/simplesamlphp": "<1.17.3", + "simplesamlphp/simplesamlphp": "<1.18.6", "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", + "simplito/elliptic-php": "<1.0.6", "slim/slim": "<2.6", "smarty/smarty": "<3.1.33", "socalnick/scn-social-auth": "<1.15.2", "spoonity/tcpdf": "<6.2.22", "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", + "ssddanbrown/bookstack": "<0.29.2", "stormpath/sdk": ">=0,<9.9.99", + "studio-42/elfinder": "<2.1.49", + "sulu/sulu": "<1.6.34|>=2,<2.0.10|>=2.1,<2.1.1", "swiftmailer/swiftmailer": ">=4,<5.4.5", "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", "sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", - "sylius/sylius": ">=1,<1.1.18|>=1.2,<1.2.17|>=1.3,<1.3.12|>=1.4,<1.4.4", - "symfony/cache": ">=3.1,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4", + "sylius/sylius": "<1.6.9|>=1.7,<1.7.9|>=1.8,<1.8.3", + "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99", + "symbiote/silverstripe-versionedfiles": "<=2.0.3", + "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4", "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1", "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", - "symfony/http-foundation": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", - "symfony/http-kernel": ">=2,<2.3.29|>=2.4,<2.5.12|>=2.6,<2.6.8", + "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7", + "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5", "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13", + "symfony/mime": ">=4.3,<4.3.8", "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/polyfill": ">=1,<1.10", "symfony/polyfill-php55": ">=1,<1.10", "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", "symfony/routing": ">=2,<2.0.19", - "symfony/security": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/security": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=4.4,<4.4.7|>=5,<5.0.7", "symfony/security-bundle": ">=2,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<2.8.37|>=3,<3.3.17|>=3.4,<3.4.7|>=4,<4.0.7", "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", "symfony/security-guard": ">=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", - "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7", "symfony/serializer": ">=2,<2.0.11", - "symfony/symfony": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/symfony": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5", "symfony/translation": ">=2,<2.0.17", "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3", + "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8", "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7", + "t3g/svg-sanitizer": "<1.0.3", "tecnickcom/tcpdf": "<6.2.22", "thelia/backoffice-default-template": ">=2.1,<2.1.2", "thelia/thelia": ">=2.1-beta.1,<2.1.3", @@ -1639,22 +1925,27 @@ "titon/framework": ">=0,<9.9.99", "truckersmp/phpwhois": "<=4.3.1", "twig/twig": "<1.38|>=2,<2.7", - "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.27|>=9,<9.5.8", - "typo3/cms-core": ">=8,<8.7.27|>=9,<9.5.8", + "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10", + "typo3/cms-core": ">=8,<8.7.38|>=9,<9.5.23|>=10,<10.4.10", "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.10|>=3.1,<3.1.7|>=3.2,<3.2.7|>=3.3,<3.3.5", "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4", "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1", + "typo3fluid/fluid": ">=2,<2.0.8|>=2.1,<2.1.7|>=2.2,<2.2.4|>=2.3,<2.3.7|>=2.4,<2.4.4|>=2.5,<2.5.11|>=2.6,<2.6.10", "ua-parser/uap-php": "<3.8", + "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", + "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4", "wallabag/tcpdf": "<6.2.22", "willdurand/js-translation-bundle": "<2.1.1", + "yii2mod/yii2-cms": "<1.9.2", "yiisoft/yii": ">=1.1.14,<1.1.15", - "yiisoft/yii2": "<2.0.15", + "yiisoft/yii2": "<2.0.38", "yiisoft/yii2-bootstrap": "<2.0.4", "yiisoft/yii2-dev": "<2.0.15", "yiisoft/yii2-elasticsearch": "<2.0.5", "yiisoft/yii2-gii": "<2.0.4", "yiisoft/yii2-jui": "<2.0.4", "yiisoft/yii2-redis": "<2.0.8", + "yourls/yourls": "<1.7.4", "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2", "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2", @@ -1689,25 +1980,44 @@ "authors": [ { "name": "Marco Pivetta", - "role": "maintainer", - "email": "ocramius@gmail.com" + "email": "ocramius@gmail.com", + "role": "maintainer" + }, + { + "name": "Ilya Tribusean", + "email": "slash3b@gmail.com", + "role": "maintainer" } ], "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", - "time": "2019-07-18T15:17:58+00:00" + "support": { + "issues": "https://github.com/Roave/SecurityAdvisories/issues", + "source": "https://github.com/Roave/SecurityAdvisories/tree/latest" + }, + "funding": [ + { + "url": "https://github.com/Ocramius", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories", + "type": "tidelift" + } + ], + "time": "2020-12-08T15:02:56+00:00" }, { "name": "symfony/debug", - "version": "v3.4.30", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "bc977cb2681d75988ab2d53d14c4245c6c04f82f" + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/bc977cb2681d75988ab2d53d14c4245c6c04f82f", - "reference": "bc977cb2681d75988ab2d53d14c4245c6c04f82f", + "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", "shasum": "" }, "require": { @@ -1721,11 +2031,6 @@ "symfony/http-kernel": "~2.8|~3.0|~4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Debug\\": "" @@ -1750,35 +2055,60 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2019-07-23T08:39:19+00:00" + "support": { + "source": "https://github.com/symfony/debug/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { - "name": "symfony/polyfill-php56", - "version": "v1.12.0", + "name": "symfony/polyfill-intl-idn", + "version": "v1.20.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php56.git", - "reference": "0e3b212e96a51338639d8ce175c046d7729c3403" + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/0e3b212e96a51338639d8ce175c046d7729c3403", - "reference": "0e3b212e96a51338639d8ce175c046d7729c3403", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117", + "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117", "shasum": "" }, "require": { - "php": ">=5.3.3", - "symfony/polyfill-util": "~1.0" + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Php56\\": "" + "Symfony\\Polyfill\\Intl\\Idn\\": "" }, "files": [ "bootstrap.php" @@ -1788,6 +2118,164 @@ "license": [ "MIT" ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.20.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "727d1096295d807c309fb01a851577302394c897" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897", + "reference": "727d1096295d807c309fb01a851577302394c897", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" + }, + { + "name": "symfony/polyfill-php56", + "version": "v1.20.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675", + "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "metapackage", + "extra": { + "branch-alias": { + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], "authors": [ { "name": "Nicolas Grekas", @@ -1806,35 +2294,59 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" }, { - "name": "symfony/polyfill-util", - "version": "v1.12.0", + "name": "symfony/polyfill-php72", + "version": "v1.20.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-util.git", - "reference": "4317de1386717b4c22caed7725350a8887ab205c" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4317de1386717b4c22caed7725350a8887ab205c", - "reference": "4317de1386717b4c22caed7725350a8887ab205c", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930", + "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { "psr-4": { - "Symfony\\Polyfill\\Util\\": "" - } + "Symfony\\Polyfill\\Php72\\": "" + }, + "files": [ + "bootstrap.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1850,15 +2362,32 @@ "homepage": "https://symfony.com/contributors" } ], - "description": "Symfony utilities for portability of PHP codes", + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", "homepage": "https://symfony.com", "keywords": [ - "compat", "compatibility", "polyfill", + "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" } ], "packages-dev": [ @@ -1899,45 +2428,46 @@ "authors": [ { "name": "Ben Scholzen 'DASPRiD'", - "role": "Developer", "email": "mail@dasprids.de", - "homepage": "http://www.dasprids.de" + "homepage": "http://www.dasprids.de", + "role": "Developer" } ], "description": "BaconQrCode is a QR code generator for PHP.", "homepage": "https://github.com/Bacon/BaconQrCode", + "support": { + "issues": "https://github.com/Bacon/BaconQrCode/issues", + "source": "https://github.com/Bacon/BaconQrCode/tree/master" + }, "time": "2017-10-17T09:59:25+00:00" }, { "name": "doctrine/instantiator", - "version": "1.0.5", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/doctrine/instantiator.git", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" + "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", - "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", + "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b", + "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b", "shasum": "" }, "require": { - "php": ">=5.3,<8.0-DEV" + "php": "^7.1 || ^8.0" }, "require-dev": { - "athletic/athletic": "~0.1.8", + "doctrine/coding-standard": "^8.0", "ext-pdo": "*", "ext-phar": "*", - "phpunit/phpunit": "~4.0", - "squizlabs/php_codesniffer": "~2.0" + "phpbench/phpbench": "^0.13 || 1.0.0-alpha2", + "phpstan/phpstan": "^0.12", + "phpstan/phpstan-phpunit": "^0.12", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, "autoload": { "psr-4": { "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" @@ -1951,45 +2481,63 @@ { "name": "Marco Pivetta", "email": "ocramius@gmail.com", - "homepage": "http://ocramius.github.com/" + "homepage": "https://ocramius.github.io/" } ], "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", - "homepage": "https://github.com/doctrine/instantiator", + "homepage": "https://www.doctrine-project.org/projects/instantiator.html", "keywords": [ "constructor", "instantiate" ], - "time": "2015-06-14T21:17:01+00:00" + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/1.4.0" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator", + "type": "tidelift" + } + ], + "time": "2020-11-10T18:47:58+00:00" }, { "name": "fabpot/goutte", - "version": "v3.2.3", + "version": "v3.3.1", "source": { "type": "git", "url": "https://github.com/FriendsOfPHP/Goutte.git", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8" + "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/3f0eaf0a40181359470651f1565b3e07e3dd31b8", - "reference": "3f0eaf0a40181359470651f1565b3e07e3dd31b8", + "url": "https://api.github.com/repos/FriendsOfPHP/Goutte/zipball/80a23b64f44d54dd571d114c473d9d7e9ed84ca5", + "reference": "80a23b64f44d54dd571d114c473d9d7e9ed84ca5", "shasum": "" }, "require": { "guzzlehttp/guzzle": "^6.0", - "php": ">=5.5.0", - "symfony/browser-kit": "~2.1|~3.0|~4.0", - "symfony/css-selector": "~2.1|~3.0|~4.0", - "symfony/dom-crawler": "~2.1|~3.0|~4.0" + "php": ">=7.1.3", + "symfony/browser-kit": "^4.4|^5.0", + "symfony/css-selector": "^4.4|^5.0", + "symfony/dom-crawler": "^4.4|^5.0" }, "require-dev": { - "symfony/phpunit-bridge": "^3.3 || ^4" + "symfony/phpunit-bridge": "^5.0" }, "type": "application", "extra": { "branch-alias": { - "dev-master": "3.2-dev" + "dev-master": "3.3-dev" } }, "autoload": { @@ -2015,20 +2563,24 @@ "keywords": [ "scraper" ], - "time": "2018-06-29T15:13:57+00:00" + "support": { + "issues": "https://github.com/FriendsOfPHP/Goutte/issues", + "source": "https://github.com/FriendsOfPHP/Goutte/tree/v3.3.1" + }, + "time": "2020-11-01T09:30:18+00:00" }, { "name": "fzaninotto/faker", - "version": "v1.8.0", + "version": "v1.9.2", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de" + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/f72816b43e74063c8b10357394b6bba8cb1c10de", - "reference": "f72816b43e74063c8b10357394b6bba8cb1c10de", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e", + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e", "shasum": "" }, "require": { @@ -2037,12 +2589,12 @@ "require-dev": { "ext-intl": "*", "phpunit/phpunit": "^4.8.35 || ^5.7", - "squizlabs/php_codesniffer": "^1.5" + "squizlabs/php_codesniffer": "^2.9.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -2065,29 +2617,37 @@ "faker", "fixtures" ], - "time": "2018-07-12T10:23:15+00:00" + "support": { + "issues": "https://github.com/fzaninotto/Faker/issues", + "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2" + }, + "abandoned": true, + "time": "2020-12-11T09:56:16+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.7.0", + "version": "1.10.2", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220", + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1 || ^8.0" + }, + "replace": { + "myclabs/deep-copy": "self.version" }, "require-dev": { "doctrine/collections": "^1.0", "doctrine/common": "^2.6", - "phpunit/phpunit": "^4.1" + "phpunit/phpunit": "^7.1" }, "type": "library", "autoload": { @@ -2110,7 +2670,17 @@ "object", "object graph" ], - "time": "2017-10-19T19:58:43+00:00" + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2020-11-13T09:40:50+00:00" }, { "name": "phar-io/manifest", @@ -2165,6 +2735,10 @@ } ], "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/master" + }, "time": "2017-03-05T18:14:27+00:00" }, { @@ -2212,39 +2786,228 @@ } ], "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/master" + }, "time": "2017-03-05T17:38:23+00:00" }, { - "name": "phpdocumentor/reflection-common", - "version": "1.0.1", + "name": "php-mock/php-mock", + "version": "2.3.0", "source": { "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" + "url": "https://github.com/php-mock/php-mock.git", + "reference": "a3142f257153b71c09bf9146ecf73430b3818b7c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", + "url": "https://api.github.com/repos/php-mock/php-mock/zipball/a3142f257153b71c09bf9146ecf73430b3818b7c", + "reference": "a3142f257153b71c09bf9146ecf73430b3818b7c", "shasum": "" }, "require": { - "php": ">=5.5" + "php": "^5.6 || ^7.0 || ^8.0", + "phpunit/php-text-template": "^1 || ^2" + }, + "replace": { + "malkusch/php-mock": "*" }, "require-dev": { - "phpunit/phpunit": "^4.6" + "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.0 || ^9.0", + "squizlabs/php_codesniffer": "^3.5" + }, + "suggest": { + "php-mock/php-mock-phpunit": "Allows integration into PHPUnit testcase with the trait PHPMock." + }, + "type": "library", + "autoload": { + "files": [ + "autoload.php" + ], + "psr-4": { + "phpmock\\": [ + "classes/", + "tests/" + ] + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "WTFPL" + ], + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "description": "PHP-Mock can mock built-in PHP functions (e.g. time()). PHP-Mock relies on PHP's namespace fallback policy. No further extension is needed.", + "homepage": "https://github.com/php-mock/php-mock", + "keywords": [ + "BDD", + "TDD", + "function", + "mock", + "stub", + "test", + "test double" + ], + "support": { + "issues": "https://github.com/php-mock/php-mock/issues", + "source": "https://github.com/php-mock/php-mock/tree/2.3.0" + }, + "funding": [ + { + "url": "https://github.com/michalbundyra", + "type": "github" + } + ], + "time": "2020-12-11T19:20:04+00:00" + }, + { + "name": "php-mock/php-mock-integration", + "version": "2.1.0", + "source": { + "type": "git", + "url": "https://github.com/php-mock/php-mock-integration.git", + "reference": "003d585841e435958a02e9b986953907b8b7609b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-mock/php-mock-integration/zipball/003d585841e435958a02e9b986953907b8b7609b", + "reference": "003d585841e435958a02e9b986953907b8b7609b", + "shasum": "" + }, + "require": { + "php": ">=5.6", + "php-mock/php-mock": "^2.2", + "phpunit/php-text-template": "^1 || ^2" + }, + "require-dev": { + "phpunit/phpunit": "^5.7.27 || ^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "autoload": { + "psr-4": { + "phpmock\\integration\\": "classes/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "WTFPL" + ], + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "description": "Integration package for PHP-Mock", + "homepage": "https://github.com/php-mock/php-mock-integration", + "keywords": [ + "BDD", + "TDD", + "function", + "mock", + "stub", + "test", + "test double" + ], + "support": { + "issues": "https://github.com/php-mock/php-mock-integration/issues", + "source": "https://github.com/php-mock/php-mock-integration/tree/2.1.0" + }, + "time": "2020-02-08T14:40:25+00:00" + }, + { + "name": "php-mock/php-mock-phpunit", + "version": "2.6.0", + "source": { + "type": "git", + "url": "https://github.com/php-mock/php-mock-phpunit.git", + "reference": "2877a0e58f12e91b64bf36ccd080a209dcbf6c30" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/php-mock/php-mock-phpunit/zipball/2877a0e58f12e91b64bf36ccd080a209dcbf6c30", + "reference": "2877a0e58f12e91b64bf36ccd080a209dcbf6c30", + "shasum": "" + }, + "require": { + "php": ">=7", + "php-mock/php-mock-integration": "^2.1", + "phpunit/phpunit": "^6 || ^7 || ^8 || ^9" + }, + "type": "library", + "autoload": { + "files": [ + "autoload.php" + ], + "psr-4": { + "phpmock\\phpunit\\": "classes/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "WTFPL" + ], + "authors": [ + { + "name": "Markus Malkusch", + "email": "markus@malkusch.de", + "homepage": "http://markus.malkusch.de", + "role": "Developer" + } + ], + "description": "Mock built-in PHP functions (e.g. time()) with PHPUnit. This package relies on PHP's namespace fallback policy. No further extension is needed.", + "homepage": "https://github.com/php-mock/php-mock-phpunit", + "keywords": [ + "BDD", + "TDD", + "function", + "mock", + "phpunit", + "stub", + "test", + "test double" + ], + "support": { + "issues": "https://github.com/php-mock/php-mock-phpunit/issues", + "source": "https://github.com/php-mock/php-mock-phpunit/tree/2.6.0" + }, + "time": "2020-02-08T15:44:47+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-2.x": "2.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src" - ] + "phpDocumentor\\Reflection\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -2266,44 +3029,45 @@ "reflection", "static analysis" ], - "time": "2017-09-11T18:02:19+00:00" + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, + "time": "2020-06-27T09:03:43+00:00" }, { "name": "phpdocumentor/reflection-docblock", - "version": "4.3.1", + "version": "5.2.2", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c" + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c", - "reference": "bdd9f737ebc2a01c06ea7ff4308ec6697db9b53c", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", "shasum": "" }, "require": { - "php": "^7.0", - "phpdocumentor/reflection-common": "^1.0.0", - "phpdocumentor/type-resolver": "^0.4.0", - "webmozart/assert": "^1.0" + "ext-filter": "*", + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.3", + "webmozart/assert": "^1.9.1" }, "require-dev": { - "doctrine/instantiator": "~1.0.5", - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.4" + "mockery/mockery": "~1.3.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "5.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -2314,44 +3078,49 @@ { "name": "Mike van Riel", "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2019-04-30T17:48:53+00:00" + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" + }, + "time": "2020-09-03T19:13:55+00:00" }, { "name": "phpdocumentor/type-resolver", - "version": "0.4.0", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", "shasum": "" }, "require": { - "php": "^5.5 || ^7.0", - "phpdocumentor/reflection-common": "^1.0" + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.0" }, "require-dev": { - "mockery/mockery": "^0.9.4", - "phpunit/phpunit": "^5.2||^4.8.24" + "ext-tokenizer": "*" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-1.x": "1.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -2364,37 +3133,42 @@ "email": "me@mikevanriel.com" } ], - "time": "2017-07-14T14:27:02+00:00" + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" + }, + "time": "2020-09-17T18:55:26+00:00" }, { "name": "phpspec/prophecy", - "version": "1.8.1", + "version": "v1.10.3", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76" + "reference": "451c3cd1418cf640de218914901e51b064abb093" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/1927e75f4ed19131ec9bcc3b002e07fb1173ee76", - "reference": "1927e75f4ed19131ec9bcc3b002e07fb1173ee76", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093", + "reference": "451c3cd1418cf640de218914901e51b064abb093", "shasum": "" }, "require": { "doctrine/instantiator": "^1.0.2", "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", - "sebastian/comparator": "^1.1|^2.0|^3.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0" + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", + "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0" }, "require-dev": { - "phpspec/phpspec": "^2.5|^3.2", + "phpspec/phpspec": "^2.5 || ^3.2", "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8.x-dev" + "dev-master": "1.10.x-dev" } }, "autoload": { @@ -2427,7 +3201,11 @@ "spy", "stub" ], - "time": "2019-06-13T12:50:23+00:00" + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/v1.10.3" + }, + "time": "2020-03-05T15:02:03+00:00" }, { "name": "phpunit/dbunit", @@ -2479,6 +3257,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/dbunit/issues", + "source": "https://github.com/sebastianbergmann/dbunit/tree/master" + }, "abandoned": true, "time": "2018-01-23T13:32:26+00:00" }, @@ -2543,6 +3325,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/5.3" + }, "time": "2018-04-06T15:36:58+00:00" }, { @@ -2590,6 +3376,11 @@ "filesystem", "iterator" ], + "support": { + "irc": "irc://irc.freenode.net/phpunit", + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5" + }, "time": "2017-11-27T13:52:08+00:00" }, { @@ -2631,6 +3422,10 @@ "keywords": [ "template" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1" + }, "time": "2015-06-21T13:50:34+00:00" }, { @@ -2680,6 +3475,10 @@ "keywords": [ "timer" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/master" + }, "time": "2017-02-26T11:10:40+00:00" }, { @@ -2729,6 +3528,11 @@ "keywords": [ "tokenizer" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", + "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master" + }, + "abandoned": true, "time": "2017-11-27T05:48:46+00:00" }, { @@ -2802,8 +3606,8 @@ "authors": [ { "name": "Sebastian Bergmann", - "role": "lead", - "email": "sebastian@phpunit.de" + "email": "sebastian@phpunit.de", + "role": "lead" } ], "description": "The PHP Unit Testing framework.", @@ -2813,6 +3617,10 @@ "testing", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "source": "https://github.com/sebastianbergmann/phpunit/tree/6.5.14" + }, "time": "2019-02-01T05:22:47+00:00" }, { @@ -2872,28 +3680,32 @@ "mock", "xunit" ], + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues", + "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/5.0.10" + }, "abandoned": true, "time": "2018-08-09T05:50:03+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619", + "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.0" + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -2918,7 +3730,17 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2017-03-04T06:30:41+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T08:15:22+00:00" }, { "name": "sebastian/comparator", @@ -2982,6 +3804,10 @@ "compare", "equality" ], + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/master" + }, "time": "2018-02-01T13:46:46+00:00" }, { @@ -3034,6 +3860,10 @@ "keywords": [ "diff" ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/master" + }, "time": "2017-08-03T08:09:46+00:00" }, { @@ -3084,24 +3914,28 @@ "environment", "hhvm" ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/master" + }, "time": "2017-07-01T08:51:00+00:00" }, { "name": "sebastian/exporter", - "version": "3.1.1", + "version": "3.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "06a9a5947f47b3029d76118eb5c22802e5869687" + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/06a9a5947f47b3029d76118eb5c22802e5869687", - "reference": "06a9a5947f47b3029d76118eb5c22802e5869687", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e", + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e", "shasum": "" }, "require": { - "php": "^7.0", + "php": ">=7.0", "sebastian/recursion-context": "^3.0" }, "require-dev": { @@ -3151,7 +3985,17 @@ "export", "exporter" ], - "time": "2019-08-11T12:43:14+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:47:53+00:00" }, { "name": "sebastian/global-state", @@ -3202,24 +4046,28 @@ "keywords": [ "global state" ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0" + }, "time": "2017-04-27T15:39:26+00:00" }, { "name": "sebastian/object-enumerator", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", + "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", "shasum": "" }, "require": { - "php": "^7.0", + "php": ">=7.0", "sebastian/object-reflector": "^1.1.1", "sebastian/recursion-context": "^3.0" }, @@ -3249,24 +4097,34 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2017-08-03T12:35:26+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:40:27+00:00" }, { "name": "sebastian/object-reflector", - "version": "1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "773f97c67f28de00d397be301821b06708fca0be" + "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", - "reference": "773f97c67f28de00d397be301821b06708fca0be", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", + "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", "shasum": "" }, "require": { - "php": "^7.0" + "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" @@ -3294,24 +4152,34 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", - "time": "2017-03-29T09:07:27+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:37:18+00:00" }, { "name": "sebastian/recursion-context", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb", + "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb", "shasum": "" }, "require": { - "php": "^7.0" + "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" @@ -3332,14 +4200,14 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, { "name": "Adam Harvey", "email": "aharvey@php.net" @@ -3347,7 +4215,17 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2017-03-03T06:23:57+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:34:24+00:00" }, { "name": "sebastian/resource-operations", @@ -3389,6 +4267,10 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/master" + }, "time": "2015-07-28T20:34:47+00:00" }, { @@ -3432,39 +4314,40 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/master" + }, "time": "2016-10-03T07:35:21+00:00" }, { "name": "symfony/browser-kit", - "version": "v3.4.30", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/browser-kit.git", - "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282" + "reference": "87d6f0a7436b03a57d4cf9a6a9cd0c83a355c49a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/browser-kit/zipball/53266c9a1536e2dc673eb1efb6a6142ef84c6282", - "reference": "53266c9a1536e2dc673eb1efb6a6142ef84c6282", + "url": "https://api.github.com/repos/symfony/browser-kit/zipball/87d6f0a7436b03a57d4cf9a6a9cd0c83a355c49a", + "reference": "87d6f0a7436b03a57d4cf9a6a9cd0c83a355c49a", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/dom-crawler": "~2.8|~3.0|~4.0" + "php": ">=7.2.5", + "symfony/dom-crawler": "^4.4|^5.0" }, "require-dev": { - "symfony/css-selector": "~2.8|~3.0|~4.0", - "symfony/process": "~2.8|~3.0|~4.0" + "symfony/css-selector": "^4.4|^5.0", + "symfony/http-client": "^4.4|^5.0", + "symfony/mime": "^4.4|^5.0", + "symfony/process": "^4.4|^5.0" }, "suggest": { "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\BrowserKit\\": "" @@ -3489,31 +4372,43 @@ ], "description": "Symfony BrowserKit Component", "homepage": "https://symfony.com", - "time": "2019-06-09T14:27:26+00:00" + "support": { + "source": "https://github.com/symfony/browser-kit/tree/v5.2.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-12-18T08:03:05+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.30", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf" + "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", - "reference": "8ca29297c29b64fb3a1a135e71cb25f67f9fdccf", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/f789e7ead4c79e04ca9a6d6162fc629c89bd8054", + "reference": "f789e7ead4c79e04ca9a6d6162fc629c89bd8054", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": ">=7.2.5" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\CssSelector\\": "" @@ -3542,39 +4437,56 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2019-01-16T09:39:14+00:00" + "support": { + "source": "https://github.com/symfony/css-selector/tree/v5.2.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-12-08T17:02:38+00:00" }, { "name": "symfony/dom-crawler", - "version": "v3.4.30", + "version": "v5.2.1", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c" + "reference": "ee7cf316fb0de786cfe5ae32ee79502b290c81ea" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/adb96e63af6fb0cc721cc69861001d60d0133d0c", - "reference": "adb96e63af6fb0cc721cc69861001d60d0133d0c", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ee7cf316fb0de786cfe5ae32ee79502b290c81ea", + "reference": "ee7cf316fb0de786cfe5ae32ee79502b290c81ea", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": ">=7.2.5", "symfony/polyfill-ctype": "~1.8", - "symfony/polyfill-mbstring": "~1.0" + "symfony/polyfill-mbstring": "~1.0", + "symfony/polyfill-php80": "^1.15" + }, + "conflict": { + "masterminds/html5": "<2.6" }, "require-dev": { - "symfony/css-selector": "~2.8|~3.0|~4.0" + "masterminds/html5": "^2.6", + "symfony/css-selector": "^4.4|^5.0" }, "suggest": { "symfony/css-selector": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\DomCrawler\\": "" @@ -3599,24 +4511,41 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2019-05-30T15:47:52+00:00" + "support": { + "source": "https://github.com/symfony/dom-crawler/tree/v5.2.1" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-12-18T08:02:46+00:00" }, { "name": "symfony/polyfill-ctype", - "version": "v1.12.0", + "version": "v1.20.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4" + "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/550ebaac289296ce228a706d0867afc34687e3f4", - "reference": "550ebaac289296ce228a706d0867afc34687e3f4", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41", + "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-ctype": "For best performance" @@ -3624,7 +4553,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -3657,24 +4590,41 @@ "polyfill", "portable" ], - "time": "2019-08-06T08:03:45+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.12.0", + "version": "v1.20.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17" + "reference": "39d483bdf39be819deabf04ec872eb0b2410b531" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/b42a2f66e8f1b15ccf25652c3424265923eb4f17", - "reference": "b42a2f66e8f1b15ccf25652c3424265923eb4f17", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531", + "reference": "39d483bdf39be819deabf04ec872eb0b2410b531", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" }, "suggest": { "ext-mbstring": "For best performance" @@ -3682,7 +4632,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.12-dev" + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -3716,41 +4670,136 @@ "portable", "shim" ], - "time": "2019-08-06T08:03:45+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" }, { - "name": "symfony/yaml", - "version": "v3.4.30", + "name": "symfony/polyfill-php80", + "version": "v1.20.0", "source": { "type": "git", - "url": "https://github.com/symfony/yaml.git", - "reference": "051d045c684148060ebfc9affb7e3f5e0899d40b" + "url": "https://github.com/symfony/polyfill-php80.git", + "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/051d045c684148060ebfc9affb7e3f5e0899d40b", - "reference": "051d045c684148060ebfc9affb7e3f5e0899d40b", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de", + "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php80\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ion Bazan", + "email": "ion.bazan@gmail.com" + }, + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" + }, + { + "name": "symfony/yaml", + "version": "v4.4.18", + "source": { + "type": "git", + "url": "https://github.com/symfony/yaml.git", + "reference": "bbce94f14d73732340740366fcbe63363663a403" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/yaml/zipball/bbce94f14d73732340740366fcbe63363663a403", + "reference": "bbce94f14d73732340740366fcbe63363663a403", + "shasum": "" + }, + "require": { + "php": ">=7.1.3", "symfony/polyfill-ctype": "~1.8" }, "conflict": { "symfony/console": "<3.4" }, "require-dev": { - "symfony/console": "~3.4|~4.0" + "symfony/console": "^3.4|^4.0|^5.0" }, "suggest": { "symfony/console": "For validating YAML files using the lint command" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Yaml\\": "" @@ -3775,7 +4824,24 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2019-07-24T13:01:31+00:00" + "support": { + "source": "https://github.com/symfony/yaml/tree/v4.4.18" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-12-08T16:59:59+00:00" }, { "name": "syspass/extension-installer-plugin", @@ -3783,20 +4849,21 @@ "source": { "type": "git", "url": "https://github.com/sysPass/composer-plugin-installer.git", - "reference": "84775ddce17f72cdf73e1442f01a4d8f56116ce2" + "reference": "9805ed94f0eac986c8c35586ca3b682e28a7c465" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sysPass/composer-plugin-installer/zipball/84775ddce17f72cdf73e1442f01a4d8f56116ce2", - "reference": "84775ddce17f72cdf73e1442f01a4d8f56116ce2", + "url": "https://api.github.com/repos/sysPass/composer-plugin-installer/zipball/9805ed94f0eac986c8c35586ca3b682e28a7c465", + "reference": "9805ed94f0eac986c8c35586ca3b682e28a7c465", "shasum": "" }, "require": { - "composer-plugin-api": "^1.0" + "composer-plugin-api": "^2.0" }, "require-dev": { - "composer/composer": "^1.3" + "composer/composer": "^2.0" }, + "default-branch": true, "type": "composer-plugin", "extra": { "class": "SP\\Composer\\ExtensionInstallerPlugin" @@ -3810,7 +4877,11 @@ "license": [ "MIT" ], - "time": "2018-11-01T17:44:15+00:00" + "support": { + "issues": "https://github.com/sysPass/composer-plugin-installer/issues", + "source": "https://github.com/sysPass/composer-plugin-installer/tree/v2.0.0" + }, + "time": "2020-12-08T08:15:22+00:00" }, { "name": "syspass/plugin-authenticator", @@ -3818,12 +4889,12 @@ "source": { "type": "git", "url": "https://github.com/sysPass/plugin-Authenticator.git", - "reference": "c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd" + "reference": "a9a5c264fce13960267f0d87518456b671530c8b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sysPass/plugin-Authenticator/zipball/c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd", - "reference": "c8f814fdd9b8b2bdef23cd9646e82e7c6760c3cd", + "url": "https://api.github.com/repos/sysPass/plugin-Authenticator/zipball/a9a5c264fce13960267f0d87518456b671530c8b", + "reference": "a9a5c264fce13960267f0d87518456b671530c8b", "shasum": "" }, "require": { @@ -3852,34 +4923,39 @@ "authors": [ { "name": "Rubén Domínguez", - "role": "Author/Developer", "email": "nuxsmin@syspass.org", - "homepage": "https://syspass.org/" + "homepage": "https://syspass.org/", + "role": "Author/Developer" } ], "description": "2FA authentication plugin for sysPass based on TOTP algorithm (RFC 6238)", "homepage": "https://syspass.org", - "time": "2019-04-27T00:48:18+00:00" + "support": { + "docs": "https://doc.syspass.org", + "issues": "https://github.com/nuxsmin/sysPass/issues", + "source": "https://github.com/nuxsmin/sysPass-Authenticator" + }, + "time": "2019-12-21T11:52:31+00:00" }, { "name": "theseer/tokenizer", - "version": "1.1.3", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9" + "reference": "75a63c33a8577608444246075ea0af0d052e452a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/11336f6f84e16a720dae9d8e6ed5019efa85a0f9", - "reference": "11336f6f84e16a720dae9d8e6ed5019efa85a0f9", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a", + "reference": "75a63c33a8577608444246075ea0af0d052e452a", "shasum": "" }, "require": { "ext-dom": "*", "ext-tokenizer": "*", "ext-xmlwriter": "*", - "php": "^7.0" + "php": "^7.2 || ^8.0" }, "type": "library", "autoload": { @@ -3894,41 +4970,49 @@ "authors": [ { "name": "Arne Blankerts", - "role": "Developer", - "email": "arne@blankerts.de" + "email": "arne@blankerts.de", + "role": "Developer" } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "time": "2019-06-13T22:48:21+00:00" + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/master" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2020-07-12T23:59:07+00:00" }, { "name": "webmozart/assert", - "version": "1.4.0", + "version": "1.9.1", "source": { "type": "git", "url": "https://github.com/webmozart/assert.git", - "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9" + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/83e253c8e0be5b0257b881e1827274667c5c17a9", - "reference": "83e253c8e0be5b0257b881e1827274667c5c17a9", + "url": "https://api.github.com/repos/webmozart/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0", + "php": "^5.3.3 || ^7.0 || ^8.0", "symfony/polyfill-ctype": "^1.8" }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<3.9.1" + }, "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" + "phpunit/phpunit": "^4.8.36 || ^7.5.13" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3-dev" - } - }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -3950,7 +5034,11 @@ "check", "validate" ], - "time": "2018-12-25T11:19:39+00:00" + "support": { + "issues": "https://github.com/webmozart/assert/issues", + "source": "https://github.com/webmozart/assert/tree/master" + }, + "time": "2020-07-08T17:02:28+00:00" } ], "aliases": [], @@ -3975,5 +5063,6 @@ "ext-libxml": "*", "ext-mbstring": "*" }, - "platform-dev": [] + "platform-dev": [], + "plugin-api-version": "2.0.0" } diff --git a/lib/SP/Services/Install/Installer.php b/lib/SP/Services/Install/Installer.php index 65f0fe7b..702d28e7 100644 --- a/lib/SP/Services/Install/Installer.php +++ b/lib/SP/Services/Install/Installer.php @@ -60,9 +60,9 @@ final class Installer extends Service /** * sysPass' version and build number */ - const VERSION = [3, 1, 2]; + const VERSION = [3, 1, 3]; const VERSION_TEXT = '3.1'; - const BUILD = 20030701; + const BUILD = 20122001; /** * @var DatabaseSetupInterface diff --git a/lib/SP/Services/Install/MySQL.php b/lib/SP/Services/Install/MySQL.php index 935ce371..517b3e64 100644 --- a/lib/SP/Services/Install/MySQL.php +++ b/lib/SP/Services/Install/MySQL.php @@ -163,14 +163,26 @@ final class MySQL implements DatabaseSetupInterface logger('Creating DB user'); try { - $query = 'CREATE USER %s@`%s` IDENTIFIED BY %s'; + $query = 'CREATE USER %s@%s IDENTIFIED BY %s'; $dbc = $this->mysqlHandler->getConnectionSimple(); - $dbc->exec(sprintf($query, $dbc->quote($user), $this->installData->getDbAuthHost(), $dbc->quote($pass))); + $dbc->exec( + sprintf($query, + $dbc->quote($user), + $dbc->quote($this->installData->getDbAuthHost()), + $dbc->quote($pass)) + ); - if ($this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns()) { - $dbc->exec(sprintf($query, $dbc->quote($user), $this->installData->getDbAuthHostDns(), $dbc->quote($pass))); + if (!empty($this->installData->getDbAuthHostDns()) + && $this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns() + ) { + $dbc->exec( + sprintf($query, + $dbc->quote($user), + $this->installData->getDbAuthHostDns(), + $dbc->quote($pass)) + ); } $dbc->exec('FLUSH PRIVILEGES'); @@ -207,7 +219,10 @@ final class MySQL implements DatabaseSetupInterface try { $dbc = $this->mysqlHandler->getConnectionSimple(); - $dbc->exec('CREATE SCHEMA `' . $this->installData->getDbName() . '` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci'); + $dbc->exec(sprintf( + 'CREATE SCHEMA `%s` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci', + $this->installData->getDbName() + )); } catch (PDOException $e) { throw new SPException( sprintf(__('Error while creating the DB (\'%s\')'), $e->getMessage()), @@ -219,12 +234,24 @@ final class MySQL implements DatabaseSetupInterface } try { - $query = 'GRANT ALL PRIVILEGES ON `%s`.* TO %s@`%s`'; + $query = 'GRANT ALL PRIVILEGES ON `%s`.* TO %s@%s'; - $dbc->exec(sprintf($query, $this->installData->getDbName(), $dbc->quote($this->configData->getDbUser()), $this->installData->getDbAuthHost())); + $dbc->exec(sprintf( + $query, + $this->installData->getDbName(), + $dbc->quote($this->configData->getDbUser()), + $dbc->quote($this->installData->getDbAuthHost())) + ); - if ($this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns()) { - $dbc->exec(sprintf($query, $this->installData->getDbName(), $dbc->quote($this->configData->getDbUser()), $this->installData->getDbAuthHostDns())); + if (!empty($this->installData->getDbAuthHostDns()) + && $this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns() + ) { + $dbc->exec(sprintf( + $query, + $this->installData->getDbName(), + $dbc->quote($this->configData->getDbUser()), + $dbc->quote($this->installData->getDbAuthHostDns())) + ); } $dbc->exec('FLUSH PRIVILEGES'); @@ -245,7 +272,7 @@ final class MySQL implements DatabaseSetupInterface try { // Commprobar si existe al seleccionarla $this->mysqlHandler->getConnectionSimple() - ->exec('USE `' . $this->installData->getDbName() . '`'); + ->exec(sprintf('USE `%s`', $this->installData->getDbName())); } catch (PDOException $e) { throw new SPException( __u('The database does not exist'), @@ -283,11 +310,22 @@ final class MySQL implements DatabaseSetupInterface $dbc->exec('DROP TABLE IF EXISTS `' . $this->installData->getDbName() . '`.`' . $table . '`'); } } else { - $dbc->exec('DROP DATABASE IF EXISTS `' . $this->installData->getDbName() . '`'); - $dbc->exec('DROP USER ' . $dbc->quote($this->configData->getDbUser()) . '@`' . $this->installData->getDbAuthHost() . '`'); + $dbc->exec(sprintf( + 'DROP DATABASE IF EXISTS `%s`', + $this->installData->getDbName() + )); + $dbc->exec(sprintf( + 'DROP USER %s@%s', + $dbc->quote($this->configData->getDbUser()), + $dbc->quote($this->installData->getDbAuthHost()) + )); if ($this->installData->getDbAuthHost() !== $this->installData->getDbAuthHostDns()) { - $dbc->exec('DROP USER ' . $dbc->quote($this->configData->getDbUser()) . '@`' . $this->installData->getDbAuthHostDns() . '`'); + $dbc->exec(sprintf( + 'DROP USER %s@%s', + $dbc->quote($this->configData->getDbUser()), + $dbc->quote($this->installData->getDbAuthHostDns()) + )); } } @@ -303,7 +341,7 @@ final class MySQL implements DatabaseSetupInterface $dbc = $this->mysqlHandler->getConnectionSimple(); // Usar la base de datos de sysPass - $dbc->exec('USE `' . $this->installData->getDbName() . '`'); + $dbc->exec(sprintf('USE `%s`', $this->installData->getDbName())); } catch (PDOException $e) { throw new SPException( sprintf(__('Error while selecting \'%s\' database (%s)'), $this->installData->getDbName(), $e->getMessage()), From 900008292bcbba0397e19ae51c728f570cd78c5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 20 Dec 2020 16:27:10 +0100 Subject: [PATCH 28/36] * [FIX] Set minimum required PHP version to 7.3 because dependency constraints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- .travis.yml | 4 +-- composer.json | 2 +- composer.lock | 4 +-- lib/SP/Bootstrap.php | 2 +- lib/SP/Util/Checks.php | 4 +-- lib/SP/Util/Link.php | 64 ++++++++++++++++++++++++++++++++++++++++++ 6 files changed, 71 insertions(+), 9 deletions(-) create mode 100644 lib/SP/Util/Link.php diff --git a/.travis.yml b/.travis.yml index 4d617d21..7e917c90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,10 +5,8 @@ language: php sudo: false php: - - '7.0' - - '7.1' - - '7.2' - '7.3' + - '7.4' branches: only: diff --git a/composer.json b/composer.json index 77891e9b..27db44b2 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ }, "require": { "roave/security-advisories": "dev-master", - "php": "~7.0 || ~7.1 || ~7.2 || ~7.3", + "php": "~7.3 || ~7.4", "defuse/php-encryption": "~2.1", "phpmailer/phpmailer": "~6.0", "ademarre/binary-to-text-php": "dev-master", diff --git a/composer.lock b/composer.lock index d7559937..2bb3e5a0 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "bed785c07fc2768f6e410cd762b7e4ff", + "content-hash": "4588647d7b59c02b13bc52697f6c43f2", "packages": [ { "name": "ademarre/binary-to-text-php", @@ -5052,7 +5052,7 @@ "prefer-stable": false, "prefer-lowest": false, "platform": { - "php": "~7.0 || ~7.1 || ~7.2 || ~7.3", + "php": "~7.3 || ~7.4", "ext-pdo": "*", "ext-dom": "*", "ext-gd": "*", diff --git a/lib/SP/Bootstrap.php b/lib/SP/Bootstrap.php index 7e091d37..9f630fe9 100644 --- a/lib/SP/Bootstrap.php +++ b/lib/SP/Bootstrap.php @@ -290,7 +290,7 @@ final class Bootstrap if (!self::$checkPhpVersion) { throw new InitializationException( - sprintf(__('Required PHP version >= %s <= %s'), '7.0', '7.3'), + sprintf(__('Required PHP version >= %s <= %s'), '7.3', '7.4'), InitializationException::ERROR, __u('Please update the PHP version to run sysPass') ); diff --git a/lib/SP/Util/Checks.php b/lib/SP/Util/Checks.php index c19f6717..4fa6e71c 100644 --- a/lib/SP/Util/Checks.php +++ b/lib/SP/Util/Checks.php @@ -48,7 +48,7 @@ final class Checks */ public static function checkPhpVersion() { - return version_compare(PHP_VERSION, '7.0', '>=') - && version_compare(PHP_VERSION, '7.4', '<'); + return version_compare(PHP_VERSION, '7.3', '>=') + && version_compare(PHP_VERSION, '7.5', '<'); } } diff --git a/lib/SP/Util/Link.php b/lib/SP/Util/Link.php new file mode 100644 index 00000000..033ba56d --- /dev/null +++ b/lib/SP/Util/Link.php @@ -0,0 +1,64 @@ +. + */ + +namespace SP\Util; + + +use SP\Bootstrap; +use SP\Config\ConfigData; +use SP\Core\Acl\Acl; +use SP\Http\Uri; + +/** + * Class Link + * + * @package SP\Util + */ +final class Link +{ + /** + * @param int $itemId + * @param int $actionId + * @param ConfigData $configData + * + * @param bool $useUI + * + * @return string + */ + public static function getDeepLink(int $itemId, int $actionId, ConfigData $configData, bool $useUI = false) + { + $route = Acl::getActionRoute($actionId) . '/' . $itemId; + + if ($useUI) { + $baseUrl = ($configData->getApplicationUrl() ?: Bootstrap::$WEBURI) . '/index.php'; + } else { + $baseUrl = ($configData->getApplicationUrl() ?: Bootstrap::$WEBURI) . Bootstrap::$SUBURI; + } + + $uri = new Uri($baseUrl); + $uri->addParam('r', $route); + + return $uri->getUriSigned($configData->getPasswordSalt()); + } +} \ No newline at end of file From 5e3281bce83bc1968cd65f5c69f88d5b461b33e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 20 Dec 2020 17:51:32 +0100 Subject: [PATCH 29/36] * [FIX] Set coverage mode through env var MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- .travis.yml | 2 +- tests/res/scripts/reset_db.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7e917c90..92034c94 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ before_script: - composer self-update - composer install --prefer-source --no-interaction --dev -script: ./vendor/bin/phpunit -c ./tests/phpunit.xml --testsuite Core +script: XDEBUG_MODE=coverage ./vendor/bin/phpunit -c ./tests/phpunit.xml --testsuite Core after_script: - if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then mv ./tests/_output/coverage-clover.xml clover.xml && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -t clover; fi diff --git a/tests/res/scripts/reset_db.sh b/tests/res/scripts/reset_db.sh index df0c9623..264553de 100755 --- a/tests/res/scripts/reset_db.sh +++ b/tests/res/scripts/reset_db.sh @@ -1,6 +1,6 @@ #!/bin/bash -DB_HOST=$(docker inspect syspass-db-test --format {{.NetworkSettings.Networks.bridge.IPAddress}}) +DB_HOST=$(docker inspect ${DB_CONTAINER} --format {{.NetworkSettings.Networks.bridge.IPAddress}}) if [[ -z "${DB_HOST}" ]]; then echo "Unknown host" From b3137a181a04e9d9c1a6fb923a938de6daa347c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 20 Dec 2020 18:30:43 +0100 Subject: [PATCH 30/36] * [MOD] Improve backup regex MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- lib/SP/Services/Backup/FileBackupService.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/SP/Services/Backup/FileBackupService.php b/lib/SP/Services/Backup/FileBackupService.php index daa23a5e..cb7137d1 100644 --- a/lib/SP/Services/Backup/FileBackupService.php +++ b/lib/SP/Services/Backup/FileBackupService.php @@ -54,6 +54,8 @@ defined('APP_ROOT') || die(); */ final class FileBackupService extends Service { + private const BACKUP_EXCLUDE_REGEX = '#^(?!.*(backup|cache|temp|vendor|tests))(.*)$#i'; + /** * @var ConfigData */ @@ -359,7 +361,8 @@ final class FileBackupService extends Service ); $archive = new ArchiveHandler($this->backupFileApp, $this->extensionChecker); - $archive->compressDirectory(APP_ROOT, '#^(?!(.*backup))(.*)$#i'); + + $archive->compressDirectory(APP_ROOT, self::BACKUP_EXCLUDE_REGEX); return true; } From f428a8c1d68a75c92ff6b2996d79f822c19dafc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 20 Dec 2020 20:46:21 +0100 Subject: [PATCH 31/36] * [MOD] Bump version number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- lib/SP/Services/Install/Installer.php | 4 ++-- tests/SP/Services/Crypt/SecureSessionServiceTest.php | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/SP/Services/Install/Installer.php b/lib/SP/Services/Install/Installer.php index 702d28e7..730eeb77 100644 --- a/lib/SP/Services/Install/Installer.php +++ b/lib/SP/Services/Install/Installer.php @@ -60,8 +60,8 @@ final class Installer extends Service /** * sysPass' version and build number */ - const VERSION = [3, 1, 3]; - const VERSION_TEXT = '3.1'; + const VERSION = [3, 2, 0]; + const VERSION_TEXT = '3.2'; const BUILD = 20122001; /** diff --git a/tests/SP/Services/Crypt/SecureSessionServiceTest.php b/tests/SP/Services/Crypt/SecureSessionServiceTest.php index e0017ce8..600155f1 100644 --- a/tests/SP/Services/Crypt/SecureSessionServiceTest.php +++ b/tests/SP/Services/Crypt/SecureSessionServiceTest.php @@ -51,6 +51,7 @@ class SecureSessionServiceTest extends TestCase $service = $dic->get(SecureSessionService::class); $stub = $this->createMock(UUIDCookie::class); + $stub->method('loadCookie') ->willReturn(uniqid('', true)); $stub->method('createCookie') From b0050813b005b39c0cfc9eb1e592e70e9bdd95a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 16 Jan 2021 11:46:58 +0100 Subject: [PATCH 32/36] * [FIX] Fix ADS search behavior by unsseting `ACCOUNTDISABLE` flag for `UserAccountControl` property, since it prevents to throw the proper status code when authenticating against LDAP. Thanks to @t0l0 for testing. Closes #1574 * [MOD] Update dependencies * [MOD] Bump version number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- composer.json | 3 +- composer.lock | 225 ++++++----------------- lib/SP/Providers/Auth/Ldap/LdapMsAds.php | 2 +- lib/SP/Services/Install/Installer.php | 4 +- 4 files changed, 63 insertions(+), 171 deletions(-) diff --git a/composer.json b/composer.json index 27db44b2..a035d44c 100644 --- a/composer.json +++ b/composer.json @@ -45,8 +45,7 @@ "phpunit/dbunit": "^3", "fzaninotto/faker": "^v1.8", "fabpot/goutte": "^v3.2.3", - "syspass/extension-installer-plugin": "dev-master", - "syspass/plugin-authenticator": "^2.1-dev", + "syspass/extension-installer-plugin": "v2.0.0", "nikic/php-parser": "^v4.1", "php-mock/php-mock-phpunit": "^2.6" }, diff --git a/composer.lock b/composer.lock index 2bb3e5a0..b2f6f5b8 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4588647d7b59c02b13bc52697f6c43f2", + "content-hash": "418af177bceeaf4378a454a5bd49645d", "packages": [ { "name": "ademarre/binary-to-text-php", @@ -1138,16 +1138,16 @@ }, { "name": "php-di/invoker", - "version": "2.2.0", + "version": "2.3.0", "source": { "type": "git", "url": "https://github.com/PHP-DI/Invoker.git", - "reference": "e08a7c87068daeaeef464b95d81643ea530bc535" + "reference": "992fec6c56f2d1ad1ad5fee28267867c85bfb8f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/e08a7c87068daeaeef464b95d81643ea530bc535", - "reference": "e08a7c87068daeaeef464b95d81643ea530bc535", + "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/992fec6c56f2d1ad1ad5fee28267867c85bfb8f9", + "reference": "992fec6c56f2d1ad1ad5fee28267867c85bfb8f9", "shasum": "" }, "require": { @@ -1181,7 +1181,7 @@ ], "support": { "issues": "https://github.com/PHP-DI/Invoker/issues", - "source": "https://github.com/PHP-DI/Invoker/tree/2.2.0" + "source": "https://github.com/PHP-DI/Invoker/tree/2.3.0" }, "funding": [ { @@ -1189,7 +1189,7 @@ "type": "github" } ], - "time": "2020-10-12T12:15:50+00:00" + "time": "2021-01-15T10:25:40+00:00" }, { "name": "php-di/php-di", @@ -1691,12 +1691,12 @@ "source": { "type": "git", "url": "https://github.com/Roave/SecurityAdvisories.git", - "reference": "d5961914bf7f90e81af509b81e51450bff419815" + "reference": "0f7a0af0970ff222b7c4212e2417580e0e05b257" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/d5961914bf7f90e81af509b81e51450bff419815", - "reference": "d5961914bf7f90e81af509b81e51450bff419815", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/0f7a0af0970ff222b7c4212e2417580e0e05b257", + "reference": "0f7a0af0970ff222b7c4212e2417580e0e05b257", "shasum": "" }, "conflict": { @@ -1789,7 +1789,7 @@ "kitodo/presentation": "<3.1.2", "kreait/firebase-php": ">=3.2,<3.8.1", "la-haute-societe/tcpdf": "<6.2.22", - "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.34|>=7,<7.23.2", + "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.20.11|>=7,<7.30.2|>=8,<8.22.1", "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10", "league/commonmark": "<0.18.3", "librenms/librenms": "<1.53", @@ -1830,7 +1830,7 @@ "phpmussel/phpmussel": ">=1,<1.6", "phpmyadmin/phpmyadmin": "<4.9.6|>=5,<5.0.3", "phpoffice/phpexcel": "<1.8.2", - "phpoffice/phpspreadsheet": "<1.8", + "phpoffice/phpspreadsheet": "<1.16", "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", "phpwhois/phpwhois": "<=4.2.5", "phpxmlrpc/extras": "<0.6.1", @@ -1853,8 +1853,8 @@ "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11", "sensiolabs/connect": "<4.2.3", "serluck/phpwhois": "<=4.2.6", - "shopware/core": "<=6.3.2", - "shopware/platform": "<=6.3.2", + "shopware/core": "<=6.3.4", + "shopware/platform": "<=6.3.4", "shopware/shopware": "<5.6.9", "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1", "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2", @@ -2004,7 +2004,7 @@ "type": "tidelift" } ], - "time": "2020-12-08T15:02:56+00:00" + "time": "2021-01-14T09:32:54+00:00" }, { "name": "symfony/debug", @@ -2076,16 +2076,16 @@ }, { "name": "symfony/polyfill-intl-idn", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-idn.git", - "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117" + "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/3b75acd829741c768bc8b1f84eb33265e7cc5117", - "reference": "3b75acd829741c768bc8b1f84eb33265e7cc5117", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44", + "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44", "shasum": "" }, "require": { @@ -2099,7 +2099,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -2143,7 +2143,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.20.0" + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0" }, "funding": [ { @@ -2159,20 +2159,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-intl-normalizer", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-intl-normalizer.git", - "reference": "727d1096295d807c309fb01a851577302394c897" + "reference": "6e971c891537eb617a00bb07a43d182a6915faba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/727d1096295d807c309fb01a851577302394c897", - "reference": "727d1096295d807c309fb01a851577302394c897", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba", + "reference": "6e971c891537eb617a00bb07a43d182a6915faba", "shasum": "" }, "require": { @@ -2184,7 +2184,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -2227,7 +2227,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.20.0" + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0" }, "funding": [ { @@ -2243,7 +2243,7 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T17:09:11+00:00" }, { "name": "symfony/polyfill-php56", @@ -2315,16 +2315,16 @@ }, { "name": "symfony/polyfill-php72", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php72.git", - "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930" + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cede45fcdfabdd6043b3592e83678e42ec69e930", - "reference": "cede45fcdfabdd6043b3592e83678e42ec69e930", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", "shasum": "" }, "require": { @@ -2333,7 +2333,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -2371,7 +2371,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php72/tree/v1.20.0" + "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0" }, "funding": [ { @@ -2387,60 +2387,10 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" } ], "packages-dev": [ - { - "name": "bacon/bacon-qr-code", - "version": "1.0.3", - "source": { - "type": "git", - "url": "https://github.com/Bacon/BaconQrCode.git", - "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/5a91b62b9d37cee635bbf8d553f4546057250bee", - "reference": "5a91b62b9d37cee635bbf8d553f4546057250bee", - "shasum": "" - }, - "require": { - "ext-iconv": "*", - "php": "^5.4|^7.0" - }, - "require-dev": { - "phpunit/phpunit": "^4.8" - }, - "suggest": { - "ext-gd": "to generate QR code images" - }, - "type": "library", - "autoload": { - "psr-0": { - "BaconQrCode": "src/" - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "BSD-2-Clause" - ], - "authors": [ - { - "name": "Ben Scholzen 'DASPRiD'", - "email": "mail@dasprids.de", - "homepage": "http://www.dasprids.de", - "role": "Developer" - } - ], - "description": "BaconQrCode is a QR code generator for PHP.", - "homepage": "https://github.com/Bacon/BaconQrCode", - "support": { - "issues": "https://github.com/Bacon/BaconQrCode/issues", - "source": "https://github.com/Bacon/BaconQrCode/tree/master" - }, - "time": "2017-10-17T09:59:25+00:00" - }, { "name": "doctrine/instantiator", "version": "1.4.0", @@ -4532,16 +4482,16 @@ }, { "name": "symfony/polyfill-ctype", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-ctype.git", - "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41" + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/f4ba089a5b6366e453971d3aad5fe8e897b37f41", - "reference": "f4ba089a5b6366e453971d3aad5fe8e897b37f41", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e", + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e", "shasum": "" }, "require": { @@ -4553,7 +4503,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4591,7 +4541,7 @@ "portable" ], "support": { - "source": "https://github.com/symfony/polyfill-ctype/tree/v1.20.0" + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0" }, "funding": [ { @@ -4607,20 +4557,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-mbstring", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "39d483bdf39be819deabf04ec872eb0b2410b531" + "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/39d483bdf39be819deabf04ec872eb0b2410b531", - "reference": "39d483bdf39be819deabf04ec872eb0b2410b531", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", + "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", "shasum": "" }, "require": { @@ -4632,7 +4582,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4671,7 +4621,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.20.0" + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0" }, "funding": [ { @@ -4687,20 +4637,20 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/polyfill-php80", - "version": "v1.20.0", + "version": "v1.22.0", "source": { "type": "git", "url": "https://github.com/symfony/polyfill-php80.git", - "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de" + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/e70aa8b064c5b72d3df2abd5ab1e90464ad009de", - "reference": "e70aa8b064c5b72d3df2abd5ab1e90464ad009de", + "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/dc3063ba22c2a1fd2f45ed856374d79114998f91", + "reference": "dc3063ba22c2a1fd2f45ed856374d79114998f91", "shasum": "" }, "require": { @@ -4709,7 +4659,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-main": "1.20-dev" + "dev-main": "1.22-dev" }, "thanks": { "name": "symfony/polyfill", @@ -4754,7 +4704,7 @@ "shim" ], "support": { - "source": "https://github.com/symfony/polyfill-php80/tree/v1.20.0" + "source": "https://github.com/symfony/polyfill-php80/tree/v1.22.0" }, "funding": [ { @@ -4770,7 +4720,7 @@ "type": "tidelift" } ], - "time": "2020-10-23T14:02:19+00:00" + "time": "2021-01-07T16:49:33+00:00" }, { "name": "symfony/yaml", @@ -4845,7 +4795,7 @@ }, { "name": "syspass/extension-installer-plugin", - "version": "dev-master", + "version": "v2.0.0", "source": { "type": "git", "url": "https://github.com/sysPass/composer-plugin-installer.git", @@ -4863,7 +4813,6 @@ "require-dev": { "composer/composer": "^2.0" }, - "default-branch": true, "type": "composer-plugin", "extra": { "class": "SP\\Composer\\ExtensionInstallerPlugin" @@ -4883,60 +4832,6 @@ }, "time": "2020-12-08T08:15:22+00:00" }, - { - "name": "syspass/plugin-authenticator", - "version": "v2.1.x-dev", - "source": { - "type": "git", - "url": "https://github.com/sysPass/plugin-Authenticator.git", - "reference": "a9a5c264fce13960267f0d87518456b671530c8b" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/sysPass/plugin-Authenticator/zipball/a9a5c264fce13960267f0d87518456b671530c8b", - "reference": "a9a5c264fce13960267f0d87518456b671530c8b", - "shasum": "" - }, - "require": { - "bacon/bacon-qr-code": "^1.0", - "ext-gettext": "*", - "php": "~7.0 || ~7.1 || ~7.2", - "syspass/extension-installer-plugin": "*" - }, - "type": "syspass-plugin", - "extra": { - "type": "web" - }, - "autoload": { - "psr-4": { - "SP\\Modules\\Web\\Plugins\\Authenticator\\": "src/lib/" - }, - "classmap": [ - "src/lib/Controllers/AuthenticatorController.php", - "src/lib/Controllers/AuthenticatorLoginController.php" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "GPL-3.0" - ], - "authors": [ - { - "name": "Rubén Domínguez", - "email": "nuxsmin@syspass.org", - "homepage": "https://syspass.org/", - "role": "Author/Developer" - } - ], - "description": "2FA authentication plugin for sysPass based on TOTP algorithm (RFC 6238)", - "homepage": "https://syspass.org", - "support": { - "docs": "https://doc.syspass.org", - "issues": "https://github.com/nuxsmin/sysPass/issues", - "source": "https://github.com/nuxsmin/sysPass-Authenticator" - }, - "time": "2019-12-21T11:52:31+00:00" - }, { "name": "theseer/tokenizer", "version": "1.2.0", @@ -5045,9 +4940,7 @@ "minimum-stability": "stable", "stability-flags": { "roave/security-advisories": 20, - "ademarre/binary-to-text-php": 20, - "syspass/extension-installer-plugin": 20, - "syspass/plugin-authenticator": 20 + "ademarre/binary-to-text-php": 20 }, "prefer-stable": false, "prefer-lowest": false, diff --git a/lib/SP/Providers/Auth/Ldap/LdapMsAds.php b/lib/SP/Providers/Auth/Ldap/LdapMsAds.php index 2778055e..44f10ed5 100644 --- a/lib/SP/Providers/Auth/Ldap/LdapMsAds.php +++ b/lib/SP/Providers/Auth/Ldap/LdapMsAds.php @@ -38,7 +38,7 @@ use SP\Http\Address; */ final class LdapMsAds extends Ldap { - const FILTER_USER_OBJECT = '(&(!(UserAccountControl:1.2.840.113556.1.4.804:=34))(|(objectCategory=person)(objectClass=user)))'; + const FILTER_USER_OBJECT = '(&(!(UserAccountControl:1.2.840.113556.1.4.804:=30))(|(objectCategory=person)(objectClass=user)))'; const FILTER_GROUP_OBJECT = '(objectCategory=group)'; const FILTER_USER_ATTRIBUTES = ['samaccountname', 'cn', 'uid', 'userPrincipalName']; const FILTER_GROUP_ATTRIBUTES = ['memberOf', 'groupMembership', 'memberof:1.2.840.113556.1.4.1941:']; diff --git a/lib/SP/Services/Install/Installer.php b/lib/SP/Services/Install/Installer.php index 730eeb77..f0fd627d 100644 --- a/lib/SP/Services/Install/Installer.php +++ b/lib/SP/Services/Install/Installer.php @@ -60,9 +60,9 @@ final class Installer extends Service /** * sysPass' version and build number */ - const VERSION = [3, 2, 0]; + const VERSION = [3, 2, 1]; const VERSION_TEXT = '3.2'; - const BUILD = 20122001; + const BUILD = 21011601; /** * @var DatabaseSetupInterface From 728ec832f385a58768ac9fc473fb0c29dee381af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 16 Jan 2021 12:13:25 +0100 Subject: [PATCH 33/36] * [FIX] Fix ADS search behavior by unsseting `ACCOUNTDISABLE` flag for `UserAccountControl` property, since it prevents to throw the proper status code when authenticating against LDAP. Thanks to @t0l0 for testing. Closes #1574 * [MOD] Update dependencies * [MOD] Bump version number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- lib/SP/Providers/Auth/Ldap/LdapMsAds.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/SP/Providers/Auth/Ldap/LdapMsAds.php b/lib/SP/Providers/Auth/Ldap/LdapMsAds.php index 44f10ed5..c9c43b32 100644 --- a/lib/SP/Providers/Auth/Ldap/LdapMsAds.php +++ b/lib/SP/Providers/Auth/Ldap/LdapMsAds.php @@ -38,7 +38,7 @@ use SP\Http\Address; */ final class LdapMsAds extends Ldap { - const FILTER_USER_OBJECT = '(&(!(UserAccountControl:1.2.840.113556.1.4.804:=30))(|(objectCategory=person)(objectClass=user)))'; + const FILTER_USER_OBJECT = '(&(!(UserAccountControl:1.2.840.113556.1.4.804:=32))(|(objectCategory=person)(objectClass=user)))'; const FILTER_GROUP_OBJECT = '(objectCategory=group)'; const FILTER_USER_ATTRIBUTES = ['samaccountname', 'cn', 'uid', 'userPrincipalName']; const FILTER_GROUP_ATTRIBUTES = ['memberOf', 'groupMembership', 'memberof:1.2.840.113556.1.4.1941:']; From 3b189aa5e6eed633e899b0f06ed89a7b7d9fa8b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 13 Mar 2021 10:37:41 +0100 Subject: [PATCH 34/36] * [FIX] HTTP_X_FORWARDED_FOR header wasn't parsed. Thanks to @jlegido for the feedback. Closes #1653 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- lib/SP/Http/Request.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/SP/Http/Request.php b/lib/SP/Http/Request.php index 0be280c4..2ce3eea8 100644 --- a/lib/SP/Http/Request.php +++ b/lib/SP/Http/Request.php @@ -171,8 +171,10 @@ final class Request $forwarded = $this->headers->get('HTTP_FORWARDED'); if ($forwarded !== null && - preg_match_all('/(?:for=([\w.:]+))|(?:for="\[([\w.:]+)\]")/i', - $forwarded, $matches) + preg_match_all( + '/(?:for=([\w.:]+))|(?:for="\[([\w.:]+)\]")/i', + $forwarded, + $matches) ) { return array_filter(array_merge($matches[1], $matches[2]), function ($value) { return !empty($value); @@ -180,7 +182,7 @@ final class Request } // eg: X-Forwarded-For: 192.0.2.43, 2001:db8:cafe::17 - $xForwarded = $this->headers->exists('HTTP_X_FORWARDED_FOR'); + $xForwarded = $this->headers->get('HTTP_X_FORWARDED_FOR'); if ($xForwarded !== null) { $matches = preg_split('/(?<=[\w])+,\s?/i', From 6e72067b6b808c4a8e03dee1334d9695d806bc45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sun, 17 Jan 2021 15:11:47 +0100 Subject: [PATCH 35/36] * [FIX] Prevent random password generator to crash when chars are skipped. Thanks to @blabllavita . Closes #1641 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- public/js/app-util.js | 4 +++- public/js/app-util.min.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/public/js/app-util.js b/public/js/app-util.js index 826458d4..da08c7ac 100644 --- a/public/js/app-util.js +++ b/public/js/app-util.js @@ -444,7 +444,9 @@ sysPass.Util = function (log) { } } - if (password.config.complexity.uppercase) { + if (password.config.complexity.chars + && password.config.complexity.uppercase + ) { const chars = password.config.charset.char.toUpperCase(); const res = inPassArray.some( function (el) { diff --git a/public/js/app-util.min.js b/public/js/app-util.min.js index 87ecd260..eb29418d 100644 --- a/public/js/app-util.min.js +++ b/public/js/app-util.min.js @@ -7,7 +7,7 @@ $jscomp.iteratorPrototype=function(a){$jscomp.initSymbolIterator();a={next:a};a[ $jscomp.polyfill("Array.prototype.keys",function(a){return a?a:function(){return $jscomp.iteratorFromArray(this,function(a){return a})}},"es6","es3"); sysPass.Util=function(a){var d={config:{passLength:0,minPasswordLength:12,complexity:{chars:!0,numbers:!0,symbols:!0,uppercase:!0,numlength:12},charset:{special:"!\"\\\u00b7@|#$~%&/()=?'\u00bf\u00a1^*[]\u00b7;,_-{}<>",number:"1234567890",char:"abcdefghijklmnopqrstuvwxyz"}},random:function(b){a.info("password:random");var c="";this.config.complexity.symbols&&(c+=this.config.charset.special);this.config.complexity.numbers&&(c+=this.config.charset.number);this.config.complexity.chars&&(c+=this.config.charset.char, this.config.complexity.uppercase&&(c+=this.config.charset.char.toUpperCase()));var f=function(){for(var a="",b=0;b++").html(a).text()},resizeImage:function(a){var b=.9*$(window).width(),d=.9*$(window).height(),e={width:a.width(),height:a.height()},g={calc:0,main:0,secondary:0,factor:.9,rel:e.width/e.height},h=function(a){a.main>a.secondary?a.calc=a.main/a.rel:a.maina.secondary&&(a.main*=a.factor,h(a));return a},k=function(){g.main=b;g.secondary=d;var c=h(g);a.css({width:c.main, From 861ce46e8a8269789ec7ee6e6628ca807bfc9c60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rub=C3=A9n=20D?= Date: Sat, 13 Mar 2021 11:45:25 +0100 Subject: [PATCH 36/36] * [MOD] Bump version number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rubén D --- lib/SP/Services/Install/Installer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/SP/Services/Install/Installer.php b/lib/SP/Services/Install/Installer.php index f0fd627d..4384b4a8 100644 --- a/lib/SP/Services/Install/Installer.php +++ b/lib/SP/Services/Install/Installer.php @@ -60,9 +60,9 @@ final class Installer extends Service /** * sysPass' version and build number */ - const VERSION = [3, 2, 1]; + const VERSION = [3, 2, 2]; const VERSION_TEXT = '3.2'; - const BUILD = 21011601; + const BUILD = 21031301; /** * @var DatabaseSetupInterface