diff options
421 files changed, 4589 insertions, 3715 deletions
diff --git a/.htaccess b/.htaccess index 81a53f9989e..63d50a2b9d7 100644 --- a/.htaccess +++ b/.htaccess @@ -26,7 +26,7 @@ </FilesMatch> # Let browsers cache WOFF files for a week - <FilesMatch "\.woff$"> + <FilesMatch "\.woff2?$"> Header set Cache-Control "max-age=604800" </FilesMatch> </IfModule> diff --git a/apps/dav/l10n/fi.js b/apps/dav/l10n/fi.js index 95ec33d8040..591b4d76792 100644 --- a/apps/dav/l10n/fi.js +++ b/apps/dav/l10n/fi.js @@ -55,6 +55,7 @@ OC.L10N.register( "More options …" : "Lisää valintoja…", "Contacts" : "Yhteystiedot", "WebDAV" : "WebDAV", + "WebDAV endpoint" : "WebDAV-päätepiste", "Technical details" : "Tekniset yksityiskohdat", "Remote Address: %s" : "Etäosoite: %s", "Request ID: %s" : "Pyynnön tunniste: %s", diff --git a/apps/dav/l10n/fi.json b/apps/dav/l10n/fi.json index 141d4b02f38..74f89aca0f3 100644 --- a/apps/dav/l10n/fi.json +++ b/apps/dav/l10n/fi.json @@ -53,6 +53,7 @@ "More options …" : "Lisää valintoja…", "Contacts" : "Yhteystiedot", "WebDAV" : "WebDAV", + "WebDAV endpoint" : "WebDAV-päätepiste", "Technical details" : "Tekniset yksityiskohdat", "Remote Address: %s" : "Etäosoite: %s", "Request ID: %s" : "Pyynnön tunniste: %s", diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index fc30393bb46..f948f0f552d 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -50,6 +50,7 @@ use OCP\Files\ForbiddenException; use OCP\Files\InvalidContentException; use OCP\Files\InvalidPathException; use OCP\Files\LockNotAcquiredException; +use OCP\Files\NotFoundException; use OCP\Files\NotPermittedException; use OCP\Files\Storage; use OCP\Files\StorageNotAvailableException; @@ -592,6 +593,9 @@ class File extends Node implements IFile { if ($e instanceof StorageNotAvailableException) { throw new ServiceUnavailable('Failed to write file contents: ' . $e->getMessage(), 0, $e); } + if ($e instanceof NotFoundException) { + throw new NotFound('File not found: ' . $e->getMessage(), 0, $e); + } throw new \Sabre\DAV\Exception($e->getMessage(), 0, $e); } diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index 83510762c1a..94fdada937d 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -99,7 +99,14 @@ * @return {int} page size */ pageSize: function() { - return Math.max(Math.ceil(this.$container.height() / 50), 1); + var isGridView = this.$showGridView.is(':checked'); + var columns = 1; + var rows = Math.ceil(this.$container.height() / 50); + if (isGridView) { + columns = Math.ceil(this.$container.width() / 160); + rows = Math.ceil(this.$container.height() / 160); + } + return Math.max(columns*rows, columns); }, /** diff --git a/apps/files/l10n/fi.js b/apps/files/l10n/fi.js index 60ea8edd76f..6ea6d379a13 100644 --- a/apps/files/l10n/fi.js +++ b/apps/files/l10n/fi.js @@ -14,6 +14,7 @@ OC.L10N.register( "Home" : "Koti", "Close" : "Sulje", "Could not create folder \"{dir}\"" : "Kansiota \"{dir}\" ei voitu luoda", + "This will stop your current uploads." : "Tämä pysäyttää meneillään olevat lähetykset.", "Upload cancelled." : "Lähetys peruttu.", "…" : "…", "Processing files …" : "Käsitellään tiedostoja…", @@ -21,6 +22,7 @@ OC.L10N.register( "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ei riittävästi vapaata tilaa. Lähetyksesi koko on {size1}, mutta vain {size2} on jäljellä", "Target folder \"{dir}\" does not exist any more" : "Kohdekansio \"{dir}\" ei ole enää olemassa", "Not enough free space" : "Ei tarpeeksi vapaata tilaa", + "An unknown error has occurred" : "Tapahtui tuntematon virhe", "Uploading …" : "Lähetetään…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize}/{totalSize} ({bitrate})", "Uploading that item is not supported" : "Kyseisen kohteen lähettäminen ei ole tuettu", diff --git a/apps/files/l10n/fi.json b/apps/files/l10n/fi.json index 5bfe0f9724f..592c9ca58f8 100644 --- a/apps/files/l10n/fi.json +++ b/apps/files/l10n/fi.json @@ -12,6 +12,7 @@ "Home" : "Koti", "Close" : "Sulje", "Could not create folder \"{dir}\"" : "Kansiota \"{dir}\" ei voitu luoda", + "This will stop your current uploads." : "Tämä pysäyttää meneillään olevat lähetykset.", "Upload cancelled." : "Lähetys peruttu.", "…" : "…", "Processing files …" : "Käsitellään tiedostoja…", @@ -19,6 +20,7 @@ "Not enough free space, you are uploading {size1} but only {size2} is left" : "Ei riittävästi vapaata tilaa. Lähetyksesi koko on {size1}, mutta vain {size2} on jäljellä", "Target folder \"{dir}\" does not exist any more" : "Kohdekansio \"{dir}\" ei ole enää olemassa", "Not enough free space" : "Ei tarpeeksi vapaata tilaa", + "An unknown error has occurred" : "Tapahtui tuntematon virhe", "Uploading …" : "Lähetetään…", "{loadedSize} of {totalSize} ({bitrate})" : "{loadedSize}/{totalSize} ({bitrate})", "Uploading that item is not supported" : "Kyseisen kohteen lähettäminen ei ole tuettu", diff --git a/apps/files_external/list.php b/apps/files_external/list.php index a63475e78e6..5be3474cbf2 100644 --- a/apps/files_external/list.php +++ b/apps/files_external/list.php @@ -36,7 +36,7 @@ $tmpl->assign('showgridview', $showgridview && !$isIE); /* Load Status Manager */ \OCP\Util::addStyle('files_external', 'external'); \OCP\Util::addScript('files_external', 'statusmanager'); -\OCP\Util::addScript('files_external', 'templates.js'); +\OCP\Util::addScript('files_external', 'templates'); \OCP\Util::addScript('files_external', 'rollingqueue'); OCP\Util::addScript('files_external', 'app'); diff --git a/apps/files_sharing/l10n/fi.js b/apps/files_sharing/l10n/fi.js index 075abff37a7..4ebd01612f2 100644 --- a/apps/files_sharing/l10n/fi.js +++ b/apps/files_sharing/l10n/fi.js @@ -22,6 +22,7 @@ OC.L10N.register( "Download" : "Lataa", "Delete" : "Poista", "You can upload into this folder" : "Voit lähettää tiedostoja tähän kansioon", + "Terms of service" : "Käyttöehdot", "No compatible server found at {remote}" : "Yhteensopivaa palvelinta ei löytynyt osoitteesta {remote}", "Invalid server URL" : "Virheellinen palvelimen URL", "Failed to add the public link to your Nextcloud" : "Julkisen linkin lisääminen Nextcloudiisi epäonnistui", @@ -98,6 +99,7 @@ OC.L10N.register( "Can't change permissions for public share links" : "Julkisten jakolinkkien käyttöoikeuksia ei voi muuttaa", "Cannot increase permissions" : "Oikeuksien lisääminen ei onnistu", "shared by %s" : "%s jakama", + "Download all files" : "Lataa kaikki tiedostot", "Direct link" : "Suora linkki", "Add to your Nextcloud" : "Lisää Nextcloudiisi", "Share API is disabled" : "Jakamisrajapinta on poistettu käytöstä", @@ -118,6 +120,7 @@ OC.L10N.register( "Select or drop files" : "Valitse tai pudota tiedostoja", "Uploading files…" : "Lähetetään tiedostoja…", "Uploaded files:" : "Lähetetyt tiedostot:", + "By uploading files, you agree to the %1$sterms of service%2$s." : "Tiedostoja lähettämällä hyväksyt %1$skäyttöehdot%2$s.", "{actor} removed you from {file}" : "{actor} poisti käyttöoikeutesi kohteeseen {file}", "Sharing %s failed because the back end does not allow shares from type %s" : "Kohteen %s jakaminen epäonnistui, koska tietovarasto ei salli %s tyyppisiä jakoja", "%s is publicly shared" : "%s on jaettu julkisesti", diff --git a/apps/files_sharing/l10n/fi.json b/apps/files_sharing/l10n/fi.json index d8b04b90f11..e506f9fa99e 100644 --- a/apps/files_sharing/l10n/fi.json +++ b/apps/files_sharing/l10n/fi.json @@ -20,6 +20,7 @@ "Download" : "Lataa", "Delete" : "Poista", "You can upload into this folder" : "Voit lähettää tiedostoja tähän kansioon", + "Terms of service" : "Käyttöehdot", "No compatible server found at {remote}" : "Yhteensopivaa palvelinta ei löytynyt osoitteesta {remote}", "Invalid server URL" : "Virheellinen palvelimen URL", "Failed to add the public link to your Nextcloud" : "Julkisen linkin lisääminen Nextcloudiisi epäonnistui", @@ -96,6 +97,7 @@ "Can't change permissions for public share links" : "Julkisten jakolinkkien käyttöoikeuksia ei voi muuttaa", "Cannot increase permissions" : "Oikeuksien lisääminen ei onnistu", "shared by %s" : "%s jakama", + "Download all files" : "Lataa kaikki tiedostot", "Direct link" : "Suora linkki", "Add to your Nextcloud" : "Lisää Nextcloudiisi", "Share API is disabled" : "Jakamisrajapinta on poistettu käytöstä", @@ -116,6 +118,7 @@ "Select or drop files" : "Valitse tai pudota tiedostoja", "Uploading files…" : "Lähetetään tiedostoja…", "Uploaded files:" : "Lähetetyt tiedostot:", + "By uploading files, you agree to the %1$sterms of service%2$s." : "Tiedostoja lähettämällä hyväksyt %1$skäyttöehdot%2$s.", "{actor} removed you from {file}" : "{actor} poisti käyttöoikeutesi kohteeseen {file}", "Sharing %s failed because the back end does not allow shares from type %s" : "Kohteen %s jakaminen epäonnistui, koska tietovarasto ei salli %s tyyppisiä jakoja", "%s is publicly shared" : "%s on jaettu julkisesti", diff --git a/apps/files_sharing/l10n/sr.js b/apps/files_sharing/l10n/sr.js index 78524b05961..313e4aa5fd8 100644 --- a/apps/files_sharing/l10n/sr.js +++ b/apps/files_sharing/l10n/sr.js @@ -22,6 +22,7 @@ OC.L10N.register( "Download" : "Преузми", "Delete" : "Избриши", "You can upload into this folder" : "Можете да отпремате у ову фасциклу", + "Terms of service" : "Услови коришћења", "No compatible server found at {remote}" : "Нема компатибилног сервера на {remote}", "Invalid server URL" : "Неисправна адреса сервера", "Failed to add the public link to your Nextcloud" : "Неуспело додавање јавне везе ка Вашем Некстклауду", @@ -102,6 +103,7 @@ OC.L10N.register( "Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Дељење слањем лозинке преко Nextcloud Talk-а није успело пошто Nextcloud Talk није укључен", "Cannot increase permissions" : "Не могу да повећам привилегије", "shared by %s" : "поделио %s", + "Download all files" : "Преузми све фајлове", "Direct link" : "Директна веза", "Add to your Nextcloud" : "Додајте у свој облак", "Share API is disabled" : "API за дељене је искључен", @@ -118,11 +120,14 @@ OC.L10N.register( "sharing is disabled" : "дељење је искључено", "For more info, please ask the person who sent this link." : "За више информација, питајте особу која вам је послала везу.", "Share note" : "Белешка дељења", + "Toggle grid view" : "Укључи/искључи приказ мреже", "Download %s" : "Преузми %s", "Upload files to %s" : "Отпремите фајлове на%s", + "Note" : "Белешка", "Select or drop files" : "Одаберите или превуците фајлове", "Uploading files…" : "Отпремам фајлове…", "Uploaded files:" : "Отпремљени фајлови:", + "By uploading files, you agree to the %1$sterms of service%2$s." : "Отпремањем фајлова, слажете се са %1$sусловима коришћења%2$s.", "{actor} removed you from {file}" : "{actor} Вас је уклонио са {file}", "Sharing %s failed because the back end does not allow shares from type %s" : "Дељење %s није успело зато што позадина не дозвољава дељење које је типа %s", "%s is publicly shared" : "%s је јавно дељен", diff --git a/apps/files_sharing/l10n/sr.json b/apps/files_sharing/l10n/sr.json index e163ef0e32f..f2f7a8c9399 100644 --- a/apps/files_sharing/l10n/sr.json +++ b/apps/files_sharing/l10n/sr.json @@ -20,6 +20,7 @@ "Download" : "Преузми", "Delete" : "Избриши", "You can upload into this folder" : "Можете да отпремате у ову фасциклу", + "Terms of service" : "Услови коришћења", "No compatible server found at {remote}" : "Нема компатибилног сервера на {remote}", "Invalid server URL" : "Неисправна адреса сервера", "Failed to add the public link to your Nextcloud" : "Неуспело додавање јавне везе ка Вашем Некстклауду", @@ -100,6 +101,7 @@ "Sharing sending the password by Nextcloud Talk failed because Nextcloud Talk is not enabled" : "Дељење слањем лозинке преко Nextcloud Talk-а није успело пошто Nextcloud Talk није укључен", "Cannot increase permissions" : "Не могу да повећам привилегије", "shared by %s" : "поделио %s", + "Download all files" : "Преузми све фајлове", "Direct link" : "Директна веза", "Add to your Nextcloud" : "Додајте у свој облак", "Share API is disabled" : "API за дељене је искључен", @@ -116,11 +118,14 @@ "sharing is disabled" : "дељење је искључено", "For more info, please ask the person who sent this link." : "За више информација, питајте особу која вам је послала везу.", "Share note" : "Белешка дељења", + "Toggle grid view" : "Укључи/искључи приказ мреже", "Download %s" : "Преузми %s", "Upload files to %s" : "Отпремите фајлове на%s", + "Note" : "Белешка", "Select or drop files" : "Одаберите или превуците фајлове", "Uploading files…" : "Отпремам фајлове…", "Uploaded files:" : "Отпремљени фајлови:", + "By uploading files, you agree to the %1$sterms of service%2$s." : "Отпремањем фајлова, слажете се са %1$sусловима коришћења%2$s.", "{actor} removed you from {file}" : "{actor} Вас је уклонио са {file}", "Sharing %s failed because the back end does not allow shares from type %s" : "Дељење %s није успело зато што позадина не дозвољава дељење које је типа %s", "%s is publicly shared" : "%s је јавно дељен", diff --git a/apps/oauth2/l10n/af.js b/apps/oauth2/l10n/af.js index e298d4a1ce3..7f11a0bbf33 100644 --- a/apps/oauth2/l10n/af.js +++ b/apps/oauth2/l10n/af.js @@ -3,10 +3,10 @@ OC.L10N.register( { "OAuth 2.0 clients" : "OAuth 2.0-kliënte", "Name" : "Naam", - "Client Identifier" : "Kliëntidentifiseerder", - "Add client" : "Voeg kliënt toe", "Redirection URI" : "Herverwysings-URI", + "Client Identifier" : "Kliëntidentifiseerder", "Secret" : "Geheim", + "Add client" : "Voeg kliënt toe", "Add" : "Voeg toe" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/af.json b/apps/oauth2/l10n/af.json index 9b2f6231a0b..56faccfc96f 100644 --- a/apps/oauth2/l10n/af.json +++ b/apps/oauth2/l10n/af.json @@ -1,10 +1,10 @@ { "translations": { "OAuth 2.0 clients" : "OAuth 2.0-kliënte", "Name" : "Naam", - "Client Identifier" : "Kliëntidentifiseerder", - "Add client" : "Voeg kliënt toe", "Redirection URI" : "Herverwysings-URI", + "Client Identifier" : "Kliëntidentifiseerder", "Secret" : "Geheim", + "Add client" : "Voeg kliënt toe", "Add" : "Voeg toe" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ar.js b/apps/oauth2/l10n/ar.js index b3e72b6cad1..9771d514540 100644 --- a/apps/oauth2/l10n/ar.js +++ b/apps/oauth2/l10n/ar.js @@ -2,10 +2,10 @@ OC.L10N.register( "oauth2", { "Name" : "الإسم", - "Client Identifier" : "مُعرِّف العميل", - "Add client" : "إضافة عميل", "Redirection URI" : "رابط إعادة التوجيه", + "Client Identifier" : "مُعرِّف العميل", "Secret" : "السر", + "Add client" : "إضافة عميل", "Add" : "إضافة" }, "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/apps/oauth2/l10n/ar.json b/apps/oauth2/l10n/ar.json index 82d7dc0f2ad..bfa7e0487ea 100644 --- a/apps/oauth2/l10n/ar.json +++ b/apps/oauth2/l10n/ar.json @@ -1,9 +1,9 @@ { "translations": { "Name" : "الإسم", - "Client Identifier" : "مُعرِّف العميل", - "Add client" : "إضافة عميل", "Redirection URI" : "رابط إعادة التوجيه", + "Client Identifier" : "مُعرِّف العميل", "Secret" : "السر", + "Add client" : "إضافة عميل", "Add" : "إضافة" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ast.js b/apps/oauth2/l10n/ast.js index cf71cfa070a..cea3c4a8ee1 100644 --- a/apps/oauth2/l10n/ast.js +++ b/apps/oauth2/l10n/ast.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Veceros d'OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificador del veceru", - "Add client" : "Amestar veceru", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite a los servicios esternos solicitar accesu a %s.", "Redirection URI" : "URI de redireición", + "Client Identifier" : "Identificador del veceru", "Secret" : "Secretu", - "Add" : "Amestar" + "Add client" : "Amestar veceru", + "Add" : "Amestar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite a los servicios esternos solicitar accesu a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/ast.json b/apps/oauth2/l10n/ast.json index 7f9b5cdf766..9818cff1084 100644 --- a/apps/oauth2/l10n/ast.json +++ b/apps/oauth2/l10n/ast.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Veceros d'OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificador del veceru", - "Add client" : "Amestar veceru", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite a los servicios esternos solicitar accesu a %s.", "Redirection URI" : "URI de redireición", + "Client Identifier" : "Identificador del veceru", "Secret" : "Secretu", - "Add" : "Amestar" + "Add client" : "Amestar veceru", + "Add" : "Amestar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite a los servicios esternos solicitar accesu a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ca.js b/apps/oauth2/l10n/ca.js index 0cf9f84b3cf..aea586ecea4 100644 --- a/apps/oauth2/l10n/ca.js +++ b/apps/oauth2/l10n/ca.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L’app OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "Name" : "Nom", - "Client Identifier" : "Identificador de client", - "Add client" : "Afegir client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet que els serveis externs sol·licitin accés a %s.", "Redirection URI" : "URl redirecció", + "Client Identifier" : "Identificador de client", "Secret" : "Secret", - "Add" : "Afegir" + "Add client" : "Afegir client", + "Add" : "Afegir", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet que els serveis externs sol·licitin accés a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/ca.json b/apps/oauth2/l10n/ca.json index 0ad0a3516e2..67c438ed52c 100644 --- a/apps/oauth2/l10n/ca.json +++ b/apps/oauth2/l10n/ca.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L’app OAuth2 permet als administradors configurar el flux de treball d'autenticació integrada per també permetre l'autenticació compatible amb OAuth2 des d'altres aplicacions web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "Name" : "Nom", - "Client Identifier" : "Identificador de client", - "Add client" : "Afegir client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet que els serveis externs sol·licitin accés a %s.", "Redirection URI" : "URl redirecció", + "Client Identifier" : "Identificador de client", "Secret" : "Secret", - "Add" : "Afegir" + "Add client" : "Afegir client", + "Add" : "Afegir", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet que els serveis externs sol·licitin accés a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/cs.js b/apps/oauth2/l10n/cs.js index 3ab385e94cd..746f621d458 100644 --- a/apps/oauth2/l10n/cs.js +++ b/apps/oauth2/l10n/cs.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikace OAuth2 umožňuje správcům nastavit vestavěný postup ověřování tak, aby podporoval také OAuth2 kompatibilní ověřování z ostatních webových aplikací.", "OAuth 2.0 clients" : "OAuth 2.0 klienti", "Name" : "Název", - "Client Identifier" : "Identifikátor klienta", - "Add client" : "Přidat klienta", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje cizím službám žádat přístup k %s.", "Redirection URI" : "URL pro přesměrování", + "Client Identifier" : "Identifikátor klienta", "Secret" : "Tajemství", - "Add" : "Přidat" + "Add client" : "Přidat klienta", + "Add" : "Přidat", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje cizím službám žádat přístup k %s." }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/apps/oauth2/l10n/cs.json b/apps/oauth2/l10n/cs.json index 8a1ed5c8e52..49ef6f72457 100644 --- a/apps/oauth2/l10n/cs.json +++ b/apps/oauth2/l10n/cs.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Aplikace OAuth2 umožňuje správcům nastavit vestavěný postup ověřování tak, aby podporoval také OAuth2 kompatibilní ověřování z ostatních webových aplikací.", "OAuth 2.0 clients" : "OAuth 2.0 klienti", "Name" : "Název", - "Client Identifier" : "Identifikátor klienta", - "Add client" : "Přidat klienta", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje cizím službám žádat přístup k %s.", "Redirection URI" : "URL pro přesměrování", + "Client Identifier" : "Identifikátor klienta", "Secret" : "Tajemství", - "Add" : "Přidat" + "Add client" : "Přidat klienta", + "Add" : "Přidat", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje cizím službám žádat přístup k %s." },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/da.js b/apps/oauth2/l10n/da.js index 37c3c11bcfc..5e8eea13f2b 100644 --- a/apps/oauth2/l10n/da.js +++ b/apps/oauth2/l10n/da.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "Name" : "Navn", - "Client Identifier" : "Klient ID", - "Add client" : "Tilføj klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillader eksterne services at forespørge adgang til din %s.", "Redirection URI" : "Viderestilling URI", + "Client Identifier" : "Klient ID", "Secret" : "Hemmelighed", - "Add" : "Tilføj" + "Add client" : "Tilføj klient", + "Add" : "Tilføj", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillader eksterne services at forespørge adgang til din %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/da.json b/apps/oauth2/l10n/da.json index f31fc10f515..81df5d73c2f 100644 --- a/apps/oauth2/l10n/da.json +++ b/apps/oauth2/l10n/da.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "Name" : "Navn", - "Client Identifier" : "Klient ID", - "Add client" : "Tilføj klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillader eksterne services at forespørge adgang til din %s.", "Redirection URI" : "Viderestilling URI", + "Client Identifier" : "Klient ID", "Secret" : "Hemmelighed", - "Add" : "Tilføj" + "Add client" : "Tilføj klient", + "Add" : "Tilføj", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillader eksterne services at forespørge adgang til din %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/de.js b/apps/oauth2/l10n/de.js index c6732e0b235..9332c0e2c5c 100644 --- a/apps/oauth2/l10n/de.js +++ b/apps/oauth2/l10n/de.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", - "Client Identifier" : "Client-Identifikationsmerkmal", - "Add client" : "Client hinzufügen", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Redirection URI" : "Weiterleitungs-URI", + "Client Identifier" : "Client-Identifikationsmerkmal", "Secret" : "Geheimnis", - "Add" : "Hinzufügen" + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/de.json b/apps/oauth2/l10n/de.json index d36e53d9857..0b293fe607e 100644 --- a/apps/oauth2/l10n/de.json +++ b/apps/oauth2/l10n/de.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", - "Client Identifier" : "Client-Identifikationsmerkmal", - "Add client" : "Client hinzufügen", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Redirection URI" : "Weiterleitungs-URI", + "Client Identifier" : "Client-Identifikationsmerkmal", "Secret" : "Geheimnis", - "Add" : "Hinzufügen" + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/de_DE.js b/apps/oauth2/l10n/de_DE.js index c6732e0b235..9332c0e2c5c 100644 --- a/apps/oauth2/l10n/de_DE.js +++ b/apps/oauth2/l10n/de_DE.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", - "Client Identifier" : "Client-Identifikationsmerkmal", - "Add client" : "Client hinzufügen", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Redirection URI" : "Weiterleitungs-URI", + "Client Identifier" : "Client-Identifikationsmerkmal", "Secret" : "Geheimnis", - "Add" : "Hinzufügen" + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/de_DE.json b/apps/oauth2/l10n/de_DE.json index d36e53d9857..0b293fe607e 100644 --- a/apps/oauth2/l10n/de_DE.json +++ b/apps/oauth2/l10n/de_DE.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Die OAuth2-App ermöglicht es Administratoren den eingebauten Authenztifizierungsablauf dahingehend zu konfigurieren, das auch ein OAuth2 komplatible Authentifizierung von anderen Web-Anwendungen aus möglich ist. ", "OAuth 2.0 clients" : "OAuth 2.0-Clients", "Name" : "Name", - "Client Identifier" : "Client-Identifikationsmerkmal", - "Add client" : "Client hinzufügen", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen.", "Redirection URI" : "Weiterleitungs-URI", + "Client Identifier" : "Client-Identifikationsmerkmal", "Secret" : "Geheimnis", - "Add" : "Hinzufügen" + "Add client" : "Client hinzufügen", + "Add" : "Hinzufügen", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 erlaubt es externen Diensten nach Zugriff auf %s zu fragen." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/el.js b/apps/oauth2/l10n/el.js index 018215b541b..fdb465b32aa 100644 --- a/apps/oauth2/l10n/el.js +++ b/apps/oauth2/l10n/el.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Πελάτες OAuth 2.0", "Name" : "Όνομα", - "Client Identifier" : "Αναγνωριστικό πελάτη", - "Add client" : "Προσθήκη πελάτη", - "OAuth 2.0 allows external services to request access to %s." : "Το OAuth 2.0 επιτρέπει σε εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο %s σας.", "Redirection URI" : "URI ανακατεύθυνσης", + "Client Identifier" : "Αναγνωριστικό πελάτη", "Secret" : "Μυστικό", - "Add" : "Προσθήκη" + "Add client" : "Προσθήκη πελάτη", + "Add" : "Προσθήκη", + "OAuth 2.0 allows external services to request access to %s." : "Το OAuth 2.0 επιτρέπει σε εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο %s σας." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/el.json b/apps/oauth2/l10n/el.json index fd3e56e95b2..254c2c3026d 100644 --- a/apps/oauth2/l10n/el.json +++ b/apps/oauth2/l10n/el.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Πελάτες OAuth 2.0", "Name" : "Όνομα", - "Client Identifier" : "Αναγνωριστικό πελάτη", - "Add client" : "Προσθήκη πελάτη", - "OAuth 2.0 allows external services to request access to %s." : "Το OAuth 2.0 επιτρέπει σε εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο %s σας.", "Redirection URI" : "URI ανακατεύθυνσης", + "Client Identifier" : "Αναγνωριστικό πελάτη", "Secret" : "Μυστικό", - "Add" : "Προσθήκη" + "Add client" : "Προσθήκη πελάτη", + "Add" : "Προσθήκη", + "OAuth 2.0 allows external services to request access to %s." : "Το OAuth 2.0 επιτρέπει σε εξωτερικές υπηρεσίες να ζητούν πρόσβαση στο %s σας." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/en_GB.js b/apps/oauth2/l10n/en_GB.js index 854306247d4..b1074a13648 100644 --- a/apps/oauth2/l10n/en_GB.js +++ b/apps/oauth2/l10n/en_GB.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 clients", "Name" : "Name", - "Client Identifier" : "Client Identifier", - "Add client" : "Add client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 allows external services to request access to %s.", "Redirection URI" : "Redirection URI", + "Client Identifier" : "Client Identifier", "Secret" : "Secret", - "Add" : "Add" + "Add client" : "Add client", + "Add" : "Add", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 allows external services to request access to %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/en_GB.json b/apps/oauth2/l10n/en_GB.json index 06965424236..f54b721da47 100644 --- a/apps/oauth2/l10n/en_GB.json +++ b/apps/oauth2/l10n/en_GB.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 clients", "Name" : "Name", - "Client Identifier" : "Client Identifier", - "Add client" : "Add client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 allows external services to request access to %s.", "Redirection URI" : "Redirection URI", + "Client Identifier" : "Client Identifier", "Secret" : "Secret", - "Add" : "Add" + "Add client" : "Add client", + "Add" : "Add", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 allows external services to request access to %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es.js b/apps/oauth2/l10n/es.js index 7844062a667..072c83a7a65 100644 --- a/apps/oauth2/l10n/es.js +++ b/apps/oauth2/l10n/es.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La app OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador de cliente", - "Add client" : "Añadir cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAut 2.0 permite a servicios externos solicitar acceso a %s.", "Redirection URI" : "URI de redirección", + "Client Identifier" : "Identificador de cliente", "Secret" : "Secreto", - "Add" : "Añadir" + "Add client" : "Añadir cliente", + "Add" : "Añadir", + "OAuth 2.0 allows external services to request access to %s." : "OAut 2.0 permite a servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es.json b/apps/oauth2/l10n/es.json index ec4807f2a6c..abf9cf56eb8 100644 --- a/apps/oauth2/l10n/es.json +++ b/apps/oauth2/l10n/es.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "La app OAuth2 permite a los administradores configurar el flujo de trabajo de autenticación incorporado para permitir también autenticación compatible con OAuth2 desde otras aplicaciones web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador de cliente", - "Add client" : "Añadir cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAut 2.0 permite a servicios externos solicitar acceso a %s.", "Redirection URI" : "URI de redirección", + "Client Identifier" : "Identificador de cliente", "Secret" : "Secreto", - "Add" : "Añadir" + "Add client" : "Añadir cliente", + "Add" : "Añadir", + "OAuth 2.0 allows external services to request access to %s." : "OAut 2.0 permite a servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_419.js b/apps/oauth2/l10n/es_419.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_419.js +++ b/apps/oauth2/l10n/es_419.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_419.json b/apps/oauth2/l10n/es_419.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_419.json +++ b/apps/oauth2/l10n/es_419.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_AR.js b/apps/oauth2/l10n/es_AR.js index 3b09d5369ea..05fb7f8844f 100644 --- a/apps/oauth2/l10n/es_AR.js +++ b/apps/oauth2/l10n/es_AR.js @@ -3,10 +3,10 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", "Redirection URI" : "URI de redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", + "Add client" : "Agregar cliente", "Add" : "Agregar" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_AR.json b/apps/oauth2/l10n/es_AR.json index f66e26394ea..5c3defd705d 100644 --- a/apps/oauth2/l10n/es_AR.json +++ b/apps/oauth2/l10n/es_AR.json @@ -1,10 +1,10 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", "Redirection URI" : "URI de redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", + "Add client" : "Agregar cliente", "Add" : "Agregar" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_CL.js b/apps/oauth2/l10n/es_CL.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_CL.js +++ b/apps/oauth2/l10n/es_CL.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_CL.json b/apps/oauth2/l10n/es_CL.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_CL.json +++ b/apps/oauth2/l10n/es_CL.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_CO.js b/apps/oauth2/l10n/es_CO.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_CO.js +++ b/apps/oauth2/l10n/es_CO.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_CO.json b/apps/oauth2/l10n/es_CO.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_CO.json +++ b/apps/oauth2/l10n/es_CO.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_CR.js b/apps/oauth2/l10n/es_CR.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_CR.js +++ b/apps/oauth2/l10n/es_CR.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_CR.json b/apps/oauth2/l10n/es_CR.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_CR.json +++ b/apps/oauth2/l10n/es_CR.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_DO.js b/apps/oauth2/l10n/es_DO.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_DO.js +++ b/apps/oauth2/l10n/es_DO.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_DO.json b/apps/oauth2/l10n/es_DO.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_DO.json +++ b/apps/oauth2/l10n/es_DO.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_EC.js b/apps/oauth2/l10n/es_EC.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_EC.js +++ b/apps/oauth2/l10n/es_EC.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_EC.json b/apps/oauth2/l10n/es_EC.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_EC.json +++ b/apps/oauth2/l10n/es_EC.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_GT.js b/apps/oauth2/l10n/es_GT.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_GT.js +++ b/apps/oauth2/l10n/es_GT.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_GT.json b/apps/oauth2/l10n/es_GT.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_GT.json +++ b/apps/oauth2/l10n/es_GT.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_HN.js b/apps/oauth2/l10n/es_HN.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_HN.js +++ b/apps/oauth2/l10n/es_HN.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_HN.json b/apps/oauth2/l10n/es_HN.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_HN.json +++ b/apps/oauth2/l10n/es_HN.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_MX.js b/apps/oauth2/l10n/es_MX.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_MX.js +++ b/apps/oauth2/l10n/es_MX.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_MX.json b/apps/oauth2/l10n/es_MX.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_MX.json +++ b/apps/oauth2/l10n/es_MX.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_NI.js b/apps/oauth2/l10n/es_NI.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_NI.js +++ b/apps/oauth2/l10n/es_NI.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_NI.json b/apps/oauth2/l10n/es_NI.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_NI.json +++ b/apps/oauth2/l10n/es_NI.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PA.js b/apps/oauth2/l10n/es_PA.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_PA.js +++ b/apps/oauth2/l10n/es_PA.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PA.json b/apps/oauth2/l10n/es_PA.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_PA.json +++ b/apps/oauth2/l10n/es_PA.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PE.js b/apps/oauth2/l10n/es_PE.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_PE.js +++ b/apps/oauth2/l10n/es_PE.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PE.json b/apps/oauth2/l10n/es_PE.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_PE.json +++ b/apps/oauth2/l10n/es_PE.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PR.js b/apps/oauth2/l10n/es_PR.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_PR.js +++ b/apps/oauth2/l10n/es_PR.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PR.json b/apps/oauth2/l10n/es_PR.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_PR.json +++ b/apps/oauth2/l10n/es_PR.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_PY.js b/apps/oauth2/l10n/es_PY.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_PY.js +++ b/apps/oauth2/l10n/es_PY.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_PY.json b/apps/oauth2/l10n/es_PY.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_PY.json +++ b/apps/oauth2/l10n/es_PY.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_SV.js b/apps/oauth2/l10n/es_SV.js index 3dafdada22e..159b6504920 100644 --- a/apps/oauth2/l10n/es_SV.js +++ b/apps/oauth2/l10n/es_SV.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_SV.json b/apps/oauth2/l10n/es_SV.json index aa7746a9121..cd99f2cc9ff 100644 --- a/apps/oauth2/l10n/es_SV.json +++ b/apps/oauth2/l10n/es_SV.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/es_UY.js b/apps/oauth2/l10n/es_UY.js index b9ca0c45898..65642c7ff24 100644 --- a/apps/oauth2/l10n/es_UY.js +++ b/apps/oauth2/l10n/es_UY.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/es_UY.json b/apps/oauth2/l10n/es_UY.json index 00c74df98c8..8c8a21cec60 100644 --- a/apps/oauth2/l10n/es_UY.json +++ b/apps/oauth2/l10n/es_UY.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nombre", - "Client Identifier" : "Identificador del cliente", - "Add client" : "Agregar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s.", "Redirection URI" : "URI para redirección", + "Client Identifier" : "Identificador del cliente", "Secret" : "Secreto", - "Add" : "Agregar" + "Add client" : "Agregar cliente", + "Add" : "Agregar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 le permite a los servicios externos solicitar acceso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/et_EE.js b/apps/oauth2/l10n/et_EE.js index ecf0d039326..fe547fb037a 100644 --- a/apps/oauth2/l10n/et_EE.js +++ b/apps/oauth2/l10n/et_EE.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "OAuth 2.0 kliendid", "Name" : "Nimi", - "Client Identifier" : "Kliendi identifikaator", - "Add client" : "Lisa klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lubab välistel teenustel %s teenusele ligipääsu taotleda.", "Redirection URI" : "Suunamise URI", + "Client Identifier" : "Kliendi identifikaator", "Secret" : "Saladus", - "Add" : "Lisa" + "Add client" : "Lisa klient", + "Add" : "Lisa", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lubab välistel teenustel %s teenusele ligipääsu taotleda." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/et_EE.json b/apps/oauth2/l10n/et_EE.json index 3bd00de812a..e24ee78985c 100644 --- a/apps/oauth2/l10n/et_EE.json +++ b/apps/oauth2/l10n/et_EE.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "OAuth 2.0 kliendid", "Name" : "Nimi", - "Client Identifier" : "Kliendi identifikaator", - "Add client" : "Lisa klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lubab välistel teenustel %s teenusele ligipääsu taotleda.", "Redirection URI" : "Suunamise URI", + "Client Identifier" : "Kliendi identifikaator", "Secret" : "Saladus", - "Add" : "Lisa" + "Add client" : "Lisa klient", + "Add" : "Lisa", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lubab välistel teenustel %s teenusele ligipääsu taotleda." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/eu.js b/apps/oauth2/l10n/eu.js index c5963b4dc7a..ffaa92e2e97 100644 --- a/apps/oauth2/l10n/eu.js +++ b/apps/oauth2/l10n/eu.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "OAuth 2.0-en bezeroak", "Name" : "Izena", - "Client Identifier" : "Bezeroaren Identifikadorea", - "Add client" : "Bezeroa gehitu", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 -k kanpo zerbitzuek %s atzitzea baimentzen dute.", "Redirection URI" : "Birbideraketaren URI", + "Client Identifier" : "Bezeroaren Identifikadorea", "Secret" : "Sekretua", - "Add" : "Gehitu" + "Add client" : "Bezeroa gehitu", + "Add" : "Gehitu", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 -k kanpo zerbitzuek %s atzitzea baimentzen dute." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/eu.json b/apps/oauth2/l10n/eu.json index 24dd938bef6..82313f52130 100644 --- a/apps/oauth2/l10n/eu.json +++ b/apps/oauth2/l10n/eu.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "OAuth 2.0-en bezeroak", "Name" : "Izena", - "Client Identifier" : "Bezeroaren Identifikadorea", - "Add client" : "Bezeroa gehitu", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 -k kanpo zerbitzuek %s atzitzea baimentzen dute.", "Redirection URI" : "Birbideraketaren URI", + "Client Identifier" : "Bezeroaren Identifikadorea", "Secret" : "Sekretua", - "Add" : "Gehitu" + "Add client" : "Bezeroa gehitu", + "Add" : "Gehitu", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 -k kanpo zerbitzuek %s atzitzea baimentzen dute." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/fi.js b/apps/oauth2/l10n/fi.js index e0c2769c2d7..072ec9fffb5 100644 --- a/apps/oauth2/l10n/fi.js +++ b/apps/oauth2/l10n/fi.js @@ -4,10 +4,10 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", "Name" : "Nimi", - "Client Identifier" : "Asiakkaan tunniste", - "Add client" : "Lisää asiakas", "Redirection URI" : "Uudelleenohjaus URI", + "Client Identifier" : "Asiakkaan tunniste", "Secret" : "Salaisuus", + "Add client" : "Lisää asiakas", "Add" : "Lisää" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/fi.json b/apps/oauth2/l10n/fi.json index 2936860941d..9f4d8511d61 100644 --- a/apps/oauth2/l10n/fi.json +++ b/apps/oauth2/l10n/fi.json @@ -2,10 +2,10 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 -asiakkaat", "Name" : "Nimi", - "Client Identifier" : "Asiakkaan tunniste", - "Add client" : "Lisää asiakas", "Redirection URI" : "Uudelleenohjaus URI", + "Client Identifier" : "Asiakkaan tunniste", "Secret" : "Salaisuus", + "Add client" : "Lisää asiakas", "Add" : "Lisää" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/fr.js b/apps/oauth2/l10n/fr.js index 49447311b49..28fc56fd5b5 100644 --- a/apps/oauth2/l10n/fr.js +++ b/apps/oauth2/l10n/fr.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer l'authentification intégrée afin d'autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "Name" : "Nom", - "Client Identifier" : "Identifiant du client", - "Add client" : "Ajouter un client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet à des services externes de demander l'accès à %s.", "Redirection URI" : "URI de redirection", + "Client Identifier" : "Identifiant du client", "Secret" : "Secret", - "Add" : "Ajouter" + "Add client" : "Ajouter un client", + "Add" : "Ajouter", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet à des services externes de demander l'accès à %s." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/oauth2/l10n/fr.json b/apps/oauth2/l10n/fr.json index 92610a63409..325d8f7164d 100644 --- a/apps/oauth2/l10n/fr.json +++ b/apps/oauth2/l10n/fr.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'application OAuth2 permet aux administrateurs de configurer l'authentification intégrée afin d'autoriser l'authentification compatible OAuth2 depuis d'autres applications web.", "OAuth 2.0 clients" : "Clients OAuth 2.0", "Name" : "Nom", - "Client Identifier" : "Identifiant du client", - "Add client" : "Ajouter un client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet à des services externes de demander l'accès à %s.", "Redirection URI" : "URI de redirection", + "Client Identifier" : "Identifiant du client", "Secret" : "Secret", - "Add" : "Ajouter" + "Add client" : "Ajouter un client", + "Add" : "Ajouter", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permet à des services externes de demander l'accès à %s." },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/he.js b/apps/oauth2/l10n/he.js index c0e750bbef1..400ad6f449e 100644 --- a/apps/oauth2/l10n/he.js +++ b/apps/oauth2/l10n/he.js @@ -5,11 +5,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "לקוחות OAuth 2.0", "Name" : "שם", - "Client Identifier" : "זיהוי לקו", - "Add client" : "הוספת לקוחי", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל %s.", "Redirection URI" : "כתובת הפנייה", + "Client Identifier" : "זיהוי לקו", "Secret" : "סוד", - "Add" : "הוספה" + "Add client" : "הוספת לקוחי", + "Add" : "הוספה", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל %s." }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); diff --git a/apps/oauth2/l10n/he.json b/apps/oauth2/l10n/he.json index bb922efb114..1397c1f285a 100644 --- a/apps/oauth2/l10n/he.json +++ b/apps/oauth2/l10n/he.json @@ -3,11 +3,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "לקוחות OAuth 2.0", "Name" : "שם", - "Client Identifier" : "זיהוי לקו", - "Add client" : "הוספת לקוחי", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל %s.", "Redirection URI" : "כתובת הפנייה", + "Client Identifier" : "זיהוי לקו", "Secret" : "סוד", - "Add" : "הוספה" + "Add client" : "הוספת לקוחי", + "Add" : "הוספה", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 מאפשר לשירותים חיצוניים לבקש גישה אל %s." },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/hu.js b/apps/oauth2/l10n/hu.js index aecce7200cd..7afdf0b61f3 100644 --- a/apps/oauth2/l10n/hu.js +++ b/apps/oauth2/l10n/hu.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 kliensek", "Name" : "Név", - "Client Identifier" : "Ügyfél azonosító", - "Add client" : "Ügyfél hozzáadás", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 megengedi külső szolgáltatásoknak, hogy hozzáférést kérjenek ehhez: %s.", "Redirection URI" : "Átirányítési URI", + "Client Identifier" : "Ügyfél azonosító", "Secret" : "Titok", - "Add" : "Hozzáadás" + "Add client" : "Ügyfél hozzáadás", + "Add" : "Hozzáadás", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 megengedi külső szolgáltatásoknak, hogy hozzáférést kérjenek ehhez: %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/hu.json b/apps/oauth2/l10n/hu.json index 75e2757fb08..b8f374e04fa 100644 --- a/apps/oauth2/l10n/hu.json +++ b/apps/oauth2/l10n/hu.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 kliensek", "Name" : "Név", - "Client Identifier" : "Ügyfél azonosító", - "Add client" : "Ügyfél hozzáadás", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 megengedi külső szolgáltatásoknak, hogy hozzáférést kérjenek ehhez: %s.", "Redirection URI" : "Átirányítési URI", + "Client Identifier" : "Ügyfél azonosító", "Secret" : "Titok", - "Add" : "Hozzáadás" + "Add client" : "Ügyfél hozzáadás", + "Add" : "Hozzáadás", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 megengedi külső szolgáltatásoknak, hogy hozzáférést kérjenek ehhez: %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/id.js b/apps/oauth2/l10n/id.js index 8a4d985f3c3..397ac44b89c 100644 --- a/apps/oauth2/l10n/id.js +++ b/apps/oauth2/l10n/id.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Klien OAuth 2.0", "Name" : "Nama", - "Client Identifier" : "Identifier klien", - "Add client" : "Tambah klien", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 memungkinkan layanan eksternal untuk meminta akses ke %s.", "Redirection URI" : "URI Pengalihan", + "Client Identifier" : "Identifier klien", "Secret" : "Rahasia", - "Add" : "Tambah" + "Add client" : "Tambah klien", + "Add" : "Tambah", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 memungkinkan layanan eksternal untuk meminta akses ke %s." }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/id.json b/apps/oauth2/l10n/id.json index ab9c10eb9c5..56ac5d2a75c 100644 --- a/apps/oauth2/l10n/id.json +++ b/apps/oauth2/l10n/id.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Klien OAuth 2.0", "Name" : "Nama", - "Client Identifier" : "Identifier klien", - "Add client" : "Tambah klien", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 memungkinkan layanan eksternal untuk meminta akses ke %s.", "Redirection URI" : "URI Pengalihan", + "Client Identifier" : "Identifier klien", "Secret" : "Rahasia", - "Add" : "Tambah" + "Add client" : "Tambah klien", + "Add" : "Tambah", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 memungkinkan layanan eksternal untuk meminta akses ke %s." },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/is.js b/apps/oauth2/l10n/is.js index a45f076bc43..9d6d3f69cb9 100644 --- a/apps/oauth2/l10n/is.js +++ b/apps/oauth2/l10n/is.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-forritið gerir kerfisstjórum kleift að stilla innbyggða auðkenningarferlið þannig að einnig sé hægt að nota OAuth2-samhæfða auðkenningu frá öðrum vefforritum.", "OAuth 2.0 clients" : "OAuth 2.0 biðlarar", "Name" : "Nafn", - "Client Identifier" : "Biðlaraauðkenni", - "Add client" : "Bæta við biðlara", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að %s.", "Redirection URI" : "Endurbeiningarslóð", + "Client Identifier" : "Biðlaraauðkenni", "Secret" : "Leynilykill", - "Add" : "Bæta við" + "Add client" : "Bæta við biðlara", + "Add" : "Bæta við", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að %s." }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/oauth2/l10n/is.json b/apps/oauth2/l10n/is.json index 9df65114808..af29bca0fc8 100644 --- a/apps/oauth2/l10n/is.json +++ b/apps/oauth2/l10n/is.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2-forritið gerir kerfisstjórum kleift að stilla innbyggða auðkenningarferlið þannig að einnig sé hægt að nota OAuth2-samhæfða auðkenningu frá öðrum vefforritum.", "OAuth 2.0 clients" : "OAuth 2.0 biðlarar", "Name" : "Nafn", - "Client Identifier" : "Biðlaraauðkenni", - "Add client" : "Bæta við biðlara", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að %s.", "Redirection URI" : "Endurbeiningarslóð", + "Client Identifier" : "Biðlaraauðkenni", "Secret" : "Leynilykill", - "Add" : "Bæta við" + "Add client" : "Bæta við biðlara", + "Add" : "Bæta við", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 gerir utanaðkomandi þjónustum kleift að biðja um aðgang að %s." },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/it.js b/apps/oauth2/l10n/it.js index 66eee6fcc7a..69dd72f7090 100644 --- a/apps/oauth2/l10n/it.js +++ b/apps/oauth2/l10n/it.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione integrata per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", "OAuth 2.0 clients" : "Client OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificatore client", - "Add client" : "Aggiungi client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 consente a servizi esterni di richiedere accesso al tuo %s.", "Redirection URI" : "URI di redirezione", + "Client Identifier" : "Identificatore client", "Secret" : "Segreto", - "Add" : "Aggiungi" + "Add client" : "Aggiungi client", + "Add" : "Aggiungi", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 consente a servizi esterni di richiedere accesso al tuo %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/it.json b/apps/oauth2/l10n/it.json index 229694f3f11..0cb96963a80 100644 --- a/apps/oauth2/l10n/it.json +++ b/apps/oauth2/l10n/it.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "L'applicazione OAuth2 consente agli amministratori di configurare la procedura di autenticazione integrata per consentire anche l'autenticazione compatibile con OAuth2 da altre applicazioni web.", "OAuth 2.0 clients" : "Client OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificatore client", - "Add client" : "Aggiungi client", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 consente a servizi esterni di richiedere accesso al tuo %s.", "Redirection URI" : "URI di redirezione", + "Client Identifier" : "Identificatore client", "Secret" : "Segreto", - "Add" : "Aggiungi" + "Add client" : "Aggiungi client", + "Add" : "Aggiungi", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 consente a servizi esterni di richiedere accesso al tuo %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ja.js b/apps/oauth2/l10n/ja.js index 39da5e89999..a5aa964d991 100644 --- a/apps/oauth2/l10n/ja.js +++ b/apps/oauth2/l10n/ja.js @@ -6,11 +6,11 @@ OC.L10N.register( "Allows OAuth2 compatible authentication from other web applications." : "他のWebアプリケーションからのOAuth2互換認証を許可します。", "OAuth 2.0 clients" : "OAuth 2.0クライアント", "Name" : "名前", - "Client Identifier" : "クライアントID", - "Add client" : "クライアントの追加", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 により外部サービスから %s へのアクセス要求を許可します。", "Redirection URI" : "リダイレクトURI", + "Client Identifier" : "クライアントID", "Secret" : "シークレットキー", - "Add" : "追加" + "Add client" : "クライアントの追加", + "Add" : "追加", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 により外部サービスから %s へのアクセス要求を許可します。" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/ja.json b/apps/oauth2/l10n/ja.json index 6c3500f026f..20bd7f8d9c0 100644 --- a/apps/oauth2/l10n/ja.json +++ b/apps/oauth2/l10n/ja.json @@ -4,11 +4,11 @@ "Allows OAuth2 compatible authentication from other web applications." : "他のWebアプリケーションからのOAuth2互換認証を許可します。", "OAuth 2.0 clients" : "OAuth 2.0クライアント", "Name" : "名前", - "Client Identifier" : "クライアントID", - "Add client" : "クライアントの追加", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 により外部サービスから %s へのアクセス要求を許可します。", "Redirection URI" : "リダイレクトURI", + "Client Identifier" : "クライアントID", "Secret" : "シークレットキー", - "Add" : "追加" + "Add client" : "クライアントの追加", + "Add" : "追加", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 により外部サービスから %s へのアクセス要求を許可します。" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ka_GE.js b/apps/oauth2/l10n/ka_GE.js index c56965a79b2..b90776ead2c 100644 --- a/apps/oauth2/l10n/ka_GE.js +++ b/apps/oauth2/l10n/ka_GE.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 კლიენტები", "Name" : "სახელი", - "Client Identifier" : "კლიენტის იდენტიფიკატორი", - "Add client" : "კლიენტის დამატება", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 გარე სერვისებს ანიჭებს %s-ზე წვდომის მოთხოვნის უფლებას.", "Redirection URI" : "გადამისამართების URI", + "Client Identifier" : "კლიენტის იდენტიფიკატორი", "Secret" : "საიდუმლო", - "Add" : "დამატება" + "Add client" : "კლიენტის დამატება", + "Add" : "დამატება", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 გარე სერვისებს ანიჭებს %s-ზე წვდომის მოთხოვნის უფლებას." }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/oauth2/l10n/ka_GE.json b/apps/oauth2/l10n/ka_GE.json index eeb30fbd2a3..f353b788884 100644 --- a/apps/oauth2/l10n/ka_GE.json +++ b/apps/oauth2/l10n/ka_GE.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 კლიენტები", "Name" : "სახელი", - "Client Identifier" : "კლიენტის იდენტიფიკატორი", - "Add client" : "კლიენტის დამატება", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 გარე სერვისებს ანიჭებს %s-ზე წვდომის მოთხოვნის უფლებას.", "Redirection URI" : "გადამისამართების URI", + "Client Identifier" : "კლიენტის იდენტიფიკატორი", "Secret" : "საიდუმლო", - "Add" : "დამატება" + "Add client" : "კლიენტის დამატება", + "Add" : "დამატება", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 გარე სერვისებს ანიჭებს %s-ზე წვდომის მოთხოვნის უფლებას." },"pluralForm" :"nplurals=2; plural=(n!=1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ko.js b/apps/oauth2/l10n/ko.js index e5366d4b18b..a3b26b7c2d5 100644 --- a/apps/oauth2/l10n/ko.js +++ b/apps/oauth2/l10n/ko.js @@ -4,11 +4,11 @@ OC.L10N.register( "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "리다이렉트 URL은 예시와 같이 완전한 URL으로 이루어져야 합니다. 예시: https://yourdomain.com/path", "OAuth 2.0 clients" : "OAuth 2.0 클라이언트", "Name" : "이름", - "Client Identifier" : "클라이언트 식별자", - "Add client" : "클라이언트 추가", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0을 사용하여 외부 서비스에서 %s에 접근할 수 있습니다.", "Redirection URI" : "전환될 URI", + "Client Identifier" : "클라이언트 식별자", "Secret" : "비밀 값", - "Add" : "추가" + "Add client" : "클라이언트 추가", + "Add" : "추가", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0을 사용하여 외부 서비스에서 %s에 접근할 수 있습니다." }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/ko.json b/apps/oauth2/l10n/ko.json index 829e4667f80..4268c7a0173 100644 --- a/apps/oauth2/l10n/ko.json +++ b/apps/oauth2/l10n/ko.json @@ -2,11 +2,11 @@ "Your redirect URL needs to be a full URL for example: https://yourdomain.com/path" : "리다이렉트 URL은 예시와 같이 완전한 URL으로 이루어져야 합니다. 예시: https://yourdomain.com/path", "OAuth 2.0 clients" : "OAuth 2.0 클라이언트", "Name" : "이름", - "Client Identifier" : "클라이언트 식별자", - "Add client" : "클라이언트 추가", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0을 사용하여 외부 서비스에서 %s에 접근할 수 있습니다.", "Redirection URI" : "전환될 URI", + "Client Identifier" : "클라이언트 식별자", "Secret" : "비밀 값", - "Add" : "추가" + "Add client" : "클라이언트 추가", + "Add" : "추가", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0을 사용하여 외부 서비스에서 %s에 접근할 수 있습니다." },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/lt_LT.js b/apps/oauth2/l10n/lt_LT.js index 5b775f81e74..d0b7a819c2a 100644 --- a/apps/oauth2/l10n/lt_LT.js +++ b/apps/oauth2/l10n/lt_LT.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klientai", "Name" : "Pavadinimas", - "Client Identifier" : "Kliento identifikatorius", - "Add client" : "Pridėti klientą", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 protokolas leidžia trečiųjų šalių programinei įrangai pasiekti šiuos jūsų duomenis: %s.", "Redirection URI" : "Nukreipimo adresas", + "Client Identifier" : "Kliento identifikatorius", "Secret" : "Paslaptis", - "Add" : "Pridėti" + "Add client" : "Pridėti klientą", + "Add" : "Pridėti", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 protokolas leidžia trečiųjų šalių programinei įrangai pasiekti šiuos jūsų duomenis: %s." }, "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/oauth2/l10n/lt_LT.json b/apps/oauth2/l10n/lt_LT.json index fa23f93ad8d..69d474d99f5 100644 --- a/apps/oauth2/l10n/lt_LT.json +++ b/apps/oauth2/l10n/lt_LT.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klientai", "Name" : "Pavadinimas", - "Client Identifier" : "Kliento identifikatorius", - "Add client" : "Pridėti klientą", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 protokolas leidžia trečiųjų šalių programinei įrangai pasiekti šiuos jūsų duomenis: %s.", "Redirection URI" : "Nukreipimo adresas", + "Client Identifier" : "Kliento identifikatorius", "Secret" : "Paslaptis", - "Add" : "Pridėti" + "Add client" : "Pridėti klientą", + "Add" : "Pridėti", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 protokolas leidžia trečiųjų šalių programinei įrangai pasiekti šiuos jūsų duomenis: %s." },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/lv.js b/apps/oauth2/l10n/lv.js index 7d37535a417..062788a8850 100644 --- a/apps/oauth2/l10n/lv.js +++ b/apps/oauth2/l10n/lv.js @@ -5,11 +5,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klients", "Name" : "Nosaukums", - "Client Identifier" : "Klienta identifikators", - "Add client" : "Pievienot klientu", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 atļauj ārējiem servisiem pieprasīt piekļuvi %s.", "Redirection URI" : "Pārvirzāmais URI", + "Client Identifier" : "Klienta identifikators", "Secret" : "Noslēpums", - "Add" : "Pievienot" + "Add client" : "Pievienot klientu", + "Add" : "Pievienot", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 atļauj ārējiem servisiem pieprasīt piekļuvi %s." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/apps/oauth2/l10n/lv.json b/apps/oauth2/l10n/lv.json index 7d043e65266..914586af6a3 100644 --- a/apps/oauth2/l10n/lv.json +++ b/apps/oauth2/l10n/lv.json @@ -3,11 +3,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 klients", "Name" : "Nosaukums", - "Client Identifier" : "Klienta identifikators", - "Add client" : "Pievienot klientu", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 atļauj ārējiem servisiem pieprasīt piekļuvi %s.", "Redirection URI" : "Pārvirzāmais URI", + "Client Identifier" : "Klienta identifikators", "Secret" : "Noslēpums", - "Add" : "Pievienot" + "Add client" : "Pievienot klientu", + "Add" : "Pievienot", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 atļauj ārējiem servisiem pieprasīt piekļuvi %s." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/nb.js b/apps/oauth2/l10n/nb.js index 8a7040fecd6..d21a590980d 100644 --- a/apps/oauth2/l10n/nb.js +++ b/apps/oauth2/l10n/nb.js @@ -5,11 +5,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0-klienter", "Name" : "Navn", - "Client Identifier" : "Klient-identifikator", - "Add client" : "Legg til klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lar eksterne tjenester forespørre tilgang til %s.", "Redirection URI" : "Videresendings-URI", + "Client Identifier" : "Klient-identifikator", "Secret" : "Hemmelighet", - "Add" : "Legg til" + "Add client" : "Legg til klient", + "Add" : "Legg til", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lar eksterne tjenester forespørre tilgang til %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/nb.json b/apps/oauth2/l10n/nb.json index 0fa1155655d..b6383b1f343 100644 --- a/apps/oauth2/l10n/nb.json +++ b/apps/oauth2/l10n/nb.json @@ -3,11 +3,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0-klienter", "Name" : "Navn", - "Client Identifier" : "Klient-identifikator", - "Add client" : "Legg til klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lar eksterne tjenester forespørre tilgang til %s.", "Redirection URI" : "Videresendings-URI", + "Client Identifier" : "Klient-identifikator", "Secret" : "Hemmelighet", - "Add" : "Legg til" + "Add client" : "Legg til klient", + "Add" : "Legg til", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lar eksterne tjenester forespørre tilgang til %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/nl.js b/apps/oauth2/l10n/nl.js index ed9c5a41930..f7f62602cc7 100644 --- a/apps/oauth2/l10n/nl.js +++ b/apps/oauth2/l10n/nl.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "De OAuth2 app laat beheerders de ingebouwde inlog-workflow configureren om ook OAuth2 compatible authenticatie vanaf andere web applicaties mogelijk te maken.", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "Name" : "Naam", - "Client Identifier" : "Client identificatie", - "Add client" : "Voeg client toe", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 staat externe services toe om toegang te vragen aan %s", "Redirection URI" : "Omeiding URI", + "Client Identifier" : "Client identificatie", "Secret" : "Geheim", - "Add" : "Toevoegen" + "Add client" : "Voeg client toe", + "Add" : "Toevoegen", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 staat externe services toe om toegang te vragen aan %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/nl.json b/apps/oauth2/l10n/nl.json index 64d44b4f134..7aa02c2df38 100644 --- a/apps/oauth2/l10n/nl.json +++ b/apps/oauth2/l10n/nl.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "De OAuth2 app laat beheerders de ingebouwde inlog-workflow configureren om ook OAuth2 compatible authenticatie vanaf andere web applicaties mogelijk te maken.", "OAuth 2.0 clients" : "OAuth 2.0 Clients", "Name" : "Naam", - "Client Identifier" : "Client identificatie", - "Add client" : "Voeg client toe", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 staat externe services toe om toegang te vragen aan %s", "Redirection URI" : "Omeiding URI", + "Client Identifier" : "Client identificatie", "Secret" : "Geheim", - "Add" : "Toevoegen" + "Add client" : "Voeg client toe", + "Add" : "Toevoegen", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 staat externe services toe om toegang te vragen aan %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/pl.js b/apps/oauth2/l10n/pl.js index aceb6c17c23..5b124be6d3d 100644 --- a/apps/oauth2/l10n/pl.js +++ b/apps/oauth2/l10n/pl.js @@ -5,11 +5,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Klienci OAuth 2.0", "Name" : "Nazwa", - "Client Identifier" : "Identyfikator Klienta", - "Add client" : "Dodaj klienta", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umożliwia usługom zewnętrznym żądanie dostępu do %s.", "Redirection URI" : "URI przekierowania", + "Client Identifier" : "Identyfikator Klienta", "Secret" : "Sekret", - "Add" : "Dodaj" + "Add client" : "Dodaj klienta", + "Add" : "Dodaj", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umożliwia usługom zewnętrznym żądanie dostępu do %s." }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/oauth2/l10n/pl.json b/apps/oauth2/l10n/pl.json index e354419dac3..f3a77fb0d57 100644 --- a/apps/oauth2/l10n/pl.json +++ b/apps/oauth2/l10n/pl.json @@ -3,11 +3,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Klienci OAuth 2.0", "Name" : "Nazwa", - "Client Identifier" : "Identyfikator Klienta", - "Add client" : "Dodaj klienta", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umożliwia usługom zewnętrznym żądanie dostępu do %s.", "Redirection URI" : "URI przekierowania", + "Client Identifier" : "Identyfikator Klienta", "Secret" : "Sekret", - "Add" : "Dodaj" + "Add client" : "Dodaj klienta", + "Add" : "Dodaj", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umożliwia usługom zewnętrznym żądanie dostępu do %s." },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/pt_BR.js b/apps/oauth2/l10n/pt_BR.js index 85c73e5b0d5..f8e8876ba90 100644 --- a/apps/oauth2/l10n/pt_BR.js +++ b/apps/oauth2/l10n/pt_BR.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem o fluxo de trabalho de autenticação integrado para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificador do Cliente", - "Add client" : "Adicionar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite que serviços externos solicitem acesso a %s.", "Redirection URI" : "Redirecionamento URI", + "Client Identifier" : "Identificador do Cliente", "Secret" : "Secreto", - "Add" : "Adicionar" + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite que serviços externos solicitem acesso a %s." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/oauth2/l10n/pt_BR.json b/apps/oauth2/l10n/pt_BR.json index ef1e71493ac..75ced4900c6 100644 --- a/apps/oauth2/l10n/pt_BR.json +++ b/apps/oauth2/l10n/pt_BR.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "O aplicativo OAuth2 permite que os administradores configurem o fluxo de trabalho de autenticação integrado para permitir também a autenticação compatível com OAuth2 de outros aplicativos da Web.", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificador do Cliente", - "Add client" : "Adicionar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite que serviços externos solicitem acesso a %s.", "Redirection URI" : "Redirecionamento URI", + "Client Identifier" : "Identificador do Cliente", "Secret" : "Secreto", - "Add" : "Adicionar" + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 permite que serviços externos solicitem acesso a %s." },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/pt_PT.js b/apps/oauth2/l10n/pt_PT.js index e54a3b14a53..0d38b2f4d88 100644 --- a/apps/oauth2/l10n/pt_PT.js +++ b/apps/oauth2/l10n/pt_PT.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificador de Cliente", - "Add client" : "Adicionar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth2.0 permite que dispositivos externos peçam acesso a %s.", "Redirection URI" : "URI de redireccionamento", + "Client Identifier" : "Identificador de Cliente", "Secret" : "Segredo", - "Add" : "Adicionar" + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth2.0 permite que dispositivos externos peçam acesso a %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/pt_PT.json b/apps/oauth2/l10n/pt_PT.json index dd24ac12cfa..06e4ad2220d 100644 --- a/apps/oauth2/l10n/pt_PT.json +++ b/apps/oauth2/l10n/pt_PT.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "Clientes OAuth 2.0", "Name" : "Nome", - "Client Identifier" : "Identificador de Cliente", - "Add client" : "Adicionar cliente", - "OAuth 2.0 allows external services to request access to %s." : "OAuth2.0 permite que dispositivos externos peçam acesso a %s.", "Redirection URI" : "URI de redireccionamento", + "Client Identifier" : "Identificador de Cliente", "Secret" : "Segredo", - "Add" : "Adicionar" + "Add client" : "Adicionar cliente", + "Add" : "Adicionar", + "OAuth 2.0 allows external services to request access to %s." : "OAuth2.0 permite que dispositivos externos peçam acesso a %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/ru.js b/apps/oauth2/l10n/ru.js index 145d8539bce..f6f5b9992c5 100644 --- a/apps/oauth2/l10n/ru.js +++ b/apps/oauth2/l10n/ru.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложение OAuth2 позволяет администраторам настроить встроенный процесс проверки подлинности, чтобы также обеспечить совместимость OAuth2 с другими веб-приложениями.", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "Name" : "Имя", - "Client Identifier" : "Идентификатор клиента", - "Add client" : "Добавить клиента", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к %s.", "Redirection URI" : "URI перенаправления", + "Client Identifier" : "Идентификатор клиента", "Secret" : "Секрет", - "Add" : "Добавить" + "Add client" : "Добавить клиента", + "Add" : "Добавить", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к %s." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/oauth2/l10n/ru.json b/apps/oauth2/l10n/ru.json index 9a7f29aff83..381ad5e79b9 100644 --- a/apps/oauth2/l10n/ru.json +++ b/apps/oauth2/l10n/ru.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "Приложение OAuth2 позволяет администраторам настроить встроенный процесс проверки подлинности, чтобы также обеспечить совместимость OAuth2 с другими веб-приложениями.", "OAuth 2.0 clients" : "Клиенты OAuth 2.0", "Name" : "Имя", - "Client Identifier" : "Идентификатор клиента", - "Add client" : "Добавить клиента", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к %s.", "Redirection URI" : "URI перенаправления", + "Client Identifier" : "Идентификатор клиента", "Secret" : "Секрет", - "Add" : "Добавить" + "Add client" : "Добавить клиента", + "Add" : "Добавить", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 позволяет внешним службам запрашивать доступ к %s." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sk.js b/apps/oauth2/l10n/sk.js index 5d916f78963..9f25230ce3c 100644 --- a/apps/oauth2/l10n/sk.js +++ b/apps/oauth2/l10n/sk.js @@ -6,11 +6,11 @@ OC.L10N.register( "Allows OAuth2 compatible authentication from other web applications." : "Povoliť overenie kompatibilné s OAuth2 iných webových aplikácií.", "OAuth 2.0 clients" : "klienti OAuth 2.0", "Name" : "Názov", - "Client Identifier" : "Identifikátor klienta", - "Add client" : "Pridať klienta", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje externým službám vyžiadať prístup k %s.", "Redirection URI" : "URI presmerovania", + "Client Identifier" : "Identifikátor klienta", "Secret" : "Tajný kľúč", - "Add" : "Pridať" + "Add client" : "Pridať klienta", + "Add" : "Pridať", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje externým službám vyžiadať prístup k %s." }, "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/oauth2/l10n/sk.json b/apps/oauth2/l10n/sk.json index 52e39c67908..0b58922030c 100644 --- a/apps/oauth2/l10n/sk.json +++ b/apps/oauth2/l10n/sk.json @@ -4,11 +4,11 @@ "Allows OAuth2 compatible authentication from other web applications." : "Povoliť overenie kompatibilné s OAuth2 iných webových aplikácií.", "OAuth 2.0 clients" : "klienti OAuth 2.0", "Name" : "Názov", - "Client Identifier" : "Identifikátor klienta", - "Add client" : "Pridať klienta", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje externým službám vyžiadať prístup k %s.", "Redirection URI" : "URI presmerovania", + "Client Identifier" : "Identifikátor klienta", "Secret" : "Tajný kľúč", - "Add" : "Pridať" + "Add client" : "Pridať klienta", + "Add" : "Pridať", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 umožňuje externým službám vyžiadať prístup k %s." },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sq.js b/apps/oauth2/l10n/sq.js index 253a6893a27..f9fe0e56be9 100644 --- a/apps/oauth2/l10n/sq.js +++ b/apps/oauth2/l10n/sq.js @@ -3,11 +3,11 @@ OC.L10N.register( { "OAuth 2.0 clients" : "Klientë OAuth 2.0", "Name" : "Emri", - "Client Identifier" : "Identifikues Klienti", - "Add client" : "Shto klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lejon shërbime të jashtme të kërkojnë akses në %s", "Redirection URI" : "URI Ridrejtimi", + "Client Identifier" : "Identifikues Klienti", "Secret" : "Sekret", - "Add" : "Shto " + "Add client" : "Shto klient", + "Add" : "Shto ", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lejon shërbime të jashtme të kërkojnë akses në %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/sq.json b/apps/oauth2/l10n/sq.json index 3ff83ac8874..16c299855ed 100644 --- a/apps/oauth2/l10n/sq.json +++ b/apps/oauth2/l10n/sq.json @@ -1,11 +1,11 @@ { "translations": { "OAuth 2.0 clients" : "Klientë OAuth 2.0", "Name" : "Emri", - "Client Identifier" : "Identifikues Klienti", - "Add client" : "Shto klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lejon shërbime të jashtme të kërkojnë akses në %s", "Redirection URI" : "URI Ridrejtimi", + "Client Identifier" : "Identifikues Klienti", "Secret" : "Sekret", - "Add" : "Shto " + "Add client" : "Shto klient", + "Add" : "Shto ", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 lejon shërbime të jashtme të kërkojnë akses në %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sr.js b/apps/oauth2/l10n/sr.js index 16479cb11f9..2e7a1d91bd5 100644 --- a/apps/oauth2/l10n/sr.js +++ b/apps/oauth2/l10n/sr.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликација дозвољава администраторима да подесе уграђени след индетификације тако да дозвољава и OAuth2 компатибилну идентификацију са других веб апликација.", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "Name" : "Име", - "Client Identifier" : "Идентификација клијента", - "Add client" : "Додај клијента", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 дозвољава спољним сервисима да захтевају приступ на %s.", "Redirection URI" : "Адреса за преусмеравање", + "Client Identifier" : "Идентификација клијента", "Secret" : "Тајна", - "Add" : "Додај" + "Add client" : "Додај клијента", + "Add" : "Додај", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 дозвољава спољним сервисима да захтевају приступ на %s." }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/oauth2/l10n/sr.json b/apps/oauth2/l10n/sr.json index 9e6ebf00dbd..056075f8769 100644 --- a/apps/oauth2/l10n/sr.json +++ b/apps/oauth2/l10n/sr.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 апликација дозвољава администраторима да подесе уграђени след индетификације тако да дозвољава и OAuth2 компатибилну идентификацију са других веб апликација.", "OAuth 2.0 clients" : "OAuth 2.0 клијенти", "Name" : "Име", - "Client Identifier" : "Идентификација клијента", - "Add client" : "Додај клијента", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 дозвољава спољним сервисима да захтевају приступ на %s.", "Redirection URI" : "Адреса за преусмеравање", + "Client Identifier" : "Идентификација клијента", "Secret" : "Тајна", - "Add" : "Додај" + "Add client" : "Додај клијента", + "Add" : "Додај", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 дозвољава спољним сервисима да захтевају приступ на %s." },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/sv.js b/apps/oauth2/l10n/sv.js index 0f5e849c5ca..e27dce239e3 100644 --- a/apps/oauth2/l10n/sv.js +++ b/apps/oauth2/l10n/sv.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "I appen OAuth2 kan administratörer konfigurera det inbyggda autentiseringsflödet för att även tillåta OAuth2-kompatibel autentisering från andra webbapplikationer.", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "Name" : "Namn", - "Client Identifier" : "Klientidentifierare", - "Add client" : "Lägg till klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillåter externa tjänster att efterfråga tillgång till %s.", "Redirection URI" : "Omdirigerings-URI", + "Client Identifier" : "Klientidentifierare", "Secret" : "Hemlighet", - "Add" : "Lägg till" + "Add client" : "Lägg till klient", + "Add" : "Lägg till", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillåter externa tjänster att efterfråga tillgång till %s." }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/oauth2/l10n/sv.json b/apps/oauth2/l10n/sv.json index be8691614bc..b35a96f174f 100644 --- a/apps/oauth2/l10n/sv.json +++ b/apps/oauth2/l10n/sv.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "I appen OAuth2 kan administratörer konfigurera det inbyggda autentiseringsflödet för att även tillåta OAuth2-kompatibel autentisering från andra webbapplikationer.", "OAuth 2.0 clients" : "OAuth 2.0 klienter", "Name" : "Namn", - "Client Identifier" : "Klientidentifierare", - "Add client" : "Lägg till klient", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillåter externa tjänster att efterfråga tillgång till %s.", "Redirection URI" : "Omdirigerings-URI", + "Client Identifier" : "Klientidentifierare", "Secret" : "Hemlighet", - "Add" : "Lägg till" + "Add client" : "Lägg till klient", + "Add" : "Lägg till", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 tillåter externa tjänster att efterfråga tillgång till %s." },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/tr.js b/apps/oauth2/l10n/tr.js index 21852e20901..e98bea46114 100644 --- a/apps/oauth2/l10n/tr.js +++ b/apps/oauth2/l10n/tr.js @@ -7,11 +7,11 @@ OC.L10N.register( "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 uygulaması, yöneticilerin iç kimlik doğrulama iş akışını yapılandırabilmesini ve diğer web uygulamaları için OAuth2 uyumlu kimlik doğrulaması kullanılabilmesini sağlar.", "OAuth 2.0 clients" : "OAuth 2.0 istemcileri", "Name" : "Ad", - "Client Identifier" : "İstemci Belirteci", - "Add client" : "İstemci Ekle", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 dış hizmetlerin %s için erişim isteğinde bulunmasını sağlar.", "Redirection URI" : "Yönlendirme Adresi", + "Client Identifier" : "İstemci Belirteci", "Secret" : "Parola", - "Add" : "Ekle" + "Add client" : "İstemci Ekle", + "Add" : "Ekle", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 dış hizmetlerin %s için erişim isteğinde bulunmasını sağlar." }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/oauth2/l10n/tr.json b/apps/oauth2/l10n/tr.json index 607302ecb85..87ee37a647f 100644 --- a/apps/oauth2/l10n/tr.json +++ b/apps/oauth2/l10n/tr.json @@ -5,11 +5,11 @@ "The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications." : "OAuth2 uygulaması, yöneticilerin iç kimlik doğrulama iş akışını yapılandırabilmesini ve diğer web uygulamaları için OAuth2 uyumlu kimlik doğrulaması kullanılabilmesini sağlar.", "OAuth 2.0 clients" : "OAuth 2.0 istemcileri", "Name" : "Ad", - "Client Identifier" : "İstemci Belirteci", - "Add client" : "İstemci Ekle", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 dış hizmetlerin %s için erişim isteğinde bulunmasını sağlar.", "Redirection URI" : "Yönlendirme Adresi", + "Client Identifier" : "İstemci Belirteci", "Secret" : "Parola", - "Add" : "Ekle" + "Add client" : "İstemci Ekle", + "Add" : "Ekle", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 dış hizmetlerin %s için erişim isteğinde bulunmasını sağlar." },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/vi.js b/apps/oauth2/l10n/vi.js index 77bc7bf9640..dab042708c3 100644 --- a/apps/oauth2/l10n/vi.js +++ b/apps/oauth2/l10n/vi.js @@ -3,9 +3,9 @@ OC.L10N.register( { "OAuth 2.0 clients" : "kết nối OAuth 2.0", "Name" : "Tên", - "Add client" : "Thêm kết nối", "Redirection URI" : "Liên kết chuyển tiếp", "Secret" : "Mật khẩu", + "Add client" : "Thêm kết nối", "Add" : "Thêm" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/vi.json b/apps/oauth2/l10n/vi.json index d2e26e5b237..5d4e41f60b7 100644 --- a/apps/oauth2/l10n/vi.json +++ b/apps/oauth2/l10n/vi.json @@ -1,9 +1,9 @@ { "translations": { "OAuth 2.0 clients" : "kết nối OAuth 2.0", "Name" : "Tên", - "Add client" : "Thêm kết nối", "Redirection URI" : "Liên kết chuyển tiếp", "Secret" : "Mật khẩu", + "Add client" : "Thêm kết nối", "Add" : "Thêm" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/zh_CN.js b/apps/oauth2/l10n/zh_CN.js index 61f4aabf82b..de8ec11708d 100644 --- a/apps/oauth2/l10n/zh_CN.js +++ b/apps/oauth2/l10n/zh_CN.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 客户端", "Name" : "名称", - "Client Identifier" : "客户端 ID", - "Add client" : "添加客户端", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 认证协议允许外部服务请求访问您的%s", "Redirection URI" : "回调地址", + "Client Identifier" : "客户端 ID", "Secret" : "密钥", - "Add" : "添加" + "Add client" : "添加客户端", + "Add" : "添加", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 认证协议允许外部服务请求访问您的%s" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/zh_CN.json b/apps/oauth2/l10n/zh_CN.json index 4497642ae8b..98b65fea861 100644 --- a/apps/oauth2/l10n/zh_CN.json +++ b/apps/oauth2/l10n/zh_CN.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 客户端", "Name" : "名称", - "Client Identifier" : "客户端 ID", - "Add client" : "添加客户端", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 认证协议允许外部服务请求访问您的%s", "Redirection URI" : "回调地址", + "Client Identifier" : "客户端 ID", "Secret" : "密钥", - "Add" : "添加" + "Add client" : "添加客户端", + "Add" : "添加", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 认证协议允许外部服务请求访问您的%s" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/oauth2/l10n/zh_TW.js b/apps/oauth2/l10n/zh_TW.js index 3bca0af6114..8a316b31170 100644 --- a/apps/oauth2/l10n/zh_TW.js +++ b/apps/oauth2/l10n/zh_TW.js @@ -4,11 +4,11 @@ OC.L10N.register( "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 客戶端", "Name" : "名稱", - "Client Identifier" : "用戶識別", - "Add client" : "新增客戶端", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 允許其他裝置存取 %s", "Redirection URI" : "重導向 URI", + "Client Identifier" : "用戶識別", "Secret" : "密鑰Secret", - "Add" : "新增" + "Add client" : "新增客戶端", + "Add" : "新增", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 允許其他裝置存取 %s" }, "nplurals=1; plural=0;"); diff --git a/apps/oauth2/l10n/zh_TW.json b/apps/oauth2/l10n/zh_TW.json index 4dbe095a78b..5dfe5dbbf89 100644 --- a/apps/oauth2/l10n/zh_TW.json +++ b/apps/oauth2/l10n/zh_TW.json @@ -2,11 +2,11 @@ "OAuth 2.0" : "OAuth 2.0", "OAuth 2.0 clients" : "OAuth 2.0 客戶端", "Name" : "名稱", - "Client Identifier" : "用戶識別", - "Add client" : "新增客戶端", - "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 允許其他裝置存取 %s", "Redirection URI" : "重導向 URI", + "Client Identifier" : "用戶識別", "Secret" : "密鑰Secret", - "Add" : "新增" + "Add client" : "新增客戶端", + "Add" : "新增", + "OAuth 2.0 allows external services to request access to %s." : "OAuth 2.0 允許其他裝置存取 %s" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/theming/css/settings-admin.scss b/apps/theming/css/settings-admin.scss index f8f2a0e33ac..504760d4596 100644 --- a/apps/theming/css/settings-admin.scss +++ b/apps/theming/css/settings-admin.scss @@ -18,14 +18,16 @@ .theme-undo { position: absolute; - top: -7px; - right: 7px; + top: -7px; // input padding + right: 4px; // input right margin + border cursor: pointer; opacity: .3; padding: 7px; vertical-align: top; display: inline-block; visibility: hidden; + height: 32px; // height of input + width: 32px; // height of input } form.uploadButton { width: 411px; diff --git a/apps/updatenotification/css/admin.css b/apps/updatenotification/css/admin.css deleted file mode 100644 index 3a74d8801a0..00000000000 --- a/apps/updatenotification/css/admin.css +++ /dev/null @@ -1,67 +0,0 @@ -#updatenotification { - margin-top: -25px; -} - -#updatenotification div.update, -#updatenotification p:not(.inlineblock) { - margin-bottom: 25px; -} - - -#updatenotification h2.inlineblock { - margin-top: 25px; -} - -#updatenotification h3, -#updatenotification h3 .icon { - cursor: pointer; -} - -#updatenotification h3:first-of-type { - margin-top: 0; -} - -#updatenotification .icon { - display: inline-block; - margin-bottom: -3px; -} - -#updatenotification .icon-triangle-s, -#updatenotification .icon-triangle-n { - opacity: 0.5; -} - -#updatenotification .channel-description span { - color: #aaa; -} - -#updatenotification .channel-description span strong { - color: #555; - font-weight: normal; -} - -#updatenotification .warning { - color: #ce3702; -} - -#updatenotification .whatsNew { - display: inline-block; -} - -#updatenotification .toggleWhatsNew { - position: relative; -} - -#updatenotification .popovermenu p { - margin-bottom: 0; - width: 100%; -} - -#updatenotification .popovermenu { - margin-top: 5px; - width: 300px; -} - -#updatenotification .applist { - margin-bottom: 25px; -} diff --git a/apps/updatenotification/css/admin.scss b/apps/updatenotification/css/admin.scss new file mode 100644 index 00000000000..d975ee9658d --- /dev/null +++ b/apps/updatenotification/css/admin.scss @@ -0,0 +1,53 @@ +#updatenotification { + margin-top: -25px; + div.update, + p:not(.inlineblock) { + margin-bottom: 25px; + } + h2.inlineblock { + margin-top: 25px; + } + h3 { + cursor: pointer; + .icon { + cursor: pointer; + } + &:first-of-type { + margin-top: 0; + } + } + .icon { + display: inline-block; + margin-bottom: -3px; + } + .icon-triangle-s, .icon-triangle-n { + opacity: 0.5; + } + .channel-description span { + color: var(--color-text-lighter); + strong { + color: var(--color-main-text); + font-weight: normal; + } + } + .warning { + color: var(--color-error); + } + .whatsNew { + display: inline-block; + } + .toggleWhatsNew { + position: relative; + } + .popovermenu { + p { + margin-bottom: 0; + width: 100%; + } + margin-top: 5px; + width: 300px; + } + .applist { + margin-bottom: 25px; + } +}
\ No newline at end of file diff --git a/apps/updatenotification/js/updatenotification.js b/apps/updatenotification/js/updatenotification.js index 57e2292240b..b328ac1e1d2 100644 --- a/apps/updatenotification/js/updatenotification.js +++ b/apps/updatenotification/js/updatenotification.js @@ -1,10 +1,236 @@ -!function(e){var t={};function n(r){if(t[r])return t[r].exports;var i=t[r]={i:r,l:!1,exports:{}};return e[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&"object"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:e}),2&t&&"string"!=typeof e)for(var i in e)n.d(r,i,function(t){return e[t]}.bind(null,i));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,"a",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p="/js/",n(n.s=10)}([function(e,t,n){"use strict";function r(e,t,n,r,i,o,a,s){var c,u="function"==typeof e?e.options:e;if(t&&(u.render=t,u.staticRenderFns=n,u._compiled=!0),r&&(u.functional=!0),o&&(u._scopeId="data-v-"+o),a?(c=function(e){(e=e||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(e=__VUE_SSR_CONTEXT__),i&&i.call(this,e),e&&e._registeredComponents&&e._registeredComponents.add(a)},u._ssrRegister=c):i&&(c=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),c)if(u.functional){u._injectStyles=c;var l=u.render;u.render=function(e,t){return c.call(t),l(e,t)}}else{var f=u.beforeCreate;u.beforeCreate=f?[].concat(f,c):[c]}return{exports:e,options:u}}n.d(t,"a",function(){return r})},function(module,__webpack_exports__,__webpack_require__){"use strict";var vue_select__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4),vue_select__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(vue_select__WEBPACK_IMPORTED_MODULE_0__),_popoverMenu__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(6),vue_click_outside__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5),vue_click_outside__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(vue_click_outside__WEBPACK_IMPORTED_MODULE_2__);__webpack_exports__.a={name:"root",components:{vSelect:vue_select__WEBPACK_IMPORTED_MODULE_0___default(),popoverMenu:_popoverMenu__WEBPACK_IMPORTED_MODULE_1__.a},directives:{ClickOutside:vue_click_outside__WEBPACK_IMPORTED_MODULE_2___default()},data:function(){return{newVersionString:"",lastCheckedDate:"",isUpdateChecked:!1,updaterEnabled:!0,versionIsEol:!1,downloadLink:"",isNewVersionAvailable:!1,updateServerURL:"",changelogURL:"",whatsNewData:[],currentChannel:"",channels:[],notifyGroups:"",availableGroups:[],isDefaultUpdateServerURL:!0,enableChangeWatcher:!1,availableAppUpdates:[],missingAppUpdates:[],appStoreFailed:!1,appStoreDisabled:!1,isListFetched:!1,hideMissingUpdates:!1,hideAvailableUpdates:!0,openedWhatsNew:!1}},_$el:null,_$releaseChannel:null,_$notifyGroups:null,watch:{notifyGroups:function(e){if(this.enableChangeWatcher){var t=[];_.each(e,function(e){t.push(e.value)}),OCP.AppConfig.setValue("updatenotification","notify_groups",JSON.stringify(t))}},isNewVersionAvailable:function(){this.isNewVersionAvailable&&$.ajax({url:OC.linkToOCS("apps/updatenotification/api/v1/applist",2)+this.newVersion,type:"GET",beforeSend:function(e){e.setRequestHeader("Accept","application/json")},success:function(e){this.availableAppUpdates=e.ocs.data.available,this.missingAppUpdates=e.ocs.data.missing,this.isListFetched=!0,this.appStoreFailed=!1}.bind(this),error:function(e){this.availableAppUpdates=[],this.missingAppUpdates=[],this.appStoreDisabled=e.responseJSON.ocs.data.appstore_disabled,this.isListFetched=!0,this.appStoreFailed=!0}.bind(this)})}},computed:{newVersionAvailableString:function(){return t("updatenotification","A new version is available: <strong>{newVersionString}</strong>",{newVersionString:this.newVersionString})},lastCheckedOnString:function(){return t("updatenotification","Checked on {lastCheckedDate}",{lastCheckedDate:this.lastCheckedDate})},statusText:function(){return this.isListFetched?this.appStoreDisabled?t("updatenotification","Please make sure your config.php does not set <samp>appstoreenabled</samp> to false."):this.appStoreFailed?t("updatenotification","Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore."):0===this.missingAppUpdates.length?t("updatenotification","<strong>All</strong> apps have an update for this version available",this):n("updatenotification","<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available",this.missingAppUpdates.length):t("updatenotification","Checking apps for compatible updates")},productionInfoString:function(){return t("updatenotification","<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).")},stableInfoString:function(){return t("updatenotification","<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.")},betaInfoString:function(){return t("updatenotification","<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.")},whatsNew:function(){if(0===this.whatsNewData.length)return null;var e=[];for(var n in this.whatsNewData)e[n]={icon:"icon-checkmark",longtext:this.whatsNewData[n]};return this.changelogURL&&e.push({href:this.changelogURL,text:t("updatenotificaiton","View changelog"),icon:"icon-link",target:"_blank",action:""}),e}},methods:{clickUpdaterButton:function(){$.ajax({url:OC.generateUrl("/apps/updatenotification/credentials")}).success(function(data){$.ajax({url:OC.getRootPath()+"/updater/",headers:{"X-Updater-Auth":data},method:"POST",success:function(data){if("false"!==data){var body=$("body");$("head").remove(),body.html(data);var dom=$(data);dom.filter("script").each(function(){eval(this.text||this.textContent||this.innerHTML||"")}),body.removeAttr("id"),body.attr("id","body-settings")}},error:function(){OC.Notification.showTemporary(t("updatenotification","Could not start updater, please try the manual update")),this.updaterEnabled=!1}.bind(this)})}.bind(this))},changeReleaseChannel:function(){this.currentChannel=this._$releaseChannel.val(),$.ajax({url:OC.generateUrl("/apps/updatenotification/channel"),type:"POST",data:{channel:this.currentChannel},success:function(e){OC.msg.finishedAction("#channel_save_msg",e)}})},toggleHideMissingUpdates:function(){this.hideMissingUpdates=!this.hideMissingUpdates},toggleHideAvailableUpdates:function(){this.hideAvailableUpdates=!this.hideAvailableUpdates},toggleMenu:function(){this.openedWhatsNew=!this.openedWhatsNew},hideMenu:function(){this.openedWhatsNew=!1}},beforeMount:function(){var e=JSON.parse($("#updatenotification").attr("data-json"));this.newVersion=e.newVersion,this.newVersionString=e.newVersionString,this.lastCheckedDate=e.lastChecked,this.isUpdateChecked=e.isUpdateChecked,this.updaterEnabled=e.updaterEnabled,this.downloadLink=e.downloadLink,this.isNewVersionAvailable=e.isNewVersionAvailable,this.updateServerURL=e.updateServerURL,this.currentChannel=e.currentChannel,this.channels=e.channels,this.notifyGroups=e.notifyGroups,this.isDefaultUpdateServerURL=e.isDefaultUpdateServerURL,this.versionIsEol=e.versionIsEol,e.changes&&e.changes.changelogURL&&(this.changelogURL=e.changes.changelogURL),e.changes&&e.changes.whatsNew&&(e.changes.whatsNew.admin&&(this.whatsNewData=this.whatsNewData.concat(e.changes.whatsNew.admin)),this.whatsNewData=this.whatsNewData.concat(e.changes.whatsNew.regular))},mounted:function(){this._$el=$(this.$el),this._$releaseChannel=this._$el.find("#release-channel"),this._$notifyGroups=this._$el.find("#oca_updatenotification_groups_list"),this._$notifyGroups.on("change",function(){this.$emit("input")}.bind(this)),$.ajax({url:OC.linkToOCS("cloud",2)+"/groups",dataType:"json",success:function(e){var t=[];$.each(e.ocs.data.groups,function(e,n){t.push({value:n,label:n})}),this.availableGroups=t,this.enableChangeWatcher=!0}.bind(this)})},updated:function(){this._$el.find(".icon-info").tooltip({placement:"right"})}}},function(e,t){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(e){"object"==typeof window&&(n=window)}e.exports=n},function(e,t,n){"use strict";(function(e,n){ +!function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/js/",n(n.s=9)}([function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(module,__webpack_exports__,__webpack_require__){"use strict";var nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3),nextcloud_vue__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__),v_tooltip__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(4),vue_click_outside__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5),vue_click_outside__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(vue_click_outside__WEBPACK_IMPORTED_MODULE_2__);__webpack_exports__.a={name:"root",components:{Multiselect:nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__.Multiselect,PopoverMenu:nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__.PopoverMenu},directives:{ClickOutside:vue_click_outside__WEBPACK_IMPORTED_MODULE_2___default(),tooltip:v_tooltip__WEBPACK_IMPORTED_MODULE_1__.a},data:function(){return{newVersionString:"",lastCheckedDate:"",isUpdateChecked:!1,updaterEnabled:!0,versionIsEol:!1,downloadLink:"",isNewVersionAvailable:!1,updateServerURL:"",changelogURL:"",whatsNewData:[],currentChannel:"",channels:[],notifyGroups:"",availableGroups:[],isDefaultUpdateServerURL:!0,enableChangeWatcher:!1,availableAppUpdates:[],missingAppUpdates:[],appStoreFailed:!1,appStoreDisabled:!1,isListFetched:!1,hideMissingUpdates:!1,hideAvailableUpdates:!0,openedWhatsNew:!1}},_$el:null,_$releaseChannel:null,_$notifyGroups:null,watch:{notifyGroups:function(t){if(this.enableChangeWatcher){var e=[];_.each(t,function(t){e.push(t.value)}),OCP.AppConfig.setValue("updatenotification","notify_groups",JSON.stringify(e))}},isNewVersionAvailable:function(){this.isNewVersionAvailable&&$.ajax({url:OC.linkToOCS("apps/updatenotification/api/v1/applist",2)+this.newVersion,type:"GET",beforeSend:function(t){t.setRequestHeader("Accept","application/json")},success:function(t){this.availableAppUpdates=t.ocs.data.available,this.missingAppUpdates=t.ocs.data.missing,this.isListFetched=!0,this.appStoreFailed=!1}.bind(this),error:function(t){this.availableAppUpdates=[],this.missingAppUpdates=[],this.appStoreDisabled=t.responseJSON.ocs.data.appstore_disabled,this.isListFetched=!0,this.appStoreFailed=!0}.bind(this)})}},computed:{newVersionAvailableString:function(){return t("updatenotification","A new version is available: <strong>{newVersionString}</strong>",{newVersionString:this.newVersionString})},lastCheckedOnString:function(){return t("updatenotification","Checked on {lastCheckedDate}",{lastCheckedDate:this.lastCheckedDate})},statusText:function(){return this.isListFetched?this.appStoreDisabled?t("updatenotification","Please make sure your config.php does not set <samp>appstoreenabled</samp> to false."):this.appStoreFailed?t("updatenotification","Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore."):0===this.missingAppUpdates.length?t("updatenotification","<strong>All</strong> apps have an update for this version available",this):n("updatenotification","<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available",this.missingAppUpdates.length):t("updatenotification","Checking apps for compatible updates")},productionInfoString:function(){return t("updatenotification","<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).")},stableInfoString:function(){return t("updatenotification","<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.")},betaInfoString:function(){return t("updatenotification","<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.")},whatsNew:function(){if(0===this.whatsNewData.length)return null;var e=[];for(var n in this.whatsNewData)e[n]={icon:"icon-checkmark",longtext:this.whatsNewData[n]};return this.changelogURL&&e.push({href:this.changelogURL,text:t("updatenotificaiton","View changelog"),icon:"icon-link",target:"_blank",action:""}),e}},methods:{clickUpdaterButton:function(){$.ajax({url:OC.generateUrl("/apps/updatenotification/credentials")}).success(function(data){$.ajax({url:OC.getRootPath()+"/updater/",headers:{"X-Updater-Auth":data},method:"POST",success:function(data){if("false"!==data){var body=$("body");$("head").remove(),body.html(data);var dom=$(data);dom.filter("script").each(function(){eval(this.text||this.textContent||this.innerHTML||"")}),body.removeAttr("id"),body.attr("id","body-settings")}},error:function(){OC.Notification.showTemporary(t("updatenotification","Could not start updater, please try the manual update")),this.updaterEnabled=!1}.bind(this)})}.bind(this))},changeReleaseChannel:function(){this.currentChannel=this._$releaseChannel.val(),$.ajax({url:OC.generateUrl("/apps/updatenotification/channel"),type:"POST",data:{channel:this.currentChannel},success:function(t){OC.msg.finishedAction("#channel_save_msg",t)}})},toggleHideMissingUpdates:function(){this.hideMissingUpdates=!this.hideMissingUpdates},toggleHideAvailableUpdates:function(){this.hideAvailableUpdates=!this.hideAvailableUpdates},toggleMenu:function(){this.openedWhatsNew=!this.openedWhatsNew},hideMenu:function(){this.openedWhatsNew=!1}},beforeMount:function(){var t=JSON.parse($("#updatenotification").attr("data-json"));this.newVersion=t.newVersion,this.newVersionString=t.newVersionString,this.lastCheckedDate=t.lastChecked,this.isUpdateChecked=t.isUpdateChecked,this.updaterEnabled=t.updaterEnabled,this.downloadLink=t.downloadLink,this.isNewVersionAvailable=t.isNewVersionAvailable,this.updateServerURL=t.updateServerURL,this.currentChannel=t.currentChannel,this.channels=t.channels,this.notifyGroups=t.notifyGroups,this.isDefaultUpdateServerURL=t.isDefaultUpdateServerURL,this.versionIsEol=t.versionIsEol,t.changes&&t.changes.changelogURL&&(this.changelogURL=t.changes.changelogURL),t.changes&&t.changes.whatsNew&&(t.changes.whatsNew.admin&&(this.whatsNewData=this.whatsNewData.concat(t.changes.whatsNew.admin)),this.whatsNewData=this.whatsNewData.concat(t.changes.whatsNew.regular))},mounted:function(){this._$el=$(this.$el),this._$releaseChannel=this._$el.find("#release-channel"),this._$notifyGroups=this._$el.find("#oca_updatenotification_groups_list"),this._$notifyGroups.on("change",function(){this.$emit("input")}.bind(this)),$.ajax({url:OC.linkToOCS("cloud",2)+"/groups",dataType:"json",success:function(t){var e=[];$.each(t.ocs.data.groups,function(t,n){e.push({value:n,label:n})}),this.availableGroups=e,this.enableChangeWatcher=!0}.bind(this)})}}},function(t,e,n){"use strict";(function(t,n){ /*! * Vue.js v2.5.17 * (c) 2014-2018 Evan You * Released under the MIT License. */ -var r=Object.freeze({});function i(e){return void 0===e||null===e}function o(e){return void 0!==e&&null!==e}function a(e){return!0===e}function s(e){return"string"==typeof e||"number"==typeof e||"symbol"==typeof e||"boolean"==typeof e}function c(e){return null!==e&&"object"==typeof e}var u=Object.prototype.toString;function l(e){return"[object Object]"===u.call(e)}function f(e){return"[object RegExp]"===u.call(e)}function p(e){var t=parseFloat(String(e));return t>=0&&Math.floor(t)===t&&isFinite(e)}function d(e){return null==e?"":"object"==typeof e?JSON.stringify(e,null,2):String(e)}function h(e){var t=parseFloat(e);return isNaN(t)?e:t}function v(e,t){for(var n=Object.create(null),r=e.split(","),i=0;i<r.length;i++)n[r[i]]=!0;return t?function(e){return n[e.toLowerCase()]}:function(e){return n[e]}}var m=v("slot,component",!0),g=v("key,ref,slot,slot-scope,is");function y(e,t){if(e.length){var n=e.indexOf(t);if(n>-1)return e.splice(n,1)}}var _=Object.prototype.hasOwnProperty;function b(e,t){return _.call(e,t)}function w(e){var t=Object.create(null);return function(n){return t[n]||(t[n]=e(n))}}var x=/-(\w)/g,C=w(function(e){return e.replace(x,function(e,t){return t?t.toUpperCase():""})}),O=w(function(e){return e.charAt(0).toUpperCase()+e.slice(1)}),k=/\B([A-Z])/g,$=w(function(e){return e.replace(k,"-$1").toLowerCase()});var S=Function.prototype.bind?function(e,t){return e.bind(t)}:function(e,t){function n(n){var r=arguments.length;return r?r>1?e.apply(t,arguments):e.call(t,n):e.call(t)}return n._length=e.length,n};function A(e,t){t=t||0;for(var n=e.length-t,r=new Array(n);n--;)r[n]=e[n+t];return r}function T(e,t){for(var n in t)e[n]=t[n];return e}function E(e){for(var t={},n=0;n<e.length;n++)e[n]&&T(t,e[n]);return t}function L(e,t,n){}var M=function(e,t,n){return!1},j=function(e){return e};function P(e,t){if(e===t)return!0;var n=c(e),r=c(t);if(!n||!r)return!n&&!r&&String(e)===String(t);try{var i=Array.isArray(e),o=Array.isArray(t);if(i&&o)return e.length===t.length&&e.every(function(e,n){return P(e,t[n])});if(i||o)return!1;var a=Object.keys(e),s=Object.keys(t);return a.length===s.length&&a.every(function(n){return P(e[n],t[n])})}catch(e){return!1}}function N(e,t){for(var n=0;n<e.length;n++)if(P(e[n],t))return n;return-1}function I(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}var D="data-server-rendered",U=["component","directive","filter"],R=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],F={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:M,isReservedAttr:M,isUnknownElement:M,getTagNamespace:L,parsePlatformTagName:j,mustUseProp:M,_lifecycleHooks:R};function V(e){var t=(e+"").charCodeAt(0);return 36===t||95===t}function B(e,t,n,r){Object.defineProperty(e,t,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var H=/[^\w.$]/;var W,z="__proto__"in{},K="undefined"!=typeof window,G="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,J=G&&WXEnvironment.platform.toLowerCase(),q=K&&window.navigator.userAgent.toLowerCase(),X=q&&/msie|trident/.test(q),Z=q&&q.indexOf("msie 9.0")>0,Y=q&&q.indexOf("edge/")>0,Q=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===J),ee=(q&&/chrome\/\d+/.test(q),{}.watch),te=!1;if(K)try{var ne={};Object.defineProperty(ne,"passive",{get:function(){te=!0}}),window.addEventListener("test-passive",null,ne)}catch(e){}var re=function(){return void 0===W&&(W=!K&&!G&&void 0!==e&&"server"===e.process.env.VUE_ENV),W},ie=K&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function oe(e){return"function"==typeof e&&/native code/.test(e.toString())}var ae,se="undefined"!=typeof Symbol&&oe(Symbol)&&"undefined"!=typeof Reflect&&oe(Reflect.ownKeys);ae="undefined"!=typeof Set&&oe(Set)?Set:function(){function e(){this.set=Object.create(null)}return e.prototype.has=function(e){return!0===this.set[e]},e.prototype.add=function(e){this.set[e]=!0},e.prototype.clear=function(){this.set=Object.create(null)},e}();var ce=L,ue=0,le=function(){this.id=ue++,this.subs=[]};le.prototype.addSub=function(e){this.subs.push(e)},le.prototype.removeSub=function(e){y(this.subs,e)},le.prototype.depend=function(){le.target&&le.target.addDep(this)},le.prototype.notify=function(){for(var e=this.subs.slice(),t=0,n=e.length;t<n;t++)e[t].update()},le.target=null;var fe=[];function pe(e){le.target&&fe.push(le.target),le.target=e}function de(){le.target=fe.pop()}var he=function(e,t,n,r,i,o,a,s){this.tag=e,this.data=t,this.children=n,this.text=r,this.elm=i,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=t&&t.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ve={child:{configurable:!0}};ve.child.get=function(){return this.componentInstance},Object.defineProperties(he.prototype,ve);var me=function(e){void 0===e&&(e="");var t=new he;return t.text=e,t.isComment=!0,t};function ge(e){return new he(void 0,void 0,void 0,String(e))}function ye(e){var t=new he(e.tag,e.data,e.children,e.text,e.elm,e.context,e.componentOptions,e.asyncFactory);return t.ns=e.ns,t.isStatic=e.isStatic,t.key=e.key,t.isComment=e.isComment,t.fnContext=e.fnContext,t.fnOptions=e.fnOptions,t.fnScopeId=e.fnScopeId,t.isCloned=!0,t}var _e=Array.prototype,be=Object.create(_e);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(e){var t=_e[e];B(be,e,function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];var i,o=t.apply(this,n),a=this.__ob__;switch(e){case"push":case"unshift":i=n;break;case"splice":i=n.slice(2)}return i&&a.observeArray(i),a.dep.notify(),o})});var we=Object.getOwnPropertyNames(be),xe=!0;function Ce(e){xe=e}var Oe=function(e){(this.value=e,this.dep=new le,this.vmCount=0,B(e,"__ob__",this),Array.isArray(e))?((z?ke:$e)(e,be,we),this.observeArray(e)):this.walk(e)};function ke(e,t,n){e.__proto__=t}function $e(e,t,n){for(var r=0,i=n.length;r<i;r++){var o=n[r];B(e,o,t[o])}}function Se(e,t){var n;if(c(e)&&!(e instanceof he))return b(e,"__ob__")&&e.__ob__ instanceof Oe?n=e.__ob__:xe&&!re()&&(Array.isArray(e)||l(e))&&Object.isExtensible(e)&&!e._isVue&&(n=new Oe(e)),t&&n&&n.vmCount++,n}function Ae(e,t,n,r,i){var o=new le,a=Object.getOwnPropertyDescriptor(e,t);if(!a||!1!==a.configurable){var s=a&&a.get;s||2!==arguments.length||(n=e[t]);var c=a&&a.set,u=!i&&Se(n);Object.defineProperty(e,t,{enumerable:!0,configurable:!0,get:function(){var t=s?s.call(e):n;return le.target&&(o.depend(),u&&(u.dep.depend(),Array.isArray(t)&&function e(t){for(var n=void 0,r=0,i=t.length;r<i;r++)(n=t[r])&&n.__ob__&&n.__ob__.dep.depend(),Array.isArray(n)&&e(n)}(t))),t},set:function(t){var r=s?s.call(e):n;t===r||t!=t&&r!=r||(c?c.call(e,t):n=t,u=!i&&Se(t),o.notify())}})}}function Te(e,t,n){if(Array.isArray(e)&&p(t))return e.length=Math.max(e.length,t),e.splice(t,1,n),n;if(t in e&&!(t in Object.prototype))return e[t]=n,n;var r=e.__ob__;return e._isVue||r&&r.vmCount?n:r?(Ae(r.value,t,n),r.dep.notify(),n):(e[t]=n,n)}function Ee(e,t){if(Array.isArray(e)&&p(t))e.splice(t,1);else{var n=e.__ob__;e._isVue||n&&n.vmCount||b(e,t)&&(delete e[t],n&&n.dep.notify())}}Oe.prototype.walk=function(e){for(var t=Object.keys(e),n=0;n<t.length;n++)Ae(e,t[n])},Oe.prototype.observeArray=function(e){for(var t=0,n=e.length;t<n;t++)Se(e[t])};var Le=F.optionMergeStrategies;function Me(e,t){if(!t)return e;for(var n,r,i,o=Object.keys(t),a=0;a<o.length;a++)r=e[n=o[a]],i=t[n],b(e,n)?l(r)&&l(i)&&Me(r,i):Te(e,n,i);return e}function je(e,t,n){return n?function(){var r="function"==typeof t?t.call(n,n):t,i="function"==typeof e?e.call(n,n):e;return r?Me(r,i):i}:t?e?function(){return Me("function"==typeof t?t.call(this,this):t,"function"==typeof e?e.call(this,this):e)}:t:e}function Pe(e,t){return t?e?e.concat(t):Array.isArray(t)?t:[t]:e}function Ne(e,t,n,r){var i=Object.create(e||null);return t?T(i,t):i}Le.data=function(e,t,n){return n?je(e,t,n):t&&"function"!=typeof t?e:je(e,t)},R.forEach(function(e){Le[e]=Pe}),U.forEach(function(e){Le[e+"s"]=Ne}),Le.watch=function(e,t,n,r){if(e===ee&&(e=void 0),t===ee&&(t=void 0),!t)return Object.create(e||null);if(!e)return t;var i={};for(var o in T(i,e),t){var a=i[o],s=t[o];a&&!Array.isArray(a)&&(a=[a]),i[o]=a?a.concat(s):Array.isArray(s)?s:[s]}return i},Le.props=Le.methods=Le.inject=Le.computed=function(e,t,n,r){if(!e)return t;var i=Object.create(null);return T(i,e),t&&T(i,t),i},Le.provide=je;var Ie=function(e,t){return void 0===t?e:t};function De(e,t,n){"function"==typeof t&&(t=t.options),function(e,t){var n=e.props;if(n){var r,i,o={};if(Array.isArray(n))for(r=n.length;r--;)"string"==typeof(i=n[r])&&(o[C(i)]={type:null});else if(l(n))for(var a in n)i=n[a],o[C(a)]=l(i)?i:{type:i};e.props=o}}(t),function(e,t){var n=e.inject;if(n){var r=e.inject={};if(Array.isArray(n))for(var i=0;i<n.length;i++)r[n[i]]={from:n[i]};else if(l(n))for(var o in n){var a=n[o];r[o]=l(a)?T({from:o},a):{from:a}}}}(t),function(e){var t=e.directives;if(t)for(var n in t){var r=t[n];"function"==typeof r&&(t[n]={bind:r,update:r})}}(t);var r=t.extends;if(r&&(e=De(e,r,n)),t.mixins)for(var i=0,o=t.mixins.length;i<o;i++)e=De(e,t.mixins[i],n);var a,s={};for(a in e)c(a);for(a in t)b(e,a)||c(a);function c(r){var i=Le[r]||Ie;s[r]=i(e[r],t[r],n,r)}return s}function Ue(e,t,n,r){if("string"==typeof n){var i=e[t];if(b(i,n))return i[n];var o=C(n);if(b(i,o))return i[o];var a=O(o);return b(i,a)?i[a]:i[n]||i[o]||i[a]}}function Re(e,t,n,r){var i=t[e],o=!b(n,e),a=n[e],s=Be(Boolean,i.type);if(s>-1)if(o&&!b(i,"default"))a=!1;else if(""===a||a===$(e)){var c=Be(String,i.type);(c<0||s<c)&&(a=!0)}if(void 0===a){a=function(e,t,n){if(!b(t,"default"))return;var r=t.default;0;if(e&&e.$options.propsData&&void 0===e.$options.propsData[n]&&void 0!==e._props[n])return e._props[n];return"function"==typeof r&&"Function"!==Fe(t.type)?r.call(e):r}(r,i,e);var u=xe;Ce(!0),Se(a),Ce(u)}return a}function Fe(e){var t=e&&e.toString().match(/^\s*function (\w+)/);return t?t[1]:""}function Ve(e,t){return Fe(e)===Fe(t)}function Be(e,t){if(!Array.isArray(t))return Ve(t,e)?0:-1;for(var n=0,r=t.length;n<r;n++)if(Ve(t[n],e))return n;return-1}function He(e,t,n){if(t)for(var r=t;r=r.$parent;){var i=r.$options.errorCaptured;if(i)for(var o=0;o<i.length;o++)try{if(!1===i[o].call(r,e,t,n))return}catch(e){We(e,r,"errorCaptured hook")}}We(e,t,n)}function We(e,t,n){if(F.errorHandler)try{return F.errorHandler.call(null,e,t,n)}catch(e){ze(e,null,"config.errorHandler")}ze(e,t,n)}function ze(e,t,n){if(!K&&!G||"undefined"==typeof console)throw e;console.error(e)}var Ke,Ge,Je=[],qe=!1;function Xe(){qe=!1;var e=Je.slice(0);Je.length=0;for(var t=0;t<e.length;t++)e[t]()}var Ze=!1;if(void 0!==n&&oe(n))Ge=function(){n(Xe)};else if("undefined"==typeof MessageChannel||!oe(MessageChannel)&&"[object MessageChannelConstructor]"!==MessageChannel.toString())Ge=function(){setTimeout(Xe,0)};else{var Ye=new MessageChannel,Qe=Ye.port2;Ye.port1.onmessage=Xe,Ge=function(){Qe.postMessage(1)}}if("undefined"!=typeof Promise&&oe(Promise)){var et=Promise.resolve();Ke=function(){et.then(Xe),Q&&setTimeout(L)}}else Ke=Ge;function tt(e,t){var n;if(Je.push(function(){if(e)try{e.call(t)}catch(e){He(e,t,"nextTick")}else n&&n(t)}),qe||(qe=!0,Ze?Ge():Ke()),!e&&"undefined"!=typeof Promise)return new Promise(function(e){n=e})}var nt=new ae;function rt(e){!function e(t,n){var r,i;var o=Array.isArray(t);if(!o&&!c(t)||Object.isFrozen(t)||t instanceof he)return;if(t.__ob__){var a=t.__ob__.dep.id;if(n.has(a))return;n.add(a)}if(o)for(r=t.length;r--;)e(t[r],n);else for(i=Object.keys(t),r=i.length;r--;)e(t[i[r]],n)}(e,nt),nt.clear()}var it,ot=w(function(e){var t="&"===e.charAt(0),n="~"===(e=t?e.slice(1):e).charAt(0),r="!"===(e=n?e.slice(1):e).charAt(0);return{name:e=r?e.slice(1):e,once:n,capture:r,passive:t}});function at(e){function t(){var e=arguments,n=t.fns;if(!Array.isArray(n))return n.apply(null,arguments);for(var r=n.slice(),i=0;i<r.length;i++)r[i].apply(null,e)}return t.fns=e,t}function st(e,t,n,r,o){var a,s,c,u;for(a in e)s=e[a],c=t[a],u=ot(a),i(s)||(i(c)?(i(s.fns)&&(s=e[a]=at(s)),n(u.name,s,u.once,u.capture,u.passive,u.params)):s!==c&&(c.fns=s,e[a]=c));for(a in t)i(e[a])&&r((u=ot(a)).name,t[a],u.capture)}function ct(e,t,n){var r;e instanceof he&&(e=e.data.hook||(e.data.hook={}));var s=e[t];function c(){n.apply(this,arguments),y(r.fns,c)}i(s)?r=at([c]):o(s.fns)&&a(s.merged)?(r=s).fns.push(c):r=at([s,c]),r.merged=!0,e[t]=r}function ut(e,t,n,r,i){if(o(t)){if(b(t,n))return e[n]=t[n],i||delete t[n],!0;if(b(t,r))return e[n]=t[r],i||delete t[r],!0}return!1}function lt(e){return s(e)?[ge(e)]:Array.isArray(e)?function e(t,n){var r=[];var c,u,l,f;for(c=0;c<t.length;c++)i(u=t[c])||"boolean"==typeof u||(l=r.length-1,f=r[l],Array.isArray(u)?u.length>0&&(ft((u=e(u,(n||"")+"_"+c))[0])&&ft(f)&&(r[l]=ge(f.text+u[0].text),u.shift()),r.push.apply(r,u)):s(u)?ft(f)?r[l]=ge(f.text+u):""!==u&&r.push(ge(u)):ft(u)&&ft(f)?r[l]=ge(f.text+u.text):(a(t._isVList)&&o(u.tag)&&i(u.key)&&o(n)&&(u.key="__vlist"+n+"_"+c+"__"),r.push(u)));return r}(e):void 0}function ft(e){return o(e)&&o(e.text)&&function(e){return!1===e}(e.isComment)}function pt(e,t){return(e.__esModule||se&&"Module"===e[Symbol.toStringTag])&&(e=e.default),c(e)?t.extend(e):e}function dt(e){return e.isComment&&e.asyncFactory}function ht(e){if(Array.isArray(e))for(var t=0;t<e.length;t++){var n=e[t];if(o(n)&&(o(n.componentOptions)||dt(n)))return n}}function vt(e,t,n){n?it.$once(e,t):it.$on(e,t)}function mt(e,t){it.$off(e,t)}function gt(e,t,n){it=e,st(t,n||{},vt,mt),it=void 0}function yt(e,t){var n={};if(!e)return n;for(var r=0,i=e.length;r<i;r++){var o=e[r],a=o.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,o.context!==t&&o.fnContext!==t||!a||null==a.slot)(n.default||(n.default=[])).push(o);else{var s=a.slot,c=n[s]||(n[s]=[]);"template"===o.tag?c.push.apply(c,o.children||[]):c.push(o)}}for(var u in n)n[u].every(_t)&&delete n[u];return n}function _t(e){return e.isComment&&!e.asyncFactory||" "===e.text}function bt(e,t){t=t||{};for(var n=0;n<e.length;n++)Array.isArray(e[n])?bt(e[n],t):t[e[n].key]=e[n].fn;return t}var wt=null;function xt(e){for(;e&&(e=e.$parent);)if(e._inactive)return!0;return!1}function Ct(e,t){if(t){if(e._directInactive=!1,xt(e))return}else if(e._directInactive)return;if(e._inactive||null===e._inactive){e._inactive=!1;for(var n=0;n<e.$children.length;n++)Ct(e.$children[n]);Ot(e,"activated")}}function Ot(e,t){pe();var n=e.$options[t];if(n)for(var r=0,i=n.length;r<i;r++)try{n[r].call(e)}catch(n){He(n,e,t+" hook")}e._hasHookEvent&&e.$emit("hook:"+t),de()}var kt=[],$t=[],St={},At=!1,Tt=!1,Et=0;function Lt(){var e,t;for(Tt=!0,kt.sort(function(e,t){return e.id-t.id}),Et=0;Et<kt.length;Et++)t=(e=kt[Et]).id,St[t]=null,e.run();var n=$t.slice(),r=kt.slice();Et=kt.length=$t.length=0,St={},At=Tt=!1,function(e){for(var t=0;t<e.length;t++)e[t]._inactive=!0,Ct(e[t],!0)}(n),function(e){var t=e.length;for(;t--;){var n=e[t],r=n.vm;r._watcher===n&&r._isMounted&&Ot(r,"updated")}}(r),ie&&F.devtools&&ie.emit("flush")}var Mt=0,jt=function(e,t,n,r,i){this.vm=e,i&&(e._watcher=this),e._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++Mt,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ae,this.newDepIds=new ae,this.expression="","function"==typeof t?this.getter=t:(this.getter=function(e){if(!H.test(e)){var t=e.split(".");return function(e){for(var n=0;n<t.length;n++){if(!e)return;e=e[t[n]]}return e}}}(t),this.getter||(this.getter=function(){})),this.value=this.lazy?void 0:this.get()};jt.prototype.get=function(){var e;pe(this);var t=this.vm;try{e=this.getter.call(t,t)}catch(e){if(!this.user)throw e;He(e,t,'getter for watcher "'+this.expression+'"')}finally{this.deep&&rt(e),de(),this.cleanupDeps()}return e},jt.prototype.addDep=function(e){var t=e.id;this.newDepIds.has(t)||(this.newDepIds.add(t),this.newDeps.push(e),this.depIds.has(t)||e.addSub(this))},jt.prototype.cleanupDeps=function(){for(var e=this.deps.length;e--;){var t=this.deps[e];this.newDepIds.has(t.id)||t.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},jt.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(e){var t=e.id;if(null==St[t]){if(St[t]=!0,Tt){for(var n=kt.length-1;n>Et&&kt[n].id>e.id;)n--;kt.splice(n+1,0,e)}else kt.push(e);At||(At=!0,tt(Lt))}}(this)},jt.prototype.run=function(){if(this.active){var e=this.get();if(e!==this.value||c(e)||this.deep){var t=this.value;if(this.value=e,this.user)try{this.cb.call(this.vm,e,t)}catch(e){He(e,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,e,t)}}},jt.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},jt.prototype.depend=function(){for(var e=this.deps.length;e--;)this.deps[e].depend()},jt.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||y(this.vm._watchers,this);for(var e=this.deps.length;e--;)this.deps[e].removeSub(this);this.active=!1}};var Pt={enumerable:!0,configurable:!0,get:L,set:L};function Nt(e,t,n){Pt.get=function(){return this[t][n]},Pt.set=function(e){this[t][n]=e},Object.defineProperty(e,n,Pt)}function It(e){e._watchers=[];var t=e.$options;t.props&&function(e,t){var n=e.$options.propsData||{},r=e._props={},i=e.$options._propKeys=[];e.$parent&&Ce(!1);var o=function(o){i.push(o);var a=Re(o,t,n,e);Ae(r,o,a),o in e||Nt(e,"_props",o)};for(var a in t)o(a);Ce(!0)}(e,t.props),t.methods&&function(e,t){e.$options.props;for(var n in t)e[n]=null==t[n]?L:S(t[n],e)}(e,t.methods),t.data?function(e){var t=e.$options.data;l(t=e._data="function"==typeof t?function(e,t){pe();try{return e.call(t,t)}catch(e){return He(e,t,"data()"),{}}finally{de()}}(t,e):t||{})||(t={});var n=Object.keys(t),r=e.$options.props,i=(e.$options.methods,n.length);for(;i--;){var o=n[i];0,r&&b(r,o)||V(o)||Nt(e,"_data",o)}Se(t,!0)}(e):Se(e._data={},!0),t.computed&&function(e,t){var n=e._computedWatchers=Object.create(null),r=re();for(var i in t){var o=t[i],a="function"==typeof o?o:o.get;0,r||(n[i]=new jt(e,a||L,L,Dt)),i in e||Ut(e,i,o)}}(e,t.computed),t.watch&&t.watch!==ee&&function(e,t){for(var n in t){var r=t[n];if(Array.isArray(r))for(var i=0;i<r.length;i++)Ft(e,n,r[i]);else Ft(e,n,r)}}(e,t.watch)}var Dt={lazy:!0};function Ut(e,t,n){var r=!re();"function"==typeof n?(Pt.get=r?Rt(t):n,Pt.set=L):(Pt.get=n.get?r&&!1!==n.cache?Rt(t):n.get:L,Pt.set=n.set?n.set:L),Object.defineProperty(e,t,Pt)}function Rt(e){return function(){var t=this._computedWatchers&&this._computedWatchers[e];if(t)return t.dirty&&t.evaluate(),le.target&&t.depend(),t.value}}function Ft(e,t,n,r){return l(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=e[n]),e.$watch(t,n,r)}function Vt(e,t){if(e){for(var n=Object.create(null),r=se?Reflect.ownKeys(e).filter(function(t){return Object.getOwnPropertyDescriptor(e,t).enumerable}):Object.keys(e),i=0;i<r.length;i++){for(var o=r[i],a=e[o].from,s=t;s;){if(s._provided&&b(s._provided,a)){n[o]=s._provided[a];break}s=s.$parent}if(!s)if("default"in e[o]){var c=e[o].default;n[o]="function"==typeof c?c.call(t):c}else 0}return n}}function Bt(e,t){var n,r,i,a,s;if(Array.isArray(e)||"string"==typeof e)for(n=new Array(e.length),r=0,i=e.length;r<i;r++)n[r]=t(e[r],r);else if("number"==typeof e)for(n=new Array(e),r=0;r<e;r++)n[r]=t(r+1,r);else if(c(e))for(a=Object.keys(e),n=new Array(a.length),r=0,i=a.length;r<i;r++)s=a[r],n[r]=t(e[s],s,r);return o(n)&&(n._isVList=!0),n}function Ht(e,t,n,r){var i,o=this.$scopedSlots[e];if(o)n=n||{},r&&(n=T(T({},r),n)),i=o(n)||t;else{var a=this.$slots[e];a&&(a._rendered=!0),i=a||t}var s=n&&n.slot;return s?this.$createElement("template",{slot:s},i):i}function Wt(e){return Ue(this.$options,"filters",e)||j}function zt(e,t){return Array.isArray(e)?-1===e.indexOf(t):e!==t}function Kt(e,t,n,r,i){var o=F.keyCodes[t]||n;return i&&r&&!F.keyCodes[t]?zt(i,r):o?zt(o,e):r?$(r)!==t:void 0}function Gt(e,t,n,r,i){if(n)if(c(n)){var o;Array.isArray(n)&&(n=E(n));var a=function(a){if("class"===a||"style"===a||g(a))o=e;else{var s=e.attrs&&e.attrs.type;o=r||F.mustUseProp(t,s,a)?e.domProps||(e.domProps={}):e.attrs||(e.attrs={})}a in o||(o[a]=n[a],i&&((e.on||(e.on={}))["update:"+a]=function(e){n[a]=e}))};for(var s in n)a(s)}else;return e}function Jt(e,t){var n=this._staticTrees||(this._staticTrees=[]),r=n[e];return r&&!t?r:(Xt(r=n[e]=this.$options.staticRenderFns[e].call(this._renderProxy,null,this),"__static__"+e,!1),r)}function qt(e,t,n){return Xt(e,"__once__"+t+(n?"_"+n:""),!0),e}function Xt(e,t,n){if(Array.isArray(e))for(var r=0;r<e.length;r++)e[r]&&"string"!=typeof e[r]&&Zt(e[r],t+"_"+r,n);else Zt(e,t,n)}function Zt(e,t,n){e.isStatic=!0,e.key=t,e.isOnce=n}function Yt(e,t){if(t)if(l(t)){var n=e.on=e.on?T({},e.on):{};for(var r in t){var i=n[r],o=t[r];n[r]=i?[].concat(i,o):o}}else;return e}function Qt(e){e._o=qt,e._n=h,e._s=d,e._l=Bt,e._t=Ht,e._q=P,e._i=N,e._m=Jt,e._f=Wt,e._k=Kt,e._b=Gt,e._v=ge,e._e=me,e._u=bt,e._g=Yt}function en(e,t,n,i,o){var s,c=o.options;b(i,"_uid")?(s=Object.create(i))._original=i:(s=i,i=i._original);var u=a(c._compiled),l=!u;this.data=e,this.props=t,this.children=n,this.parent=i,this.listeners=e.on||r,this.injections=Vt(c.inject,i),this.slots=function(){return yt(n,i)},u&&(this.$options=c,this.$slots=this.slots(),this.$scopedSlots=e.scopedSlots||r),c._scopeId?this._c=function(e,t,n,r){var o=un(s,e,t,n,r,l);return o&&!Array.isArray(o)&&(o.fnScopeId=c._scopeId,o.fnContext=i),o}:this._c=function(e,t,n,r){return un(s,e,t,n,r,l)}}function tn(e,t,n,r){var i=ye(e);return i.fnContext=n,i.fnOptions=r,t.slot&&((i.data||(i.data={})).slot=t.slot),i}function nn(e,t){for(var n in t)e[C(n)]=t[n]}Qt(en.prototype);var rn={init:function(e,t,n,r){if(e.componentInstance&&!e.componentInstance._isDestroyed&&e.data.keepAlive){var i=e;rn.prepatch(i,i)}else{(e.componentInstance=function(e,t,n,r){var i={_isComponent:!0,parent:t,_parentVnode:e,_parentElm:n||null,_refElm:r||null},a=e.data.inlineTemplate;o(a)&&(i.render=a.render,i.staticRenderFns=a.staticRenderFns);return new e.componentOptions.Ctor(i)}(e,wt,n,r)).$mount(t?e.elm:void 0,t)}},prepatch:function(e,t){var n=t.componentOptions;!function(e,t,n,i,o){var a=!!(o||e.$options._renderChildren||i.data.scopedSlots||e.$scopedSlots!==r);if(e.$options._parentVnode=i,e.$vnode=i,e._vnode&&(e._vnode.parent=i),e.$options._renderChildren=o,e.$attrs=i.data.attrs||r,e.$listeners=n||r,t&&e.$options.props){Ce(!1);for(var s=e._props,c=e.$options._propKeys||[],u=0;u<c.length;u++){var l=c[u],f=e.$options.props;s[l]=Re(l,f,t,e)}Ce(!0),e.$options.propsData=t}n=n||r;var p=e.$options._parentListeners;e.$options._parentListeners=n,gt(e,n,p),a&&(e.$slots=yt(o,i.context),e.$forceUpdate())}(t.componentInstance=e.componentInstance,n.propsData,n.listeners,t,n.children)},insert:function(e){var t=e.context,n=e.componentInstance;n._isMounted||(n._isMounted=!0,Ot(n,"mounted")),e.data.keepAlive&&(t._isMounted?function(e){e._inactive=!1,$t.push(e)}(n):Ct(n,!0))},destroy:function(e){var t=e.componentInstance;t._isDestroyed||(e.data.keepAlive?function e(t,n){if(!(n&&(t._directInactive=!0,xt(t))||t._inactive)){t._inactive=!0;for(var r=0;r<t.$children.length;r++)e(t.$children[r]);Ot(t,"deactivated")}}(t,!0):t.$destroy())}},on=Object.keys(rn);function an(e,t,n,s,u){if(!i(e)){var l=n.$options._base;if(c(e)&&(e=l.extend(e)),"function"==typeof e){var f;if(i(e.cid)&&void 0===(e=function(e,t,n){if(a(e.error)&&o(e.errorComp))return e.errorComp;if(o(e.resolved))return e.resolved;if(a(e.loading)&&o(e.loadingComp))return e.loadingComp;if(!o(e.contexts)){var r=e.contexts=[n],s=!0,u=function(){for(var e=0,t=r.length;e<t;e++)r[e].$forceUpdate()},l=I(function(n){e.resolved=pt(n,t),s||u()}),f=I(function(t){o(e.errorComp)&&(e.error=!0,u())}),p=e(l,f);return c(p)&&("function"==typeof p.then?i(e.resolved)&&p.then(l,f):o(p.component)&&"function"==typeof p.component.then&&(p.component.then(l,f),o(p.error)&&(e.errorComp=pt(p.error,t)),o(p.loading)&&(e.loadingComp=pt(p.loading,t),0===p.delay?e.loading=!0:setTimeout(function(){i(e.resolved)&&i(e.error)&&(e.loading=!0,u())},p.delay||200)),o(p.timeout)&&setTimeout(function(){i(e.resolved)&&f(null)},p.timeout))),s=!1,e.loading?e.loadingComp:e.resolved}e.contexts.push(n)}(f=e,l,n)))return function(e,t,n,r,i){var o=me();return o.asyncFactory=e,o.asyncMeta={data:t,context:n,children:r,tag:i},o}(f,t,n,s,u);t=t||{},fn(e),o(t.model)&&function(e,t){var n=e.model&&e.model.prop||"value",r=e.model&&e.model.event||"input";(t.props||(t.props={}))[n]=t.model.value;var i=t.on||(t.on={});o(i[r])?i[r]=[t.model.callback].concat(i[r]):i[r]=t.model.callback}(e.options,t);var p=function(e,t,n){var r=t.options.props;if(!i(r)){var a={},s=e.attrs,c=e.props;if(o(s)||o(c))for(var u in r){var l=$(u);ut(a,c,u,l,!0)||ut(a,s,u,l,!1)}return a}}(t,e);if(a(e.options.functional))return function(e,t,n,i,a){var s=e.options,c={},u=s.props;if(o(u))for(var l in u)c[l]=Re(l,u,t||r);else o(n.attrs)&&nn(c,n.attrs),o(n.props)&&nn(c,n.props);var f=new en(n,c,a,i,e),p=s.render.call(null,f._c,f);if(p instanceof he)return tn(p,n,f.parent,s);if(Array.isArray(p)){for(var d=lt(p)||[],h=new Array(d.length),v=0;v<d.length;v++)h[v]=tn(d[v],n,f.parent,s);return h}}(e,p,t,n,s);var d=t.on;if(t.on=t.nativeOn,a(e.options.abstract)){var h=t.slot;t={},h&&(t.slot=h)}!function(e){for(var t=e.hook||(e.hook={}),n=0;n<on.length;n++){var r=on[n];t[r]=rn[r]}}(t);var v=e.options.name||u;return new he("vue-component-"+e.cid+(v?"-"+v:""),t,void 0,void 0,void 0,n,{Ctor:e,propsData:p,listeners:d,tag:u,children:s},f)}}}var sn=1,cn=2;function un(e,t,n,r,u,l){return(Array.isArray(n)||s(n))&&(u=r,r=n,n=void 0),a(l)&&(u=cn),function(e,t,n,r,s){if(o(n)&&o(n.__ob__))return me();o(n)&&o(n.is)&&(t=n.is);if(!t)return me();0;Array.isArray(r)&&"function"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);s===cn?r=lt(r):s===sn&&(r=function(e){for(var t=0;t<e.length;t++)if(Array.isArray(e[t]))return Array.prototype.concat.apply([],e);return e}(r));var u,l;if("string"==typeof t){var f;l=e.$vnode&&e.$vnode.ns||F.getTagNamespace(t),u=F.isReservedTag(t)?new he(F.parsePlatformTagName(t),n,r,void 0,void 0,e):o(f=Ue(e.$options,"components",t))?an(f,n,e,r,t):new he(t,n,r,void 0,void 0,e)}else u=an(t,n,e,r);return Array.isArray(u)?u:o(u)?(o(l)&&function e(t,n,r){t.ns=n;"foreignObject"===t.tag&&(n=void 0,r=!0);if(o(t.children))for(var s=0,c=t.children.length;s<c;s++){var u=t.children[s];o(u.tag)&&(i(u.ns)||a(r)&&"svg"!==u.tag)&&e(u,n,r)}}(u,l),o(n)&&function(e){c(e.style)&&rt(e.style);c(e.class)&&rt(e.class)}(n),u):me()}(e,t,n,r,u)}var ln=0;function fn(e){var t=e.options;if(e.super){var n=fn(e.super);if(n!==e.superOptions){e.superOptions=n;var r=function(e){var t,n=e.options,r=e.extendOptions,i=e.sealedOptions;for(var o in n)n[o]!==i[o]&&(t||(t={}),t[o]=pn(n[o],r[o],i[o]));return t}(e);r&&T(e.extendOptions,r),(t=e.options=De(n,e.extendOptions)).name&&(t.components[t.name]=e)}}return t}function pn(e,t,n){if(Array.isArray(e)){var r=[];n=Array.isArray(n)?n:[n],t=Array.isArray(t)?t:[t];for(var i=0;i<e.length;i++)(t.indexOf(e[i])>=0||n.indexOf(e[i])<0)&&r.push(e[i]);return r}return e}function dn(e){this._init(e)}function hn(e){e.cid=0;var t=1;e.extend=function(e){e=e||{};var n=this,r=n.cid,i=e._Ctor||(e._Ctor={});if(i[r])return i[r];var o=e.name||n.options.name;var a=function(e){this._init(e)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=t++,a.options=De(n.options,e),a.super=n,a.options.props&&function(e){var t=e.options.props;for(var n in t)Nt(e.prototype,"_props",n)}(a),a.options.computed&&function(e){var t=e.options.computed;for(var n in t)Ut(e.prototype,n,t[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,U.forEach(function(e){a[e]=n[e]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=e,a.sealedOptions=T({},a.options),i[r]=a,a}}function vn(e){return e&&(e.Ctor.options.name||e.tag)}function mn(e,t){return Array.isArray(e)?e.indexOf(t)>-1:"string"==typeof e?e.split(",").indexOf(t)>-1:!!f(e)&&e.test(t)}function gn(e,t){var n=e.cache,r=e.keys,i=e._vnode;for(var o in n){var a=n[o];if(a){var s=vn(a.componentOptions);s&&!t(s)&&yn(n,o,r,i)}}}function yn(e,t,n,r){var i=e[t];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),e[t]=null,y(n,t)}!function(e){e.prototype._init=function(e){var t=this;t._uid=ln++,t._isVue=!0,e&&e._isComponent?function(e,t){var n=e.$options=Object.create(e.constructor.options),r=t._parentVnode;n.parent=t.parent,n._parentVnode=r,n._parentElm=t._parentElm,n._refElm=t._refElm;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,t.render&&(n.render=t.render,n.staticRenderFns=t.staticRenderFns)}(t,e):t.$options=De(fn(t.constructor),e||{},t),t._renderProxy=t,t._self=t,function(e){var t=e.$options,n=t.parent;if(n&&!t.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(e)}e.$parent=n,e.$root=n?n.$root:e,e.$children=[],e.$refs={},e._watcher=null,e._inactive=null,e._directInactive=!1,e._isMounted=!1,e._isDestroyed=!1,e._isBeingDestroyed=!1}(t),function(e){e._events=Object.create(null),e._hasHookEvent=!1;var t=e.$options._parentListeners;t&>(e,t)}(t),function(e){e._vnode=null,e._staticTrees=null;var t=e.$options,n=e.$vnode=t._parentVnode,i=n&&n.context;e.$slots=yt(t._renderChildren,i),e.$scopedSlots=r,e._c=function(t,n,r,i){return un(e,t,n,r,i,!1)},e.$createElement=function(t,n,r,i){return un(e,t,n,r,i,!0)};var o=n&&n.data;Ae(e,"$attrs",o&&o.attrs||r,null,!0),Ae(e,"$listeners",t._parentListeners||r,null,!0)}(t),Ot(t,"beforeCreate"),function(e){var t=Vt(e.$options.inject,e);t&&(Ce(!1),Object.keys(t).forEach(function(n){Ae(e,n,t[n])}),Ce(!0))}(t),It(t),function(e){var t=e.$options.provide;t&&(e._provided="function"==typeof t?t.call(e):t)}(t),Ot(t,"created"),t.$options.el&&t.$mount(t.$options.el)}}(dn),function(e){var t={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(e.prototype,"$data",t),Object.defineProperty(e.prototype,"$props",n),e.prototype.$set=Te,e.prototype.$delete=Ee,e.prototype.$watch=function(e,t,n){if(l(t))return Ft(this,e,t,n);(n=n||{}).user=!0;var r=new jt(this,e,t,n);return n.immediate&&t.call(this,r.value),function(){r.teardown()}}}(dn),function(e){var t=/^hook:/;e.prototype.$on=function(e,n){if(Array.isArray(e))for(var r=0,i=e.length;r<i;r++)this.$on(e[r],n);else(this._events[e]||(this._events[e]=[])).push(n),t.test(e)&&(this._hasHookEvent=!0);return this},e.prototype.$once=function(e,t){var n=this;function r(){n.$off(e,r),t.apply(n,arguments)}return r.fn=t,n.$on(e,r),n},e.prototype.$off=function(e,t){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(e)){for(var r=0,i=e.length;r<i;r++)this.$off(e[r],t);return n}var o=n._events[e];if(!o)return n;if(!t)return n._events[e]=null,n;if(t)for(var a,s=o.length;s--;)if((a=o[s])===t||a.fn===t){o.splice(s,1);break}return n},e.prototype.$emit=function(e){var t=this._events[e];if(t){t=t.length>1?A(t):t;for(var n=A(arguments,1),r=0,i=t.length;r<i;r++)try{t[r].apply(this,n)}catch(t){He(t,this,'event handler for "'+e+'"')}}return this}}(dn),function(e){e.prototype._update=function(e,t){var n=this;n._isMounted&&Ot(n,"beforeUpdate");var r=n.$el,i=n._vnode,o=wt;wt=n,n._vnode=e,i?n.$el=n.__patch__(i,e):(n.$el=n.__patch__(n.$el,e,t,!1,n.$options._parentElm,n.$options._refElm),n.$options._parentElm=n.$options._refElm=null),wt=o,r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},e.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},e.prototype.$destroy=function(){var e=this;if(!e._isBeingDestroyed){Ot(e,"beforeDestroy"),e._isBeingDestroyed=!0;var t=e.$parent;!t||t._isBeingDestroyed||e.$options.abstract||y(t.$children,e),e._watcher&&e._watcher.teardown();for(var n=e._watchers.length;n--;)e._watchers[n].teardown();e._data.__ob__&&e._data.__ob__.vmCount--,e._isDestroyed=!0,e.__patch__(e._vnode,null),Ot(e,"destroyed"),e.$off(),e.$el&&(e.$el.__vue__=null),e.$vnode&&(e.$vnode.parent=null)}}}(dn),function(e){Qt(e.prototype),e.prototype.$nextTick=function(e){return tt(e,this)},e.prototype._render=function(){var e,t=this,n=t.$options,i=n.render,o=n._parentVnode;o&&(t.$scopedSlots=o.data.scopedSlots||r),t.$vnode=o;try{e=i.call(t._renderProxy,t.$createElement)}catch(n){He(n,t,"render"),e=t._vnode}return e instanceof he||(e=me()),e.parent=o,e}}(dn);var _n=[String,RegExp,Array],bn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:_n,exclude:_n,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var e in this.cache)yn(this.cache,e,this.keys)},mounted:function(){var e=this;this.$watch("include",function(t){gn(e,function(e){return mn(t,e)})}),this.$watch("exclude",function(t){gn(e,function(e){return!mn(t,e)})})},render:function(){var e=this.$slots.default,t=ht(e),n=t&&t.componentOptions;if(n){var r=vn(n),i=this.include,o=this.exclude;if(i&&(!r||!mn(i,r))||o&&r&&mn(o,r))return t;var a=this.cache,s=this.keys,c=null==t.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):t.key;a[c]?(t.componentInstance=a[c].componentInstance,y(s,c),s.push(c)):(a[c]=t,s.push(c),this.max&&s.length>parseInt(this.max)&&yn(a,s[0],s,this._vnode)),t.data.keepAlive=!0}return t||e&&e[0]}}};!function(e){var t={get:function(){return F}};Object.defineProperty(e,"config",t),e.util={warn:ce,extend:T,mergeOptions:De,defineReactive:Ae},e.set=Te,e.delete=Ee,e.nextTick=tt,e.options=Object.create(null),U.forEach(function(t){e.options[t+"s"]=Object.create(null)}),e.options._base=e,T(e.options.components,bn),function(e){e.use=function(e){var t=this._installedPlugins||(this._installedPlugins=[]);if(t.indexOf(e)>-1)return this;var n=A(arguments,1);return n.unshift(this),"function"==typeof e.install?e.install.apply(e,n):"function"==typeof e&&e.apply(null,n),t.push(e),this}}(e),function(e){e.mixin=function(e){return this.options=De(this.options,e),this}}(e),hn(e),function(e){U.forEach(function(t){e[t]=function(e,n){return n?("component"===t&&l(n)&&(n.name=n.name||e,n=this.options._base.extend(n)),"directive"===t&&"function"==typeof n&&(n={bind:n,update:n}),this.options[t+"s"][e]=n,n):this.options[t+"s"][e]}})}(e)}(dn),Object.defineProperty(dn.prototype,"$isServer",{get:re}),Object.defineProperty(dn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(dn,"FunctionalRenderContext",{value:en}),dn.version="2.5.17";var wn=v("style,class"),xn=v("input,textarea,option,select,progress"),Cn=function(e,t,n){return"value"===n&&xn(e)&&"button"!==t||"selected"===n&&"option"===e||"checked"===n&&"input"===e||"muted"===n&&"video"===e},On=v("contenteditable,draggable,spellcheck"),kn=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),$n="http://www.w3.org/1999/xlink",Sn=function(e){return":"===e.charAt(5)&&"xlink"===e.slice(0,5)},An=function(e){return Sn(e)?e.slice(6,e.length):""},Tn=function(e){return null==e||!1===e};function En(e){for(var t=e.data,n=e,r=e;o(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(t=Ln(r.data,t));for(;o(n=n.parent);)n&&n.data&&(t=Ln(t,n.data));return function(e,t){if(o(e)||o(t))return Mn(e,jn(t));return""}(t.staticClass,t.class)}function Ln(e,t){return{staticClass:Mn(e.staticClass,t.staticClass),class:o(e.class)?[e.class,t.class]:t.class}}function Mn(e,t){return e?t?e+" "+t:e:t||""}function jn(e){return Array.isArray(e)?function(e){for(var t,n="",r=0,i=e.length;r<i;r++)o(t=jn(e[r]))&&""!==t&&(n&&(n+=" "),n+=t);return n}(e):c(e)?function(e){var t="";for(var n in e)e[n]&&(t&&(t+=" "),t+=n);return t}(e):"string"==typeof e?e:""}var Pn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Nn=v("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),In=v("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Dn=function(e){return Nn(e)||In(e)};function Un(e){return In(e)?"svg":"math"===e?"math":void 0}var Rn=Object.create(null);var Fn=v("text,number,password,search,email,tel,url");function Vn(e){if("string"==typeof e){var t=document.querySelector(e);return t||document.createElement("div")}return e}var Bn=Object.freeze({createElement:function(e,t){var n=document.createElement(e);return"select"!==e?n:(t.data&&t.data.attrs&&void 0!==t.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(e,t){return document.createElementNS(Pn[e],t)},createTextNode:function(e){return document.createTextNode(e)},createComment:function(e){return document.createComment(e)},insertBefore:function(e,t,n){e.insertBefore(t,n)},removeChild:function(e,t){e.removeChild(t)},appendChild:function(e,t){e.appendChild(t)},parentNode:function(e){return e.parentNode},nextSibling:function(e){return e.nextSibling},tagName:function(e){return e.tagName},setTextContent:function(e,t){e.textContent=t},setStyleScope:function(e,t){e.setAttribute(t,"")}}),Hn={create:function(e,t){Wn(t)},update:function(e,t){e.data.ref!==t.data.ref&&(Wn(e,!0),Wn(t))},destroy:function(e){Wn(e,!0)}};function Wn(e,t){var n=e.data.ref;if(o(n)){var r=e.context,i=e.componentInstance||e.elm,a=r.$refs;t?Array.isArray(a[n])?y(a[n],i):a[n]===i&&(a[n]=void 0):e.data.refInFor?Array.isArray(a[n])?a[n].indexOf(i)<0&&a[n].push(i):a[n]=[i]:a[n]=i}}var zn=new he("",{},[]),Kn=["create","activate","update","remove","destroy"];function Gn(e,t){return e.key===t.key&&(e.tag===t.tag&&e.isComment===t.isComment&&o(e.data)===o(t.data)&&function(e,t){if("input"!==e.tag)return!0;var n,r=o(n=e.data)&&o(n=n.attrs)&&n.type,i=o(n=t.data)&&o(n=n.attrs)&&n.type;return r===i||Fn(r)&&Fn(i)}(e,t)||a(e.isAsyncPlaceholder)&&e.asyncFactory===t.asyncFactory&&i(t.asyncFactory.error))}function Jn(e,t,n){var r,i,a={};for(r=t;r<=n;++r)o(i=e[r].key)&&(a[i]=r);return a}var qn={create:Xn,update:Xn,destroy:function(e){Xn(e,zn)}};function Xn(e,t){(e.data.directives||t.data.directives)&&function(e,t){var n,r,i,o=e===zn,a=t===zn,s=Yn(e.data.directives,e.context),c=Yn(t.data.directives,t.context),u=[],l=[];for(n in c)r=s[n],i=c[n],r?(i.oldValue=r.value,er(i,"update",t,e),i.def&&i.def.componentUpdated&&l.push(i)):(er(i,"bind",t,e),i.def&&i.def.inserted&&u.push(i));if(u.length){var f=function(){for(var n=0;n<u.length;n++)er(u[n],"inserted",t,e)};o?ct(t,"insert",f):f()}l.length&&ct(t,"postpatch",function(){for(var n=0;n<l.length;n++)er(l[n],"componentUpdated",t,e)});if(!o)for(n in s)c[n]||er(s[n],"unbind",e,e,a)}(e,t)}var Zn=Object.create(null);function Yn(e,t){var n,r,i=Object.create(null);if(!e)return i;for(n=0;n<e.length;n++)(r=e[n]).modifiers||(r.modifiers=Zn),i[Qn(r)]=r,r.def=Ue(t.$options,"directives",r.name);return i}function Qn(e){return e.rawName||e.name+"."+Object.keys(e.modifiers||{}).join(".")}function er(e,t,n,r,i){var o=e.def&&e.def[t];if(o)try{o(n.elm,e,n,r,i)}catch(r){He(r,n.context,"directive "+e.name+" "+t+" hook")}}var tr=[Hn,qn];function nr(e,t){var n=t.componentOptions;if(!(o(n)&&!1===n.Ctor.options.inheritAttrs||i(e.data.attrs)&&i(t.data.attrs))){var r,a,s=t.elm,c=e.data.attrs||{},u=t.data.attrs||{};for(r in o(u.__ob__)&&(u=t.data.attrs=T({},u)),u)a=u[r],c[r]!==a&&rr(s,r,a);for(r in(X||Y)&&u.value!==c.value&&rr(s,"value",u.value),c)i(u[r])&&(Sn(r)?s.removeAttributeNS($n,An(r)):On(r)||s.removeAttribute(r))}}function rr(e,t,n){e.tagName.indexOf("-")>-1?ir(e,t,n):kn(t)?Tn(n)?e.removeAttribute(t):(n="allowfullscreen"===t&&"EMBED"===e.tagName?"true":t,e.setAttribute(t,n)):On(t)?e.setAttribute(t,Tn(n)||"false"===n?"false":"true"):Sn(t)?Tn(n)?e.removeAttributeNS($n,An(t)):e.setAttributeNS($n,t,n):ir(e,t,n)}function ir(e,t,n){if(Tn(n))e.removeAttribute(t);else{if(X&&!Z&&"TEXTAREA"===e.tagName&&"placeholder"===t&&!e.__ieph){var r=function(t){t.stopImmediatePropagation(),e.removeEventListener("input",r)};e.addEventListener("input",r),e.__ieph=!0}e.setAttribute(t,n)}}var or={create:nr,update:nr};function ar(e,t){var n=t.elm,r=t.data,a=e.data;if(!(i(r.staticClass)&&i(r.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var s=En(t),c=n._transitionClasses;o(c)&&(s=Mn(s,jn(c))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var sr,cr,ur,lr,fr,pr,dr={create:ar,update:ar},hr=/[\w).+\-_$\]]/;function vr(e){var t,n,r,i,o,a=!1,s=!1,c=!1,u=!1,l=0,f=0,p=0,d=0;for(r=0;r<e.length;r++)if(n=t,t=e.charCodeAt(r),a)39===t&&92!==n&&(a=!1);else if(s)34===t&&92!==n&&(s=!1);else if(c)96===t&&92!==n&&(c=!1);else if(u)47===t&&92!==n&&(u=!1);else if(124!==t||124===e.charCodeAt(r+1)||124===e.charCodeAt(r-1)||l||f||p){switch(t){case 34:s=!0;break;case 39:a=!0;break;case 96:c=!0;break;case 40:p++;break;case 41:p--;break;case 91:f++;break;case 93:f--;break;case 123:l++;break;case 125:l--}if(47===t){for(var h=r-1,v=void 0;h>=0&&" "===(v=e.charAt(h));h--);v&&hr.test(v)||(u=!0)}}else void 0===i?(d=r+1,i=e.slice(0,r).trim()):m();function m(){(o||(o=[])).push(e.slice(d,r).trim()),d=r+1}if(void 0===i?i=e.slice(0,r).trim():0!==d&&m(),o)for(r=0;r<o.length;r++)i=mr(i,o[r]);return i}function mr(e,t){var n=t.indexOf("(");if(n<0)return'_f("'+t+'")('+e+")";var r=t.slice(0,n),i=t.slice(n+1);return'_f("'+r+'")('+e+(")"!==i?","+i:i)}function gr(e){console.error("[Vue compiler]: "+e)}function yr(e,t){return e?e.map(function(e){return e[t]}).filter(function(e){return e}):[]}function _r(e,t,n){(e.props||(e.props=[])).push({name:t,value:n}),e.plain=!1}function br(e,t,n){(e.attrs||(e.attrs=[])).push({name:t,value:n}),e.plain=!1}function wr(e,t,n){e.attrsMap[t]=n,e.attrsList.push({name:t,value:n})}function xr(e,t,n,r,i,o){(e.directives||(e.directives=[])).push({name:t,rawName:n,value:r,arg:i,modifiers:o}),e.plain=!1}function Cr(e,t,n,i,o,a){var s;(i=i||r).capture&&(delete i.capture,t="!"+t),i.once&&(delete i.once,t="~"+t),i.passive&&(delete i.passive,t="&"+t),"click"===t&&(i.right?(t="contextmenu",delete i.right):i.middle&&(t="mouseup")),i.native?(delete i.native,s=e.nativeEvents||(e.nativeEvents={})):s=e.events||(e.events={});var c={value:n.trim()};i!==r&&(c.modifiers=i);var u=s[t];Array.isArray(u)?o?u.unshift(c):u.push(c):s[t]=u?o?[c,u]:[u,c]:c,e.plain=!1}function Or(e,t,n){var r=kr(e,":"+t)||kr(e,"v-bind:"+t);if(null!=r)return vr(r);if(!1!==n){var i=kr(e,t);if(null!=i)return JSON.stringify(i)}}function kr(e,t,n){var r;if(null!=(r=e.attrsMap[t]))for(var i=e.attrsList,o=0,a=i.length;o<a;o++)if(i[o].name===t){i.splice(o,1);break}return n&&delete e.attrsMap[t],r}function $r(e,t,n){var r=n||{},i=r.number,o="$$v";r.trim&&(o="(typeof $$v === 'string'? $$v.trim(): $$v)"),i&&(o="_n("+o+")");var a=Sr(t,o);e.model={value:"("+t+")",expression:'"'+t+'"',callback:"function ($$v) {"+a+"}"}}function Sr(e,t){var n=function(e){if(e=e.trim(),sr=e.length,e.indexOf("[")<0||e.lastIndexOf("]")<sr-1)return(lr=e.lastIndexOf("."))>-1?{exp:e.slice(0,lr),key:'"'+e.slice(lr+1)+'"'}:{exp:e,key:null};cr=e,lr=fr=pr=0;for(;!Tr();)Er(ur=Ar())?Mr(ur):91===ur&&Lr(ur);return{exp:e.slice(0,fr),key:e.slice(fr+1,pr)}}(e);return null===n.key?e+"="+t:"$set("+n.exp+", "+n.key+", "+t+")"}function Ar(){return cr.charCodeAt(++lr)}function Tr(){return lr>=sr}function Er(e){return 34===e||39===e}function Lr(e){var t=1;for(fr=lr;!Tr();)if(Er(e=Ar()))Mr(e);else if(91===e&&t++,93===e&&t--,0===t){pr=lr;break}}function Mr(e){for(var t=e;!Tr()&&(e=Ar())!==t;);}var jr,Pr="__r",Nr="__c";function Ir(e,t,n,r,i){t=function(e){return e._withTask||(e._withTask=function(){Ze=!0;var t=e.apply(null,arguments);return Ze=!1,t})}(t),n&&(t=function(e,t,n){var r=jr;return function i(){null!==e.apply(null,arguments)&&Dr(t,i,n,r)}}(t,e,r)),jr.addEventListener(e,t,te?{capture:r,passive:i}:r)}function Dr(e,t,n,r){(r||jr).removeEventListener(e,t._withTask||t,n)}function Ur(e,t){if(!i(e.data.on)||!i(t.data.on)){var n=t.data.on||{},r=e.data.on||{};jr=t.elm,function(e){if(o(e[Pr])){var t=X?"change":"input";e[t]=[].concat(e[Pr],e[t]||[]),delete e[Pr]}o(e[Nr])&&(e.change=[].concat(e[Nr],e.change||[]),delete e[Nr])}(n),st(n,r,Ir,Dr,t.context),jr=void 0}}var Rr={create:Ur,update:Ur};function Fr(e,t){if(!i(e.data.domProps)||!i(t.data.domProps)){var n,r,a=t.elm,s=e.data.domProps||{},c=t.data.domProps||{};for(n in o(c.__ob__)&&(c=t.data.domProps=T({},c)),s)i(c[n])&&(a[n]="");for(n in c){if(r=c[n],"textContent"===n||"innerHTML"===n){if(t.children&&(t.children.length=0),r===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n){a._value=r;var u=i(r)?"":String(r);Vr(a,u)&&(a.value=u)}else a[n]=r}}}function Vr(e,t){return!e.composing&&("OPTION"===e.tagName||function(e,t){var n=!0;try{n=document.activeElement!==e}catch(e){}return n&&e.value!==t}(e,t)||function(e,t){var n=e.value,r=e._vModifiers;if(o(r)){if(r.lazy)return!1;if(r.number)return h(n)!==h(t);if(r.trim)return n.trim()!==t.trim()}return n!==t}(e,t))}var Br={create:Fr,update:Fr},Hr=w(function(e){var t={},n=/:(.+)/;return e.split(/;(?![^(]*\))/g).forEach(function(e){if(e){var r=e.split(n);r.length>1&&(t[r[0].trim()]=r[1].trim())}}),t});function Wr(e){var t=zr(e.style);return e.staticStyle?T(e.staticStyle,t):t}function zr(e){return Array.isArray(e)?E(e):"string"==typeof e?Hr(e):e}var Kr,Gr=/^--/,Jr=/\s*!important$/,qr=function(e,t,n){if(Gr.test(t))e.style.setProperty(t,n);else if(Jr.test(n))e.style.setProperty(t,n.replace(Jr,""),"important");else{var r=Zr(t);if(Array.isArray(n))for(var i=0,o=n.length;i<o;i++)e.style[r]=n[i];else e.style[r]=n}},Xr=["Webkit","Moz","ms"],Zr=w(function(e){if(Kr=Kr||document.createElement("div").style,"filter"!==(e=C(e))&&e in Kr)return e;for(var t=e.charAt(0).toUpperCase()+e.slice(1),n=0;n<Xr.length;n++){var r=Xr[n]+t;if(r in Kr)return r}});function Yr(e,t){var n=t.data,r=e.data;if(!(i(n.staticStyle)&&i(n.style)&&i(r.staticStyle)&&i(r.style))){var a,s,c=t.elm,u=r.staticStyle,l=r.normalizedStyle||r.style||{},f=u||l,p=zr(t.data.style)||{};t.data.normalizedStyle=o(p.__ob__)?T({},p):p;var d=function(e,t){var n,r={};if(t)for(var i=e;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=Wr(i.data))&&T(r,n);(n=Wr(e.data))&&T(r,n);for(var o=e;o=o.parent;)o.data&&(n=Wr(o.data))&&T(r,n);return r}(t,!0);for(s in f)i(d[s])&&qr(c,s,"");for(s in d)(a=d[s])!==f[s]&&qr(c,s,null==a?"":a)}}var Qr={create:Yr,update:Yr};function ei(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.add(t)}):e.classList.add(t);else{var n=" "+(e.getAttribute("class")||"")+" ";n.indexOf(" "+t+" ")<0&&e.setAttribute("class",(n+t).trim())}}function ti(e,t){if(t&&(t=t.trim()))if(e.classList)t.indexOf(" ")>-1?t.split(/\s+/).forEach(function(t){return e.classList.remove(t)}):e.classList.remove(t),e.classList.length||e.removeAttribute("class");else{for(var n=" "+(e.getAttribute("class")||"")+" ",r=" "+t+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?e.setAttribute("class",n):e.removeAttribute("class")}}function ni(e){if(e){if("object"==typeof e){var t={};return!1!==e.css&&T(t,ri(e.name||"v")),T(t,e),t}return"string"==typeof e?ri(e):void 0}}var ri=w(function(e){return{enterClass:e+"-enter",enterToClass:e+"-enter-to",enterActiveClass:e+"-enter-active",leaveClass:e+"-leave",leaveToClass:e+"-leave-to",leaveActiveClass:e+"-leave-active"}}),ii=K&&!Z,oi="transition",ai="animation",si="transition",ci="transitionend",ui="animation",li="animationend";ii&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(si="WebkitTransition",ci="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(ui="WebkitAnimation",li="webkitAnimationEnd"));var fi=K?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(e){return e()};function pi(e){fi(function(){fi(e)})}function di(e,t){var n=e._transitionClasses||(e._transitionClasses=[]);n.indexOf(t)<0&&(n.push(t),ei(e,t))}function hi(e,t){e._transitionClasses&&y(e._transitionClasses,t),ti(e,t)}function vi(e,t,n){var r=gi(e,t),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===oi?ci:li,c=0,u=function(){e.removeEventListener(s,l),n()},l=function(t){t.target===e&&++c>=a&&u()};setTimeout(function(){c<a&&u()},o+1),e.addEventListener(s,l)}var mi=/\b(transform|all)(,|$)/;function gi(e,t){var n,r=window.getComputedStyle(e),i=r[si+"Delay"].split(", "),o=r[si+"Duration"].split(", "),a=yi(i,o),s=r[ui+"Delay"].split(", "),c=r[ui+"Duration"].split(", "),u=yi(s,c),l=0,f=0;return t===oi?a>0&&(n=oi,l=a,f=o.length):t===ai?u>0&&(n=ai,l=u,f=c.length):f=(n=(l=Math.max(a,u))>0?a>u?oi:ai:null)?n===oi?o.length:c.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===oi&&mi.test(r[si+"Property"])}}function yi(e,t){for(;e.length<t.length;)e=e.concat(e);return Math.max.apply(null,t.map(function(t,n){return _i(t)+_i(e[n])}))}function _i(e){return 1e3*Number(e.slice(0,-1))}function bi(e,t){var n=e.elm;o(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=ni(e.data.transition);if(!i(r)&&!o(n._enterCb)&&1===n.nodeType){for(var a=r.css,s=r.type,u=r.enterClass,l=r.enterToClass,f=r.enterActiveClass,p=r.appearClass,d=r.appearToClass,v=r.appearActiveClass,m=r.beforeEnter,g=r.enter,y=r.afterEnter,_=r.enterCancelled,b=r.beforeAppear,w=r.appear,x=r.afterAppear,C=r.appearCancelled,O=r.duration,k=wt,$=wt.$vnode;$&&$.parent;)k=($=$.parent).context;var S=!k._isMounted||!e.isRootInsert;if(!S||w||""===w){var A=S&&p?p:u,T=S&&v?v:f,E=S&&d?d:l,L=S&&b||m,M=S&&"function"==typeof w?w:g,j=S&&x||y,P=S&&C||_,N=h(c(O)?O.enter:O);0;var D=!1!==a&&!Z,U=Ci(M),R=n._enterCb=I(function(){D&&(hi(n,E),hi(n,T)),R.cancelled?(D&&hi(n,A),P&&P(n)):j&&j(n),n._enterCb=null});e.data.show||ct(e,"insert",function(){var t=n.parentNode,r=t&&t._pending&&t._pending[e.key];r&&r.tag===e.tag&&r.elm._leaveCb&&r.elm._leaveCb(),M&&M(n,R)}),L&&L(n),D&&(di(n,A),di(n,T),pi(function(){hi(n,A),R.cancelled||(di(n,E),U||(xi(N)?setTimeout(R,N):vi(n,s,R)))})),e.data.show&&(t&&t(),M&&M(n,R)),D||U||R()}}}function wi(e,t){var n=e.elm;o(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=ni(e.data.transition);if(i(r)||1!==n.nodeType)return t();if(!o(n._leaveCb)){var a=r.css,s=r.type,u=r.leaveClass,l=r.leaveToClass,f=r.leaveActiveClass,p=r.beforeLeave,d=r.leave,v=r.afterLeave,m=r.leaveCancelled,g=r.delayLeave,y=r.duration,_=!1!==a&&!Z,b=Ci(d),w=h(c(y)?y.leave:y);0;var x=n._leaveCb=I(function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[e.key]=null),_&&(hi(n,l),hi(n,f)),x.cancelled?(_&&hi(n,u),m&&m(n)):(t(),v&&v(n)),n._leaveCb=null});g?g(C):C()}function C(){x.cancelled||(e.data.show||((n.parentNode._pending||(n.parentNode._pending={}))[e.key]=e),p&&p(n),_&&(di(n,u),di(n,f),pi(function(){hi(n,u),x.cancelled||(di(n,l),b||(xi(w)?setTimeout(x,w):vi(n,s,x)))})),d&&d(n,x),_||b||x())}}function xi(e){return"number"==typeof e&&!isNaN(e)}function Ci(e){if(i(e))return!1;var t=e.fns;return o(t)?Ci(Array.isArray(t)?t[0]:t):(e._length||e.length)>1}function Oi(e,t){!0!==t.data.show&&bi(t)}var ki=function(e){var t,n,r={},c=e.modules,u=e.nodeOps;for(t=0;t<Kn.length;++t)for(r[Kn[t]]=[],n=0;n<c.length;++n)o(c[n][Kn[t]])&&r[Kn[t]].push(c[n][Kn[t]]);function l(e){var t=u.parentNode(e);o(t)&&u.removeChild(t,e)}function f(e,t,n,i,s,c,l){if(o(e.elm)&&o(c)&&(e=c[l]=ye(e)),e.isRootInsert=!s,!function(e,t,n,i){var s=e.data;if(o(s)){var c=o(e.componentInstance)&&s.keepAlive;if(o(s=s.hook)&&o(s=s.init)&&s(e,!1,n,i),o(e.componentInstance))return p(e,t),a(c)&&function(e,t,n,i){for(var a,s=e;s.componentInstance;)if(s=s.componentInstance._vnode,o(a=s.data)&&o(a=a.transition)){for(a=0;a<r.activate.length;++a)r.activate[a](zn,s);t.push(s);break}d(n,e.elm,i)}(e,t,n,i),!0}}(e,t,n,i)){var f=e.data,v=e.children,m=e.tag;o(m)?(e.elm=e.ns?u.createElementNS(e.ns,m):u.createElement(m,e),y(e),h(e,v,t),o(f)&&g(e,t),d(n,e.elm,i)):a(e.isComment)?(e.elm=u.createComment(e.text),d(n,e.elm,i)):(e.elm=u.createTextNode(e.text),d(n,e.elm,i))}}function p(e,t){o(e.data.pendingInsert)&&(t.push.apply(t,e.data.pendingInsert),e.data.pendingInsert=null),e.elm=e.componentInstance.$el,m(e)?(g(e,t),y(e)):(Wn(e),t.push(e))}function d(e,t,n){o(e)&&(o(n)?n.parentNode===e&&u.insertBefore(e,t,n):u.appendChild(e,t))}function h(e,t,n){if(Array.isArray(t))for(var r=0;r<t.length;++r)f(t[r],n,e.elm,null,!0,t,r);else s(e.text)&&u.appendChild(e.elm,u.createTextNode(String(e.text)))}function m(e){for(;e.componentInstance;)e=e.componentInstance._vnode;return o(e.tag)}function g(e,n){for(var i=0;i<r.create.length;++i)r.create[i](zn,e);o(t=e.data.hook)&&(o(t.create)&&t.create(zn,e),o(t.insert)&&n.push(e))}function y(e){var t;if(o(t=e.fnScopeId))u.setStyleScope(e.elm,t);else for(var n=e;n;)o(t=n.context)&&o(t=t.$options._scopeId)&&u.setStyleScope(e.elm,t),n=n.parent;o(t=wt)&&t!==e.context&&t!==e.fnContext&&o(t=t.$options._scopeId)&&u.setStyleScope(e.elm,t)}function _(e,t,n,r,i,o){for(;r<=i;++r)f(n[r],o,e,t,!1,n,r)}function b(e){var t,n,i=e.data;if(o(i))for(o(t=i.hook)&&o(t=t.destroy)&&t(e),t=0;t<r.destroy.length;++t)r.destroy[t](e);if(o(t=e.children))for(n=0;n<e.children.length;++n)b(e.children[n])}function w(e,t,n,r){for(;n<=r;++n){var i=t[n];o(i)&&(o(i.tag)?(x(i),b(i)):l(i.elm))}}function x(e,t){if(o(t)||o(e.data)){var n,i=r.remove.length+1;for(o(t)?t.listeners+=i:t=function(e,t){function n(){0==--n.listeners&&l(e)}return n.listeners=t,n}(e.elm,i),o(n=e.componentInstance)&&o(n=n._vnode)&&o(n.data)&&x(n,t),n=0;n<r.remove.length;++n)r.remove[n](e,t);o(n=e.data.hook)&&o(n=n.remove)?n(e,t):t()}else l(e.elm)}function C(e,t,n,r){for(var i=n;i<r;i++){var a=t[i];if(o(a)&&Gn(e,a))return i}}function O(e,t,n,s){if(e!==t){var c=t.elm=e.elm;if(a(e.isAsyncPlaceholder))o(t.asyncFactory.resolved)?S(e.elm,t,n):t.isAsyncPlaceholder=!0;else if(a(t.isStatic)&&a(e.isStatic)&&t.key===e.key&&(a(t.isCloned)||a(t.isOnce)))t.componentInstance=e.componentInstance;else{var l,p=t.data;o(p)&&o(l=p.hook)&&o(l=l.prepatch)&&l(e,t);var d=e.children,h=t.children;if(o(p)&&m(t)){for(l=0;l<r.update.length;++l)r.update[l](e,t);o(l=p.hook)&&o(l=l.update)&&l(e,t)}i(t.text)?o(d)&&o(h)?d!==h&&function(e,t,n,r,a){for(var s,c,l,p=0,d=0,h=t.length-1,v=t[0],m=t[h],g=n.length-1,y=n[0],b=n[g],x=!a;p<=h&&d<=g;)i(v)?v=t[++p]:i(m)?m=t[--h]:Gn(v,y)?(O(v,y,r),v=t[++p],y=n[++d]):Gn(m,b)?(O(m,b,r),m=t[--h],b=n[--g]):Gn(v,b)?(O(v,b,r),x&&u.insertBefore(e,v.elm,u.nextSibling(m.elm)),v=t[++p],b=n[--g]):Gn(m,y)?(O(m,y,r),x&&u.insertBefore(e,m.elm,v.elm),m=t[--h],y=n[++d]):(i(s)&&(s=Jn(t,p,h)),i(c=o(y.key)?s[y.key]:C(y,t,p,h))?f(y,r,e,v.elm,!1,n,d):Gn(l=t[c],y)?(O(l,y,r),t[c]=void 0,x&&u.insertBefore(e,l.elm,v.elm)):f(y,r,e,v.elm,!1,n,d),y=n[++d]);p>h?_(e,i(n[g+1])?null:n[g+1].elm,n,d,g,r):d>g&&w(0,t,p,h)}(c,d,h,n,s):o(h)?(o(e.text)&&u.setTextContent(c,""),_(c,null,h,0,h.length-1,n)):o(d)?w(0,d,0,d.length-1):o(e.text)&&u.setTextContent(c,""):e.text!==t.text&&u.setTextContent(c,t.text),o(p)&&o(l=p.hook)&&o(l=l.postpatch)&&l(e,t)}}}function k(e,t,n){if(a(n)&&o(e.parent))e.parent.data.pendingInsert=t;else for(var r=0;r<t.length;++r)t[r].data.hook.insert(t[r])}var $=v("attrs,class,staticClass,staticStyle,key");function S(e,t,n,r){var i,s=t.tag,c=t.data,u=t.children;if(r=r||c&&c.pre,t.elm=e,a(t.isComment)&&o(t.asyncFactory))return t.isAsyncPlaceholder=!0,!0;if(o(c)&&(o(i=c.hook)&&o(i=i.init)&&i(t,!0),o(i=t.componentInstance)))return p(t,n),!0;if(o(s)){if(o(u))if(e.hasChildNodes())if(o(i=c)&&o(i=i.domProps)&&o(i=i.innerHTML)){if(i!==e.innerHTML)return!1}else{for(var l=!0,f=e.firstChild,d=0;d<u.length;d++){if(!f||!S(f,u[d],n,r)){l=!1;break}f=f.nextSibling}if(!l||f)return!1}else h(t,u,n);if(o(c)){var v=!1;for(var m in c)if(!$(m)){v=!0,g(t,n);break}!v&&c.class&&rt(c.class)}}else e.data!==t.text&&(e.data=t.text);return!0}return function(e,t,n,s,c,l){if(!i(t)){var p=!1,d=[];if(i(e))p=!0,f(t,d,c,l);else{var h=o(e.nodeType);if(!h&&Gn(e,t))O(e,t,d,s);else{if(h){if(1===e.nodeType&&e.hasAttribute(D)&&(e.removeAttribute(D),n=!0),a(n)&&S(e,t,d))return k(t,d,!0),e;e=function(e){return new he(u.tagName(e).toLowerCase(),{},[],void 0,e)}(e)}var v=e.elm,g=u.parentNode(v);if(f(t,d,v._leaveCb?null:g,u.nextSibling(v)),o(t.parent))for(var y=t.parent,_=m(t);y;){for(var x=0;x<r.destroy.length;++x)r.destroy[x](y);if(y.elm=t.elm,_){for(var C=0;C<r.create.length;++C)r.create[C](zn,y);var $=y.data.hook.insert;if($.merged)for(var A=1;A<$.fns.length;A++)$.fns[A]()}else Wn(y);y=y.parent}o(g)?w(0,[e],0,0):o(e.tag)&&b(e)}}return k(t,d,p),t.elm}o(e)&&b(e)}}({nodeOps:Bn,modules:[or,dr,Rr,Br,Qr,K?{create:Oi,activate:Oi,remove:function(e,t){!0!==e.data.show?wi(e,t):t()}}:{}].concat(tr)});Z&&document.addEventListener("selectionchange",function(){var e=document.activeElement;e&&e.vmodel&&ji(e,"input")});var $i={inserted:function(e,t,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?ct(n,"postpatch",function(){$i.componentUpdated(e,t,n)}):Si(e,t,n.context),e._vOptions=[].map.call(e.options,Ei)):("textarea"===n.tag||Fn(e.type))&&(e._vModifiers=t.modifiers,t.modifiers.lazy||(e.addEventListener("compositionstart",Li),e.addEventListener("compositionend",Mi),e.addEventListener("change",Mi),Z&&(e.vmodel=!0)))},componentUpdated:function(e,t,n){if("select"===n.tag){Si(e,t,n.context);var r=e._vOptions,i=e._vOptions=[].map.call(e.options,Ei);if(i.some(function(e,t){return!P(e,r[t])}))(e.multiple?t.value.some(function(e){return Ti(e,i)}):t.value!==t.oldValue&&Ti(t.value,i))&&ji(e,"change")}}};function Si(e,t,n){Ai(e,t,n),(X||Y)&&setTimeout(function(){Ai(e,t,n)},0)}function Ai(e,t,n){var r=t.value,i=e.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,c=e.options.length;s<c;s++)if(a=e.options[s],i)o=N(r,Ei(a))>-1,a.selected!==o&&(a.selected=o);else if(P(Ei(a),r))return void(e.selectedIndex!==s&&(e.selectedIndex=s));i||(e.selectedIndex=-1)}}function Ti(e,t){return t.every(function(t){return!P(t,e)})}function Ei(e){return"_value"in e?e._value:e.value}function Li(e){e.target.composing=!0}function Mi(e){e.target.composing&&(e.target.composing=!1,ji(e.target,"input"))}function ji(e,t){var n=document.createEvent("HTMLEvents");n.initEvent(t,!0,!0),e.dispatchEvent(n)}function Pi(e){return!e.componentInstance||e.data&&e.data.transition?e:Pi(e.componentInstance._vnode)}var Ni={model:$i,show:{bind:function(e,t,n){var r=t.value,i=(n=Pi(n)).data&&n.data.transition,o=e.__vOriginalDisplay="none"===e.style.display?"":e.style.display;r&&i?(n.data.show=!0,bi(n,function(){e.style.display=o})):e.style.display=r?o:"none"},update:function(e,t,n){var r=t.value;!r!=!t.oldValue&&((n=Pi(n)).data&&n.data.transition?(n.data.show=!0,r?bi(n,function(){e.style.display=e.__vOriginalDisplay}):wi(n,function(){e.style.display="none"})):e.style.display=r?e.__vOriginalDisplay:"none")},unbind:function(e,t,n,r,i){i||(e.style.display=e.__vOriginalDisplay)}}},Ii={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Di(e){var t=e&&e.componentOptions;return t&&t.Ctor.options.abstract?Di(ht(t.children)):e}function Ui(e){var t={},n=e.$options;for(var r in n.propsData)t[r]=e[r];var i=n._parentListeners;for(var o in i)t[C(o)]=i[o];return t}function Ri(e,t){if(/\d-keep-alive$/.test(t.tag))return e("keep-alive",{props:t.componentOptions.propsData})}var Fi={name:"transition",props:Ii,abstract:!0,render:function(e){var t=this,n=this.$slots.default;if(n&&(n=n.filter(function(e){return e.tag||dt(e)})).length){0;var r=this.mode;0;var i=n[0];if(function(e){for(;e=e.parent;)if(e.data.transition)return!0}(this.$vnode))return i;var o=Di(i);if(!o)return i;if(this._leaving)return Ri(e,i);var a="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?a+"comment":a+o.tag:s(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var c=(o.data||(o.data={})).transition=Ui(this),u=this._vnode,l=Di(u);if(o.data.directives&&o.data.directives.some(function(e){return"show"===e.name})&&(o.data.show=!0),l&&l.data&&!function(e,t){return t.key===e.key&&t.tag===e.tag}(o,l)&&!dt(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var f=l.data.transition=T({},c);if("out-in"===r)return this._leaving=!0,ct(f,"afterLeave",function(){t._leaving=!1,t.$forceUpdate()}),Ri(e,i);if("in-out"===r){if(dt(o))return u;var p,d=function(){p()};ct(c,"afterEnter",d),ct(c,"enterCancelled",d),ct(f,"delayLeave",function(e){p=e})}}return i}}},Vi=T({tag:String,moveClass:String},Ii);function Bi(e){e.elm._moveCb&&e.elm._moveCb(),e.elm._enterCb&&e.elm._enterCb()}function Hi(e){e.data.newPos=e.elm.getBoundingClientRect()}function Wi(e){var t=e.data.pos,n=e.data.newPos,r=t.left-n.left,i=t.top-n.top;if(r||i){e.data.moved=!0;var o=e.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}delete Vi.mode;var zi={Transition:Fi,TransitionGroup:{props:Vi,render:function(e){for(var t=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=Ui(this),s=0;s<i.length;s++){var c=i[s];if(c.tag)if(null!=c.key&&0!==String(c.key).indexOf("__vlist"))o.push(c),n[c.key]=c,(c.data||(c.data={})).transition=a;else;}if(r){for(var u=[],l=[],f=0;f<r.length;f++){var p=r[f];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?u.push(p):l.push(p)}this.kept=e(t,null,u),this.removed=l}return e(t,null,o)},beforeUpdate:function(){this.__patch__(this._vnode,this.kept,!1,!0),this._vnode=this.kept},updated:function(){var e=this.prevChildren,t=this.moveClass||(this.name||"v")+"-move";e.length&&this.hasMove(e[0].elm,t)&&(e.forEach(Bi),e.forEach(Hi),e.forEach(Wi),this._reflow=document.body.offsetHeight,e.forEach(function(e){if(e.data.moved){var n=e.elm,r=n.style;di(n,t),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(ci,n._moveCb=function e(r){r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(ci,e),n._moveCb=null,hi(n,t))})}}))},methods:{hasMove:function(e,t){if(!ii)return!1;if(this._hasMove)return this._hasMove;var n=e.cloneNode();e._transitionClasses&&e._transitionClasses.forEach(function(e){ti(n,e)}),ei(n,t),n.style.display="none",this.$el.appendChild(n);var r=gi(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}}};dn.config.mustUseProp=Cn,dn.config.isReservedTag=Dn,dn.config.isReservedAttr=wn,dn.config.getTagNamespace=Un,dn.config.isUnknownElement=function(e){if(!K)return!0;if(Dn(e))return!1;if(e=e.toLowerCase(),null!=Rn[e])return Rn[e];var t=document.createElement(e);return e.indexOf("-")>-1?Rn[e]=t.constructor===window.HTMLUnknownElement||t.constructor===window.HTMLElement:Rn[e]=/HTMLUnknownElement/.test(t.toString())},T(dn.options.directives,Ni),T(dn.options.components,zi),dn.prototype.__patch__=K?ki:L,dn.prototype.$mount=function(e,t){return function(e,t,n){return e.$el=t,e.$options.render||(e.$options.render=me),Ot(e,"beforeMount"),new jt(e,function(){e._update(e._render(),n)},L,null,!0),n=!1,null==e.$vnode&&(e._isMounted=!0,Ot(e,"mounted")),e}(this,e=e&&K?Vn(e):void 0,t)},K&&setTimeout(function(){F.devtools&&ie&&ie.emit("init",dn)},0);var Ki=/\{\{((?:.|\n)+?)\}\}/g,Gi=/[-.*+?^${}()|[\]\/\\]/g,Ji=w(function(e){var t=e[0].replace(Gi,"\\$&"),n=e[1].replace(Gi,"\\$&");return new RegExp(t+"((?:.|\\n)+?)"+n,"g")});var qi={staticKeys:["staticClass"],transformNode:function(e,t){t.warn;var n=kr(e,"class");n&&(e.staticClass=JSON.stringify(n));var r=Or(e,"class",!1);r&&(e.classBinding=r)},genData:function(e){var t="";return e.staticClass&&(t+="staticClass:"+e.staticClass+","),e.classBinding&&(t+="class:"+e.classBinding+","),t}};var Xi,Zi={staticKeys:["staticStyle"],transformNode:function(e,t){t.warn;var n=kr(e,"style");n&&(e.staticStyle=JSON.stringify(Hr(n)));var r=Or(e,"style",!1);r&&(e.styleBinding=r)},genData:function(e){var t="";return e.staticStyle&&(t+="staticStyle:"+e.staticStyle+","),e.styleBinding&&(t+="style:("+e.styleBinding+"),"),t}},Yi=function(e){return(Xi=Xi||document.createElement("div")).innerHTML=e,Xi.textContent},Qi=v("area,base,br,col,embed,frame,hr,img,input,isindex,keygen,link,meta,param,source,track,wbr"),eo=v("colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source"),to=v("address,article,aside,base,blockquote,body,caption,col,colgroup,dd,details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,title,tr,track"),no=/^\s*([^\s"'<>\/=]+)(?:\s*(=)\s*(?:"([^"]*)"+|'([^']*)'+|([^\s"'=<>`]+)))?/,ro="[a-zA-Z_][\\w\\-\\.]*",io="((?:"+ro+"\\:)?"+ro+")",oo=new RegExp("^<"+io),ao=/^\s*(\/?)>/,so=new RegExp("^<\\/"+io+"[^>]*>"),co=/^<!DOCTYPE [^>]+>/i,uo=/^<!\--/,lo=/^<!\[/,fo=!1;"x".replace(/x(.)?/g,function(e,t){fo=""===t});var po=v("script,style,textarea",!0),ho={},vo={"<":"<",">":">",""":'"',"&":"&"," ":"\n","	":"\t"},mo=/&(?:lt|gt|quot|amp);/g,go=/&(?:lt|gt|quot|amp|#10|#9);/g,yo=v("pre,textarea",!0),_o=function(e,t){return e&&yo(e)&&"\n"===t[0]};function bo(e,t){var n=t?go:mo;return e.replace(n,function(e){return vo[e]})}var wo,xo,Co,Oo,ko,$o,So,Ao,To=/^@|^v-on:/,Eo=/^v-|^@|^:/,Lo=/([^]*?)\s+(?:in|of)\s+([^]*)/,Mo=/,([^,\}\]]*)(?:,([^,\}\]]*))?$/,jo=/^\(|\)$/g,Po=/:(.*)$/,No=/^:|^v-bind:/,Io=/\.[^.]+/g,Do=w(Yi);function Uo(e,t,n){return{type:1,tag:e,attrsList:t,attrsMap:function(e){for(var t={},n=0,r=e.length;n<r;n++)t[e[n].name]=e[n].value;return t}(t),parent:n,children:[]}}function Ro(e,t){wo=t.warn||gr,$o=t.isPreTag||M,So=t.mustUseProp||M,Ao=t.getTagNamespace||M,Co=yr(t.modules,"transformNode"),Oo=yr(t.modules,"preTransformNode"),ko=yr(t.modules,"postTransformNode"),xo=t.delimiters;var n,r,i=[],o=!1!==t.preserveWhitespace,a=!1,s=!1;function c(e){e.pre&&(a=!1),$o(e.tag)&&(s=!1);for(var n=0;n<ko.length;n++)ko[n](e,t)}return function(e,t){for(var n,r,i=[],o=t.expectHTML,a=t.isUnaryTag||M,s=t.canBeLeftOpenTag||M,c=0;e;){if(n=e,r&&po(r)){var u=0,l=r.toLowerCase(),f=ho[l]||(ho[l]=new RegExp("([\\s\\S]*?)(</"+l+"[^>]*>)","i")),p=e.replace(f,function(e,n,r){return u=r.length,po(l)||"noscript"===l||(n=n.replace(/<!\--([\s\S]*?)-->/g,"$1").replace(/<!\[CDATA\[([\s\S]*?)]]>/g,"$1")),_o(l,n)&&(n=n.slice(1)),t.chars&&t.chars(n),""});c+=e.length-p.length,e=p,$(l,c-u,c)}else{var d=e.indexOf("<");if(0===d){if(uo.test(e)){var h=e.indexOf("--\x3e");if(h>=0){t.shouldKeepComment&&t.comment(e.substring(4,h)),C(h+3);continue}}if(lo.test(e)){var v=e.indexOf("]>");if(v>=0){C(v+2);continue}}var m=e.match(co);if(m){C(m[0].length);continue}var g=e.match(so);if(g){var y=c;C(g[0].length),$(g[1],y,c);continue}var _=O();if(_){k(_),_o(r,e)&&C(1);continue}}var b=void 0,w=void 0,x=void 0;if(d>=0){for(w=e.slice(d);!(so.test(w)||oo.test(w)||uo.test(w)||lo.test(w)||(x=w.indexOf("<",1))<0);)d+=x,w=e.slice(d);b=e.substring(0,d),C(d)}d<0&&(b=e,e=""),t.chars&&b&&t.chars(b)}if(e===n){t.chars&&t.chars(e);break}}function C(t){c+=t,e=e.substring(t)}function O(){var t=e.match(oo);if(t){var n,r,i={tagName:t[1],attrs:[],start:c};for(C(t[0].length);!(n=e.match(ao))&&(r=e.match(no));)C(r[0].length),i.attrs.push(r);if(n)return i.unarySlash=n[1],C(n[0].length),i.end=c,i}}function k(e){var n=e.tagName,c=e.unarySlash;o&&("p"===r&&to(n)&&$(r),s(n)&&r===n&&$(n));for(var u=a(n)||!!c,l=e.attrs.length,f=new Array(l),p=0;p<l;p++){var d=e.attrs[p];fo&&-1===d[0].indexOf('""')&&(""===d[3]&&delete d[3],""===d[4]&&delete d[4],""===d[5]&&delete d[5]);var h=d[3]||d[4]||d[5]||"",v="a"===n&&"href"===d[1]?t.shouldDecodeNewlinesForHref:t.shouldDecodeNewlines;f[p]={name:d[1],value:bo(h,v)}}u||(i.push({tag:n,lowerCasedTag:n.toLowerCase(),attrs:f}),r=n),t.start&&t.start(n,f,u,e.start,e.end)}function $(e,n,o){var a,s;if(null==n&&(n=c),null==o&&(o=c),e&&(s=e.toLowerCase()),e)for(a=i.length-1;a>=0&&i[a].lowerCasedTag!==s;a--);else a=0;if(a>=0){for(var u=i.length-1;u>=a;u--)t.end&&t.end(i[u].tag,n,o);i.length=a,r=a&&i[a-1].tag}else"br"===s?t.start&&t.start(e,[],!0,n,o):"p"===s&&(t.start&&t.start(e,[],!1,n,o),t.end&&t.end(e,n,o))}$()}(e,{warn:wo,expectHTML:t.expectHTML,isUnaryTag:t.isUnaryTag,canBeLeftOpenTag:t.canBeLeftOpenTag,shouldDecodeNewlines:t.shouldDecodeNewlines,shouldDecodeNewlinesForHref:t.shouldDecodeNewlinesForHref,shouldKeepComment:t.comments,start:function(e,o,u){var l=r&&r.ns||Ao(e);X&&"svg"===l&&(o=function(e){for(var t=[],n=0;n<e.length;n++){var r=e[n];Wo.test(r.name)||(r.name=r.name.replace(zo,""),t.push(r))}return t}(o));var f=Uo(e,o,r);l&&(f.ns=l),function(e){return"style"===e.tag||"script"===e.tag&&(!e.attrsMap.type||"text/javascript"===e.attrsMap.type)}(f)&&!re()&&(f.forbidden=!0);for(var p=0;p<Oo.length;p++)f=Oo[p](f,t)||f;function d(e){0}if(a||(!function(e){null!=kr(e,"v-pre")&&(e.pre=!0)}(f),f.pre&&(a=!0)),$o(f.tag)&&(s=!0),a?function(e){var t=e.attrsList.length;if(t)for(var n=e.attrs=new Array(t),r=0;r<t;r++)n[r]={name:e.attrsList[r].name,value:JSON.stringify(e.attrsList[r].value)};else e.pre||(e.plain=!0)}(f):f.processed||(Vo(f),function(e){var t=kr(e,"v-if");if(t)e.if=t,Bo(e,{exp:t,block:e});else{null!=kr(e,"v-else")&&(e.else=!0);var n=kr(e,"v-else-if");n&&(e.elseif=n)}}(f),function(e){null!=kr(e,"v-once")&&(e.once=!0)}(f),Fo(f,t)),n?i.length||n.if&&(f.elseif||f.else)&&(d(),Bo(n,{exp:f.elseif,block:f})):(n=f,d()),r&&!f.forbidden)if(f.elseif||f.else)!function(e,t){var n=function(e){var t=e.length;for(;t--;){if(1===e[t].type)return e[t];e.pop()}}(t.children);n&&n.if&&Bo(n,{exp:e.elseif,block:e})}(f,r);else if(f.slotScope){r.plain=!1;var h=f.slotTarget||'"default"';(r.scopedSlots||(r.scopedSlots={}))[h]=f}else r.children.push(f),f.parent=r;u?c(f):(r=f,i.push(f))},end:function(){var e=i[i.length-1],t=e.children[e.children.length-1];t&&3===t.type&&" "===t.text&&!s&&e.children.pop(),i.length-=1,r=i[i.length-1],c(e)},chars:function(e){if(r&&(!X||"textarea"!==r.tag||r.attrsMap.placeholder!==e)){var t,n=r.children;if(e=s||e.trim()?function(e){return"script"===e.tag||"style"===e.tag}(r)?e:Do(e):o&&n.length?" ":"")!a&&" "!==e&&(t=function(e,t){var n=t?Ji(t):Ki;if(n.test(e)){for(var r,i,o,a=[],s=[],c=n.lastIndex=0;r=n.exec(e);){(i=r.index)>c&&(s.push(o=e.slice(c,i)),a.push(JSON.stringify(o)));var u=vr(r[1].trim());a.push("_s("+u+")"),s.push({"@binding":u}),c=i+r[0].length}return c<e.length&&(s.push(o=e.slice(c)),a.push(JSON.stringify(o))),{expression:a.join("+"),tokens:s}}}(e,xo))?n.push({type:2,expression:t.expression,tokens:t.tokens,text:e}):" "===e&&n.length&&" "===n[n.length-1].text||n.push({type:3,text:e})}},comment:function(e){r.children.push({type:3,text:e,isComment:!0})}}),n}function Fo(e,t){!function(e){var t=Or(e,"key");t&&(e.key=t)}(e),e.plain=!e.key&&!e.attrsList.length,function(e){var t=Or(e,"ref");t&&(e.ref=t,e.refInFor=function(e){var t=e;for(;t;){if(void 0!==t.for)return!0;t=t.parent}return!1}(e))}(e),function(e){if("slot"===e.tag)e.slotName=Or(e,"name");else{var t;"template"===e.tag?(t=kr(e,"scope"),e.slotScope=t||kr(e,"slot-scope")):(t=kr(e,"slot-scope"))&&(e.slotScope=t);var n=Or(e,"slot");n&&(e.slotTarget='""'===n?'"default"':n,"template"===e.tag||e.slotScope||br(e,"slot",n))}}(e),function(e){var t;(t=Or(e,"is"))&&(e.component=t);null!=kr(e,"inline-template")&&(e.inlineTemplate=!0)}(e);for(var n=0;n<Co.length;n++)e=Co[n](e,t)||e;!function(e){var t,n,r,i,o,a,s,c=e.attrsList;for(t=0,n=c.length;t<n;t++){if(r=i=c[t].name,o=c[t].value,Eo.test(r))if(e.hasBindings=!0,(a=Ho(r))&&(r=r.replace(Io,"")),No.test(r))r=r.replace(No,""),o=vr(o),s=!1,a&&(a.prop&&(s=!0,"innerHtml"===(r=C(r))&&(r="innerHTML")),a.camel&&(r=C(r)),a.sync&&Cr(e,"update:"+C(r),Sr(o,"$event"))),s||!e.component&&So(e.tag,e.attrsMap.type,r)?_r(e,r,o):br(e,r,o);else if(To.test(r))r=r.replace(To,""),Cr(e,r,o,a,!1);else{var u=(r=r.replace(Eo,"")).match(Po),l=u&&u[1];l&&(r=r.slice(0,-(l.length+1))),xr(e,r,i,o,l,a)}else br(e,r,JSON.stringify(o)),!e.component&&"muted"===r&&So(e.tag,e.attrsMap.type,r)&&_r(e,r,"true")}}(e)}function Vo(e){var t;if(t=kr(e,"v-for")){var n=function(e){var t=e.match(Lo);if(!t)return;var n={};n.for=t[2].trim();var r=t[1].trim().replace(jo,""),i=r.match(Mo);i?(n.alias=r.replace(Mo,""),n.iterator1=i[1].trim(),i[2]&&(n.iterator2=i[2].trim())):n.alias=r;return n}(t);n&&T(e,n)}}function Bo(e,t){e.ifConditions||(e.ifConditions=[]),e.ifConditions.push(t)}function Ho(e){var t=e.match(Io);if(t){var n={};return t.forEach(function(e){n[e.slice(1)]=!0}),n}}var Wo=/^xmlns:NS\d+/,zo=/^NS\d+:/;function Ko(e){return Uo(e.tag,e.attrsList.slice(),e.parent)}var Go=[qi,Zi,{preTransformNode:function(e,t){if("input"===e.tag){var n,r=e.attrsMap;if(!r["v-model"])return;if((r[":type"]||r["v-bind:type"])&&(n=Or(e,"type")),r.type||n||!r["v-bind"]||(n="("+r["v-bind"]+").type"),n){var i=kr(e,"v-if",!0),o=i?"&&("+i+")":"",a=null!=kr(e,"v-else",!0),s=kr(e,"v-else-if",!0),c=Ko(e);Vo(c),wr(c,"type","checkbox"),Fo(c,t),c.processed=!0,c.if="("+n+")==='checkbox'"+o,Bo(c,{exp:c.if,block:c});var u=Ko(e);kr(u,"v-for",!0),wr(u,"type","radio"),Fo(u,t),Bo(c,{exp:"("+n+")==='radio'"+o,block:u});var l=Ko(e);return kr(l,"v-for",!0),wr(l,":type",n),Fo(l,t),Bo(c,{exp:i,block:l}),a?c.else=!0:s&&(c.elseif=s),c}}}}];var Jo,qo,Xo={expectHTML:!0,modules:Go,directives:{model:function(e,t,n){n;var r=t.value,i=t.modifiers,o=e.tag,a=e.attrsMap.type;if(e.component)return $r(e,r,i),!1;if("select"===o)!function(e,t,n){var r='var $$selectedVal = Array.prototype.filter.call($event.target.options,function(o){return o.selected}).map(function(o){var val = "_value" in o ? o._value : o.value;return '+(n&&n.number?"_n(val)":"val")+"});";r=r+" "+Sr(t,"$event.target.multiple ? $$selectedVal : $$selectedVal[0]"),Cr(e,"change",r,null,!0)}(e,r,i);else if("input"===o&&"checkbox"===a)!function(e,t,n){var r=n&&n.number,i=Or(e,"value")||"null",o=Or(e,"true-value")||"true",a=Or(e,"false-value")||"false";_r(e,"checked","Array.isArray("+t+")?_i("+t+","+i+")>-1"+("true"===o?":("+t+")":":_q("+t+","+o+")")),Cr(e,"change","var $$a="+t+",$$el=$event.target,$$c=$$el.checked?("+o+"):("+a+");if(Array.isArray($$a)){var $$v="+(r?"_n("+i+")":i)+",$$i=_i($$a,$$v);if($$el.checked){$$i<0&&("+Sr(t,"$$a.concat([$$v])")+")}else{$$i>-1&&("+Sr(t,"$$a.slice(0,$$i).concat($$a.slice($$i+1))")+")}}else{"+Sr(t,"$$c")+"}",null,!0)}(e,r,i);else if("input"===o&&"radio"===a)!function(e,t,n){var r=n&&n.number,i=Or(e,"value")||"null";_r(e,"checked","_q("+t+","+(i=r?"_n("+i+")":i)+")"),Cr(e,"change",Sr(t,i),null,!0)}(e,r,i);else if("input"===o||"textarea"===o)!function(e,t,n){var r=e.attrsMap.type,i=n||{},o=i.lazy,a=i.number,s=i.trim,c=!o&&"range"!==r,u=o?"change":"range"===r?Pr:"input",l="$event.target.value";s&&(l="$event.target.value.trim()"),a&&(l="_n("+l+")");var f=Sr(t,l);c&&(f="if($event.target.composing)return;"+f),_r(e,"value","("+t+")"),Cr(e,u,f,null,!0),(s||a)&&Cr(e,"blur","$forceUpdate()")}(e,r,i);else if(!F.isReservedTag(o))return $r(e,r,i),!1;return!0},text:function(e,t){t.value&&_r(e,"textContent","_s("+t.value+")")},html:function(e,t){t.value&&_r(e,"innerHTML","_s("+t.value+")")}},isPreTag:function(e){return"pre"===e},isUnaryTag:Qi,mustUseProp:Cn,canBeLeftOpenTag:eo,isReservedTag:Dn,getTagNamespace:Un,staticKeys:function(e){return e.reduce(function(e,t){return e.concat(t.staticKeys||[])},[]).join(",")}(Go)},Zo=w(function(e){return v("type,tag,attrsList,attrsMap,plain,parent,children,attrs"+(e?","+e:""))});function Yo(e,t){e&&(Jo=Zo(t.staticKeys||""),qo=t.isReservedTag||M,function e(t){t.static=function(e){if(2===e.type)return!1;if(3===e.type)return!0;return!(!e.pre&&(e.hasBindings||e.if||e.for||m(e.tag)||!qo(e.tag)||function(e){for(;e.parent;){if("template"!==(e=e.parent).tag)return!1;if(e.for)return!0}return!1}(e)||!Object.keys(e).every(Jo)))}(t);if(1===t.type){if(!qo(t.tag)&&"slot"!==t.tag&&null==t.attrsMap["inline-template"])return;for(var n=0,r=t.children.length;n<r;n++){var i=t.children[n];e(i),i.static||(t.static=!1)}if(t.ifConditions)for(var o=1,a=t.ifConditions.length;o<a;o++){var s=t.ifConditions[o].block;e(s),s.static||(t.static=!1)}}}(e),function e(t,n){if(1===t.type){if((t.static||t.once)&&(t.staticInFor=n),t.static&&t.children.length&&(1!==t.children.length||3!==t.children[0].type))return void(t.staticRoot=!0);if(t.staticRoot=!1,t.children)for(var r=0,i=t.children.length;r<i;r++)e(t.children[r],n||!!t.for);if(t.ifConditions)for(var o=1,a=t.ifConditions.length;o<a;o++)e(t.ifConditions[o].block,n)}}(e,!1))}var Qo=/^([\w$_]+|\([^)]*?\))\s*=>|^function\s*\(/,ea=/^[A-Za-z_$][\w$]*(?:\.[A-Za-z_$][\w$]*|\['[^']*?']|\["[^"]*?"]|\[\d+]|\[[A-Za-z_$][\w$]*])*$/,ta={esc:27,tab:9,enter:13,space:32,up:38,left:37,right:39,down:40,delete:[8,46]},na={esc:"Escape",tab:"Tab",enter:"Enter",space:" ",up:["Up","ArrowUp"],left:["Left","ArrowLeft"],right:["Right","ArrowRight"],down:["Down","ArrowDown"],delete:["Backspace","Delete"]},ra=function(e){return"if("+e+")return null;"},ia={stop:"$event.stopPropagation();",prevent:"$event.preventDefault();",self:ra("$event.target !== $event.currentTarget"),ctrl:ra("!$event.ctrlKey"),shift:ra("!$event.shiftKey"),alt:ra("!$event.altKey"),meta:ra("!$event.metaKey"),left:ra("'button' in $event && $event.button !== 0"),middle:ra("'button' in $event && $event.button !== 1"),right:ra("'button' in $event && $event.button !== 2")};function oa(e,t,n){var r=t?"nativeOn:{":"on:{";for(var i in e)r+='"'+i+'":'+aa(i,e[i])+",";return r.slice(0,-1)+"}"}function aa(e,t){if(!t)return"function(){}";if(Array.isArray(t))return"["+t.map(function(t){return aa(e,t)}).join(",")+"]";var n=ea.test(t.value),r=Qo.test(t.value);if(t.modifiers){var i="",o="",a=[];for(var s in t.modifiers)if(ia[s])o+=ia[s],ta[s]&&a.push(s);else if("exact"===s){var c=t.modifiers;o+=ra(["ctrl","shift","alt","meta"].filter(function(e){return!c[e]}).map(function(e){return"$event."+e+"Key"}).join("||"))}else a.push(s);return a.length&&(i+=function(e){return"if(!('button' in $event)&&"+e.map(sa).join("&&")+")return null;"}(a)),o&&(i+=o),"function($event){"+i+(n?"return "+t.value+"($event)":r?"return ("+t.value+")($event)":t.value)+"}"}return n||r?t.value:"function($event){"+t.value+"}"}function sa(e){var t=parseInt(e,10);if(t)return"$event.keyCode!=="+t;var n=ta[e],r=na[e];return"_k($event.keyCode,"+JSON.stringify(e)+","+JSON.stringify(n)+",$event.key,"+JSON.stringify(r)+")"}var ca={on:function(e,t){e.wrapListeners=function(e){return"_g("+e+","+t.value+")"}},bind:function(e,t){e.wrapData=function(n){return"_b("+n+",'"+e.tag+"',"+t.value+","+(t.modifiers&&t.modifiers.prop?"true":"false")+(t.modifiers&&t.modifiers.sync?",true":"")+")"}},cloak:L},ua=function(e){this.options=e,this.warn=e.warn||gr,this.transforms=yr(e.modules,"transformCode"),this.dataGenFns=yr(e.modules,"genData"),this.directives=T(T({},ca),e.directives);var t=e.isReservedTag||M;this.maybeComponent=function(e){return!t(e.tag)},this.onceId=0,this.staticRenderFns=[]};function la(e,t){var n=new ua(t);return{render:"with(this){return "+(e?fa(e,n):'_c("div")')+"}",staticRenderFns:n.staticRenderFns}}function fa(e,t){if(e.staticRoot&&!e.staticProcessed)return pa(e,t);if(e.once&&!e.onceProcessed)return da(e,t);if(e.for&&!e.forProcessed)return function(e,t,n,r){var i=e.for,o=e.alias,a=e.iterator1?","+e.iterator1:"",s=e.iterator2?","+e.iterator2:"";0;return e.forProcessed=!0,(r||"_l")+"(("+i+"),function("+o+a+s+"){return "+(n||fa)(e,t)+"})"}(e,t);if(e.if&&!e.ifProcessed)return ha(e,t);if("template"!==e.tag||e.slotTarget){if("slot"===e.tag)return function(e,t){var n=e.slotName||'"default"',r=ga(e,t),i="_t("+n+(r?","+r:""),o=e.attrs&&"{"+e.attrs.map(function(e){return C(e.name)+":"+e.value}).join(",")+"}",a=e.attrsMap["v-bind"];!o&&!a||r||(i+=",null");o&&(i+=","+o);a&&(i+=(o?"":",null")+","+a);return i+")"}(e,t);var n;if(e.component)n=function(e,t,n){var r=t.inlineTemplate?null:ga(t,n,!0);return"_c("+e+","+va(t,n)+(r?","+r:"")+")"}(e.component,e,t);else{var r=e.plain?void 0:va(e,t),i=e.inlineTemplate?null:ga(e,t,!0);n="_c('"+e.tag+"'"+(r?","+r:"")+(i?","+i:"")+")"}for(var o=0;o<t.transforms.length;o++)n=t.transforms[o](e,n);return n}return ga(e,t)||"void 0"}function pa(e,t){return e.staticProcessed=!0,t.staticRenderFns.push("with(this){return "+fa(e,t)+"}"),"_m("+(t.staticRenderFns.length-1)+(e.staticInFor?",true":"")+")"}function da(e,t){if(e.onceProcessed=!0,e.if&&!e.ifProcessed)return ha(e,t);if(e.staticInFor){for(var n="",r=e.parent;r;){if(r.for){n=r.key;break}r=r.parent}return n?"_o("+fa(e,t)+","+t.onceId+++","+n+")":fa(e,t)}return pa(e,t)}function ha(e,t,n,r){return e.ifProcessed=!0,function e(t,n,r,i){if(!t.length)return i||"_e()";var o=t.shift();return o.exp?"("+o.exp+")?"+a(o.block)+":"+e(t,n,r,i):""+a(o.block);function a(e){return r?r(e,n):e.once?da(e,n):fa(e,n)}}(e.ifConditions.slice(),t,n,r)}function va(e,t){var n="{",r=function(e,t){var n=e.directives;if(!n)return;var r,i,o,a,s="directives:[",c=!1;for(r=0,i=n.length;r<i;r++){o=n[r],a=!0;var u=t.directives[o.name];u&&(a=!!u(e,o,t.warn)),a&&(c=!0,s+='{name:"'+o.name+'",rawName:"'+o.rawName+'"'+(o.value?",value:("+o.value+"),expression:"+JSON.stringify(o.value):"")+(o.arg?',arg:"'+o.arg+'"':"")+(o.modifiers?",modifiers:"+JSON.stringify(o.modifiers):"")+"},")}if(c)return s.slice(0,-1)+"]"}(e,t);r&&(n+=r+","),e.key&&(n+="key:"+e.key+","),e.ref&&(n+="ref:"+e.ref+","),e.refInFor&&(n+="refInFor:true,"),e.pre&&(n+="pre:true,"),e.component&&(n+='tag:"'+e.tag+'",');for(var i=0;i<t.dataGenFns.length;i++)n+=t.dataGenFns[i](e);if(e.attrs&&(n+="attrs:{"+ba(e.attrs)+"},"),e.props&&(n+="domProps:{"+ba(e.props)+"},"),e.events&&(n+=oa(e.events,!1,t.warn)+","),e.nativeEvents&&(n+=oa(e.nativeEvents,!0,t.warn)+","),e.slotTarget&&!e.slotScope&&(n+="slot:"+e.slotTarget+","),e.scopedSlots&&(n+=function(e,t){return"scopedSlots:_u(["+Object.keys(e).map(function(n){return ma(n,e[n],t)}).join(",")+"])"}(e.scopedSlots,t)+","),e.model&&(n+="model:{value:"+e.model.value+",callback:"+e.model.callback+",expression:"+e.model.expression+"},"),e.inlineTemplate){var o=function(e,t){var n=e.children[0];0;if(1===n.type){var r=la(n,t.options);return"inlineTemplate:{render:function(){"+r.render+"},staticRenderFns:["+r.staticRenderFns.map(function(e){return"function(){"+e+"}"}).join(",")+"]}"}}(e,t);o&&(n+=o+",")}return n=n.replace(/,$/,"")+"}",e.wrapData&&(n=e.wrapData(n)),e.wrapListeners&&(n=e.wrapListeners(n)),n}function ma(e,t,n){return t.for&&!t.forProcessed?function(e,t,n){var r=t.for,i=t.alias,o=t.iterator1?","+t.iterator1:"",a=t.iterator2?","+t.iterator2:"";return t.forProcessed=!0,"_l(("+r+"),function("+i+o+a+"){return "+ma(e,t,n)+"})"}(e,t,n):"{key:"+e+",fn:"+("function("+String(t.slotScope)+"){return "+("template"===t.tag?t.if?t.if+"?"+(ga(t,n)||"undefined")+":undefined":ga(t,n)||"undefined":fa(t,n))+"}")+"}"}function ga(e,t,n,r,i){var o=e.children;if(o.length){var a=o[0];if(1===o.length&&a.for&&"template"!==a.tag&&"slot"!==a.tag)return(r||fa)(a,t);var s=n?function(e,t){for(var n=0,r=0;r<e.length;r++){var i=e[r];if(1===i.type){if(ya(i)||i.ifConditions&&i.ifConditions.some(function(e){return ya(e.block)})){n=2;break}(t(i)||i.ifConditions&&i.ifConditions.some(function(e){return t(e.block)}))&&(n=1)}}return n}(o,t.maybeComponent):0,c=i||_a;return"["+o.map(function(e){return c(e,t)}).join(",")+"]"+(s?","+s:"")}}function ya(e){return void 0!==e.for||"template"===e.tag||"slot"===e.tag}function _a(e,t){return 1===e.type?fa(e,t):3===e.type&&e.isComment?function(e){return"_e("+JSON.stringify(e.text)+")"}(e):function(e){return"_v("+(2===e.type?e.expression:wa(JSON.stringify(e.text)))+")"}(e)}function ba(e){for(var t="",n=0;n<e.length;n++){var r=e[n];t+='"'+r.name+'":'+wa(r.value)+","}return t.slice(0,-1)}function wa(e){return e.replace(/\u2028/g,"\\u2028").replace(/\u2029/g,"\\u2029")}new RegExp("\\b"+"do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,super,throw,while,yield,delete,export,import,return,switch,default,extends,finally,continue,debugger,function,arguments".split(",").join("\\b|\\b")+"\\b"),new RegExp("\\b"+"delete,typeof,void".split(",").join("\\s*\\([^\\)]*\\)|\\b")+"\\s*\\([^\\)]*\\)");function xa(e,t){try{return new Function(e)}catch(n){return t.push({err:n,code:e}),L}}var Ca,Oa=function(e){return function(t){function n(n,r){var i=Object.create(t),o=[],a=[];if(i.warn=function(e,t){(t?a:o).push(e)},r)for(var s in r.modules&&(i.modules=(t.modules||[]).concat(r.modules)),r.directives&&(i.directives=T(Object.create(t.directives||null),r.directives)),r)"modules"!==s&&"directives"!==s&&(i[s]=r[s]);var c=e(n,i);return c.errors=o,c.tips=a,c}return{compile:n,compileToFunctions:function(e){var t=Object.create(null);return function(n,r,i){(r=T({},r)).warn,delete r.warn;var o=r.delimiters?String(r.delimiters)+n:n;if(t[o])return t[o];var a=e(n,r),s={},c=[];return s.render=xa(a.render,c),s.staticRenderFns=a.staticRenderFns.map(function(e){return xa(e,c)}),t[o]=s}}(n)}}}(function(e,t){var n=Ro(e.trim(),t);!1!==t.optimize&&Yo(n,t);var r=la(n,t);return{ast:n,render:r.render,staticRenderFns:r.staticRenderFns}})(Xo).compileToFunctions;function ka(e){return(Ca=Ca||document.createElement("div")).innerHTML=e?'<a href="\n"/>':'<div a="\n"/>',Ca.innerHTML.indexOf(" ")>0}var $a=!!K&&ka(!1),Sa=!!K&&ka(!0),Aa=w(function(e){var t=Vn(e);return t&&t.innerHTML}),Ta=dn.prototype.$mount;dn.prototype.$mount=function(e,t){if((e=e&&Vn(e))===document.body||e===document.documentElement)return this;var n=this.$options;if(!n.render){var r=n.template;if(r)if("string"==typeof r)"#"===r.charAt(0)&&(r=Aa(r));else{if(!r.nodeType)return this;r=r.innerHTML}else e&&(r=function(e){if(e.outerHTML)return e.outerHTML;var t=document.createElement("div");return t.appendChild(e.cloneNode(!0)),t.innerHTML}(e));if(r){0;var i=Oa(r,{shouldDecodeNewlines:$a,shouldDecodeNewlinesForHref:Sa,delimiters:n.delimiters,comments:n.comments},this),o=i.render,a=i.staticRenderFns;n.render=o,n.staticRenderFns=a}}return Ta.call(this,e,t)},dn.compile=Oa,t.a=dn}).call(this,n(2),n(7).setImmediate)},function(e,t,n){e.exports=function(e){function t(r){if(n[r])return n[r].exports;var i=n[r]={exports:{},id:r,loaded:!1};return e[r].call(i.exports,i,i.exports,t),i.loaded=!0,i.exports}var n={};return t.m=e,t.c=n,t.p="/",t(0)}([function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0}),t.mixins=t.VueSelect=void 0;var i=n(85),o=r(i),a=n(42),s=r(a);t.default=o.default,t.VueSelect=o.default,t.mixins=s.default},function(e,t){var n=e.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(e,t){var n=e.exports={version:"2.5.3"};"number"==typeof __e&&(__e=n)},function(e,t,n){e.exports=!n(9)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(e,t){var n={}.hasOwnProperty;e.exports=function(e,t){return n.call(e,t)}},function(e,t,n){var r=n(11),i=n(33),o=n(25),a=Object.defineProperty;t.f=n(3)?Object.defineProperty:function(e,t,n){if(r(e),t=o(t,!0),r(n),i)try{return a(e,t,n)}catch(e){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e}},function(e,t,n){var r=n(5),i=n(14);e.exports=n(3)?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}},function(e,t,n){var r=n(61),i=n(16);e.exports=function(e){return r(i(e))}},function(e,t,n){var r=n(23)("wks"),i=n(15),o=n(1).Symbol,a="function"==typeof o,s=e.exports=function(e){return r[e]||(r[e]=a&&o[e]||(a?o:i)("Symbol."+e))};s.store=r},function(e,t){e.exports=function(e){try{return!!e()}catch(e){return!0}}},function(e,t){e.exports=function(e){return"object"==typeof e?null!==e:"function"==typeof e}},function(e,t,n){var r=n(10);e.exports=function(e){if(!r(e))throw TypeError(e+" is not an object!");return e}},function(e,t,n){var r=n(1),i=n(2),o=n(58),a=n(6),s="prototype",c=function(e,t,n){var u,l,f,p=e&c.F,d=e&c.G,h=e&c.S,v=e&c.P,m=e&c.B,g=e&c.W,y=d?i:i[t]||(i[t]={}),_=y[s],b=d?r:h?r[t]:(r[t]||{})[s];for(u in d&&(n=t),n)(l=!p&&b&&void 0!==b[u])&&u in y||(f=l?b[u]:n[u],y[u]=d&&"function"!=typeof b[u]?n[u]:m&&l?o(f,r):g&&b[u]==f?function(e){var t=function(t,n,r){if(this instanceof e){switch(arguments.length){case 0:return new e;case 1:return new e(t);case 2:return new e(t,n)}return new e(t,n,r)}return e.apply(this,arguments)};return t[s]=e[s],t}(f):v&&"function"==typeof f?o(Function.call,f):f,v&&((y.virtual||(y.virtual={}))[u]=f,e&c.R&&_&&!_[u]&&a(_,u,f)))};c.F=1,c.G=2,c.S=4,c.P=8,c.B=16,c.W=32,c.U=64,c.R=128,e.exports=c},function(e,t,n){var r=n(38),i=n(17);e.exports=Object.keys||function(e){return r(e,i)}},function(e,t){e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},function(e,t){var n=0,r=Math.random();e.exports=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++n+r).toString(36))}},function(e,t){e.exports=function(e){if(void 0==e)throw TypeError("Can't call method on "+e);return e}},function(e,t){e.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(e,t){e.exports={}},function(e,t){e.exports=!0},function(e,t){t.f={}.propertyIsEnumerable},function(e,t,n){var r=n(5).f,i=n(4),o=n(8)("toStringTag");e.exports=function(e,t,n){e&&!i(e=n?e:e.prototype,o)&&r(e,o,{configurable:!0,value:t})}},function(e,t,n){var r=n(23)("keys"),i=n(15);e.exports=function(e){return r[e]||(r[e]=i(e))}},function(e,t,n){var r=n(1),i="__core-js_shared__",o=r[i]||(r[i]={});e.exports=function(e){return o[e]||(o[e]={})}},function(e,t){var n=Math.ceil,r=Math.floor;e.exports=function(e){return isNaN(e=+e)?0:(e>0?r:n)(e)}},function(e,t,n){var r=n(10);e.exports=function(e,t){if(!r(e))return e;var n,i;if(t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;if("function"==typeof(n=e.valueOf)&&!r(i=n.call(e)))return i;if(!t&&"function"==typeof(n=e.toString)&&!r(i=n.call(e)))return i;throw TypeError("Can't convert object to primitive value")}},function(e,t,n){var r=n(1),i=n(2),o=n(19),a=n(27),s=n(5).f;e.exports=function(e){var t=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==e.charAt(0)||e in t||s(t,e,{value:a.f(e)})}},function(e,t,n){t.f=n(8)},function(e,t){"use strict";e.exports={props:{loading:{type:Boolean,default:!1},onSearch:{type:Function,default:function(e,t){}}},data:function(){return{mutableLoading:!1}},watch:{search:function(){this.search.length>0&&(this.onSearch(this.search,this.toggleLoading),this.$emit("search",this.search,this.toggleLoading))},loading:function(e){this.mutableLoading=e}},methods:{toggleLoading:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return this.mutableLoading=null==e?!this.mutableLoading:e}}}},function(e,t){"use strict";e.exports={watch:{typeAheadPointer:function(){this.maybeAdjustScroll()}},methods:{maybeAdjustScroll:function(){var e=this.pixelsToPointerTop(),t=this.pixelsToPointerBottom();return e<=this.viewport().top?this.scrollTo(e):t>=this.viewport().bottom?this.scrollTo(this.viewport().top+this.pointerHeight()):void 0},pixelsToPointerTop:function(){var e=0;if(this.$refs.dropdownMenu)for(var t=0;t<this.typeAheadPointer;t++)e+=this.$refs.dropdownMenu.children[t].offsetHeight;return e},pixelsToPointerBottom:function(){return this.pixelsToPointerTop()+this.pointerHeight()},pointerHeight:function(){var e=!!this.$refs.dropdownMenu&&this.$refs.dropdownMenu.children[this.typeAheadPointer];return e?e.offsetHeight:0},viewport:function(){return{top:this.$refs.dropdownMenu?this.$refs.dropdownMenu.scrollTop:0,bottom:this.$refs.dropdownMenu?this.$refs.dropdownMenu.offsetHeight+this.$refs.dropdownMenu.scrollTop:0}},scrollTo:function(e){return this.$refs.dropdownMenu?this.$refs.dropdownMenu.scrollTop=e:null}}}},function(e,t){"use strict";e.exports={data:function(){return{typeAheadPointer:-1}},watch:{filteredOptions:function(){this.typeAheadPointer=0}},methods:{typeAheadUp:function(){this.typeAheadPointer>0&&(this.typeAheadPointer--,this.maybeAdjustScroll&&this.maybeAdjustScroll())},typeAheadDown:function(){this.typeAheadPointer<this.filteredOptions.length-1&&(this.typeAheadPointer++,this.maybeAdjustScroll&&this.maybeAdjustScroll())},typeAheadSelect:function(){this.filteredOptions[this.typeAheadPointer]?this.select(this.filteredOptions[this.typeAheadPointer]):this.taggable&&this.search.length&&this.select(this.search),this.clearSearchOnSelect&&(this.search="")}}}},function(e,t){var n={}.toString;e.exports=function(e){return n.call(e).slice(8,-1)}},function(e,t,n){var r=n(10),i=n(1).document,o=r(i)&&r(i.createElement);e.exports=function(e){return o?i.createElement(e):{}}},function(e,t,n){e.exports=!n(3)&&!n(9)(function(){return 7!=Object.defineProperty(n(32)("div"),"a",{get:function(){return 7}}).a})},function(e,t,n){"use strict";var r=n(19),i=n(12),o=n(39),a=n(6),s=n(4),c=n(18),u=n(63),l=n(21),f=n(69),p=n(8)("iterator"),d=!([].keys&&"next"in[].keys()),h="keys",v="values",m=function(){return this};e.exports=function(e,t,n,g,y,_,b){u(n,t,g);var w,x,C,O=function(e){if(!d&&e in A)return A[e];switch(e){case h:case v:return function(){return new n(this,e)}}return function(){return new n(this,e)}},k=t+" Iterator",$=y==v,S=!1,A=e.prototype,T=A[p]||A["@@iterator"]||y&&A[y],E=!d&&T||O(y),L=y?$?O("entries"):E:void 0,M="Array"==t&&A.entries||T;if(M&&(C=f(M.call(new e)))!==Object.prototype&&C.next&&(l(C,k,!0),r||s(C,p)||a(C,p,m)),$&&T&&T.name!==v&&(S=!0,E=function(){return T.call(this)}),r&&!b||!d&&!S&&A[p]||a(A,p,E),c[t]=E,c[k]=m,y)if(w={values:$?E:O(v),keys:_?E:O(h),entries:L},b)for(x in w)x in A||o(A,x,w[x]);else i(i.P+i.F*(d||S),t,w);return w}},function(e,t,n){var r=n(11),i=n(66),o=n(17),a=n(22)("IE_PROTO"),s=function(){},c="prototype",u=function(){var e,t=n(32)("iframe"),r=o.length;for(t.style.display="none",n(60).appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write("<script>document.F=Object<\/script>"),e.close(),u=e.F;r--;)delete u[c][o[r]];return u()};e.exports=Object.create||function(e,t){var n;return null!==e?(s[c]=r(e),n=new s,s[c]=null,n[a]=e):n=u(),void 0===t?n:i(n,t)}},function(e,t,n){var r=n(38),i=n(17).concat("length","prototype");t.f=Object.getOwnPropertyNames||function(e){return r(e,i)}},function(e,t){t.f=Object.getOwnPropertySymbols},function(e,t,n){var r=n(4),i=n(7),o=n(57)(!1),a=n(22)("IE_PROTO");e.exports=function(e,t){var n,s=i(e),c=0,u=[];for(n in s)n!=a&&r(s,n)&&u.push(n);for(;t.length>c;)r(s,n=t[c++])&&(~o(u,n)||u.push(n));return u}},function(e,t,n){e.exports=n(6)},function(e,t,n){var r=n(16);e.exports=function(e){return Object(r(e))}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(45),o=r(i),a=n(48),s=r(a),c=n(43),u=r(c),l=n(49),f=r(l),p=n(29),d=r(p),h=n(30),v=r(h),m=n(28),g=r(m);t.default={mixins:[d.default,v.default,g.default],props:{value:{default:null},options:{type:Array,default:function(){return[]}},disabled:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},maxHeight:{type:String,default:"400px"},searchable:{type:Boolean,default:!0},multiple:{type:Boolean,default:!1},placeholder:{type:String,default:""},transition:{type:String,default:"fade"},clearSearchOnSelect:{type:Boolean,default:!0},closeOnSelect:{type:Boolean,default:!0},label:{type:String,default:"label"},index:{type:String,default:null},getOptionLabel:{type:Function,default:function(e){return this.index&&(e=this.findOptionByIndexValue(e)),"object"===(void 0===e?"undefined":(0,f.default)(e))?e.hasOwnProperty(this.label)?e[this.label]:console.warn('[vue-select warn]: Label key "option.'+this.label+'" does not exist in options object '+(0,u.default)(e)+".\nhttp://sagalbot.github.io/vue-select/#ex-labels"):e}},onChange:{type:Function,default:function(e){this.$emit("input",e)}},onTab:{type:Function,default:function(){this.selectOnTab&&this.typeAheadSelect()}},taggable:{type:Boolean,default:!1},tabindex:{type:Number,default:null},pushTags:{type:Boolean,default:!1},filterable:{type:Boolean,default:!0},filterBy:{type:Function,default:function(e,t,n){return(t||"").toLowerCase().indexOf(n.toLowerCase())>-1}},filter:{type:Function,default:function(e,t){var n=this;return e.filter(function(e){var r=n.getOptionLabel(e);return"number"==typeof r&&(r=r.toString()),n.filterBy(e,r,t)})}},createOption:{type:Function,default:function(e){return"object"===(0,f.default)(this.mutableOptions[0])&&(e=(0,s.default)({},this.label,e)),this.$emit("option:created",e),e}},resetOnOptionsChange:{type:Boolean,default:!1},noDrop:{type:Boolean,default:!1},inputId:{type:String},dir:{type:String,default:"auto"},selectOnTab:{type:Boolean,default:!1}},data:function(){return{search:"",open:!1,mutableValue:null,mutableOptions:[]}},watch:{value:function(e){this.mutableValue=e},mutableValue:function(e,t){this.multiple?this.onChange&&this.onChange(e):this.onChange&&e!==t&&this.onChange(e)},options:function(e){this.mutableOptions=e},mutableOptions:function(){!this.taggable&&this.resetOnOptionsChange&&(this.mutableValue=this.multiple?[]:null)},multiple:function(e){this.mutableValue=e?[]:null}},created:function(){this.mutableValue=this.value,this.mutableOptions=this.options.slice(0),this.mutableLoading=this.loading,this.$on("option:created",this.maybePushTag)},methods:{select:function(e){if(!this.isOptionSelected(e)){if(this.taggable&&!this.optionExists(e)&&(e=this.createOption(e)),this.index){if(!e.hasOwnProperty(this.index))return console.warn('[vue-select warn]: Index key "option.'+this.index+'" does not exist in options object '+(0,u.default)(e)+".");e=e[this.index]}this.multiple&&!this.mutableValue?this.mutableValue=[e]:this.multiple?this.mutableValue.push(e):this.mutableValue=e}this.onAfterSelect(e)},deselect:function(e){var t=this;if(this.multiple){var n=-1;this.mutableValue.forEach(function(r){(r===e||t.index&&r===e[t.index]||"object"===(void 0===r?"undefined":(0,f.default)(r))&&r[t.label]===e[t.label])&&(n=r)});var r=this.mutableValue.indexOf(n);this.mutableValue.splice(r,1)}else this.mutableValue=null},clearSelection:function(){this.mutableValue=this.multiple?[]:null},onAfterSelect:function(e){this.closeOnSelect&&(this.open=!this.open,this.$refs.search.blur()),this.clearSearchOnSelect&&(this.search="")},toggleDropdown:function(e){(e.target===this.$refs.openIndicator||e.target===this.$refs.search||e.target===this.$refs.toggle||e.target.classList.contains("selected-tag")||e.target===this.$el)&&(this.open?this.$refs.search.blur():this.disabled||(this.open=!0,this.$refs.search.focus()))},isOptionSelected:function(e){var t=this,n=!1;return this.valueAsArray.forEach(function(r){"object"===(void 0===r?"undefined":(0,f.default)(r))?n=t.optionObjectComparator(r,e):r!==e&&r!==e[t.index]||(n=!0)}),n},optionObjectComparator:function(e,t){return!(!this.index||e!==t[this.index])||e[this.label]===t[this.label]||e[this.label]===t||!(!this.index||e[this.index]!==t[this.index])},findOptionByIndexValue:function(e){var t=this;return this.options.forEach(function(n){(0,u.default)(n[t.index])===(0,u.default)(e)&&(e=n)}),e},onEscape:function(){this.search.length?this.search="":this.$refs.search.blur()},onSearchBlur:function(){this.mousedown&&!this.searching?this.mousedown=!1:(this.clearSearchOnBlur&&(this.search=""),this.open=!1,this.$emit("search:blur"))},onSearchFocus:function(){this.open=!0,this.$emit("search:focus")},maybeDeleteValue:function(){if(!this.$refs.search.value.length&&this.mutableValue)return this.multiple?this.mutableValue.pop():this.mutableValue=null},optionExists:function(e){var t=this,n=!1;return this.mutableOptions.forEach(function(r){"object"===(void 0===r?"undefined":(0,f.default)(r))&&r[t.label]===e?n=!0:r===e&&(n=!0)}),n},maybePushTag:function(e){this.pushTags&&this.mutableOptions.push(e)},onMousedown:function(){this.mousedown=!0}},computed:{dropdownClasses:function(){return{open:this.dropdownOpen,single:!this.multiple,searching:this.searching,searchable:this.searchable,unsearchable:!this.searchable,loading:this.mutableLoading,rtl:"rtl"===this.dir,disabled:this.disabled}},clearSearchOnBlur:function(){return this.clearSearchOnSelect&&!this.multiple},searching:function(){return!!this.search},dropdownOpen:function(){return!this.noDrop&&this.open&&!this.mutableLoading},searchPlaceholder:function(){if(this.isValueEmpty&&this.placeholder)return this.placeholder},filteredOptions:function(){if(!this.filterable&&!this.taggable)return this.mutableOptions.slice();var e=this.search.length?this.filter(this.mutableOptions,this.search,this):this.mutableOptions;return this.taggable&&this.search.length&&!this.optionExists(this.search)&&e.unshift(this.search),e},isValueEmpty:function(){return!this.mutableValue||("object"===(0,f.default)(this.mutableValue)?!(0,o.default)(this.mutableValue).length:!this.valueAsArray.length)},valueAsArray:function(){return this.multiple&&this.mutableValue?this.mutableValue:this.mutableValue?[].concat(this.mutableValue):[]},showClearButton:function(){return!this.multiple&&this.clearable&&!this.open&&null!=this.mutableValue}}}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=n(28),o=r(i),a=n(30),s=r(a),c=n(29),u=r(c);t.default={ajax:o.default,pointer:s.default,pointerScroll:u.default}},function(e,t,n){e.exports={default:n(50),__esModule:!0}},function(e,t,n){e.exports={default:n(51),__esModule:!0}},function(e,t,n){e.exports={default:n(52),__esModule:!0}},function(e,t,n){e.exports={default:n(53),__esModule:!0}},function(e,t,n){e.exports={default:n(54),__esModule:!0}},function(e,t,n){"use strict";t.__esModule=!0;var r=n(44),i=function(e){return e&&e.__esModule?e:{default:e}}(r);t.default=function(e,t,n){return t in e?(0,i.default)(e,t,{value:n,enumerable:!0,configurable:!0,writable:!0}):e[t]=n,e}},function(e,t,n){"use strict";function r(e){return e&&e.__esModule?e:{default:e}}t.__esModule=!0;var i=n(47),o=r(i),a=n(46),s=r(a),c="function"==typeof s.default&&"symbol"==typeof o.default?function(e){return typeof e}:function(e){return e&&"function"==typeof s.default&&e.constructor===s.default&&e!==s.default.prototype?"symbol":typeof e};t.default="function"==typeof s.default&&"symbol"===c(o.default)?function(e){return void 0===e?"undefined":c(e)}:function(e){return e&&"function"==typeof s.default&&e.constructor===s.default&&e!==s.default.prototype?"symbol":void 0===e?"undefined":c(e)}},function(e,t,n){var r=n(2),i=r.JSON||(r.JSON={stringify:JSON.stringify});e.exports=function(e){return i.stringify.apply(i,arguments)}},function(e,t,n){n(75);var r=n(2).Object;e.exports=function(e,t,n){return r.defineProperty(e,t,n)}},function(e,t,n){n(76),e.exports=n(2).Object.keys},function(e,t,n){n(79),n(77),n(80),n(81),e.exports=n(2).Symbol},function(e,t,n){n(78),n(82),e.exports=n(27).f("iterator")},function(e,t){e.exports=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e}},function(e,t){e.exports=function(){}},function(e,t,n){var r=n(7),i=n(73),o=n(72);e.exports=function(e){return function(t,n,a){var s,c=r(t),u=i(c.length),l=o(a,u);if(e&&n!=n){for(;u>l;)if((s=c[l++])!=s)return!0}else for(;u>l;l++)if((e||l in c)&&c[l]===n)return e||l||0;return!e&&-1}}},function(e,t,n){var r=n(55);e.exports=function(e,t,n){if(r(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,i){return e.call(t,n,r,i)}}return function(){return e.apply(t,arguments)}}},function(e,t,n){var r=n(13),i=n(37),o=n(20);e.exports=function(e){var t=r(e),n=i.f;if(n)for(var a,s=n(e),c=o.f,u=0;s.length>u;)c.call(e,a=s[u++])&&t.push(a);return t}},function(e,t,n){var r=n(1).document;e.exports=r&&r.documentElement},function(e,t,n){var r=n(31);e.exports=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==r(e)?e.split(""):Object(e)}},function(e,t,n){var r=n(31);e.exports=Array.isArray||function(e){return"Array"==r(e)}},function(e,t,n){"use strict";var r=n(35),i=n(14),o=n(21),a={};n(6)(a,n(8)("iterator"),function(){return this}),e.exports=function(e,t,n){e.prototype=r(a,{next:i(1,n)}),o(e,t+" Iterator")}},function(e,t){e.exports=function(e,t){return{value:t,done:!!e}}},function(e,t,n){var r=n(15)("meta"),i=n(10),o=n(4),a=n(5).f,s=0,c=Object.isExtensible||function(){return!0},u=!n(9)(function(){return c(Object.preventExtensions({}))}),l=function(e){a(e,r,{value:{i:"O"+ ++s,w:{}}})},f=e.exports={KEY:r,NEED:!1,fastKey:function(e,t){if(!i(e))return"symbol"==typeof e?e:("string"==typeof e?"S":"P")+e;if(!o(e,r)){if(!c(e))return"F";if(!t)return"E";l(e)}return e[r].i},getWeak:function(e,t){if(!o(e,r)){if(!c(e))return!0;if(!t)return!1;l(e)}return e[r].w},onFreeze:function(e){return u&&f.NEED&&c(e)&&!o(e,r)&&l(e),e}}},function(e,t,n){var r=n(5),i=n(11),o=n(13);e.exports=n(3)?Object.defineProperties:function(e,t){i(e);for(var n,a=o(t),s=a.length,c=0;s>c;)r.f(e,n=a[c++],t[n]);return e}},function(e,t,n){var r=n(20),i=n(14),o=n(7),a=n(25),s=n(4),c=n(33),u=Object.getOwnPropertyDescriptor;t.f=n(3)?u:function(e,t){if(e=o(e),t=a(t,!0),c)try{return u(e,t)}catch(e){}if(s(e,t))return i(!r.f.call(e,t),e[t])}},function(e,t,n){var r=n(7),i=n(36).f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];e.exports.f=function(e){return a&&"[object Window]"==o.call(e)?function(e){try{return i(e)}catch(e){return a.slice()}}(e):i(r(e))}},function(e,t,n){var r=n(4),i=n(40),o=n(22)("IE_PROTO"),a=Object.prototype;e.exports=Object.getPrototypeOf||function(e){return e=i(e),r(e,o)?e[o]:"function"==typeof e.constructor&&e instanceof e.constructor?e.constructor.prototype:e instanceof Object?a:null}},function(e,t,n){var r=n(12),i=n(2),o=n(9);e.exports=function(e,t){var n=(i.Object||{})[e]||Object[e],a={};a[e]=t(n),r(r.S+r.F*o(function(){n(1)}),"Object",a)}},function(e,t,n){var r=n(24),i=n(16);e.exports=function(e){return function(t,n){var o,a,s=String(i(t)),c=r(n),u=s.length;return c<0||c>=u?e?"":void 0:(o=s.charCodeAt(c))<55296||o>56319||c+1===u||(a=s.charCodeAt(c+1))<56320||a>57343?e?s.charAt(c):o:e?s.slice(c,c+2):a-56320+(o-55296<<10)+65536}}},function(e,t,n){var r=n(24),i=Math.max,o=Math.min;e.exports=function(e,t){return(e=r(e))<0?i(e+t,0):o(e,t)}},function(e,t,n){var r=n(24),i=Math.min;e.exports=function(e){return e>0?i(r(e),9007199254740991):0}},function(e,t,n){"use strict";var r=n(56),i=n(64),o=n(18),a=n(7);e.exports=n(34)(Array,"Array",function(e,t){this._t=a(e),this._i=0,this._k=t},function(){var e=this._t,t=this._k,n=this._i++;return!e||n>=e.length?(this._t=void 0,i(1)):i(0,"keys"==t?n:"values"==t?e[n]:[n,e[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},function(e,t,n){var r=n(12);r(r.S+r.F*!n(3),"Object",{defineProperty:n(5).f})},function(e,t,n){var r=n(40),i=n(13);n(70)("keys",function(){return function(e){return i(r(e))}})},function(e,t){},function(e,t,n){"use strict";var r=n(71)(!0);n(34)(String,"String",function(e){this._t=String(e),this._i=0},function(){var e,t=this._t,n=this._i;return n>=t.length?{value:void 0,done:!0}:(e=r(t,n),this._i+=e.length,{value:e,done:!1})})},function(e,t,n){"use strict";var r=n(1),i=n(4),o=n(3),a=n(12),s=n(39),c=n(65).KEY,u=n(9),l=n(23),f=n(21),p=n(15),d=n(8),h=n(27),v=n(26),m=n(59),g=n(62),y=n(11),_=n(10),b=n(7),w=n(25),x=n(14),C=n(35),O=n(68),k=n(67),$=n(5),S=n(13),A=k.f,T=$.f,E=O.f,L=r.Symbol,M=r.JSON,j=M&&M.stringify,P="prototype",N=d("_hidden"),I=d("toPrimitive"),D={}.propertyIsEnumerable,U=l("symbol-registry"),R=l("symbols"),F=l("op-symbols"),V=Object[P],B="function"==typeof L,H=r.QObject,W=!H||!H[P]||!H[P].findChild,z=o&&u(function(){return 7!=C(T({},"a",{get:function(){return T(this,"a",{value:7}).a}})).a})?function(e,t,n){var r=A(V,t);r&&delete V[t],T(e,t,n),r&&e!==V&&T(V,t,r)}:T,K=function(e){var t=R[e]=C(L[P]);return t._k=e,t},G=B&&"symbol"==typeof L.iterator?function(e){return"symbol"==typeof e}:function(e){return e instanceof L},J=function(e,t,n){return e===V&&J(F,t,n),y(e),t=w(t,!0),y(n),i(R,t)?(n.enumerable?(i(e,N)&&e[N][t]&&(e[N][t]=!1),n=C(n,{enumerable:x(0,!1)})):(i(e,N)||T(e,N,x(1,{})),e[N][t]=!0),z(e,t,n)):T(e,t,n)},q=function(e,t){y(e);for(var n,r=m(t=b(t)),i=0,o=r.length;o>i;)J(e,n=r[i++],t[n]);return e},X=function(e){var t=D.call(this,e=w(e,!0));return!(this===V&&i(R,e)&&!i(F,e))&&(!(t||!i(this,e)||!i(R,e)||i(this,N)&&this[N][e])||t)},Z=function(e,t){if(e=b(e),t=w(t,!0),e!==V||!i(R,t)||i(F,t)){var n=A(e,t);return!n||!i(R,t)||i(e,N)&&e[N][t]||(n.enumerable=!0),n}},Y=function(e){for(var t,n=E(b(e)),r=[],o=0;n.length>o;)i(R,t=n[o++])||t==N||t==c||r.push(t);return r},Q=function(e){for(var t,n=e===V,r=E(n?F:b(e)),o=[],a=0;r.length>a;)!i(R,t=r[a++])||n&&!i(V,t)||o.push(R[t]);return o};B||(s((L=function(){if(this instanceof L)throw TypeError("Symbol is not a constructor!");var e=p(arguments.length>0?arguments[0]:void 0),t=function(n){this===V&&t.call(F,n),i(this,N)&&i(this[N],e)&&(this[N][e]=!1),z(this,e,x(1,n))};return o&&W&&z(V,e,{configurable:!0,set:t}),K(e)})[P],"toString",function(){return this._k}),k.f=Z,$.f=J,n(36).f=O.f=Y,n(20).f=X,n(37).f=Q,o&&!n(19)&&s(V,"propertyIsEnumerable",X,!0),h.f=function(e){return K(d(e))}),a(a.G+a.W+a.F*!B,{Symbol:L});for(var ee="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),te=0;ee.length>te;)d(ee[te++]);for(var ne=S(d.store),re=0;ne.length>re;)v(ne[re++]);a(a.S+a.F*!B,"Symbol",{for:function(e){return i(U,e+="")?U[e]:U[e]=L(e)},keyFor:function(e){if(!G(e))throw TypeError(e+" is not a symbol!");for(var t in U)if(U[t]===e)return t},useSetter:function(){W=!0},useSimple:function(){W=!1}}),a(a.S+a.F*!B,"Object",{create:function(e,t){return void 0===t?C(e):q(C(e),t)},defineProperty:J,defineProperties:q,getOwnPropertyDescriptor:Z,getOwnPropertyNames:Y,getOwnPropertySymbols:Q}),M&&a(a.S+a.F*(!B||u(function(){var e=L();return"[null]"!=j([e])||"{}"!=j({a:e})||"{}"!=j(Object(e))})),"JSON",{stringify:function(e){for(var t,n,r=[e],i=1;arguments.length>i;)r.push(arguments[i++]);if(n=t=r[1],(_(t)||void 0!==e)&&!G(e))return g(t)||(t=function(e,t){if("function"==typeof n&&(t=n.call(this,e,t)),!G(t))return t}),r[1]=t,j.apply(M,r)}}),L[P][I]||n(6)(L[P],I,L[P].valueOf),f(L,"Symbol"),f(Math,"Math",!0),f(r.JSON,"JSON",!0)},function(e,t,n){n(26)("asyncIterator")},function(e,t,n){n(26)("observable")},function(e,t,n){n(74);for(var r=n(1),i=n(6),o=n(18),a=n(8)("toStringTag"),s="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),c=0;c<s.length;c++){var u=s[c],l=r[u],f=l&&l.prototype;f&&!f[a]&&i(f,a,u),o[u]=o.Array}},function(e,t,n){(e.exports=n(84)()).push([e.id,'.v-select{position:relative;font-family:inherit}.v-select,.v-select *{box-sizing:border-box}.v-select[dir=rtl] .vs__actions{padding:0 3px 0 6px}.v-select[dir=rtl] .dropdown-toggle .clear{margin-left:6px;margin-right:0}.v-select[dir=rtl] .selected-tag .close{margin-left:0;margin-right:2px}.v-select[dir=rtl] .dropdown-menu{text-align:right}.v-select .open-indicator{display:flex;align-items:center;cursor:pointer;pointer-events:all;opacity:1;width:12px}.v-select .open-indicator,.v-select .open-indicator:before{transition:all .15s cubic-bezier(1,-.115,.975,.855);transition-timing-function:cubic-bezier(1,-.115,.975,.855)}.v-select .open-indicator:before{border-color:rgba(60,60,60,.5);border-style:solid;border-width:3px 3px 0 0;content:"";display:inline-block;height:10px;width:10px;vertical-align:text-top;transform:rotate(133deg);box-sizing:inherit}.v-select.open .open-indicator:before{transform:rotate(315deg)}.v-select.loading .open-indicator{opacity:0}.v-select .dropdown-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:flex;padding:0 0 4px;background:none;border:1px solid rgba(60,60,60,.26);border-radius:4px;white-space:normal}.v-select .vs__selected-options{display:flex;flex-basis:100%;flex-grow:1;flex-wrap:wrap;padding:0 2px;position:relative}.v-select .vs__actions{display:flex;align-items:stretch;padding:0 6px 0 3px}.v-select .dropdown-toggle .clear{font-size:23px;font-weight:700;line-height:1;color:rgba(60,60,60,.5);padding:0;border:0;background-color:transparent;cursor:pointer;margin-right:6px}.v-select.searchable .dropdown-toggle{cursor:text}.v-select.unsearchable .dropdown-toggle{cursor:pointer}.v-select.open .dropdown-toggle{border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.v-select .dropdown-menu{display:block;position:absolute;top:100%;left:0;z-index:1000;min-width:160px;padding:5px 0;margin:0;width:100%;overflow-y:scroll;border:1px solid rgba(0,0,0,.26);box-shadow:0 3px 6px 0 rgba(0,0,0,.15);border-top:none;border-radius:0 0 4px 4px;text-align:left;list-style:none;background:#fff}.v-select .no-options{text-align:center}.v-select .selected-tag{display:flex;align-items:center;background-color:#f0f0f0;border:1px solid #ccc;border-radius:4px;color:#333;line-height:1.42857143;margin:4px 2px 0;padding:0 .25em;transition:opacity .25s}.v-select.single .selected-tag{background-color:transparent;border-color:transparent}.v-select.single.open .selected-tag{position:absolute;opacity:.4}.v-select.single.searching .selected-tag{display:none}.v-select .selected-tag .close{margin-left:2px;font-size:1.25em;appearance:none;padding:0;cursor:pointer;background:0 0;border:0;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.v-select.single.searching:not(.open):not(.loading) input[type=search]{opacity:.2}.v-select input[type=search]::-webkit-search-cancel-button,.v-select input[type=search]::-webkit-search-decoration,.v-select input[type=search]::-webkit-search-results-button,.v-select input[type=search]::-webkit-search-results-decoration{display:none}.v-select input[type=search]::-ms-clear{display:none}.v-select input[type=search],.v-select input[type=search]:focus{appearance:none;-webkit-appearance:none;-moz-appearance:none;line-height:1.42857143;font-size:1em;display:inline-block;border:1px solid transparent;border-left:none;outline:none;margin:4px 0 0;padding:0 7px;max-width:100%;background:none;box-shadow:none;flex-grow:1;width:0}.v-select.unsearchable input[type=search]{opacity:0}.v-select.unsearchable input[type=search]:hover{cursor:pointer}.v-select li{line-height:1.42857143}.v-select li>a{display:block;padding:3px 20px;clear:both;color:#333;white-space:nowrap}.v-select li:hover{cursor:pointer}.v-select .dropdown-menu .active>a{color:#333;background:rgba(50,50,50,.1)}.v-select .dropdown-menu>.highlight>a{background:#5897fb;color:#fff}.v-select .highlight:not(:last-child){margin-bottom:0}.v-select .spinner{align-self:center;opacity:0;font-size:5px;text-indent:-9999em;overflow:hidden;border-top:.9em solid hsla(0,0%,39%,.1);border-right:.9em solid hsla(0,0%,39%,.1);border-bottom:.9em solid hsla(0,0%,39%,.1);border-left:.9em solid rgba(60,60,60,.45);transform:translateZ(0);animation:vSelectSpinner 1.1s infinite linear;transition:opacity .1s}.v-select .spinner,.v-select .spinner:after{border-radius:50%;width:5em;height:5em}.v-select.disabled .dropdown-toggle,.v-select.disabled .dropdown-toggle .clear,.v-select.disabled .dropdown-toggle input,.v-select.disabled .open-indicator,.v-select.disabled .selected-tag .close{cursor:not-allowed;background-color:#f8f8f8}.v-select.loading .spinner{opacity:1}@-webkit-keyframes vSelectSpinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes vSelectSpinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fade-enter-active,.fade-leave-active{transition:opacity .15s cubic-bezier(1,.5,.8,1)}.fade-enter,.fade-leave-to{opacity:0}',""])},function(e,t){e.exports=function(){var e=[];return e.toString=function(){for(var e=[],t=0;t<this.length;t++){var n=this[t];n[2]?e.push("@media "+n[2]+"{"+n[1]+"}"):e.push(n[1])}return e.join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var r={},i=0;i<this.length;i++){var o=this[i][0];"number"==typeof o&&(r[o]=!0)}for(i=0;i<t.length;i++){var a=t[i];"number"==typeof a[0]&&r[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]="("+a[2]+") and ("+n+")"),e.push(a))}},e}},function(e,t,n){n(89);var r=n(86)(n(41),n(87),null,null);e.exports=r.exports},function(e,t){e.exports=function(e,t,n,r){var i,o=e=e||{},a=typeof e.default;"object"!==a&&"function"!==a||(i=e,o=e.default);var s="function"==typeof o?o.options:o;if(t&&(s.render=t.render,s.staticRenderFns=t.staticRenderFns),n&&(s._scopeId=n),r){var c=s.computed||(s.computed={});Object.keys(r).forEach(function(e){var t=r[e];c[e]=function(){return t}})}return{esModule:i,exports:o,options:s}}},function(e,t){e.exports={render:function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"dropdown v-select",class:e.dropdownClasses,attrs:{dir:e.dir}},[n("div",{ref:"toggle",staticClass:"dropdown-toggle",on:{mousedown:function(t){t.preventDefault(),e.toggleDropdown(t)}}},[n("div",{ref:"selectedOptions",staticClass:"vs__selected-options"},[e._l(e.valueAsArray,function(t){return e._t("selected-option-container",[n("span",{key:t.index,staticClass:"selected-tag"},[e._t("selected-option",[e._v("\n "+e._s(e.getOptionLabel(t))+"\n ")],null,"object"==typeof t?t:(r={},r[e.label]=t,r)),e._v(" "),e.multiple?n("button",{staticClass:"close",attrs:{disabled:e.disabled,type:"button","aria-label":"Remove option"},on:{click:function(n){e.deselect(t)}}},[n("span",{attrs:{"aria-hidden":"true"}},[e._v("×")])]):e._e()],2)],{option:"object"==typeof t?t:(i={},i[e.label]=t,i),deselect:e.deselect,multiple:e.multiple,disabled:e.disabled});var r,i}),e._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:e.search,expression:"search"}],ref:"search",staticClass:"form-control",attrs:{type:"search",autocomplete:"off",disabled:e.disabled,placeholder:e.searchPlaceholder,tabindex:e.tabindex,readonly:!e.searchable,id:e.inputId,role:"combobox","aria-expanded":e.dropdownOpen,"aria-label":"Search for option"},domProps:{value:e.search},on:{keydown:[function(t){return"button"in t||!e._k(t.keyCode,"delete",[8,46],t.key)?void e.maybeDeleteValue(t):null},function(t){return"button"in t||!e._k(t.keyCode,"up",38,t.key)?(t.preventDefault(),void e.typeAheadUp(t)):null},function(t){return"button"in t||!e._k(t.keyCode,"down",40,t.key)?(t.preventDefault(),void e.typeAheadDown(t)):null},function(t){return"button"in t||!e._k(t.keyCode,"enter",13,t.key)?(t.preventDefault(),void e.typeAheadSelect(t)):null},function(t){return"button"in t||!e._k(t.keyCode,"tab",9,t.key)?void e.onTab(t):null}],keyup:function(t){return"button"in t||!e._k(t.keyCode,"esc",27,t.key)?void e.onEscape(t):null},blur:e.onSearchBlur,focus:e.onSearchFocus,input:function(t){t.target.composing||(e.search=t.target.value)}}})],2),e._v(" "),n("div",{staticClass:"vs__actions"},[n("button",{directives:[{name:"show",rawName:"v-show",value:e.showClearButton,expression:"showClearButton"}],staticClass:"clear",attrs:{disabled:e.disabled,type:"button",title:"Clear selection"},on:{click:e.clearSelection}},[n("span",{attrs:{"aria-hidden":"true"}},[e._v("×")])]),e._v(" "),e.noDrop?e._e():n("i",{ref:"openIndicator",staticClass:"open-indicator",attrs:{role:"presentation"}}),e._v(" "),e._t("spinner",[n("div",{directives:[{name:"show",rawName:"v-show",value:e.mutableLoading,expression:"mutableLoading"}],staticClass:"spinner"},[e._v("Loading...")])])],2)]),e._v(" "),n("transition",{attrs:{name:e.transition}},[e.dropdownOpen?n("ul",{ref:"dropdownMenu",staticClass:"dropdown-menu",style:{"max-height":e.maxHeight},attrs:{role:"listbox"},on:{mousedown:e.onMousedown}},[e._l(e.filteredOptions,function(t,r){return n("li",{key:r,class:{active:e.isOptionSelected(t),highlight:r===e.typeAheadPointer},attrs:{role:"option"},on:{mouseover:function(t){e.typeAheadPointer=r}}},[n("a",{on:{mousedown:function(n){n.preventDefault(),n.stopPropagation(),e.select(t)}}},[e._t("option",[e._v("\n "+e._s(e.getOptionLabel(t))+"\n ")],null,"object"==typeof t?t:(i={},i[e.label]=t,i))],2)]);var i}),e._v(" "),e.filteredOptions.length?e._e():n("li",{staticClass:"no-options"},[e._t("no-options",[e._v("Sorry, no matching options.")])],2)],2):e._e()])],1)},staticRenderFns:[]}},function(e,t,n){function r(e,t){for(var n=0;n<e.length;n++){var r=e[n],i=c[r.id];if(i){i.refs++;for(var o=0;o<i.parts.length;o++)i.parts[o](r.parts[o]);for(;o<r.parts.length;o++)i.parts.push(a(r.parts[o],t))}else{for(var s=[],o=0;o<r.parts.length;o++)s.push(a(r.parts[o],t));c[r.id]={id:r.id,refs:1,parts:s}}}}function i(e){for(var t=[],n={},r=0;r<e.length;r++){var i=e[r],o=i[0],a=i[1],s=i[2],c=i[3],u={css:a,media:s,sourceMap:c};n[o]?n[o].parts.push(u):t.push(n[o]={id:o,parts:[u]})}return t}function o(e){var t=document.createElement("style");return t.type="text/css",function(e,t){var n=f(),r=h[h.length-1];if("top"===e.insertAt)r?r.nextSibling?n.insertBefore(t,r.nextSibling):n.appendChild(t):n.insertBefore(t,n.firstChild),h.push(t);else{if("bottom"!==e.insertAt)throw new Error("Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.");n.appendChild(t)}}(e,t),t}function a(e,t){var n,r,i;if(t.singleton){var a=d++;n=p||(p=o(t)),r=s.bind(null,n,a,!1),i=s.bind(null,n,a,!0)}else n=o(t),r=function(e,t){var n=t.css,r=t.media,i=t.sourceMap;if(r&&e.setAttribute("media",r),i&&(n+="\n/*# sourceURL="+i.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),e.styleSheet)e.styleSheet.cssText=n;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(n))}}.bind(null,n),i=function(){!function(e){e.parentNode.removeChild(e);var t=h.indexOf(e);t>=0&&h.splice(t,1)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}function s(e,t,n,r){var i=n?"":r.css;if(e.styleSheet)e.styleSheet.cssText=v(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}var c={},u=function(e){var t;return function(){return void 0===t&&(t=e.apply(this,arguments)),t}},l=u(function(){return/msie [6-9]\b/.test(window.navigator.userAgent.toLowerCase())}),f=u(function(){return document.head||document.getElementsByTagName("head")[0]}),p=null,d=0,h=[];e.exports=function(e,t){void 0===(t=t||{}).singleton&&(t.singleton=l()),void 0===t.insertAt&&(t.insertAt="bottom");var n=i(e);return r(n,t),function(e){for(var o=[],a=0;a<n.length;a++){var s=n[a],u=c[s.id];u.refs--,o.push(u)}if(e){var l=i(e);r(l,t)}for(var a=0;a<o.length;a++){var u=o[a];if(0===u.refs){for(var f=0;f<u.parts.length;f++)u.parts[f]();delete c[u.id]}}}};var v=function(){var e=[];return function(t,n){return e[t]=n,e.filter(Boolean).join("\n")}}()},function(e,t,n){var r=n(83);"string"==typeof r&&(r=[[e.id,r,""]]),n(88)(r,{}),r.locals&&(e.exports=r.locals)}])},function(e,t){function n(e){return"function"==typeof e.value||(console.warn("[Vue-click-outside:] provided expression",e.expression,"is not a function."),!1)}function r(e){return void 0!==e.componentInstance&&e.componentInstance.$isServer}e.exports={bind:function(e,t,i){function o(t){if(i.context){var n=t.path||t.composedPath&&t.composedPath();n&&n.length>0&&n.unshift(t.target),e.contains(t.target)||function(e,t){if(!e||!t)return!1;for(var n=0,r=t.length;n<r;n++)try{if(e.contains(t[n]))return!0;if(t[n].contains(e))return!1}catch(e){return!1}return!1}(i.context.popupItem,n)||e.__vueClickOutside__.callback(t)}}n(t)&&(e.__vueClickOutside__={handler:o,callback:t.value},!r(i)&&document.addEventListener("click",o))},update:function(e,t){n(t)&&(e.__vueClickOutside__.callback=t.value)},unbind:function(e,t,n){!r(n)&&document.removeEventListener("click",e.__vueClickOutside__.handler),delete e.__vueClickOutside__}}},function(e,t,n){"use strict";var r=function(){var e=this.$createElement,t=this._self._c||e;return t("ul",this._l(this.menu,function(e,n){return t("popover-item",{key:n,attrs:{item:e}})}))};r._withStripped=!0;var i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("li",[e.item.href?n("a",{attrs:{href:e.item.href?e.item.href:"#",target:e.item.target?e.item.target:"",rel:"noreferrer noopener"},on:{click:e.item.action}},[n("span",{class:e.item.icon}),e._v(" "),e.item.text?n("span",[e._v(e._s(e.item.text))]):e.item.longtext?n("p",[e._v(e._s(e.item.longtext))]):e._e()]):e.item.action?n("button",{on:{click:e.item.action}},[n("span",{class:e.item.icon}),e._v(" "),e.item.text?n("span",[e._v(e._s(e.item.text))]):e.item.longtext?n("p",[e._v(e._s(e.item.longtext))]):e._e()]):n("span",{staticClass:"menuitem"},[n("span",{class:e.item.icon}),e._v(" "),e.item.text?n("span",[e._v(e._s(e.item.text))]):e.item.longtext?n("p",[e._v(e._s(e.item.longtext))]):e._e()])])};i._withStripped=!0;var o={props:["item"]},a=n(0),s=Object(a.a)(o,i,[],!1,null,null,null);s.options.__file="src/components/popoverMenu/popoverItem.vue";var c={name:"popoverMenu",props:["menu"],components:{popoverItem:s.exports}},u=Object(a.a)(c,r,[],!1,null,null,null);u.options.__file="src/components/popoverMenu.vue";t.a=u.exports},function(e,t,n){(function(e){var r=void 0!==e&&e||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function o(e,t){this._id=e,this._clearFn=t}t.setTimeout=function(){return new o(i.call(setTimeout,r,arguments),clearTimeout)},t.setInterval=function(){return new o(i.call(setInterval,r,arguments),clearInterval)},t.clearTimeout=t.clearInterval=function(e){e&&e.close()},o.prototype.unref=o.prototype.ref=function(){},o.prototype.close=function(){this._clearFn.call(r,this._id)},t.enroll=function(e,t){clearTimeout(e._idleTimeoutId),e._idleTimeout=t},t.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},t._unrefActive=t.active=function(e){clearTimeout(e._idleTimeoutId);var t=e._idleTimeout;t>=0&&(e._idleTimeoutId=setTimeout(function(){e._onTimeout&&e._onTimeout()},t))},n(8),t.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,t.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,n(2))},function(e,t,n){(function(e,t){!function(e,n){"use strict";if(!e.setImmediate){var r,i=1,o={},a=!1,s=e.document,c=Object.getPrototypeOf&&Object.getPrototypeOf(e);c=c&&c.setTimeout?c:e,"[object process]"==={}.toString.call(e.process)?r=function(e){t.nextTick(function(){l(e)})}:function(){if(e.postMessage&&!e.importScripts){var t=!0,n=e.onmessage;return e.onmessage=function(){t=!1},e.postMessage("","*"),e.onmessage=n,t}}()?function(){var t="setImmediate$"+Math.random()+"$",n=function(n){n.source===e&&"string"==typeof n.data&&0===n.data.indexOf(t)&&l(+n.data.slice(t.length))};e.addEventListener?e.addEventListener("message",n,!1):e.attachEvent("onmessage",n),r=function(n){e.postMessage(t+n,"*")}}():e.MessageChannel?function(){var e=new MessageChannel;e.port1.onmessage=function(e){l(e.data)},r=function(t){e.port2.postMessage(t)}}():s&&"onreadystatechange"in s.createElement("script")?function(){var e=s.documentElement;r=function(t){var n=s.createElement("script");n.onreadystatechange=function(){l(t),n.onreadystatechange=null,e.removeChild(n),n=null},e.appendChild(n)}}():r=function(e){setTimeout(l,0,e)},c.setImmediate=function(e){"function"!=typeof e&&(e=new Function(""+e));for(var t=new Array(arguments.length-1),n=0;n<t.length;n++)t[n]=arguments[n+1];var a={callback:e,args:t};return o[i]=a,r(i),i++},c.clearImmediate=u}function u(e){delete o[e]}function l(e){if(a)setTimeout(l,0,e);else{var t=o[e];if(t){a=!0;try{!function(e){var t=e.callback,r=e.args;switch(r.length){case 0:t();break;case 1:t(r[0]);break;case 2:t(r[0],r[1]);break;case 3:t(r[0],r[1],r[2]);break;default:t.apply(n,r)}}(t)}finally{u(e),a=!1}}}}}("undefined"==typeof self?void 0===e?this:e:self)}).call(this,n(2),n(9))},function(e,t){var n,r,i=e.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(e){if(n===setTimeout)return setTimeout(e,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(e,0);try{return n(e,0)}catch(t){try{return n.call(null,e,0)}catch(t){return n.call(this,e,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(e){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(e){r=a}}();var c,u=[],l=!1,f=-1;function p(){l&&c&&(l=!1,c.length?u=c.concat(u):f=-1,u.length&&d())}function d(){if(!l){var e=s(p);l=!0;for(var t=u.length;t;){for(c=u,u=[];++f<t;)c&&c[f].run();f=-1,t=u.length}c=null,l=!1,function(e){if(r===clearTimeout)return clearTimeout(e);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(e);try{r(e)}catch(t){try{return r.call(null,e)}catch(t){return r.call(this,e)}}}(e)}}function h(e,t){this.fun=e,this.array=t}function v(){}i.nextTick=function(e){var t=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)t[n-1]=arguments[n];u.push(new h(e,t)),1!==u.length||l||s(d)},h.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=v,i.addListener=v,i.once=v,i.off=v,i.removeListener=v,i.removeAllListeners=v,i.emit=v,i.prependListener=v,i.prependOnceListener=v,i.listeners=function(e){return[]},i.binding=function(e){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(e){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},function(e,t,n){"use strict";n.r(t);var r=n(3),i=function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"followupsection",attrs:{id:"updatenotification"}},[n("div",{staticClass:"update"},[e.isNewVersionAvailable?[e.versionIsEol?n("p",[n("span",{staticClass:"warning"},[n("span",{staticClass:"icon icon-error"}),e._v("\n\t\t\t\t\t"+e._s(e.t("updatenotification","The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible."))+"\n\t\t\t\t")])]):e._e(),e._v(" "),n("p",[n("span",{domProps:{innerHTML:e._s(e.newVersionAvailableString)}}),n("br"),e._v(" "),e.isListFetched?e._e():n("span",{staticClass:"icon icon-loading-small"}),e._v(" "),n("span",{domProps:{innerHTML:e._s(e.statusText)}})]),e._v(" "),e.missingAppUpdates.length?[n("h3",{on:{click:e.toggleHideMissingUpdates}},[e._v("\n\t\t\t\t\t"+e._s(e.t("updatenotification","Apps missing updates"))+"\n\t\t\t\t\t"),e.hideMissingUpdates?e._e():n("span",{staticClass:"icon icon-triangle-n"}),e._v(" "),e.hideMissingUpdates?n("span",{staticClass:"icon icon-triangle-s"}):e._e()]),e._v(" "),e.hideMissingUpdates?e._e():n("ul",{staticClass:"applist"},e._l(e.missingAppUpdates,function(t){return n("li",[n("a",{attrs:{href:"https://apps.nextcloud.com/apps/"+t.appId,title:e.t("settings","View in store")}},[e._v(e._s(t.appName)+" ↗")])])}))]:e._e(),e._v(" "),e.availableAppUpdates.length?[n("h3",{on:{click:e.toggleHideAvailableUpdates}},[e._v("\n\t\t\t\t\t"+e._s(e.t("updatenotification","Apps with available updates"))+"\n\t\t\t\t\t"),e.hideAvailableUpdates?e._e():n("span",{staticClass:"icon icon-triangle-n"}),e._v(" "),e.hideAvailableUpdates?n("span",{staticClass:"icon icon-triangle-s"}):e._e()]),e._v(" "),n("ul",{staticClass:"applist"},e._l(e.availableAppUpdates,function(t){return e.hideAvailableUpdates?e._e():n("li",[n("a",{attrs:{href:"https://apps.nextcloud.com/apps/"+t.appId,title:e.t("settings","View in store")}},[e._v(e._s(t.appName)+" ↗")])])}))]:e._e(),e._v(" "),n("p",[e.updaterEnabled?n("a",{staticClass:"button",attrs:{href:"#"},on:{click:e.clickUpdaterButton}},[e._v(e._s(e.t("updatenotification","Open updater")))]):e._e(),e._v(" "),e.downloadLink?n("a",{staticClass:"button",class:{hidden:!e.updaterEnabled},attrs:{href:e.downloadLink}},[e._v(e._s(e.t("updatenotification","Download now")))]):e._e()]),e._v(" "),e.whatsNew?n("div",{staticClass:"whatsNew"},[n("div",{staticClass:"toggleWhatsNew"},[n("span",{directives:[{name:"click-outside",rawName:"v-click-outside",value:e.hideMenu,expression:"hideMenu"}],on:{click:e.toggleMenu}},[e._v(e._s(e.t("updatenotification","What's new?")))]),e._v(" "),n("div",{staticClass:"popovermenu",class:{"menu-center":!0,open:e.openedWhatsNew}},[n("popover-menu",{attrs:{menu:e.whatsNew}})],1)])]):e._e()]:e.isUpdateChecked?[e._v("\n\t\t\t"+e._s(e.t("updatenotification","Your version is up to date."))+"\n\t\t\t"),n("span",{staticClass:"icon-info svg",attrs:{title:e.lastCheckedOnString}})]:[e._v(e._s(e.t("updatenotification","The update check is not yet finished. Please refresh the page.")))],e._v(" "),e.isDefaultUpdateServerURL?e._e():[n("p",[n("em",[e._v(e._s(e.t("updatenotification","A non-default update server is in use to be checked for updates:"))+" "),n("code",[e._v(e._s(e.updateServerURL))])])])]],2),e._v(" "),n("p",[n("label",{attrs:{for:"release-channel"}},[e._v(e._s(e.t("updatenotification","Update channel:")))]),e._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:e.currentChannel,expression:"currentChannel"}],attrs:{id:"release-channel"},on:{change:[function(t){var n=Array.prototype.filter.call(t.target.options,function(e){return e.selected}).map(function(e){return"_value"in e?e._value:e.value});e.currentChannel=t.target.multiple?n:n[0]},e.changeReleaseChannel]}},e._l(e.channels,function(t){return n("option",{domProps:{value:t}},[e._v(e._s(t))])})),e._v(" "),n("span",{staticClass:"msg",attrs:{id:"channel_save_msg"}}),n("br"),e._v(" "),n("em",[e._v(e._s(e.t("updatenotification","You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.")))]),n("br"),e._v(" "),n("em",[e._v(e._s(e.t("updatenotification","Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.")))])]),e._v(" "),n("p",{staticClass:"channel-description"},[n("span",{domProps:{innerHTML:e._s(e.productionInfoString)}}),n("br"),e._v(" "),n("span",{domProps:{innerHTML:e._s(e.stableInfoString)}}),n("br"),e._v(" "),n("span",{domProps:{innerHTML:e._s(e.betaInfoString)}})]),e._v(" "),n("p",{attrs:{id:"oca_updatenotification_groups"}},[e._v("\n\t\t"+e._s(e.t("updatenotification","Notify members of the following groups about available updates:"))+"\n\t\t"),n("v-select",{attrs:{multiple:"",value:e.notifyGroups,options:e.availableGroups}}),n("br"),e._v(" "),"daily"===e.currentChannel||"git"===e.currentChannel?n("em",[e._v(e._s(e.t("updatenotification","Only notification for app updates are available.")))]):e._e(),e._v(" "),"daily"===e.currentChannel?n("em",[e._v(e._s(e.t("updatenotification","The selected update channel makes dedicated notifications for the server obsolete.")))]):e._e(),e._v(" "),"git"===e.currentChannel?n("em",[e._v(e._s(e.t("updatenotification","The selected update channel does not support updates of the server.")))]):e._e()],1)])};i._withStripped=!0;var o=n(1).a,a=n(0),s=Object(a.a)(o,i,[],!1,null,null,null);s.options.__file="src/components/root.vue";var c=s.exports; +var r=Object.freeze({});function i(t){return void 0===t||null===t}function o(t){return void 0!==t&&null!==t}function a(t){return!0===t}function s(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function u(t){return null!==t&&"object"==typeof t}var c=Object.prototype.toString;function l(t){return"[object Object]"===c.call(t)}function f(t){return"[object RegExp]"===c.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return null==t?"":"object"==typeof t?JSON.stringify(t,null,2):String(t)}function h(t){var e=parseFloat(t);return isNaN(e)?t:e}function v(t,e){for(var n=Object.create(null),r=t.split(","),i=0;i<r.length;i++)n[r[i]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}v("slot,component",!0);var m=v("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var y=Object.prototype.hasOwnProperty;function _(t,e){return y.call(t,e)}function b(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var w=/-(\w)/g,x=b(function(t){return t.replace(w,function(t,e){return e?e.toUpperCase():""})}),O=b(function(t){return t.charAt(0).toUpperCase()+t.slice(1)}),S=/\B([A-Z])/g,C=b(function(t){return t.replace(S,"-$1").toLowerCase()});var k=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function E(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function T(t,e){for(var n in e)t[n]=e[n];return t}function A(t){for(var e={},n=0;n<t.length;n++)t[n]&&T(e,t[n]);return e}function D(t,e,n){}var M=function(t,e,n){return!1},P=function(t){return t};function N(t,e){if(t===e)return!0;var n=u(t),r=u(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var i=Array.isArray(t),o=Array.isArray(e);if(i&&o)return t.length===e.length&&t.every(function(t,n){return N(t,e[n])});if(i||o)return!1;var a=Object.keys(t),s=Object.keys(e);return a.length===s.length&&a.every(function(n){return N(t[n],e[n])})}catch(t){return!1}}function $(t,e){for(var n=0;n<t.length;n++)if(N(t[n],e))return n;return-1}function L(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var j="data-server-rendered",I=["component","directive","filter"],F=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured"],R={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:M,isReservedAttr:M,isUnknownElement:M,getTagNamespace:D,parsePlatformTagName:P,mustUseProp:M,_lifecycleHooks:F};function B(t){var e=(t+"").charCodeAt(0);return 36===e||95===e}function U(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var V=/[^\w.$]/;var H,z="__proto__"in{},W="undefined"!=typeof window,Y="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,G=Y&&WXEnvironment.platform.toLowerCase(),q=W&&window.navigator.userAgent.toLowerCase(),K=q&&/msie|trident/.test(q),J=q&&q.indexOf("msie 9.0")>0,X=q&&q.indexOf("edge/")>0,Z=(q&&q.indexOf("android"),q&&/iphone|ipad|ipod|ios/.test(q)||"ios"===G),Q=(q&&/chrome\/\d+/.test(q),{}.watch),tt=!1;if(W)try{var et={};Object.defineProperty(et,"passive",{get:function(){tt=!0}}),window.addEventListener("test-passive",null,et)}catch(t){}var nt=function(){return void 0===H&&(H=!W&&!Y&&void 0!==t&&"server"===t.process.env.VUE_ENV),H},rt=W&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function it(t){return"function"==typeof t&&/native code/.test(t.toString())}var ot,at="undefined"!=typeof Symbol&&it(Symbol)&&"undefined"!=typeof Reflect&&it(Reflect.ownKeys);ot="undefined"!=typeof Set&&it(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var st=D,ut=0,ct=function(){this.id=ut++,this.subs=[]};ct.prototype.addSub=function(t){this.subs.push(t)},ct.prototype.removeSub=function(t){g(this.subs,t)},ct.prototype.depend=function(){ct.target&&ct.target.addDep(this)},ct.prototype.notify=function(){for(var t=this.subs.slice(),e=0,n=t.length;e<n;e++)t[e].update()},ct.target=null;var lt=[];function ft(t){ct.target&<.push(ct.target),ct.target=t}function pt(){ct.target=lt.pop()}var dt=function(t,e,n,r,i,o,a,s){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=i,this.ns=void 0,this.context=o,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},ht={child:{configurable:!0}};ht.child.get=function(){return this.componentInstance},Object.defineProperties(dt.prototype,ht);var vt=function(t){void 0===t&&(t="");var e=new dt;return e.text=t,e.isComment=!0,e};function mt(t){return new dt(void 0,void 0,void 0,String(t))}function gt(t){var e=new dt(t.tag,t.data,t.children,t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.isCloned=!0,e}var yt=Array.prototype,_t=Object.create(yt);["push","pop","shift","unshift","splice","sort","reverse"].forEach(function(t){var e=yt[t];U(_t,t,function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];var i,o=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":i=n;break;case"splice":i=n.slice(2)}return i&&a.observeArray(i),a.dep.notify(),o})});var bt=Object.getOwnPropertyNames(_t),wt=!0;function xt(t){wt=t}var Ot=function(t){(this.value=t,this.dep=new ct,this.vmCount=0,U(t,"__ob__",this),Array.isArray(t))?((z?St:Ct)(t,_t,bt),this.observeArray(t)):this.walk(t)};function St(t,e,n){t.__proto__=e}function Ct(t,e,n){for(var r=0,i=n.length;r<i;r++){var o=n[r];U(t,o,e[o])}}function kt(t,e){var n;if(u(t)&&!(t instanceof dt))return _(t,"__ob__")&&t.__ob__ instanceof Ot?n=t.__ob__:wt&&!nt()&&(Array.isArray(t)||l(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new Ot(t)),e&&n&&n.vmCount++,n}function Et(t,e,n,r,i){var o=new ct,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var s=a&&a.get;s||2!==arguments.length||(n=t[e]);var u=a&&a.set,c=!i&&kt(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):n;return ct.target&&(o.depend(),c&&(c.dep.depend(),Array.isArray(e)&&function t(e){for(var n=void 0,r=0,i=e.length;r<i;r++)(n=e[r])&&n.__ob__&&n.__ob__.dep.depend(),Array.isArray(n)&&t(n)}(e))),e},set:function(e){var r=s?s.call(t):n;e===r||e!=e&&r!=r||(u?u.call(t,e):n=e,c=!i&&kt(e),o.notify())}})}}function Tt(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(Et(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function At(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||_(t,e)&&(delete t[e],n&&n.dep.notify())}}Ot.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)Et(t,e[n])},Ot.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)kt(t[e])};var Dt=R.optionMergeStrategies;function Mt(t,e){if(!e)return t;for(var n,r,i,o=Object.keys(e),a=0;a<o.length;a++)r=t[n=o[a]],i=e[n],_(t,n)?l(r)&&l(i)&&Mt(r,i):Tt(t,n,i);return t}function Pt(t,e,n){return n?function(){var r="function"==typeof e?e.call(n,n):e,i="function"==typeof t?t.call(n,n):t;return r?Mt(r,i):i}:e?t?function(){return Mt("function"==typeof e?e.call(this,this):e,"function"==typeof t?t.call(this,this):t)}:e:t}function Nt(t,e){return e?t?t.concat(e):Array.isArray(e)?e:[e]:t}function $t(t,e,n,r){var i=Object.create(t||null);return e?T(i,e):i}Dt.data=function(t,e,n){return n?Pt(t,e,n):e&&"function"!=typeof e?t:Pt(t,e)},F.forEach(function(t){Dt[t]=Nt}),I.forEach(function(t){Dt[t+"s"]=$t}),Dt.watch=function(t,e,n,r){if(t===Q&&(t=void 0),e===Q&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var i={};for(var o in T(i,t),e){var a=i[o],s=e[o];a&&!Array.isArray(a)&&(a=[a]),i[o]=a?a.concat(s):Array.isArray(s)?s:[s]}return i},Dt.props=Dt.methods=Dt.inject=Dt.computed=function(t,e,n,r){if(!t)return e;var i=Object.create(null);return T(i,t),e&&T(i,e),i},Dt.provide=Pt;var Lt=function(t,e){return void 0===e?t:e};function jt(t,e,n){"function"==typeof e&&(e=e.options),function(t,e){var n=t.props;if(n){var r,i,o={};if(Array.isArray(n))for(r=n.length;r--;)"string"==typeof(i=n[r])&&(o[x(i)]={type:null});else if(l(n))for(var a in n)i=n[a],o[x(a)]=l(i)?i:{type:i};t.props=o}}(e),function(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var i=0;i<n.length;i++)r[n[i]]={from:n[i]};else if(l(n))for(var o in n){var a=n[o];r[o]=l(a)?T({from:o},a):{from:a}}}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];"function"==typeof r&&(e[n]={bind:r,update:r})}}(e);var r=e.extends;if(r&&(t=jt(t,r,n)),e.mixins)for(var i=0,o=e.mixins.length;i<o;i++)t=jt(t,e.mixins[i],n);var a,s={};for(a in t)u(a);for(a in e)_(t,a)||u(a);function u(r){var i=Dt[r]||Lt;s[r]=i(t[r],e[r],n,r)}return s}function It(t,e,n,r){if("string"==typeof n){var i=t[e];if(_(i,n))return i[n];var o=x(n);if(_(i,o))return i[o];var a=O(o);return _(i,a)?i[a]:i[n]||i[o]||i[a]}}function Ft(t,e,n,r){var i=e[t],o=!_(n,t),a=n[t],s=Ut(Boolean,i.type);if(s>-1)if(o&&!_(i,"default"))a=!1;else if(""===a||a===C(t)){var u=Ut(String,i.type);(u<0||s<u)&&(a=!0)}if(void 0===a){a=function(t,e,n){if(!_(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return"function"==typeof r&&"Function"!==Rt(e.type)?r.call(t):r}(r,i,t);var c=wt;xt(!0),kt(a),xt(c)}return a}function Rt(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Bt(t,e){return Rt(t)===Rt(e)}function Ut(t,e){if(!Array.isArray(e))return Bt(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Bt(e[n],t))return n;return-1}function Vt(t,e,n){if(e)for(var r=e;r=r.$parent;){var i=r.$options.errorCaptured;if(i)for(var o=0;o<i.length;o++)try{if(!1===i[o].call(r,t,e,n))return}catch(t){Ht(t,r,"errorCaptured hook")}}Ht(t,e,n)}function Ht(t,e,n){if(R.errorHandler)try{return R.errorHandler.call(null,t,e,n)}catch(t){zt(t,null,"config.errorHandler")}zt(t,e,n)}function zt(t,e,n){if(!W&&!Y||"undefined"==typeof console)throw t;console.error(t)}var Wt,Yt,Gt=[],qt=!1;function Kt(){qt=!1;var t=Gt.slice(0);Gt.length=0;for(var e=0;e<t.length;e++)t[e]()}var Jt=!1;if(void 0!==n&&it(n))Yt=function(){n(Kt)};else if("undefined"==typeof MessageChannel||!it(MessageChannel)&&"[object MessageChannelConstructor]"!==MessageChannel.toString())Yt=function(){setTimeout(Kt,0)};else{var Xt=new MessageChannel,Zt=Xt.port2;Xt.port1.onmessage=Kt,Yt=function(){Zt.postMessage(1)}}if("undefined"!=typeof Promise&&it(Promise)){var Qt=Promise.resolve();Wt=function(){Qt.then(Kt),Z&&setTimeout(D)}}else Wt=Yt;function te(t,e){var n;if(Gt.push(function(){if(t)try{t.call(e)}catch(t){Vt(t,e,"nextTick")}else n&&n(e)}),qt||(qt=!0,Jt?Yt():Wt()),!t&&"undefined"!=typeof Promise)return new Promise(function(t){n=t})}var ee=new ot;function ne(t){!function t(e,n){var r,i;var o=Array.isArray(e);if(!o&&!u(e)||Object.isFrozen(e)||e instanceof dt)return;if(e.__ob__){var a=e.__ob__.dep.id;if(n.has(a))return;n.add(a)}if(o)for(r=e.length;r--;)t(e[r],n);else for(i=Object.keys(e),r=i.length;r--;)t(e[i[r]],n)}(t,ee),ee.clear()}var re,ie=b(function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}});function oe(t){function e(){var t=arguments,n=e.fns;if(!Array.isArray(n))return n.apply(null,arguments);for(var r=n.slice(),i=0;i<r.length;i++)r[i].apply(null,t)}return e.fns=t,e}function ae(t,e,n,r,o){var a,s,u,c;for(a in t)s=t[a],u=e[a],c=ie(a),i(s)||(i(u)?(i(s.fns)&&(s=t[a]=oe(s)),n(c.name,s,c.once,c.capture,c.passive,c.params)):s!==u&&(u.fns=s,t[a]=u));for(a in e)i(t[a])&&r((c=ie(a)).name,e[a],c.capture)}function se(t,e,n){var r;t instanceof dt&&(t=t.data.hook||(t.data.hook={}));var s=t[e];function u(){n.apply(this,arguments),g(r.fns,u)}i(s)?r=oe([u]):o(s.fns)&&a(s.merged)?(r=s).fns.push(u):r=oe([s,u]),r.merged=!0,t[e]=r}function ue(t,e,n,r,i){if(o(e)){if(_(e,n))return t[n]=e[n],i||delete e[n],!0;if(_(e,r))return t[n]=e[r],i||delete e[r],!0}return!1}function ce(t){return s(t)?[mt(t)]:Array.isArray(t)?function t(e,n){var r=[];var u,c,l,f;for(u=0;u<e.length;u++)i(c=e[u])||"boolean"==typeof c||(l=r.length-1,f=r[l],Array.isArray(c)?c.length>0&&(le((c=t(c,(n||"")+"_"+u))[0])&&le(f)&&(r[l]=mt(f.text+c[0].text),c.shift()),r.push.apply(r,c)):s(c)?le(f)?r[l]=mt(f.text+c):""!==c&&r.push(mt(c)):le(c)&&le(f)?r[l]=mt(f.text+c.text):(a(e._isVList)&&o(c.tag)&&i(c.key)&&o(n)&&(c.key="__vlist"+n+"_"+u+"__"),r.push(c)));return r}(t):void 0}function le(t){return o(t)&&o(t.text)&&function(t){return!1===t}(t.isComment)}function fe(t,e){return(t.__esModule||at&&"Module"===t[Symbol.toStringTag])&&(t=t.default),u(t)?e.extend(t):t}function pe(t){return t.isComment&&t.asyncFactory}function de(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(o(n)&&(o(n.componentOptions)||pe(n)))return n}}function he(t,e,n){n?re.$once(t,e):re.$on(t,e)}function ve(t,e){re.$off(t,e)}function me(t,e,n){re=t,ae(e,n||{},he,ve),re=void 0}function ge(t,e){var n={};if(!t)return n;for(var r=0,i=t.length;r<i;r++){var o=t[r],a=o.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,o.context!==e&&o.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(o);else{var s=a.slot,u=n[s]||(n[s]=[]);"template"===o.tag?u.push.apply(u,o.children||[]):u.push(o)}}for(var c in n)n[c].every(ye)&&delete n[c];return n}function ye(t){return t.isComment&&!t.asyncFactory||" "===t.text}function _e(t,e){e=e||{};for(var n=0;n<t.length;n++)Array.isArray(t[n])?_e(t[n],e):e[t[n].key]=t[n].fn;return e}var be=null;function we(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function xe(t,e){if(e){if(t._directInactive=!1,we(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)xe(t.$children[n]);Oe(t,"activated")}}function Oe(t,e){ft();var n=t.$options[e];if(n)for(var r=0,i=n.length;r<i;r++)try{n[r].call(t)}catch(n){Vt(n,t,e+" hook")}t._hasHookEvent&&t.$emit("hook:"+e),pt()}var Se=[],Ce=[],ke={},Ee=!1,Te=!1,Ae=0;function De(){var t,e;for(Te=!0,Se.sort(function(t,e){return t.id-e.id}),Ae=0;Ae<Se.length;Ae++)e=(t=Se[Ae]).id,ke[e]=null,t.run();var n=Ce.slice(),r=Se.slice();Ae=Se.length=Ce.length=0,ke={},Ee=Te=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,xe(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&Oe(r,"updated")}}(r),rt&&R.devtools&&rt.emit("flush")}var Me=0,Pe=function(t,e,n,r,i){this.vm=t,i&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++Me,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new ot,this.newDepIds=new ot,this.expression="","function"==typeof e?this.getter=e:(this.getter=function(t){if(!V.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=function(){})),this.value=this.lazy?void 0:this.get()};Pe.prototype.get=function(){var t;ft(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Vt(t,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&ne(t),pt(),this.cleanupDeps()}return t},Pe.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},Pe.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},Pe.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(t){var e=t.id;if(null==ke[e]){if(ke[e]=!0,Te){for(var n=Se.length-1;n>Ae&&Se[n].id>t.id;)n--;Se.splice(n+1,0,t)}else Se.push(t);Ee||(Ee=!0,te(De))}}(this)},Pe.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||u(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Vt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},Pe.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},Pe.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},Pe.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var Ne={enumerable:!0,configurable:!0,get:D,set:D};function $e(t,e,n){Ne.get=function(){return this[e][n]},Ne.set=function(t){this[e][n]=t},Object.defineProperty(t,n,Ne)}function Le(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},i=t.$options._propKeys=[];t.$parent&&xt(!1);var o=function(o){i.push(o);var a=Ft(o,e,n,t);Et(r,o,a),o in t||$e(t,"_props",o)};for(var a in e)o(a);xt(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]=null==e[n]?D:k(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;l(e=t._data="function"==typeof e?function(t,e){ft();try{return t.call(e,e)}catch(t){return Vt(t,e,"data()"),{}}finally{pt()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,i=(t.$options.methods,n.length);for(;i--;){var o=n[i];0,r&&_(r,o)||B(o)||$e(t,"_data",o)}kt(e,!0)}(t):kt(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=nt();for(var i in e){var o=e[i],a="function"==typeof o?o:o.get;0,r||(n[i]=new Pe(t,a||D,D,je)),i in t||Ie(t,i,o)}}(t,e.computed),e.watch&&e.watch!==Q&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var i=0;i<r.length;i++)Re(t,n,r[i]);else Re(t,n,r)}}(t,e.watch)}var je={lazy:!0};function Ie(t,e,n){var r=!nt();"function"==typeof n?(Ne.get=r?Fe(e):n,Ne.set=D):(Ne.get=n.get?r&&!1!==n.cache?Fe(e):n.get:D,Ne.set=n.set?n.set:D),Object.defineProperty(t,e,Ne)}function Fe(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),ct.target&&e.depend(),e.value}}function Re(t,e,n,r){return l(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}function Be(t,e){if(t){for(var n=Object.create(null),r=at?Reflect.ownKeys(t).filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}):Object.keys(t),i=0;i<r.length;i++){for(var o=r[i],a=t[o].from,s=e;s;){if(s._provided&&_(s._provided,a)){n[o]=s._provided[a];break}s=s.$parent}if(!s)if("default"in t[o]){var u=t[o].default;n[o]="function"==typeof u?u.call(e):u}else 0}return n}}function Ue(t,e){var n,r,i,a,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,i=t.length;r<i;r++)n[r]=e(t[r],r);else if("number"==typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(u(t))for(a=Object.keys(t),n=new Array(a.length),r=0,i=a.length;r<i;r++)s=a[r],n[r]=e(t[s],s,r);return o(n)&&(n._isVList=!0),n}function Ve(t,e,n,r){var i,o=this.$scopedSlots[t];if(o)n=n||{},r&&(n=T(T({},r),n)),i=o(n)||e;else{var a=this.$slots[t];a&&(a._rendered=!0),i=a||e}var s=n&&n.slot;return s?this.$createElement("template",{slot:s},i):i}function He(t){return It(this.$options,"filters",t)||P}function ze(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function We(t,e,n,r,i){var o=R.keyCodes[e]||n;return i&&r&&!R.keyCodes[e]?ze(i,r):o?ze(o,t):r?C(r)!==e:void 0}function Ye(t,e,n,r,i){if(n)if(u(n)){var o;Array.isArray(n)&&(n=A(n));var a=function(a){if("class"===a||"style"===a||m(a))o=t;else{var s=t.attrs&&t.attrs.type;o=r||R.mustUseProp(e,s,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}a in o||(o[a]=n[a],i&&((t.on||(t.on={}))["update:"+a]=function(t){n[a]=t}))};for(var s in n)a(s)}else;return t}function Ge(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e?r:(Ke(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),"__static__"+t,!1),r)}function qe(t,e,n){return Ke(t,"__once__"+e+(n?"_"+n:""),!0),t}function Ke(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&"string"!=typeof t[r]&&Je(t[r],e+"_"+r,n);else Je(t,e,n)}function Je(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Xe(t,e){if(e)if(l(e)){var n=t.on=t.on?T({},t.on):{};for(var r in e){var i=n[r],o=e[r];n[r]=i?[].concat(i,o):o}}else;return t}function Ze(t){t._o=qe,t._n=h,t._s=d,t._l=Ue,t._t=Ve,t._q=N,t._i=$,t._m=Ge,t._f=He,t._k=We,t._b=Ye,t._v=mt,t._e=vt,t._u=_e,t._g=Xe}function Qe(t,e,n,i,o){var s,u=o.options;_(i,"_uid")?(s=Object.create(i))._original=i:(s=i,i=i._original);var c=a(u._compiled),l=!c;this.data=t,this.props=e,this.children=n,this.parent=i,this.listeners=t.on||r,this.injections=Be(u.inject,i),this.slots=function(){return ge(n,i)},c&&(this.$options=u,this.$slots=this.slots(),this.$scopedSlots=t.scopedSlots||r),u._scopeId?this._c=function(t,e,n,r){var o=un(s,t,e,n,r,l);return o&&!Array.isArray(o)&&(o.fnScopeId=u._scopeId,o.fnContext=i),o}:this._c=function(t,e,n,r){return un(s,t,e,n,r,l)}}function tn(t,e,n,r){var i=gt(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function en(t,e){for(var n in e)t[x(n)]=e[n]}Ze(Qe.prototype);var nn={init:function(t,e,n,r){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var i=t;nn.prepatch(i,i)}else{(t.componentInstance=function(t,e,n,r){var i={_isComponent:!0,parent:e,_parentVnode:t,_parentElm:n||null,_refElm:r||null},a=t.data.inlineTemplate;o(a)&&(i.render=a.render,i.staticRenderFns=a.staticRenderFns);return new t.componentOptions.Ctor(i)}(t,be,n,r)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,i,o){var a=!!(o||t.$options._renderChildren||i.data.scopedSlots||t.$scopedSlots!==r);if(t.$options._parentVnode=i,t.$vnode=i,t._vnode&&(t._vnode.parent=i),t.$options._renderChildren=o,t.$attrs=i.data.attrs||r,t.$listeners=n||r,e&&t.$options.props){xt(!1);for(var s=t._props,u=t.$options._propKeys||[],c=0;c<u.length;c++){var l=u[c],f=t.$options.props;s[l]=Ft(l,f,e,t)}xt(!0),t.$options.propsData=e}n=n||r;var p=t.$options._parentListeners;t.$options._parentListeners=n,me(t,n,p),a&&(t.$slots=ge(o,i.context),t.$forceUpdate())}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e=t.context,n=t.componentInstance;n._isMounted||(n._isMounted=!0,Oe(n,"mounted")),t.data.keepAlive&&(e._isMounted?function(t){t._inactive=!1,Ce.push(t)}(n):xe(n,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?function t(e,n){if(!(n&&(e._directInactive=!0,we(e))||e._inactive)){e._inactive=!0;for(var r=0;r<e.$children.length;r++)t(e.$children[r]);Oe(e,"deactivated")}}(e,!0):e.$destroy())}},rn=Object.keys(nn);function on(t,e,n,s,c){if(!i(t)){var l=n.$options._base;if(u(t)&&(t=l.extend(t)),"function"==typeof t){var f;if(i(t.cid)&&void 0===(t=function(t,e,n){if(a(t.error)&&o(t.errorComp))return t.errorComp;if(o(t.resolved))return t.resolved;if(a(t.loading)&&o(t.loadingComp))return t.loadingComp;if(!o(t.contexts)){var r=t.contexts=[n],s=!0,c=function(){for(var t=0,e=r.length;t<e;t++)r[t].$forceUpdate()},l=L(function(n){t.resolved=fe(n,e),s||c()}),f=L(function(e){o(t.errorComp)&&(t.error=!0,c())}),p=t(l,f);return u(p)&&("function"==typeof p.then?i(t.resolved)&&p.then(l,f):o(p.component)&&"function"==typeof p.component.then&&(p.component.then(l,f),o(p.error)&&(t.errorComp=fe(p.error,e)),o(p.loading)&&(t.loadingComp=fe(p.loading,e),0===p.delay?t.loading=!0:setTimeout(function(){i(t.resolved)&&i(t.error)&&(t.loading=!0,c())},p.delay||200)),o(p.timeout)&&setTimeout(function(){i(t.resolved)&&f(null)},p.timeout))),s=!1,t.loading?t.loadingComp:t.resolved}t.contexts.push(n)}(f=t,l,n)))return function(t,e,n,r,i){var o=vt();return o.asyncFactory=t,o.asyncMeta={data:e,context:n,children:r,tag:i},o}(f,e,n,s,c);e=e||{},ln(t),o(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.props||(e.props={}))[n]=e.model.value;var i=e.on||(e.on={});o(i[r])?i[r]=[e.model.callback].concat(i[r]):i[r]=e.model.callback}(t.options,e);var p=function(t,e,n){var r=e.options.props;if(!i(r)){var a={},s=t.attrs,u=t.props;if(o(s)||o(u))for(var c in r){var l=C(c);ue(a,u,c,l,!0)||ue(a,s,c,l,!1)}return a}}(e,t);if(a(t.options.functional))return function(t,e,n,i,a){var s=t.options,u={},c=s.props;if(o(c))for(var l in c)u[l]=Ft(l,c,e||r);else o(n.attrs)&&en(u,n.attrs),o(n.props)&&en(u,n.props);var f=new Qe(n,u,a,i,t),p=s.render.call(null,f._c,f);if(p instanceof dt)return tn(p,n,f.parent,s);if(Array.isArray(p)){for(var d=ce(p)||[],h=new Array(d.length),v=0;v<d.length;v++)h[v]=tn(d[v],n,f.parent,s);return h}}(t,p,e,n,s);var d=e.on;if(e.on=e.nativeOn,a(t.options.abstract)){var h=e.slot;e={},h&&(e.slot=h)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<rn.length;n++){var r=rn[n];e[r]=nn[r]}}(e);var v=t.options.name||c;return new dt("vue-component-"+t.cid+(v?"-"+v:""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:p,listeners:d,tag:c,children:s},f)}}}var an=1,sn=2;function un(t,e,n,r,c,l){return(Array.isArray(n)||s(n))&&(c=r,r=n,n=void 0),a(l)&&(c=sn),function(t,e,n,r,s){if(o(n)&&o(n.__ob__))return vt();o(n)&&o(n.is)&&(e=n.is);if(!e)return vt();0;Array.isArray(r)&&"function"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);s===sn?r=ce(r):s===an&&(r=function(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}(r));var c,l;if("string"==typeof e){var f;l=t.$vnode&&t.$vnode.ns||R.getTagNamespace(e),c=R.isReservedTag(e)?new dt(R.parsePlatformTagName(e),n,r,void 0,void 0,t):o(f=It(t.$options,"components",e))?on(f,n,t,r,e):new dt(e,n,r,void 0,void 0,t)}else c=on(e,n,t,r);return Array.isArray(c)?c:o(c)?(o(l)&&function t(e,n,r){e.ns=n;"foreignObject"===e.tag&&(n=void 0,r=!0);if(o(e.children))for(var s=0,u=e.children.length;s<u;s++){var c=e.children[s];o(c.tag)&&(i(c.ns)||a(r)&&"svg"!==c.tag)&&t(c,n,r)}}(c,l),o(n)&&function(t){u(t.style)&&ne(t.style);u(t.class)&&ne(t.class)}(n),c):vt()}(t,e,n,r,c)}var cn=0;function ln(t){var e=t.options;if(t.super){var n=ln(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.extendOptions,i=t.sealedOptions;for(var o in n)n[o]!==i[o]&&(e||(e={}),e[o]=fn(n[o],r[o],i[o]));return e}(t);r&&T(t.extendOptions,r),(e=t.options=jt(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function fn(t,e,n){if(Array.isArray(t)){var r=[];n=Array.isArray(n)?n:[n],e=Array.isArray(e)?e:[e];for(var i=0;i<t.length;i++)(e.indexOf(t[i])>=0||n.indexOf(t[i])<0)&&r.push(t[i]);return r}return t}function pn(t){this._init(t)}function dn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,i=t._Ctor||(t._Ctor={});if(i[r])return i[r];var o=t.name||n.options.name;var a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=jt(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)$e(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)Ie(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,I.forEach(function(t){a[t]=n[t]}),o&&(a.options.components[o]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=T({},a.options),i[r]=a,a}}function hn(t){return t&&(t.Ctor.options.name||t.tag)}function vn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!f(t)&&t.test(e)}function mn(t,e){var n=t.cache,r=t.keys,i=t._vnode;for(var o in n){var a=n[o];if(a){var s=hn(a.componentOptions);s&&!e(s)&&gn(n,o,r,i)}}}function gn(t,e,n,r){var i=t[e];!i||r&&i.tag===r.tag||i.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=cn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r,n._parentElm=e._parentElm,n._refElm=e._refElm;var i=r.componentOptions;n.propsData=i.propsData,n._parentListeners=i.listeners,n._renderChildren=i.children,n._componentTag=i.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=jt(ln(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&me(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,i=n&&n.context;t.$slots=ge(e._renderChildren,i),t.$scopedSlots=r,t._c=function(e,n,r,i){return un(t,e,n,r,i,!1)},t.$createElement=function(e,n,r,i){return un(t,e,n,r,i,!0)};var o=n&&n.data;Et(t,"$attrs",o&&o.attrs||r,null,!0),Et(t,"$listeners",e._parentListeners||r,null,!0)}(e),Oe(e,"beforeCreate"),function(t){var e=Be(t.$options.inject,t);e&&(xt(!1),Object.keys(e).forEach(function(n){Et(t,n,e[n])}),xt(!0))}(e),Le(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),Oe(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(pn),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Tt,t.prototype.$delete=At,t.prototype.$watch=function(t,e,n){if(l(e))return Re(this,t,e,n);(n=n||{}).user=!0;var r=new Pe(this,t,e,n);return n.immediate&&e.call(this,r.value),function(){r.teardown()}}}(pn),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){if(Array.isArray(t))for(var r=0,i=t.length;r<i;r++)this.$on(t[r],n);else(this._events[t]||(this._events[t]=[])).push(n),e.test(t)&&(this._hasHookEvent=!0);return this},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,i=t.length;r<i;r++)this.$off(t[r],e);return n}var o=n._events[t];if(!o)return n;if(!e)return n._events[t]=null,n;if(e)for(var a,s=o.length;s--;)if((a=o[s])===e||a.fn===e){o.splice(s,1);break}return n},t.prototype.$emit=function(t){var e=this._events[t];if(e){e=e.length>1?E(e):e;for(var n=E(arguments,1),r=0,i=e.length;r<i;r++)try{e[r].apply(this,n)}catch(e){Vt(e,this,'event handler for "'+t+'"')}}return this}}(pn),function(t){t.prototype._update=function(t,e){var n=this;n._isMounted&&Oe(n,"beforeUpdate");var r=n.$el,i=n._vnode,o=be;be=n,n._vnode=t,i?n.$el=n.__patch__(i,t):(n.$el=n.__patch__(n.$el,t,e,!1,n.$options._parentElm,n.$options._refElm),n.$options._parentElm=n.$options._refElm=null),be=o,r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){Oe(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();for(var n=t._watchers.length;n--;)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),Oe(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(pn),function(t){Ze(t.prototype),t.prototype.$nextTick=function(t){return te(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,i=n.render,o=n._parentVnode;o&&(e.$scopedSlots=o.data.scopedSlots||r),e.$vnode=o;try{t=i.call(e._renderProxy,e.$createElement)}catch(n){Vt(n,e,"render"),t=e._vnode}return t instanceof dt||(t=vt()),t.parent=o,t}}(pn);var yn=[String,RegExp,Array],_n={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:yn,exclude:yn,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)gn(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",function(e){mn(t,function(t){return vn(e,t)})}),this.$watch("exclude",function(e){mn(t,function(t){return!vn(e,t)})})},render:function(){var t=this.$slots.default,e=de(t),n=e&&e.componentOptions;if(n){var r=hn(n),i=this.include,o=this.exclude;if(i&&(!r||!vn(i,r))||o&&r&&vn(o,r))return e;var a=this.cache,s=this.keys,u=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;a[u]?(e.componentInstance=a[u].componentInstance,g(s,u),s.push(u)):(a[u]=e,s.push(u),this.max&&s.length>parseInt(this.max)&&gn(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return R}};Object.defineProperty(t,"config",e),t.util={warn:st,extend:T,mergeOptions:jt,defineReactive:Et},t.set=Tt,t.delete=At,t.nextTick=te,t.options=Object.create(null),I.forEach(function(e){t.options[e+"s"]=Object.create(null)}),t.options._base=t,T(t.options.components,_n),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=E(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=jt(this.options,t),this}}(t),dn(t),function(t){I.forEach(function(e){t[e]=function(t,n){return n?("component"===e&&l(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}})}(t)}(pn),Object.defineProperty(pn.prototype,"$isServer",{get:nt}),Object.defineProperty(pn.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(pn,"FunctionalRenderContext",{value:Qe}),pn.version="2.5.17";var bn=v("style,class"),wn=v("input,textarea,option,select,progress"),xn=v("contenteditable,draggable,spellcheck"),On=v("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Sn="http://www.w3.org/1999/xlink",Cn=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},kn=function(t){return Cn(t)?t.slice(6,t.length):""},En=function(t){return null==t||!1===t};function Tn(t){for(var e=t.data,n=t,r=t;o(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=An(r.data,e));for(;o(n=n.parent);)n&&n.data&&(e=An(e,n.data));return function(t,e){if(o(t)||o(e))return Dn(t,Mn(e));return""}(e.staticClass,e.class)}function An(t,e){return{staticClass:Dn(t.staticClass,e.staticClass),class:o(t.class)?[t.class,e.class]:e.class}}function Dn(t,e){return t?e?t+" "+e:t:e||""}function Mn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,i=t.length;r<i;r++)o(e=Mn(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):u(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Pn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Nn=v("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),$n=v("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Ln=function(t){return Nn(t)||$n(t)};var jn=Object.create(null);var In=v("text,number,password,search,email,tel,url");var Fn=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(Pn[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),Rn={create:function(t,e){Bn(e)},update:function(t,e){t.data.ref!==e.data.ref&&(Bn(t,!0),Bn(e))},destroy:function(t){Bn(t,!0)}};function Bn(t,e){var n=t.data.ref;if(o(n)){var r=t.context,i=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],i):a[n]===i&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(i)<0&&a[n].push(i):a[n]=[i]:a[n]=i}}var Un=new dt("",{},[]),Vn=["create","activate","update","remove","destroy"];function Hn(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&o(t.data)===o(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=o(n=t.data)&&o(n=n.attrs)&&n.type,i=o(n=e.data)&&o(n=n.attrs)&&n.type;return r===i||In(r)&&In(i)}(t,e)||a(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&i(e.asyncFactory.error))}function zn(t,e,n){var r,i,a={};for(r=e;r<=n;++r)o(i=t[r].key)&&(a[i]=r);return a}var Wn={create:Yn,update:Yn,destroy:function(t){Yn(t,Un)}};function Yn(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,i,o=t===Un,a=e===Un,s=qn(t.data.directives,t.context),u=qn(e.data.directives,e.context),c=[],l=[];for(n in u)r=s[n],i=u[n],r?(i.oldValue=r.value,Jn(i,"update",e,t),i.def&&i.def.componentUpdated&&l.push(i)):(Jn(i,"bind",e,t),i.def&&i.def.inserted&&c.push(i));if(c.length){var f=function(){for(var n=0;n<c.length;n++)Jn(c[n],"inserted",e,t)};o?se(e,"insert",f):f()}l.length&&se(e,"postpatch",function(){for(var n=0;n<l.length;n++)Jn(l[n],"componentUpdated",e,t)});if(!o)for(n in s)u[n]||Jn(s[n],"unbind",t,t,a)}(t,e)}var Gn=Object.create(null);function qn(t,e){var n,r,i=Object.create(null);if(!t)return i;for(n=0;n<t.length;n++)(r=t[n]).modifiers||(r.modifiers=Gn),i[Kn(r)]=r,r.def=It(e.$options,"directives",r.name);return i}function Kn(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function Jn(t,e,n,r,i){var o=t.def&&t.def[e];if(o)try{o(n.elm,t,n,r,i)}catch(r){Vt(r,n.context,"directive "+t.name+" "+e+" hook")}}var Xn=[Rn,Wn];function Zn(t,e){var n=e.componentOptions;if(!(o(n)&&!1===n.Ctor.options.inheritAttrs||i(t.data.attrs)&&i(e.data.attrs))){var r,a,s=e.elm,u=t.data.attrs||{},c=e.data.attrs||{};for(r in o(c.__ob__)&&(c=e.data.attrs=T({},c)),c)a=c[r],u[r]!==a&&Qn(s,r,a);for(r in(K||X)&&c.value!==u.value&&Qn(s,"value",c.value),u)i(c[r])&&(Cn(r)?s.removeAttributeNS(Sn,kn(r)):xn(r)||s.removeAttribute(r))}}function Qn(t,e,n){t.tagName.indexOf("-")>-1?tr(t,e,n):On(e)?En(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):xn(e)?t.setAttribute(e,En(n)||"false"===n?"false":"true"):Cn(e)?En(n)?t.removeAttributeNS(Sn,kn(e)):t.setAttributeNS(Sn,e,n):tr(t,e,n)}function tr(t,e,n){if(En(n))t.removeAttribute(e);else{if(K&&!J&&"TEXTAREA"===t.tagName&&"placeholder"===e&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var er={create:Zn,update:Zn};function nr(t,e){var n=e.elm,r=e.data,a=t.data;if(!(i(r.staticClass)&&i(r.class)&&(i(a)||i(a.staticClass)&&i(a.class)))){var s=Tn(e),u=n._transitionClasses;o(u)&&(s=Dn(s,Mn(u))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var rr,ir={create:nr,update:nr},or="__r",ar="__c";function sr(t,e,n,r,i){e=function(t){return t._withTask||(t._withTask=function(){Jt=!0;var e=t.apply(null,arguments);return Jt=!1,e})}(e),n&&(e=function(t,e,n){var r=rr;return function i(){null!==t.apply(null,arguments)&&ur(e,i,n,r)}}(e,t,r)),rr.addEventListener(t,e,tt?{capture:r,passive:i}:r)}function ur(t,e,n,r){(r||rr).removeEventListener(t,e._withTask||e,n)}function cr(t,e){if(!i(t.data.on)||!i(e.data.on)){var n=e.data.on||{},r=t.data.on||{};rr=e.elm,function(t){if(o(t[or])){var e=K?"change":"input";t[e]=[].concat(t[or],t[e]||[]),delete t[or]}o(t[ar])&&(t.change=[].concat(t[ar],t.change||[]),delete t[ar])}(n),ae(n,r,sr,ur,e.context),rr=void 0}}var lr={create:cr,update:cr};function fr(t,e){if(!i(t.data.domProps)||!i(e.data.domProps)){var n,r,a=e.elm,s=t.data.domProps||{},u=e.data.domProps||{};for(n in o(u.__ob__)&&(u=e.data.domProps=T({},u)),s)i(u[n])&&(a[n]="");for(n in u){if(r=u[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n){a._value=r;var c=i(r)?"":String(r);pr(a,c)&&(a.value=c)}else a[n]=r}}}function pr(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(o(r)){if(r.lazy)return!1;if(r.number)return h(n)!==h(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var dr={create:fr,update:fr},hr=b(function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach(function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}}),e});function vr(t){var e=mr(t.style);return t.staticStyle?T(t.staticStyle,e):e}function mr(t){return Array.isArray(t)?A(t):"string"==typeof t?hr(t):t}var gr,yr=/^--/,_r=/\s*!important$/,br=function(t,e,n){if(yr.test(e))t.style.setProperty(e,n);else if(_r.test(n))t.style.setProperty(e,n.replace(_r,""),"important");else{var r=xr(e);if(Array.isArray(n))for(var i=0,o=n.length;i<o;i++)t.style[r]=n[i];else t.style[r]=n}},wr=["Webkit","Moz","ms"],xr=b(function(t){if(gr=gr||document.createElement("div").style,"filter"!==(t=x(t))&&t in gr)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<wr.length;n++){var r=wr[n]+e;if(r in gr)return r}});function Or(t,e){var n=e.data,r=t.data;if(!(i(n.staticStyle)&&i(n.style)&&i(r.staticStyle)&&i(r.style))){var a,s,u=e.elm,c=r.staticStyle,l=r.normalizedStyle||r.style||{},f=c||l,p=mr(e.data.style)||{};e.data.normalizedStyle=o(p.__ob__)?T({},p):p;var d=function(t,e){var n,r={};if(e)for(var i=t;i.componentInstance;)(i=i.componentInstance._vnode)&&i.data&&(n=vr(i.data))&&T(r,n);(n=vr(t.data))&&T(r,n);for(var o=t;o=o.parent;)o.data&&(n=vr(o.data))&&T(r,n);return r}(e,!0);for(s in f)i(d[s])&&br(u,s,"");for(s in d)(a=d[s])!==f[s]&&br(u,s,null==a?"":a)}}var Sr={create:Or,update:Or};function Cr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.add(e)}):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function kr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(/\s+/).forEach(function(e){return t.classList.remove(e)}):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function Er(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&T(e,Tr(t.name||"v")),T(e,t),e}return"string"==typeof t?Tr(t):void 0}}var Tr=b(function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}}),Ar=W&&!J,Dr="transition",Mr="animation",Pr="transition",Nr="transitionend",$r="animation",Lr="animationend";Ar&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Pr="WebkitTransition",Nr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&($r="WebkitAnimation",Lr="webkitAnimationEnd"));var jr=W?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function Ir(t){jr(function(){jr(t)})}function Fr(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Cr(t,e))}function Rr(t,e){t._transitionClasses&&g(t._transitionClasses,e),kr(t,e)}function Br(t,e,n){var r=Vr(t,e),i=r.type,o=r.timeout,a=r.propCount;if(!i)return n();var s=i===Dr?Nr:Lr,u=0,c=function(){t.removeEventListener(s,l),n()},l=function(e){e.target===t&&++u>=a&&c()};setTimeout(function(){u<a&&c()},o+1),t.addEventListener(s,l)}var Ur=/\b(transform|all)(,|$)/;function Vr(t,e){var n,r=window.getComputedStyle(t),i=r[Pr+"Delay"].split(", "),o=r[Pr+"Duration"].split(", "),a=Hr(i,o),s=r[$r+"Delay"].split(", "),u=r[$r+"Duration"].split(", "),c=Hr(s,u),l=0,f=0;return e===Dr?a>0&&(n=Dr,l=a,f=o.length):e===Mr?c>0&&(n=Mr,l=c,f=u.length):f=(n=(l=Math.max(a,c))>0?a>c?Dr:Mr:null)?n===Dr?o.length:u.length:0,{type:n,timeout:l,propCount:f,hasTransform:n===Dr&&Ur.test(r[Pr+"Property"])}}function Hr(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map(function(e,n){return zr(e)+zr(t[n])}))}function zr(t){return 1e3*Number(t.slice(0,-1))}function Wr(t,e){var n=t.elm;o(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=Er(t.data.transition);if(!i(r)&&!o(n._enterCb)&&1===n.nodeType){for(var a=r.css,s=r.type,c=r.enterClass,l=r.enterToClass,f=r.enterActiveClass,p=r.appearClass,d=r.appearToClass,v=r.appearActiveClass,m=r.beforeEnter,g=r.enter,y=r.afterEnter,_=r.enterCancelled,b=r.beforeAppear,w=r.appear,x=r.afterAppear,O=r.appearCancelled,S=r.duration,C=be,k=be.$vnode;k&&k.parent;)C=(k=k.parent).context;var E=!C._isMounted||!t.isRootInsert;if(!E||w||""===w){var T=E&&p?p:c,A=E&&v?v:f,D=E&&d?d:l,M=E&&b||m,P=E&&"function"==typeof w?w:g,N=E&&x||y,$=E&&O||_,j=h(u(S)?S.enter:S);0;var I=!1!==a&&!J,F=qr(P),R=n._enterCb=L(function(){I&&(Rr(n,D),Rr(n,A)),R.cancelled?(I&&Rr(n,T),$&&$(n)):N&&N(n),n._enterCb=null});t.data.show||se(t,"insert",function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),P&&P(n,R)}),M&&M(n),I&&(Fr(n,T),Fr(n,A),Ir(function(){Rr(n,T),R.cancelled||(Fr(n,D),F||(Gr(j)?setTimeout(R,j):Br(n,s,R)))})),t.data.show&&(e&&e(),P&&P(n,R)),I||F||R()}}}function Yr(t,e){var n=t.elm;o(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=Er(t.data.transition);if(i(r)||1!==n.nodeType)return e();if(!o(n._leaveCb)){var a=r.css,s=r.type,c=r.leaveClass,l=r.leaveToClass,f=r.leaveActiveClass,p=r.beforeLeave,d=r.leave,v=r.afterLeave,m=r.leaveCancelled,g=r.delayLeave,y=r.duration,_=!1!==a&&!J,b=qr(d),w=h(u(y)?y.leave:y);0;var x=n._leaveCb=L(function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),_&&(Rr(n,l),Rr(n,f)),x.cancelled?(_&&Rr(n,c),m&&m(n)):(e(),v&&v(n)),n._leaveCb=null});g?g(O):O()}function O(){x.cancelled||(t.data.show||((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),_&&(Fr(n,c),Fr(n,f),Ir(function(){Rr(n,c),x.cancelled||(Fr(n,l),b||(Gr(w)?setTimeout(x,w):Br(n,s,x)))})),d&&d(n,x),_||b||x())}}function Gr(t){return"number"==typeof t&&!isNaN(t)}function qr(t){if(i(t))return!1;var e=t.fns;return o(e)?qr(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function Kr(t,e){!0!==e.data.show&&Wr(e)}var Jr=function(t){var e,n,r={},u=t.modules,c=t.nodeOps;for(e=0;e<Vn.length;++e)for(r[Vn[e]]=[],n=0;n<u.length;++n)o(u[n][Vn[e]])&&r[Vn[e]].push(u[n][Vn[e]]);function l(t){var e=c.parentNode(t);o(e)&&c.removeChild(e,t)}function f(t,e,n,i,s,u,l){if(o(t.elm)&&o(u)&&(t=u[l]=gt(t)),t.isRootInsert=!s,!function(t,e,n,i){var s=t.data;if(o(s)){var u=o(t.componentInstance)&&s.keepAlive;if(o(s=s.hook)&&o(s=s.init)&&s(t,!1,n,i),o(t.componentInstance))return p(t,e),a(u)&&function(t,e,n,i){for(var a,s=t;s.componentInstance;)if(s=s.componentInstance._vnode,o(a=s.data)&&o(a=a.transition)){for(a=0;a<r.activate.length;++a)r.activate[a](Un,s);e.push(s);break}d(n,t.elm,i)}(t,e,n,i),!0}}(t,e,n,i)){var f=t.data,v=t.children,m=t.tag;o(m)?(t.elm=t.ns?c.createElementNS(t.ns,m):c.createElement(m,t),y(t),h(t,v,e),o(f)&&g(t,e),d(n,t.elm,i)):a(t.isComment)?(t.elm=c.createComment(t.text),d(n,t.elm,i)):(t.elm=c.createTextNode(t.text),d(n,t.elm,i))}}function p(t,e){o(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,m(t)?(g(t,e),y(t)):(Bn(t),e.push(t))}function d(t,e,n){o(t)&&(o(n)?n.parentNode===t&&c.insertBefore(t,e,n):c.appendChild(t,e))}function h(t,e,n){if(Array.isArray(e))for(var r=0;r<e.length;++r)f(e[r],n,t.elm,null,!0,e,r);else s(t.text)&&c.appendChild(t.elm,c.createTextNode(String(t.text)))}function m(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return o(t.tag)}function g(t,n){for(var i=0;i<r.create.length;++i)r.create[i](Un,t);o(e=t.data.hook)&&(o(e.create)&&e.create(Un,t),o(e.insert)&&n.push(t))}function y(t){var e;if(o(e=t.fnScopeId))c.setStyleScope(t.elm,e);else for(var n=t;n;)o(e=n.context)&&o(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e),n=n.parent;o(e=be)&&e!==t.context&&e!==t.fnContext&&o(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e)}function _(t,e,n,r,i,o){for(;r<=i;++r)f(n[r],o,t,e,!1,n,r)}function b(t){var e,n,i=t.data;if(o(i))for(o(e=i.hook)&&o(e=e.destroy)&&e(t),e=0;e<r.destroy.length;++e)r.destroy[e](t);if(o(e=t.children))for(n=0;n<t.children.length;++n)b(t.children[n])}function w(t,e,n,r){for(;n<=r;++n){var i=e[n];o(i)&&(o(i.tag)?(x(i),b(i)):l(i.elm))}}function x(t,e){if(o(e)||o(t.data)){var n,i=r.remove.length+1;for(o(e)?e.listeners+=i:e=function(t,e){function n(){0==--n.listeners&&l(t)}return n.listeners=e,n}(t.elm,i),o(n=t.componentInstance)&&o(n=n._vnode)&&o(n.data)&&x(n,e),n=0;n<r.remove.length;++n)r.remove[n](t,e);o(n=t.data.hook)&&o(n=n.remove)?n(t,e):e()}else l(t.elm)}function O(t,e,n,r){for(var i=n;i<r;i++){var a=e[i];if(o(a)&&Hn(t,a))return i}}function S(t,e,n,s){if(t!==e){var u=e.elm=t.elm;if(a(t.isAsyncPlaceholder))o(e.asyncFactory.resolved)?E(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(a(e.isStatic)&&a(t.isStatic)&&e.key===t.key&&(a(e.isCloned)||a(e.isOnce)))e.componentInstance=t.componentInstance;else{var l,p=e.data;o(p)&&o(l=p.hook)&&o(l=l.prepatch)&&l(t,e);var d=t.children,h=e.children;if(o(p)&&m(e)){for(l=0;l<r.update.length;++l)r.update[l](t,e);o(l=p.hook)&&o(l=l.update)&&l(t,e)}i(e.text)?o(d)&&o(h)?d!==h&&function(t,e,n,r,a){for(var s,u,l,p=0,d=0,h=e.length-1,v=e[0],m=e[h],g=n.length-1,y=n[0],b=n[g],x=!a;p<=h&&d<=g;)i(v)?v=e[++p]:i(m)?m=e[--h]:Hn(v,y)?(S(v,y,r),v=e[++p],y=n[++d]):Hn(m,b)?(S(m,b,r),m=e[--h],b=n[--g]):Hn(v,b)?(S(v,b,r),x&&c.insertBefore(t,v.elm,c.nextSibling(m.elm)),v=e[++p],b=n[--g]):Hn(m,y)?(S(m,y,r),x&&c.insertBefore(t,m.elm,v.elm),m=e[--h],y=n[++d]):(i(s)&&(s=zn(e,p,h)),i(u=o(y.key)?s[y.key]:O(y,e,p,h))?f(y,r,t,v.elm,!1,n,d):Hn(l=e[u],y)?(S(l,y,r),e[u]=void 0,x&&c.insertBefore(t,l.elm,v.elm)):f(y,r,t,v.elm,!1,n,d),y=n[++d]);p>h?_(t,i(n[g+1])?null:n[g+1].elm,n,d,g,r):d>g&&w(0,e,p,h)}(u,d,h,n,s):o(h)?(o(t.text)&&c.setTextContent(u,""),_(u,null,h,0,h.length-1,n)):o(d)?w(0,d,0,d.length-1):o(t.text)&&c.setTextContent(u,""):t.text!==e.text&&c.setTextContent(u,e.text),o(p)&&o(l=p.hook)&&o(l=l.postpatch)&&l(t,e)}}}function C(t,e,n){if(a(n)&&o(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var k=v("attrs,class,staticClass,staticStyle,key");function E(t,e,n,r){var i,s=e.tag,u=e.data,c=e.children;if(r=r||u&&u.pre,e.elm=t,a(e.isComment)&&o(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(o(u)&&(o(i=u.hook)&&o(i=i.init)&&i(e,!0),o(i=e.componentInstance)))return p(e,n),!0;if(o(s)){if(o(c))if(t.hasChildNodes())if(o(i=u)&&o(i=i.domProps)&&o(i=i.innerHTML)){if(i!==t.innerHTML)return!1}else{for(var l=!0,f=t.firstChild,d=0;d<c.length;d++){if(!f||!E(f,c[d],n,r)){l=!1;break}f=f.nextSibling}if(!l||f)return!1}else h(e,c,n);if(o(u)){var v=!1;for(var m in u)if(!k(m)){v=!0,g(e,n);break}!v&&u.class&&ne(u.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,s,u,l){if(!i(e)){var p=!1,d=[];if(i(t))p=!0,f(e,d,u,l);else{var h=o(t.nodeType);if(!h&&Hn(t,e))S(t,e,d,s);else{if(h){if(1===t.nodeType&&t.hasAttribute(j)&&(t.removeAttribute(j),n=!0),a(n)&&E(t,e,d))return C(e,d,!0),t;t=function(t){return new dt(c.tagName(t).toLowerCase(),{},[],void 0,t)}(t)}var v=t.elm,g=c.parentNode(v);if(f(e,d,v._leaveCb?null:g,c.nextSibling(v)),o(e.parent))for(var y=e.parent,_=m(e);y;){for(var x=0;x<r.destroy.length;++x)r.destroy[x](y);if(y.elm=e.elm,_){for(var O=0;O<r.create.length;++O)r.create[O](Un,y);var k=y.data.hook.insert;if(k.merged)for(var T=1;T<k.fns.length;T++)k.fns[T]()}else Bn(y);y=y.parent}o(g)?w(0,[t],0,0):o(t.tag)&&b(t)}}return C(e,d,p),e.elm}o(t)&&b(t)}}({nodeOps:Fn,modules:[er,ir,lr,dr,Sr,W?{create:Kr,activate:Kr,remove:function(t,e){!0!==t.data.show?Yr(t,e):e()}}:{}].concat(Xn)});J&&document.addEventListener("selectionchange",function(){var t=document.activeElement;t&&t.vmodel&&ii(t,"input")});var Xr={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?se(n,"postpatch",function(){Xr.componentUpdated(t,e,n)}):Zr(t,e,n.context),t._vOptions=[].map.call(t.options,ei)):("textarea"===n.tag||In(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",ni),t.addEventListener("compositionend",ri),t.addEventListener("change",ri),J&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){Zr(t,e,n.context);var r=t._vOptions,i=t._vOptions=[].map.call(t.options,ei);if(i.some(function(t,e){return!N(t,r[e])}))(t.multiple?e.value.some(function(t){return ti(t,i)}):e.value!==e.oldValue&&ti(e.value,i))&&ii(t,"change")}}};function Zr(t,e,n){Qr(t,e,n),(K||X)&&setTimeout(function(){Qr(t,e,n)},0)}function Qr(t,e,n){var r=e.value,i=t.multiple;if(!i||Array.isArray(r)){for(var o,a,s=0,u=t.options.length;s<u;s++)if(a=t.options[s],i)o=$(r,ei(a))>-1,a.selected!==o&&(a.selected=o);else if(N(ei(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));i||(t.selectedIndex=-1)}}function ti(t,e){return e.every(function(e){return!N(e,t)})}function ei(t){return"_value"in t?t._value:t.value}function ni(t){t.target.composing=!0}function ri(t){t.target.composing&&(t.target.composing=!1,ii(t.target,"input"))}function ii(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function oi(t){return!t.componentInstance||t.data&&t.data.transition?t:oi(t.componentInstance._vnode)}var ai={model:Xr,show:{bind:function(t,e,n){var r=e.value,i=(n=oi(n)).data&&n.data.transition,o=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&i?(n.data.show=!0,Wr(n,function(){t.style.display=o})):t.style.display=r?o:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=oi(n)).data&&n.data.transition?(n.data.show=!0,r?Wr(n,function(){t.style.display=t.__vOriginalDisplay}):Yr(n,function(){t.style.display="none"})):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,i){i||(t.style.display=t.__vOriginalDisplay)}}},si={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function ui(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?ui(de(e.children)):t}function ci(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var i=n._parentListeners;for(var o in i)e[x(o)]=i[o];return e}function li(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var fi={name:"transition",props:si,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(function(t){return t.tag||pe(t)})).length){0;var r=this.mode;0;var i=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return i;var o=ui(i);if(!o)return i;if(this._leaving)return li(t,i);var a="__transition-"+this._uid+"-";o.key=null==o.key?o.isComment?a+"comment":a+o.tag:s(o.key)?0===String(o.key).indexOf(a)?o.key:a+o.key:o.key;var u=(o.data||(o.data={})).transition=ci(this),c=this._vnode,l=ui(c);if(o.data.directives&&o.data.directives.some(function(t){return"show"===t.name})&&(o.data.show=!0),l&&l.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(o,l)&&!pe(l)&&(!l.componentInstance||!l.componentInstance._vnode.isComment)){var f=l.data.transition=T({},u);if("out-in"===r)return this._leaving=!0,se(f,"afterLeave",function(){e._leaving=!1,e.$forceUpdate()}),li(t,i);if("in-out"===r){if(pe(o))return c;var p,d=function(){p()};se(u,"afterEnter",d),se(u,"enterCancelled",d),se(f,"delayLeave",function(t){p=t})}}return i}}},pi=T({tag:String,moveClass:String},si);function di(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function hi(t){t.data.newPos=t.elm.getBoundingClientRect()}function vi(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,i=e.top-n.top;if(r||i){t.data.moved=!0;var o=t.elm.style;o.transform=o.WebkitTransform="translate("+r+"px,"+i+"px)",o.transitionDuration="0s"}}delete pi.mode;var mi={Transition:fi,TransitionGroup:{props:pi,render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,i=this.$slots.default||[],o=this.children=[],a=ci(this),s=0;s<i.length;s++){var u=i[s];if(u.tag)if(null!=u.key&&0!==String(u.key).indexOf("__vlist"))o.push(u),n[u.key]=u,(u.data||(u.data={})).transition=a;else;}if(r){for(var c=[],l=[],f=0;f<r.length;f++){var p=r[f];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?c.push(p):l.push(p)}this.kept=t(e,null,c),this.removed=l}return t(e,null,o)},beforeUpdate:function(){this.__patch__(this._vnode,this.kept,!1,!0),this._vnode=this.kept},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(di),t.forEach(hi),t.forEach(vi),this._reflow=document.body.offsetHeight,t.forEach(function(t){if(t.data.moved){var n=t.elm,r=n.style;Fr(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Nr,n._moveCb=function t(r){r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Nr,t),n._moveCb=null,Rr(n,e))})}}))},methods:{hasMove:function(t,e){if(!Ar)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach(function(t){kr(n,t)}),Cr(n,e),n.style.display="none",this.$el.appendChild(n);var r=Vr(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}}};pn.config.mustUseProp=function(t,e,n){return"value"===n&&wn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},pn.config.isReservedTag=Ln,pn.config.isReservedAttr=bn,pn.config.getTagNamespace=function(t){return $n(t)?"svg":"math"===t?"math":void 0},pn.config.isUnknownElement=function(t){if(!W)return!0;if(Ln(t))return!1;if(t=t.toLowerCase(),null!=jn[t])return jn[t];var e=document.createElement(t);return t.indexOf("-")>-1?jn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:jn[t]=/HTMLUnknownElement/.test(e.toString())},T(pn.options.directives,ai),T(pn.options.components,mi),pn.prototype.__patch__=W?Jr:D,pn.prototype.$mount=function(t,e){return function(t,e,n){return t.$el=e,t.$options.render||(t.$options.render=vt),Oe(t,"beforeMount"),new Pe(t,function(){t._update(t._render(),n)},D,null,!0),n=!1,null==t.$vnode&&(t._isMounted=!0,Oe(t,"mounted")),t}(this,t=t&&W?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},W&&setTimeout(function(){R.devtools&&rt&&rt.emit("init",pn)},0),e.a=pn}).call(this,n(0),n(6).setImmediate)},function(t,e,n){window,t.exports=function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="/dist/",n(n.s=327)}([function(t,e,n){var r=n(2),i=n(8),o=n(13),a=n(10),s=n(21),u=function(t,e,n){var c,l,f,p,d=t&u.F,h=t&u.G,v=t&u.S,m=t&u.P,g=t&u.B,y=h?r:v?r[e]||(r[e]={}):(r[e]||{}).prototype,_=h?i:i[e]||(i[e]={}),b=_.prototype||(_.prototype={});for(c in h&&(n=e),n)f=((l=!d&&y&&void 0!==y[c])?y:n)[c],p=g&&l?s(f,r):m&&"function"==typeof f?s(Function.call,f):f,y&&a(y,c,f,t&u.U),_[c]!=f&&o(_,c,p),m&&b[c]!=f&&(b[c]=f)};r.core=i,u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(3);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e,n){var r=n(66)("wks"),i=n(31),o=n(2).Symbol,a="function"==typeof o;(t.exports=function(t){return r[t]||(r[t]=a&&o[t]||(a?o:i)("Symbol."+t))}).store=r},function(t,e,n){var r=n(4),i=n(92),o=n(27),a=Object.defineProperty;e.f=n(7)?Object.defineProperty:function(t,e,n){if(r(t),e=o(e,!0),r(n),i)try{return a(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){t.exports=!n(1)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e,n){var r=n(25),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},function(t,e,n){var r=n(2),i=n(13),o=n(12),a=n(31)("src"),s=Function.toString,u=(""+s).split("toString");n(8).inspectSource=function(t){return s.call(t)},(t.exports=function(t,e,n,s){var c="function"==typeof n;c&&(o(n,"name")||i(n,"name",e)),t[e]!==n&&(c&&(o(n,a)||i(n,a,t[e]?""+t[e]:u.join(String(e)))),t===r?t[e]=n:s?t[e]?t[e]=n:i(t,e,n):(delete t[e],i(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||s.call(this)})},function(t,e,n){var r=n(0),i=n(1),o=n(24),a=/"/g,s=function(t,e,n,r){var i=String(o(t)),s="<"+e;return""!==n&&(s+=" "+n+'="'+String(r).replace(a,""")+'"'),s+">"+i+"</"+e+">"};t.exports=function(t,e){var n={};n[t]=e(s),r(r.P+r.F*i(function(){var e=""[t]('"');return e!==e.toLowerCase()||e.split('"').length>3}),"String",n)}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(6),i=n(30);t.exports=n(7)?function(t,e,n){return r.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(45),i=n(24);t.exports=function(t){return r(i(t))}},function(t,e,n){var r=n(24);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";var r=n(121),i=n(122),o=Object.prototype.toString;function a(t){return"[object Array]"===o.call(t)}function s(t){return null!==t&&"object"==typeof t}function u(t){return"[object Function]"===o.call(t)}function c(t,e){if(null!==t&&void 0!==t)if("object"!=typeof t&&(t=[t]),a(t))for(var n=0,r=t.length;n<r;n++)e.call(null,t[n],n,t);else for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.call(null,t[i],i,t)}t.exports={isArray:a,isArrayBuffer:function(t){return"[object ArrayBuffer]"===o.call(t)},isBuffer:i,isFormData:function(t){return"undefined"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return"undefined"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return"string"==typeof t},isNumber:function(t){return"number"==typeof t},isObject:s,isUndefined:function(t){return void 0===t},isDate:function(t){return"[object Date]"===o.call(t)},isFile:function(t){return"[object File]"===o.call(t)},isBlob:function(t){return"[object Blob]"===o.call(t)},isFunction:u,isStream:function(t){return s(t)&&u(t.pipe)},isURLSearchParams:function(t){return"undefined"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return("undefined"==typeof navigator||"ReactNative"!==navigator.product)&&"undefined"!=typeof window&&"undefined"!=typeof document},forEach:c,merge:function t(){var e={};function n(n,r){"object"==typeof e[r]&&"object"==typeof n?e[r]=t(e[r],n):e[r]=n}for(var r=0,i=arguments.length;r<i;r++)c(arguments[r],n);return e},extend:function(t,e,n){return c(e,function(e,i){t[i]=n&&"function"==typeof e?r(e,n):e}),t},trim:function(t){return t.replace(/^\s*/,"").replace(/\s*$/,"")}}},function(t,e,n){"use strict";var r=n(1);t.exports=function(t,e){return!!t&&r(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e,n){var r=n(46),i=n(30),o=n(14),a=n(27),s=n(12),u=n(92),c=Object.getOwnPropertyDescriptor;e.f=n(7)?c:function(t,e){if(t=o(t),e=a(e,!0),u)try{return c(t,e)}catch(t){}if(s(t,e))return i(!r.f.call(t,e),t[e])}},function(t,e,n){var r=n(0),i=n(8),o=n(1);t.exports=function(t,e){var n=(i.Object||{})[t]||Object[t],a={};a[t]=e(n),r(r.S+r.F*o(function(){n(1)}),"Object",a)}},function(t,e,n){var r=n(21),i=n(45),o=n(15),a=n(9),s=n(224);t.exports=function(t,e){var n=1==t,u=2==t,c=3==t,l=4==t,f=6==t,p=5==t||f,d=e||s;return function(e,s,h){for(var v,m,g=o(e),y=i(g),_=r(s,h,3),b=a(y.length),w=0,x=n?d(e,b):u?d(e,0):void 0;b>w;w++)if((p||w in y)&&(m=_(v=y[w],w,g),t))if(n)x[w]=m;else if(m)switch(t){case 3:return!0;case 5:return v;case 6:return w;case 2:x.push(v)}else if(l)return!1;return f?-1:c||l?l:x}}},function(t,e,n){var r=n(22);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,i){return t.call(e,n,r,i)}}return function(){return t.apply(e,arguments)}}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){"use strict";if(n(7)){var r=n(32),i=n(2),o=n(1),a=n(0),s=n(60),u=n(89),c=n(21),l=n(42),f=n(30),p=n(13),d=n(43),h=n(25),v=n(9),m=n(117),g=n(34),y=n(27),_=n(12),b=n(52),w=n(3),x=n(15),O=n(82),S=n(35),C=n(37),k=n(36).f,E=n(84),T=n(31),A=n(5),D=n(20),M=n(50),P=n(57),N=n(86),$=n(39),L=n(54),j=n(41),I=n(85),F=n(109),R=n(6),B=n(18),U=R.f,V=B.f,H=i.RangeError,z=i.TypeError,W=i.Uint8Array,Y=Array.prototype,G=u.ArrayBuffer,q=u.DataView,K=D(0),J=D(2),X=D(3),Z=D(4),Q=D(5),tt=D(6),et=M(!0),nt=M(!1),rt=N.values,it=N.keys,ot=N.entries,at=Y.lastIndexOf,st=Y.reduce,ut=Y.reduceRight,ct=Y.join,lt=Y.sort,ft=Y.slice,pt=Y.toString,dt=Y.toLocaleString,ht=A("iterator"),vt=A("toStringTag"),mt=T("typed_constructor"),gt=T("def_constructor"),yt=s.CONSTR,_t=s.TYPED,bt=s.VIEW,wt=D(1,function(t,e){return kt(P(t,t[gt]),e)}),xt=o(function(){return 1===new W(new Uint16Array([1]).buffer)[0]}),Ot=!!W&&!!W.prototype.set&&o(function(){new W(1).set({})}),St=function(t,e){var n=h(t);if(n<0||n%e)throw H("Wrong offset!");return n},Ct=function(t){if(w(t)&&_t in t)return t;throw z(t+" is not a typed array!")},kt=function(t,e){if(!(w(t)&&mt in t))throw z("It is not a typed array constructor!");return new t(e)},Et=function(t,e){return Tt(P(t,t[gt]),e)},Tt=function(t,e){for(var n=0,r=e.length,i=kt(t,r);r>n;)i[n]=e[n++];return i},At=function(t,e,n){U(t,e,{get:function(){return this._d[n]}})},Dt=function(t){var e,n,r,i,o,a,s=x(t),u=arguments.length,l=u>1?arguments[1]:void 0,f=void 0!==l,p=E(s);if(void 0!=p&&!O(p)){for(a=p.call(s),r=[],e=0;!(o=a.next()).done;e++)r.push(o.value);s=r}for(f&&u>2&&(l=c(l,arguments[2],2)),e=0,n=v(s.length),i=kt(this,n);n>e;e++)i[e]=f?l(s[e],e):s[e];return i},Mt=function(){for(var t=0,e=arguments.length,n=kt(this,e);e>t;)n[t]=arguments[t++];return n},Pt=!!W&&o(function(){dt.call(new W(1))}),Nt=function(){return dt.apply(Pt?ft.call(Ct(this)):Ct(this),arguments)},$t={copyWithin:function(t,e){return F.call(Ct(this),t,e,arguments.length>2?arguments[2]:void 0)},every:function(t){return Z(Ct(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return I.apply(Ct(this),arguments)},filter:function(t){return Et(this,J(Ct(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return Q(Ct(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(Ct(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){K(Ct(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return nt(Ct(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return et(Ct(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return ct.apply(Ct(this),arguments)},lastIndexOf:function(t){return at.apply(Ct(this),arguments)},map:function(t){return wt(Ct(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return st.apply(Ct(this),arguments)},reduceRight:function(t){return ut.apply(Ct(this),arguments)},reverse:function(){for(var t,e=Ct(this).length,n=Math.floor(e/2),r=0;r<n;)t=this[r],this[r++]=this[--e],this[e]=t;return this},some:function(t){return X(Ct(this),t,arguments.length>1?arguments[1]:void 0)},sort:function(t){return lt.call(Ct(this),t)},subarray:function(t,e){var n=Ct(this),r=n.length,i=g(t,r);return new(P(n,n[gt]))(n.buffer,n.byteOffset+i*n.BYTES_PER_ELEMENT,v((void 0===e?r:g(e,r))-i))}},Lt=function(t,e){return Et(this,ft.call(Ct(this),t,e))},jt=function(t){Ct(this);var e=St(arguments[1],1),n=this.length,r=x(t),i=v(r.length),o=0;if(i+e>n)throw H("Wrong length!");for(;o<i;)this[e+o]=r[o++]},It={entries:function(){return ot.call(Ct(this))},keys:function(){return it.call(Ct(this))},values:function(){return rt.call(Ct(this))}},Ft=function(t,e){return w(t)&&t[_t]&&"symbol"!=typeof e&&e in t&&String(+e)==String(e)},Rt=function(t,e){return Ft(t,e=y(e,!0))?f(2,t[e]):V(t,e)},Bt=function(t,e,n){return!(Ft(t,e=y(e,!0))&&w(n)&&_(n,"value"))||_(n,"get")||_(n,"set")||n.configurable||_(n,"writable")&&!n.writable||_(n,"enumerable")&&!n.enumerable?U(t,e,n):(t[e]=n.value,t)};yt||(B.f=Rt,R.f=Bt),a(a.S+a.F*!yt,"Object",{getOwnPropertyDescriptor:Rt,defineProperty:Bt}),o(function(){pt.call({})})&&(pt=dt=function(){return ct.call(this)});var Ut=d({},$t);d(Ut,It),p(Ut,ht,It.values),d(Ut,{slice:Lt,set:jt,constructor:function(){},toString:pt,toLocaleString:Nt}),At(Ut,"buffer","b"),At(Ut,"byteOffset","o"),At(Ut,"byteLength","l"),At(Ut,"length","e"),U(Ut,vt,{get:function(){return this[_t]}}),t.exports=function(t,e,n,u){var c=t+((u=!!u)?"Clamped":"")+"Array",f="get"+t,d="set"+t,h=i[c],g=h||{},y=h&&C(h),_=!h||!s.ABV,x={},O=h&&h.prototype,E=function(t,n){U(t,n,{get:function(){return function(t,n){var r=t._d;return r.v[f](n*e+r.o,xt)}(this,n)},set:function(t){return function(t,n,r){var i=t._d;u&&(r=(r=Math.round(r))<0?0:r>255?255:255&r),i.v[d](n*e+i.o,r,xt)}(this,n,t)},enumerable:!0})};_?(h=n(function(t,n,r,i){l(t,h,c,"_d");var o,a,s,u,f=0,d=0;if(w(n)){if(!(n instanceof G||"ArrayBuffer"==(u=b(n))||"SharedArrayBuffer"==u))return _t in n?Tt(h,n):Dt.call(h,n);o=n,d=St(r,e);var g=n.byteLength;if(void 0===i){if(g%e)throw H("Wrong length!");if((a=g-d)<0)throw H("Wrong length!")}else if((a=v(i)*e)+d>g)throw H("Wrong length!");s=a/e}else s=m(n),o=new G(a=s*e);for(p(t,"_d",{b:o,o:d,l:a,e:s,v:new q(o)});f<s;)E(t,f++)}),O=h.prototype=S(Ut),p(O,"constructor",h)):o(function(){h(1)})&&o(function(){new h(-1)})&&L(function(t){new h,new h(null),new h(1.5),new h(t)},!0)||(h=n(function(t,n,r,i){var o;return l(t,h,c),w(n)?n instanceof G||"ArrayBuffer"==(o=b(n))||"SharedArrayBuffer"==o?void 0!==i?new g(n,St(r,e),i):void 0!==r?new g(n,St(r,e)):new g(n):_t in n?Tt(h,n):Dt.call(h,n):new g(m(n))}),K(y!==Function.prototype?k(g).concat(k(y)):k(g),function(t){t in h||p(h,t,g[t])}),h.prototype=O,r||(O.constructor=h));var T=O[ht],A=!!T&&("values"==T.name||void 0==T.name),D=It.values;p(h,mt,!0),p(O,_t,c),p(O,bt,!0),p(O,gt,h),(u?new h(1)[vt]==c:vt in O)||U(O,vt,{get:function(){return c}}),x[c]=h,a(a.G+a.W+a.F*(h!=g),x),a(a.S,c,{BYTES_PER_ELEMENT:e}),a(a.S+a.F*o(function(){g.of.call(h,1)}),c,{from:Dt,of:Mt}),"BYTES_PER_ELEMENT"in O||p(O,"BYTES_PER_ELEMENT",e),a(a.P,c,$t),j(c),a(a.P+a.F*Ot,c,{set:jt}),a(a.P+a.F*!A,c,It),r||O.toString==pt||(O.toString=pt),a(a.P+a.F*o(function(){new h(1).slice()}),c,{slice:Lt}),a(a.P+a.F*(o(function(){return[1,2].toLocaleString()!=new h([1,2]).toLocaleString()})||!o(function(){O.toLocaleString.call([1,2])})),c,{toLocaleString:Nt}),$[c]=A?T:D,r||A||p(O,ht,D)}}else t.exports=function(){}},function(t,e,n){var r=n(3);t.exports=function(t,e){if(!r(t))return t;var n,i;if(e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!r(i=n.call(t)))return i;if(!e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(31)("meta"),i=n(3),o=n(12),a=n(6).f,s=0,u=Object.isExtensible||function(){return!0},c=!n(1)(function(){return u(Object.preventExtensions({}))}),l=function(t){a(t,r,{value:{i:"O"+ ++s,w:{}}})},f=t.exports={KEY:r,NEED:!1,fastKey:function(t,e){if(!i(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!o(t,r)){if(!u(t))return"F";if(!e)return"E";l(t)}return t[r].i},getWeak:function(t,e){if(!o(t,r)){if(!u(t))return!0;if(!e)return!1;l(t)}return t[r].w},onFreeze:function(t){return c&&f.NEED&&u(t)&&!o(t,r)&&l(t),t}}},function(t,e){function n(t){return"function"==typeof t.value||(console.warn("[Vue-click-outside:] provided expression",t.expression,"is not a function."),!1)}function r(t){return void 0!==t.componentInstance&&t.componentInstance.$isServer}t.exports={bind:function(t,e,i){function o(e){if(i.context){var n=e.path||e.composedPath&&e.composedPath();n&&n.length>0&&n.unshift(e.target),t.contains(e.target)||function(t,e){if(!t||!e)return!1;for(var n=0,r=e.length;n<r;n++)try{if(t.contains(e[n]))return!0;if(e[n].contains(t))return!1}catch(t){return!1}return!1}(i.context.popupItem,n)||t.__vueClickOutside__.callback(e)}}n(e)&&(t.__vueClickOutside__={handler:o,callback:e.value},!r(i)&&document.addEventListener("click",o))},update:function(t,e){n(e)&&(t.__vueClickOutside__.callback=e.value)},unbind:function(t,e,n){!r(n)&&document.removeEventListener("click",t.__vueClickOutside__.handler),delete t.__vueClickOutside__}}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(94),i=n(69);t.exports=Object.keys||function(t){return r(t,i)}},function(t,e,n){var r=n(25),i=Math.max,o=Math.min;t.exports=function(t,e){return(t=r(t))<0?i(t+e,0):o(t,e)}},function(t,e,n){var r=n(4),i=n(95),o=n(69),a=n(68)("IE_PROTO"),s=function(){},u=function(){var t,e=n(65)("iframe"),r=o.length;for(e.style.display="none",n(71).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),u=t.F;r--;)delete u.prototype[o[r]];return u()};t.exports=Object.create||function(t,e){var n;return null!==t?(s.prototype=r(t),n=new s,s.prototype=null,n[a]=t):n=u(),void 0===e?n:i(n,e)}},function(t,e,n){var r=n(94),i=n(69).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},function(t,e,n){var r=n(12),i=n(15),o=n(68)("IE_PROTO"),a=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),r(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?a:null}},function(t,e,n){var r=n(6).f,i=n(12),o=n(5)("toStringTag");t.exports=function(t,e,n){t&&!i(t=n?t:t.prototype,o)&&r(t,o,{configurable:!0,value:e})}},function(t,e){t.exports={}},function(t,e,n){var r=n(5)("unscopables"),i=Array.prototype;void 0==i[r]&&n(13)(i,r,{}),t.exports=function(t){i[r][t]=!0}},function(t,e,n){"use strict";var r=n(2),i=n(6),o=n(7),a=n(5)("species");t.exports=function(t){var e=r[t];o&&e&&!e[a]&&i.f(e,a,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var r=n(10);t.exports=function(t,e,n){for(var i in e)r(t,i,e[i],n);return t}},function(t,e,n){var r=n(3);t.exports=function(t,e){if(!r(t)||t._t!==e)throw TypeError("Incompatible receiver, "+e+" required!");return t}},function(t,e,n){var r=n(23);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e){t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n=function(t,e){var n=t[1]||"",r=t[3];if(!r)return n;if(e&&"function"==typeof btoa){var i=function(t){return"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(t))))+" */"}(r),o=r.sources.map(function(t){return"/*# sourceURL="+r.sourceRoot+t+" */"});return[n].concat(o).concat([i]).join("\n")}return[n].join("\n")}(e,t);return e[2]?"@media "+e[2]+"{"+n+"}":n}).join("")},e.i=function(t,n){"string"==typeof t&&(t=[[null,t,""]]);for(var r={},i=0;i<this.length;i++){var o=this[i][0];"number"==typeof o&&(r[o]=!0)}for(i=0;i<t.length;i++){var a=t[i];"number"==typeof a[0]&&r[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]="("+a[2]+") and ("+n+")"),e.push(a))}},e}},function(t,e,n){"use strict";function r(t,e){for(var n=[],r={},i=0;i<e.length;i++){var o=e[i],a=o[0],s={id:t+":"+i,css:o[1],media:o[2],sourceMap:o[3]};r[a]?r[a].parts.push(s):n.push(r[a]={id:a,parts:[s]})}return n}n.r(e),n.d(e,"default",function(){return h});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=i&&(document.head||document.getElementsByTagName("head")[0]),s=null,u=0,c=!1,l=function(){},f=null,p="data-vue-ssr-id",d="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(t,e,n,i){c=n,f=i||{};var a=r(t,e);return v(a),function(e){for(var n=[],i=0;i<a.length;i++){var s=a[i];(u=o[s.id]).refs--,n.push(u)}for(e?v(a=r(t,e)):a=[],i=0;i<n.length;i++){var u;if(0===(u=n[i]).refs){for(var c=0;c<u.parts.length;c++)u.parts[c]();delete o[u.id]}}}}function v(t){for(var e=0;e<t.length;e++){var n=t[e],r=o[n.id];if(r){r.refs++;for(var i=0;i<r.parts.length;i++)r.parts[i](n.parts[i]);for(;i<n.parts.length;i++)r.parts.push(g(n.parts[i]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(i=0;i<n.parts.length;i++)a.push(g(n.parts[i]));o[n.id]={id:n.id,refs:1,parts:a}}}}function m(){var t=document.createElement("style");return t.type="text/css",a.appendChild(t),t}function g(t){var e,n,r=document.querySelector("style["+p+'~="'+t.id+'"]');if(r){if(c)return l;r.parentNode.removeChild(r)}if(d){var i=u++;r=s||(s=m()),e=_.bind(null,r,i,!1),n=_.bind(null,r,i,!0)}else r=m(),e=function(t,e){var n=e.css,r=e.media,i=e.sourceMap;if(r&&t.setAttribute("media",r),f.ssrId&&t.setAttribute(p,e.id),i&&(n+="\n/*# sourceURL="+i.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,r),n=function(){r.parentNode.removeChild(r)};return e(t),function(r){if(r){if(r.css===t.css&&r.media===t.media&&r.sourceMap===t.sourceMap)return;e(t=r)}else n()}}var y=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join("\n")}}();function _(t,e,n,r){var i=n?"":r.css;if(t.styleSheet)t.styleSheet.cssText=y(e,i);else{var o=document.createTextNode(i),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(o,a[e]):t.appendChild(o)}}},function(t,e,n){window,t.exports=function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},n.r=function(t){Object.defineProperty(t,"__esModule",{value:!0})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,"a",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p="",n(n.s=3)}([function(t,e,n){var r;!function(i){"use strict";var o={},a=/d{1,4}|M{1,4}|YY(?:YY)?|S{1,3}|Do|ZZ|([HhMsDm])\1?|[aA]|"[^"]*"|'[^']*'/g,s=/\d\d?/,u=/[0-9]*['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]+|[\u0600-\u06FF\/]+(\s*?[\u0600-\u06FF]+){1,2}/i,c=/\[([^]*?)\]/gm,l=function(){};function f(t,e){for(var n=[],r=0,i=t.length;r<i;r++)n.push(t[r].substr(0,e));return n}function p(t){return function(e,n,r){var i=r[t].indexOf(n.charAt(0).toUpperCase()+n.substr(1).toLowerCase());~i&&(e.month=i)}}function d(t,e){for(t=String(t),e=e||2;t.length<e;)t="0"+t;return t}var h=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],v=["January","February","March","April","May","June","July","August","September","October","November","December"],m=f(v,3),g=f(h,3);o.i18n={dayNamesShort:g,dayNames:h,monthNamesShort:m,monthNames:v,amPm:["am","pm"],DoFn:function(t){return t+["th","st","nd","rd"][t%10>3?0:(t-t%10!=10)*t%10]}};var y={D:function(t){return t.getDate()},DD:function(t){return d(t.getDate())},Do:function(t,e){return e.DoFn(t.getDate())},d:function(t){return t.getDay()},dd:function(t){return d(t.getDay())},ddd:function(t,e){return e.dayNamesShort[t.getDay()]},dddd:function(t,e){return e.dayNames[t.getDay()]},M:function(t){return t.getMonth()+1},MM:function(t){return d(t.getMonth()+1)},MMM:function(t,e){return e.monthNamesShort[t.getMonth()]},MMMM:function(t,e){return e.monthNames[t.getMonth()]},YY:function(t){return String(t.getFullYear()).substr(2)},YYYY:function(t){return d(t.getFullYear(),4)},h:function(t){return t.getHours()%12||12},hh:function(t){return d(t.getHours()%12||12)},H:function(t){return t.getHours()},HH:function(t){return d(t.getHours())},m:function(t){return t.getMinutes()},mm:function(t){return d(t.getMinutes())},s:function(t){return t.getSeconds()},ss:function(t){return d(t.getSeconds())},S:function(t){return Math.round(t.getMilliseconds()/100)},SS:function(t){return d(Math.round(t.getMilliseconds()/10),2)},SSS:function(t){return d(t.getMilliseconds(),3)},a:function(t,e){return t.getHours()<12?e.amPm[0]:e.amPm[1]},A:function(t,e){return t.getHours()<12?e.amPm[0].toUpperCase():e.amPm[1].toUpperCase()},ZZ:function(t){var e=t.getTimezoneOffset();return(e>0?"-":"+")+d(100*Math.floor(Math.abs(e)/60)+Math.abs(e)%60,4)}},_={D:[s,function(t,e){t.day=e}],Do:[new RegExp(s.source+u.source),function(t,e){t.day=parseInt(e,10)}],M:[s,function(t,e){t.month=e-1}],YY:[s,function(t,e){var n=+(""+(new Date).getFullYear()).substr(0,2);t.year=""+(e>68?n-1:n)+e}],h:[s,function(t,e){t.hour=e}],m:[s,function(t,e){t.minute=e}],s:[s,function(t,e){t.second=e}],YYYY:[/\d{4}/,function(t,e){t.year=e}],S:[/\d/,function(t,e){t.millisecond=100*e}],SS:[/\d{2}/,function(t,e){t.millisecond=10*e}],SSS:[/\d{3}/,function(t,e){t.millisecond=e}],d:[s,l],ddd:[u,l],MMM:[u,p("monthNamesShort")],MMMM:[u,p("monthNames")],a:[u,function(t,e,n){var r=e.toLowerCase();r===n.amPm[0]?t.isPm=!1:r===n.amPm[1]&&(t.isPm=!0)}],ZZ:[/([\+\-]\d\d:?\d\d|Z)/,function(t,e){"Z"===e&&(e="+00:00");var n,r=(e+"").match(/([\+\-]|\d\d)/gi);r&&(n=60*r[1]+parseInt(r[2],10),t.timezoneOffset="+"===r[0]?n:-n)}]};_.dd=_.d,_.dddd=_.ddd,_.DD=_.D,_.mm=_.m,_.hh=_.H=_.HH=_.h,_.MM=_.M,_.ss=_.s,_.A=_.a,o.masks={default:"ddd MMM DD YYYY HH:mm:ss",shortDate:"M/D/YY",mediumDate:"MMM D, YYYY",longDate:"MMMM D, YYYY",fullDate:"dddd, MMMM D, YYYY",shortTime:"HH:mm",mediumTime:"HH:mm:ss",longTime:"HH:mm:ss.SSS"},o.format=function(t,e,n){var r=n||o.i18n;if("number"==typeof t&&(t=new Date(t)),"[object Date]"!==Object.prototype.toString.call(t)||isNaN(t.getTime()))throw new Error("Invalid Date in fecha.format");var i=[];return(e=(e=(e=o.masks[e]||e||o.masks.default).replace(c,function(t,e){return i.push(e),"??"})).replace(a,function(e){return e in y?y[e](t,r):e.slice(1,e.length-1)})).replace(/\?\?/g,function(){return i.shift()})},o.parse=function(t,e,n){var r=n||o.i18n;if("string"!=typeof e)throw new Error("Invalid format in fecha.parse");if(e=o.masks[e]||e,t.length>1e3)return!1;var i=!0,s={};if(e.replace(a,function(e){if(_[e]){var n=_[e],o=t.search(n[0]);~o?t.replace(n[0],function(e){return n[1](s,e,r),t=t.substr(o+e.length),e}):i=!1}return _[e]?"":e.slice(1,e.length-1)}),!i)return!1;var u,c=new Date;return!0===s.isPm&&null!=s.hour&&12!=+s.hour?s.hour=+s.hour+12:!1===s.isPm&&12==+s.hour&&(s.hour=0),null!=s.timezoneOffset?(s.minute=+(s.minute||0)-+s.timezoneOffset,u=new Date(Date.UTC(s.year||c.getFullYear(),s.month||0,s.day||1,s.hour||0,s.minute||0,s.second||0,s.millisecond||0))):u=new Date(s.year||c.getFullYear(),s.month||0,s.day||1,s.hour||0,s.minute||0,s.second||0,s.millisecond||0),u},void 0!==t&&t.exports?t.exports=o:void 0===(r=function(){return o}.call(e,n,e,t))||(t.exports=r)}()},function(t,e){var n=/^(attrs|props|on|nativeOn|class|style|hook)$/;function r(t,e){return function(){t&&t.apply(this,arguments),e&&e.apply(this,arguments)}}t.exports=function(t){return t.reduce(function(t,e){var i,o,a,s,u;for(a in e)if(i=t[a],o=e[a],i&&n.test(a))if("class"===a&&("string"==typeof i&&(u=i,t[a]=i={},i[u]=!0),"string"==typeof o&&(u=o,e[a]=o={},o[u]=!0)),"on"===a||"nativeOn"===a||"hook"===a)for(s in o)i[s]=r(i[s],o[s]);else if(Array.isArray(i))t[a]=i.concat(o);else if(Array.isArray(o))t[a]=[i].concat(o);else for(s in o)i[s]=o[s];else t[a]=e[a];return t},{})}},function(t,e,n){"use strict";function r(t,e){for(var n=[],r={},i=0;i<e.length;i++){var o=e[i],a=o[0],s={id:t+":"+i,css:o[1],media:o[2],sourceMap:o[3]};r[a]?r[a].parts.push(s):n.push(r[a]={id:a,parts:[s]})}return n}n.r(e),n.d(e,"default",function(){return h});var i="undefined"!=typeof document;if("undefined"!=typeof DEBUG&&DEBUG&&!i)throw new Error("vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.");var o={},a=i&&(document.head||document.getElementsByTagName("head")[0]),s=null,u=0,c=!1,l=function(){},f=null,p="data-vue-ssr-id",d="undefined"!=typeof navigator&&/msie [6-9]\b/.test(navigator.userAgent.toLowerCase());function h(t,e,n,i){c=n,f=i||{};var a=r(t,e);return v(a),function(e){for(var n=[],i=0;i<a.length;i++){var s=a[i];(u=o[s.id]).refs--,n.push(u)}for(e?v(a=r(t,e)):a=[],i=0;i<n.length;i++){var u;if(0===(u=n[i]).refs){for(var c=0;c<u.parts.length;c++)u.parts[c]();delete o[u.id]}}}}function v(t){for(var e=0;e<t.length;e++){var n=t[e],r=o[n.id];if(r){r.refs++;for(var i=0;i<r.parts.length;i++)r.parts[i](n.parts[i]);for(;i<n.parts.length;i++)r.parts.push(g(n.parts[i]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(i=0;i<n.parts.length;i++)a.push(g(n.parts[i]));o[n.id]={id:n.id,refs:1,parts:a}}}}function m(){var t=document.createElement("style");return t.type="text/css",a.appendChild(t),t}function g(t){var e,n,r=document.querySelector("style["+p+'~="'+t.id+'"]');if(r){if(c)return l;r.parentNode.removeChild(r)}if(d){var i=u++;r=s||(s=m()),e=b.bind(null,r,i,!1),n=b.bind(null,r,i,!0)}else r=m(),e=function(t,e){var n=e.css,r=e.media,i=e.sourceMap;if(r&&t.setAttribute("media",r),f.ssrId&&t.setAttribute(p,e.id),i&&(n+="\n/*# sourceURL="+i.sources[0]+" */",n+="\n/*# sourceMappingURL=data:application/json;base64,"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+" */"),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,r),n=function(){r.parentNode.removeChild(r)};return e(t),function(r){if(r){if(r.css===t.css&&r.media===t.media&&r.sourceMap===t.sourceMap)return;e(t=r)}else n()}}var y,_=(y=[],function(t,e){return y[t]=e,y.filter(Boolean).join("\n")});function b(t,e,n,r){var i=n?"":r.css;if(t.styleSheet)t.styleSheet.cssText=_(e,i);else{var o=document.createTextNode(i),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(o,a[e]):t.appendChild(o)}}},function(t,e,n){"use strict";n.r(e);var r=n(0),i=n.n(r),o={bind:function(t,e,n){t["@clickoutside"]=function(r){t.contains(r.target)||n.context.popupElm&&n.context.popupElm.contains(r.target)||!e.expression||!n.context[e.expression]||e.value()},document.addEventListener("click",t["@clickoutside"],!0)},unbind:function(t){document.removeEventListener("click",t["@clickoutside"],!0)}};function a(t){return t instanceof Date}function s(t){return null!==t&&void 0!==t&&!isNaN(new Date(t).getTime())}function u(t){return Array.isArray(t)&&2===t.length&&s(t[0])&&s(t[1])&&new Date(t[1]).getTime()>=new Date(t[0]).getTime()}function c(t){var e=(t||"").split(":");return e.length>=2?{hours:parseInt(e[0],10),minutes:parseInt(e[1],10)}:null}function l(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"24",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"a",r=t.hours,i=(r=(r="24"===e?r:r%12||12)<10?"0"+r:r)+":"+(t.minutes<10?"0"+t.minutes:t.minutes);if("12"===e){var o=t.hours>=12?"pm":"am";"A"===n&&(o=o.toUpperCase()),i=i+" "+o}return i}function f(t,e){try{return i.a.format(new Date(t),e)}catch(t){return""}}var p={zh:{days:["日","一","二","三","四","五","六"],months:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],pickers:["未来7天","未来30天","最近7天","最近30天"],placeholder:{date:"请选择日期",dateRange:"请选择日期范围"}},en:{days:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],pickers:["next 7 days","next 30 days","previous 7 days","previous 30 days"],placeholder:{date:"Select Date",dateRange:"Select Date Range"}},ro:{days:["Lun","Mar","Mie","Joi","Vin","Sâm","Dum"],months:["Ian","Feb","Mar","Apr","Mai","Iun","Iul","Aug","Sep","Oct","Noi","Dec"],pickers:["urmatoarele 7 zile","urmatoarele 30 zile","ultimele 7 zile","ultimele 30 zile"],placeholder:{date:"Selectați Data",dateRange:"Selectați Intervalul De Date"}},fr:{days:["Dim","Lun","Mar","Mer","Jeu","Ven","Sam"],months:["Jan","Fev","Mar","Avr","Mai","Juin","Juil","Aout","Sep","Oct","Nov","Dec"],pickers:["7 jours suivants","30 jours suivants","7 jours précédents","30 jours précédents"],placeholder:{date:"Sélectionnez une date",dateRange:"Sélectionnez une période"}},es:{days:["Dom","Lun","mar","Mie","Jue","Vie","Sab"],months:["Ene","Feb","Mar","Abr","May","Jun","Jul","Ago","Sep","Oct","Nov","Dic"],pickers:["próximos 7 días","próximos 30 días","7 días anteriores","30 días anteriores"],placeholder:{date:"Seleccionar fecha",dateRange:"Seleccionar un rango de fechas"}},"pt-br":{days:["Dom","Seg","Ter","Qua","Quin","Sex","Sáb"],months:["Jan","Fev","Mar","Abr","Maio","Jun","Jul","Ago","Set","Out","Nov","Dez"],pickers:["próximos 7 dias","próximos 30 dias","7 dias anteriores"," 30 dias anteriores"],placeholder:{date:"Selecione uma data",dateRange:"Selecione um período"}},ru:{days:["Вс","Пн","Вт","Ср","Чт","Пт","Сб"],months:["Янв","Фев","Мар","Апр","Май","Июн","Июл","Авг","Сен","Окт","Ноя","Дек"],pickers:["след. 7 дней","след. 30 дней","прош. 7 дней","прош. 30 дней"],placeholder:{date:"Выберите дату",dateRange:"Выберите период"}},de:{days:["So","Mo","Di","Mi","Do","Fr","Sa"],months:["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"],pickers:["nächsten 7 Tage","nächsten 30 Tage","vorigen 7 Tage","vorigen 30 Tage"],placeholder:{date:"Datum auswählen",dateRange:"Zeitraum auswählen"}},it:{days:["Dom","Lun","Mar","Mer","Gio","Ven","Sab"],months:["Gen","Feb","Mar","Apr","Mag","Giu","Lug","Ago","Set","Ott","Nov","Dic"],pickers:["successivi 7 giorni","successivi 30 giorni","precedenti 7 giorni","precedenti 30 giorni"],placeholder:{date:"Seleziona una data",dateRange:"Seleziona un intervallo date"}},cs:{days:["Ned","Pon","Úte","Stř","Čtv","Pát","Sob"],months:["Led","Úno","Bře","Dub","Kvě","Čer","Čerc","Srp","Zář","Říj","Lis","Pro"],pickers:["příštích 7 dní","příštích 30 dní","předchozích 7 dní","předchozích 30 dní"],placeholder:{date:"Vyberte datum",dateRange:"Vyberte časové rozmezí"}},sl:{days:["Ned","Pon","Tor","Sre","Čet","Pet","Sob"],months:["Jan","Feb","Mar","Apr","Maj","Jun","Jul","Avg","Sep","Okt","Nov","Dec"],pickers:["naslednjih 7 dni","naslednjih 30 dni","prejšnjih 7 dni","prejšnjih 30 dni"],placeholder:{date:"Izberite datum",dateRange:"Izberite razpon med 2 datumoma"}}},d=p.zh,h={methods:{t:function(t){for(var e=this,n=e.$options.name;e&&(!n||"DatePicker"!==n);)(e=e.$parent)&&(n=e.$options.name);for(var r=e&&e.language||d,i=t.split("."),o=r,a=void 0,s=0,u=i.length;s<u;s++){if(a=o[i[s]],s===u-1)return a;if(!a)return"";o=a}return""}}};function v(t,e){if(e){for(var n=[],r=e.offsetParent;r&&t!==r&&t.contains(r);)n.push(r),r=r.offsetParent;var i=e.offsetTop+n.reduce(function(t,e){return t+e.offsetTop},0),o=i+e.offsetHeight,a=t.scrollTop,s=a+t.clientHeight;i<a?t.scrollTop=i:o>s&&(t.scrollTop=o-t.clientHeight)}else t.scrollTop=0}var m=n(1),g=n.n(m);function y(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}function _(t,e,n,r,i,o,a,s){var u,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),a?(u=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=u):i&&(u=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),u)if(c.functional){c._injectStyles=u;var l=c.render;c.render=function(t,e){return u.call(e),l(t,e)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,u):[u]}return{exports:t,options:c}}var b=_({name:"CalendarPanel",components:{PanelDate:{name:"panelDate",mixins:[h],props:{value:null,startAt:null,endAt:null,dateFormat:{type:String,default:"YYYY-MM-DD"},calendarMonth:{default:(new Date).getMonth()},calendarYear:{default:(new Date).getFullYear()},firstDayOfWeek:{default:7,type:Number,validator:function(t){return t>=1&&t<=7}},disabledDate:{type:Function,default:function(){return!1}}},methods:{selectDate:function(t){var e=t.year,n=t.month,r=t.day,i=new Date(e,n,r);this.disabledDate(i)||this.$emit("select",i)},getDays:function(t){var e=this.t("days"),n=parseInt(t,10);return e.concat(e).slice(n,n+7)},getDates:function(t,e,n){var r=[],i=new Date(t,e);i.setDate(0);for(var o=(i.getDay()+7-n)%7+1,a=i.getDate()-(o-1),s=0;s<o;s++)r.push({year:t,month:e-1,day:a+s});i.setMonth(i.getMonth()+2,0);for(var u=i.getDate(),c=0;c<u;c++)r.push({year:t,month:e,day:1+c});i.setMonth(i.getMonth()+1,1);for(var l=42-(o+u),f=0;f<l;f++)r.push({year:t,month:e+1,day:1+f});return r},getCellClasses:function(t){var e=t.year,n=t.month,r=t.day,i=[],o=new Date(e,n,r).getTime(),a=(new Date).setHours(0,0,0,0),s=this.value&&new Date(this.value).setHours(0,0,0,0),u=this.startAt&&new Date(this.startAt).setHours(0,0,0,0),c=this.endAt&&new Date(this.endAt).setHours(0,0,0,0);return n<this.calendarMonth?i.push("last-month"):n>this.calendarMonth?i.push("next-month"):i.push("cur-month"),o===a&&i.push("today"),this.disabledDate(o)&&i.push("disabled"),s&&(o===s?i.push("actived"):u&&o<=s?i.push("inrange"):c&&o>=s&&i.push("inrange")),i},getCellTitle:function(t){var e=t.year,n=t.month,r=t.day;return f(new Date(e,n,r),this.dateFormat)}},render:function(t){var e=this,n=this.getDays(this.firstDayOfWeek).map(function(e){return t("th",[e])}),r=this.getDates(this.calendarYear,this.calendarMonth,this.firstDayOfWeek),i=Array.apply(null,{length:6}).map(function(n,i){var o=r.slice(7*i,7*i+7).map(function(n){var r={class:e.getCellClasses(n)};return t("td",g()([{class:"cell"},r,{attrs:{title:e.getCellTitle(n)},on:{click:e.selectDate.bind(e,n)}}]),[n.day])});return t("tr",[o])});return t("table",{class:"mx-panel mx-panel-date"},[t("thead",[t("tr",[n])]),t("tbody",[i])])}},PanelYear:{name:"panelYear",props:{value:null,firstYear:Number,disabledYear:Function},methods:{isDisabled:function(t){return!("function"!=typeof this.disabledYear||!this.disabledYear(t))},selectYear:function(t){this.isDisabled(t)||this.$emit("select",t)}},render:function(t){var e=this,n=10*Math.floor(this.firstYear/10),r=this.value&&new Date(this.value).getFullYear(),i=Array.apply(null,{length:10}).map(function(i,o){var a=n+o;return t("span",{class:{cell:!0,actived:r===a,disabled:e.isDisabled(a)},on:{click:e.selectYear.bind(e,a)}},[a])});return t("div",{class:"mx-panel mx-panel-year"},[i])}},PanelMonth:{name:"panelMonth",mixins:[h],props:{value:null,calendarYear:{default:(new Date).getFullYear()},disabledMonth:Function},methods:{isDisabled:function(t){return!("function"!=typeof this.disabledMonth||!this.disabledMonth(t))},selectMonth:function(t){this.isDisabled(t)||this.$emit("select",t)}},render:function(t){var e=this,n=this.t("months"),r=this.value&&new Date(this.value).getFullYear(),i=this.value&&new Date(this.value).getMonth();return n=n.map(function(n,o){return t("span",{class:{cell:!0,actived:r===e.calendarYear&&i===o,disabled:e.isDisabled(o)},on:{click:e.selectMonth.bind(e,o)}},[n])}),t("div",{class:"mx-panel mx-panel-month"},[n])}},PanelTime:{name:"panelTime",props:{timePickerOptions:{type:[Object,Function],default:function(){return null}},minuteStep:{type:Number,default:0,validator:function(t){return t>=0&&t<=60}},value:null,timeType:{type:Array,default:function(){return["24","a"]}},disabledTime:Function},computed:{currentHours:function(){return this.value?new Date(this.value).getHours():0},currentMinutes:function(){return this.value?new Date(this.value).getMinutes():0},currentSeconds:function(){return this.value?new Date(this.value).getSeconds():0}},methods:{stringifyText:function(t){return("00"+t).slice(String(t).length)},selectTime:function(t){"function"==typeof this.disabledTime&&this.disabledTime(t)||this.$emit("select",new Date(t))},pickTime:function(t){"function"==typeof this.disabledTime&&this.disabledTime(t)||this.$emit("pick",new Date(t))},getTimeSelectOptions:function(){var t=[],e=this.timePickerOptions;if(!e)return[];if("function"==typeof e)return e()||[];var n=c(e.start),r=c(e.end),i=c(e.step);if(n&&r&&i)for(var o=n.minutes+60*n.hours,a=r.minutes+60*r.hours,s=i.minutes+60*i.hours,u=Math.floor((a-o)/s),f=0;f<=u;f++){var p=o+f*s,d={hours:Math.floor(p/60),minutes:p%60};t.push({value:d,label:l.apply(void 0,[d].concat(y(this.timeType)))})}return t}},render:function(t){var e=this,n=new Date(this.value),r="function"==typeof this.disabledTime&&this.disabledTime,i=this.getTimeSelectOptions();if(Array.isArray(i)&&i.length)return i=i.map(function(i){var o=i.value.hours,a=i.value.minutes,s=new Date(n).setHours(o,a,0);return t("li",{class:{"mx-time-picker-item":!0,cell:!0,actived:o===e.currentHours&&a===e.currentMinutes,disabled:r&&r(s)},on:{click:e.pickTime.bind(e,s)}},[i.label])}),t("div",{class:"mx-panel mx-panel-time"},[t("ul",{class:"mx-time-list"},[i])]);var o=Array.apply(null,{length:24}).map(function(i,o){var a=new Date(n).setHours(o);return t("li",{class:{cell:!0,actived:o===e.currentHours,disabled:r&&r(a)},on:{click:e.selectTime.bind(e,a)}},[e.stringifyText(o)])}),a=this.minuteStep||1,s=parseInt(60/a),u=Array.apply(null,{length:s}).map(function(i,o){var s=o*a,u=new Date(n).setMinutes(s);return t("li",{class:{cell:!0,actived:s===e.currentMinutes,disabled:r&&r(u)},on:{click:e.selectTime.bind(e,u)}},[e.stringifyText(s)])}),c=Array.apply(null,{length:60}).map(function(i,o){var a=new Date(n).setSeconds(o);return t("li",{class:{cell:!0,actived:o===e.currentSeconds,disabled:r&&r(a)},on:{click:e.selectTime.bind(e,a)}},[e.stringifyText(o)])}),l=[o,u];return 0===this.minuteStep&&l.push(c),l=l.map(function(e){return t("ul",{class:"mx-time-list",style:{width:100/l.length+"%"}},[e])}),t("div",{class:"mx-panel mx-panel-time"},[l])}}},mixins:[h,{methods:{dispatch:function(t,e,n){for(var r=this.$parent||this.$root,i=r.$options.name;r&&(!i||i!==t);)(r=r.$parent)&&(i=r.$options.name);i&&i===t&&(r=r||this).$emit.apply(r,[e].concat(n))}}}],props:{value:{default:null,validator:function(t){return null===t||s(t)}},startAt:null,endAt:null,visible:{type:Boolean,default:!1},type:{type:String,default:"date"},dateFormat:{type:String,default:"YYYY-MM-DD"},firstDayOfWeek:{default:7,type:Number,validator:function(t){return t>=1&&t<=7}},notBefore:{default:null,validator:function(t){return!t||s(t)}},notAfter:{default:null,validator:function(t){return!t||s(t)}},disabledDays:{type:[Array,Function],default:function(){return[]}},minuteStep:{type:Number,default:0,validator:function(t){return t>=0&&t<=60}},timePickerOptions:{type:[Object,Function],default:function(){return null}}},data:function(){var t=new Date,e=t.getFullYear();return{panel:"NONE",dates:[],calendarMonth:t.getMonth(),calendarYear:e,firstYear:10*Math.floor(e/10)}},computed:{now:{get:function(){return new Date(this.calendarYear,this.calendarMonth).getTime()},set:function(t){var e=new Date(t);this.calendarYear=e.getFullYear(),this.calendarMonth=e.getMonth()}},timeType:function(){return[/h+/.test(this.$parent.format)?"12":"24",/A/.test(this.$parent.format)?"A":"a"]},timeHeader:function(){return"time"===this.type?this.$parent.format:this.value&&f(this.value,this.dateFormat)},yearHeader:function(){return this.firstYear+" ~ "+(this.firstYear+10)},months:function(){return this.t("months")},notBeforeTime:function(){return this.getCriticalTime(this.notBefore)},notAfterTime:function(){return this.getCriticalTime(this.notAfter)}},watch:{value:{immediate:!0,handler:"updateNow"},visible:{immediate:!0,handler:"init"},panel:{handler:"handelPanelChange"}},methods:{handelPanelChange:function(t,e){var n=this;this.dispatch("DatePicker","panel-change",[t,e]),"YEAR"===t?this.firstYear=10*Math.floor(this.calendarYear/10):"TIME"===t&&this.$nextTick(function(){for(var t=n.$el.querySelectorAll(".mx-panel-time .mx-time-list"),e=0,r=t.length;e<r;e++){var i=t[e];v(i,i.querySelector(".actived"))}})},init:function(t){if(t){var e=this.type;"month"===e?this.showPanelMonth():"year"===e?this.showPanelYear():"time"===e?this.showPanelTime():this.showPanelDate()}else this.showPanelNone(),this.updateNow(this.value)},updateNow:function(t){var e=t?new Date(t):new Date,n=new Date(this.now);this.now=e,this.visible&&this.dispatch("DatePicker","calendar-change",[e,n])},getCriticalTime:function(t){if(!t)return null;var e=new Date(t);return"year"===this.type?new Date(e.getFullYear(),0).getTime():"month"===this.type?new Date(e.getFullYear(),e.getMonth()).getTime():"date"===this.type?e.setHours(0,0,0,0):e.getTime()},inBefore:function(t,e){return e=e||this.startAt,this.notBeforeTime&&t<this.notBeforeTime||e&&t<this.getCriticalTime(e)},inAfter:function(t,e){return e=e||this.endAt,this.notAfterTime&&t>this.notAfterTime||e&&t>this.getCriticalTime(e)},inDisabledDays:function(t){var e=this;return Array.isArray(this.disabledDays)?this.disabledDays.some(function(n){return e.getCriticalTime(n)===t}):"function"==typeof this.disabledDays&&this.disabledDays(new Date(t))},isDisabledYear:function(t){var e=new Date(t,0).getTime(),n=new Date(t+1,0).getTime()-1;return this.inBefore(n)||this.inAfter(e)||"year"===this.type&&this.inDisabledDays(e)},isDisabledMonth:function(t){var e=new Date(this.calendarYear,t).getTime(),n=new Date(this.calendarYear,t+1).getTime()-1;return this.inBefore(n)||this.inAfter(e)||"month"===this.type&&this.inDisabledDays(e)},isDisabledDate:function(t){var e=new Date(t).getTime(),n=new Date(t).setHours(23,59,59,999);return this.inBefore(n)||this.inAfter(e)||this.inDisabledDays(e)},isDisabledTime:function(t,e,n){var r=new Date(t).getTime();return this.inBefore(r,e)||this.inAfter(r,n)||this.inDisabledDays(r)},selectDate:function(t){if("datetime"===this.type){var e=new Date(t);return a(this.value)&&e.setHours(this.value.getHours(),this.value.getMinutes(),this.value.getSeconds()),this.isDisabledTime(e)&&(e.setHours(0,0,0,0),this.notBefore&&e.getTime()<new Date(this.notBefore).getTime()&&(e=new Date(this.notBefore)),this.startAt&&e.getTime()<new Date(this.startAt).getTime()&&(e=new Date(this.startAt))),this.selectTime(e),void this.showPanelTime()}this.$emit("select-date",t)},selectYear:function(t){if(this.changeCalendarYear(t),"year"===this.type.toLowerCase())return this.selectDate(new Date(this.now));this.showPanelMonth()},selectMonth:function(t){if(this.changeCalendarMonth(t),"month"===this.type.toLowerCase())return this.selectDate(new Date(this.now));this.showPanelDate()},selectTime:function(t){this.$emit("select-time",t,!1)},pickTime:function(t){this.$emit("select-time",t,!0)},changeCalendarYear:function(t){this.updateNow(new Date(t,this.calendarMonth))},changeCalendarMonth:function(t){this.updateNow(new Date(this.calendarYear,t))},getSibling:function(){var t=this,e=this.$parent.$children.filter(function(e){return e.$options.name===t.$options.name});return e[1^e.indexOf(this)]},handleIconMonth:function(t){var e=this.calendarMonth;this.changeCalendarMonth(e+t),this.$parent.$emit("change-calendar-month",{month:e,flag:t,vm:this,sibling:this.getSibling()})},handleIconYear:function(t){if("YEAR"===this.panel)this.changePanelYears(t);else{var e=this.calendarYear;this.changeCalendarYear(e+t),this.$parent.$emit("change-calendar-year",{year:e,flag:t,vm:this,sibling:this.getSibling()})}},handleBtnYear:function(){this.showPanelYear()},handleBtnMonth:function(){this.showPanelMonth()},handleTimeHeader:function(){"time"!==this.type&&this.showPanelDate()},changePanelYears:function(t){this.firstYear=this.firstYear+10*t},showPanelNone:function(){this.panel="NONE"},showPanelTime:function(){this.panel="TIME"},showPanelDate:function(){this.panel="DATE"},showPanelYear:function(){this.panel="YEAR"},showPanelMonth:function(){this.panel="MONTH"}}},function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"mx-calendar"},[n("div",{staticClass:"mx-calendar-header"},[n("a",{directives:[{name:"show",rawName:"v-show",value:"TIME"!==t.panel,expression:"panel !== 'TIME'"}],staticClass:"mx-icon-last-year",on:{click:function(e){t.handleIconYear(-1)}}},[t._v("«")]),t._v(" "),n("a",{directives:[{name:"show",rawName:"v-show",value:"DATE"===t.panel,expression:"panel === 'DATE'"}],staticClass:"mx-icon-last-month",on:{click:function(e){t.handleIconMonth(-1)}}},[t._v("‹")]),t._v(" "),n("a",{directives:[{name:"show",rawName:"v-show",value:"TIME"!==t.panel,expression:"panel !== 'TIME'"}],staticClass:"mx-icon-next-year",on:{click:function(e){t.handleIconYear(1)}}},[t._v("»")]),t._v(" "),n("a",{directives:[{name:"show",rawName:"v-show",value:"DATE"===t.panel,expression:"panel === 'DATE'"}],staticClass:"mx-icon-next-month",on:{click:function(e){t.handleIconMonth(1)}}},[t._v("›")]),t._v(" "),n("a",{directives:[{name:"show",rawName:"v-show",value:"DATE"===t.panel,expression:"panel === 'DATE'"}],staticClass:"mx-current-month",on:{click:t.handleBtnMonth}},[t._v(t._s(t.months[t.calendarMonth]))]),t._v(" "),n("a",{directives:[{name:"show",rawName:"v-show",value:"DATE"===t.panel||"MONTH"===t.panel,expression:"panel === 'DATE' || panel === 'MONTH'"}],staticClass:"mx-current-year",on:{click:t.handleBtnYear}},[t._v(t._s(t.calendarYear))]),t._v(" "),n("a",{directives:[{name:"show",rawName:"v-show",value:"YEAR"===t.panel,expression:"panel === 'YEAR'"}],staticClass:"mx-current-year"},[t._v(t._s(t.yearHeader))]),t._v(" "),n("a",{directives:[{name:"show",rawName:"v-show",value:"TIME"===t.panel,expression:"panel === 'TIME'"}],staticClass:"mx-time-header",on:{click:t.handleTimeHeader}},[t._v(t._s(t.timeHeader))])]),t._v(" "),n("div",{staticClass:"mx-calendar-content"},[n("panel-date",{directives:[{name:"show",rawName:"v-show",value:"DATE"===t.panel,expression:"panel === 'DATE'"}],attrs:{value:t.value,"date-format":t.dateFormat,"calendar-month":t.calendarMonth,"calendar-year":t.calendarYear,"start-at":t.startAt,"end-at":t.endAt,"first-day-of-week":t.firstDayOfWeek,"disabled-date":t.isDisabledDate},on:{select:t.selectDate}}),t._v(" "),n("panel-year",{directives:[{name:"show",rawName:"v-show",value:"YEAR"===t.panel,expression:"panel === 'YEAR'"}],attrs:{value:t.value,"disabled-year":t.isDisabledYear,"first-year":t.firstYear},on:{select:t.selectYear}}),t._v(" "),n("panel-month",{directives:[{name:"show",rawName:"v-show",value:"MONTH"===t.panel,expression:"panel === 'MONTH'"}],attrs:{value:t.value,"disabled-month":t.isDisabledMonth,"calendar-year":t.calendarYear},on:{select:t.selectMonth}}),t._v(" "),n("panel-time",{directives:[{name:"show",rawName:"v-show",value:"TIME"===t.panel,expression:"panel === 'TIME'"}],attrs:{"minute-step":t.minuteStep,"time-picker-options":t.timePickerOptions,value:t.value,"disabled-time":t.isDisabledTime,"time-type":t.timeType},on:{select:t.selectTime,pick:t.pickTime}})],1)])},[],!1,null,null,null).exports,w=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},x=_({fecha:i.a,name:"DatePicker",components:{CalendarPanel:b},mixins:[h],directives:{clickoutside:o},props:{value:null,placeholder:{type:String,default:null},lang:{type:[String,Object],default:"zh"},format:{type:String,default:"YYYY-MM-DD"},dateFormat:{type:String},type:{type:String,default:"date"},range:{type:Boolean,default:!1},rangeSeparator:{type:String,default:"~"},width:{type:[String,Number],default:null},confirmText:{type:String,default:"OK"},confirm:{type:Boolean,default:!1},editable:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},shortcuts:{type:[Boolean,Array],default:!0},inputName:{type:String,default:"date"},inputClass:{type:[String,Array],default:"mx-input"},appendToBody:{type:Boolean,default:!1},popupStyle:{type:Object}},data:function(){return{currentValue:this.range?[null,null]:null,userInput:null,popupVisible:!1,position:{}}},watch:{value:{immediate:!0,handler:"handleValueChange"},popupVisible:function(t){t?this.initCalendar():this.userInput=null}},computed:{language:function(){return t=this.lang,"[object Object]"===Object.prototype.toString.call(t)?w({},p.en,this.lang):p[this.lang]||p.en;var t},innerPlaceholder:function(){return"string"==typeof this.placeholder?this.placeholder:this.range?this.t("placeholder.dateRange"):this.t("placeholder.date")},text:function(){return null!==this.userInput?this.userInput:this.range?u(this.value)?this.stringify(this.value[0])+" "+this.rangeSeparator+" "+this.stringify(this.value[1]):"":s(this.value)?this.stringify(this.value):""},computedWidth:function(){return"number"==typeof this.width||"string"==typeof this.width&&/^\d+$/.test(this.width)?this.width+"px":this.width},showClearIcon:function(){return!this.disabled&&this.clearable&&(this.range?u(this.value):s(this.value))},innerType:function(){return String(this.type).toLowerCase()},innerShortcuts:function(){if(Array.isArray(this.shortcuts))return this.shortcuts;if(!1===this.shortcuts)return[];var t=this.t("pickers");return[{text:t[0],onClick:function(t){t.currentValue=[new Date,new Date(Date.now()+6048e5)],t.updateDate(!0)}},{text:t[1],onClick:function(t){t.currentValue=[new Date,new Date(Date.now()+2592e6)],t.updateDate(!0)}},{text:t[2],onClick:function(t){t.currentValue=[new Date(Date.now()-6048e5),new Date],t.updateDate(!0)}},{text:t[3],onClick:function(t){t.currentValue=[new Date(Date.now()-2592e6),new Date],t.updateDate(!0)}}]},innerDateFormat:function(){return this.dateFormat?this.dateFormat:"date"===this.innerType?this.format:this.format.replace(/[Hh]+.*[msSaAZ]|\[.*?\]/g,"").trim()||"YYYY-MM-DD"},innerPopupStyle:function(){return w({},this.position,this.popupStyle)}},mounted:function(){var t,e,n,r=this;this.appendToBody&&(this.popupElm=this.$refs.calendar,document.body.appendChild(this.popupElm)),this._displayPopup=(t=function(){r.popupVisible&&r.displayPopup()},e=0,n=null,function(){var r=this;if(!n){var i=arguments,o=function(){e=Date.now(),n=null,t.apply(r,i)};Date.now()-e>=200?o():n=setTimeout(o,200)}}),window.addEventListener("resize",this._displayPopup),window.addEventListener("scroll",this._displayPopup)},beforeDestroy:function(){this.popupElm&&this.popupElm.parentNode===document.body&&document.body.removeChild(this.popupElm),window.removeEventListener("resize",this._displayPopup),window.removeEventListener("scroll",this._displayPopup)},methods:{initCalendar:function(){this.handleValueChange(this.value),this.displayPopup()},stringify:function(t,e){return f(t,e||this.format)},parseDate:function(t,e){return function(t,e){try{return i.a.parse(t,e)}catch(t){return!1}}(t,e||this.format)},dateEqual:function(t,e){return a(t)&&a(e)&&t.getTime()===e.getTime()},rangeEqual:function(t,e){var n=this;return Array.isArray(t)&&Array.isArray(e)&&t.length===e.length&&t.every(function(t,r){return n.dateEqual(t,e[r])})},selectRange:function(t){if("function"==typeof t.onClick)return t.onClick(this);this.currentValue=[new Date(t.start),new Date(t.end)],this.updateDate(!0)},clearDate:function(){var t=this.range?[null,null]:null;this.currentValue=t,this.updateDate(!0),this.$emit("clear")},confirmDate:function(){(this.range?u(this.currentValue):s(this.currentValue))&&this.updateDate(!0),this.$emit("confirm",this.currentValue),this.closePopup()},updateDate:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return!(this.confirm&&!t||this.disabled||(this.range?this.rangeEqual(this.value,this.currentValue):this.dateEqual(this.value,this.currentValue))||(this.$emit("input",this.currentValue),this.$emit("change",this.currentValue),0))},handleValueChange:function(t){this.range?this.currentValue=u(t)?[new Date(t[0]),new Date(t[1])]:[null,null]:this.currentValue=s(t)?new Date(t):null},selectDate:function(t){this.currentValue=t,this.updateDate()&&this.closePopup()},selectStartDate:function(t){this.$set(this.currentValue,0,t),this.currentValue[1]&&this.updateDate()},selectEndDate:function(t){this.$set(this.currentValue,1,t),this.currentValue[0]&&this.updateDate()},selectTime:function(t,e){this.currentValue=t,this.updateDate()&&e&&this.closePopup()},selectStartTime:function(t){this.selectStartDate(t)},selectEndTime:function(t){this.selectEndDate(t)},showPopup:function(){this.disabled||(this.popupVisible=!0)},closePopup:function(){this.popupVisible=!1},getPopupSize:function(t){var e=t.style.display,n=t.style.visibility;t.style.display="block",t.style.visibility="hidden";var r=window.getComputedStyle(t),i={width:t.offsetWidth+parseInt(r.marginLeft)+parseInt(r.marginRight),height:t.offsetHeight+parseInt(r.marginTop)+parseInt(r.marginBottom)};return t.style.display=e,t.style.visibility=n,i},displayPopup:function(){var t=document.documentElement.clientWidth,e=document.documentElement.clientHeight,n=this.$el.getBoundingClientRect(),r=this._popupRect||(this._popupRect=this.getPopupSize(this.$refs.calendar)),i={},o=0,a=0;this.appendToBody&&(o=window.pageXOffset+n.left,a=window.pageYOffset+n.top),t-n.left<r.width&&n.right<r.width?i.left=o-n.left+1+"px":n.left+n.width/2<=t/2?i.left=o+"px":i.left=o+n.width-r.width+"px",n.top<=r.height&&e-n.bottom<=r.height?i.top=a+e-n.top-r.height+"px":n.top+n.height/2<=e/2?i.top=a+n.height+"px":i.top=a-r.height+"px",i.top===this.position.top&&i.left===this.position.left||(this.position=i)},handleInput:function(t){this.userInput=t.target.value},handleChange:function(t){var e=t.target.value;if(this.editable&&null!==this.userInput){var n=this.$children[0].isDisabledTime;if(this.range){var r=e.split(" "+this.rangeSeparator+" ");if(2===r.length){var i=this.parseDate(r[0],this.format),o=this.parseDate(r[1],this.format);if(i&&o&&!n(i,null,o)&&!n(o,i,null))return this.currentValue=[i,o],this.updateDate(!0),void this.closePopup()}}else{var a=this.parseDate(e,this.format);if(a&&!n(a,null,null))return this.currentValue=a,this.updateDate(!0),void this.closePopup()}this.$emit("input-error",e)}}}},function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"clickoutside",rawName:"v-clickoutside",value:t.closePopup,expression:"closePopup"}],staticClass:"mx-datepicker",class:{"mx-datepicker-range":t.range,disabled:t.disabled},style:{width:t.computedWidth}},[n("div",{staticClass:"mx-input-wrapper",on:{click:t.showPopup}},[n("input",{ref:"input",class:t.inputClass,attrs:{type:"text",autocomplete:"off",name:t.inputName,disabled:t.disabled,readonly:!t.editable,placeholder:t.innerPlaceholder},domProps:{value:t.text},on:{input:t.handleInput,change:t.handleChange}}),t._v(" "),n("span",{staticClass:"mx-input-append"},[t._t("calendar-icon",[n("svg",{staticClass:"mx-calendar-icon",attrs:{xmlns:"http://www.w3.org/2000/svg",version:"1.1",viewBox:"0 0 200 200"}},[n("rect",{attrs:{x:"13",y:"29",rx:"14",ry:"14",width:"174",height:"158",fill:"transparent"}}),t._v(" "),n("line",{attrs:{x1:"46",x2:"46",y1:"8",y2:"50"}}),t._v(" "),n("line",{attrs:{x1:"154",x2:"154",y1:"8",y2:"50"}}),t._v(" "),n("line",{attrs:{x1:"13",x2:"187",y1:"70",y2:"70"}}),t._v(" "),n("text",{attrs:{x:"50%",y:"135","font-size":"90","stroke-width":"1","text-anchor":"middle","dominant-baseline":"middle"}},[t._v(t._s((new Date).getDate()))])])])],2),t._v(" "),t.showClearIcon?n("span",{staticClass:"mx-input-append mx-clear-wrapper",on:{click:function(e){return e.stopPropagation(),t.clearDate(e)}}},[t._t("mx-clear-icon",[n("i",{staticClass:"mx-input-icon mx-clear-icon"})])],2):t._e()]),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.popupVisible,expression:"popupVisible"}],ref:"calendar",staticClass:"mx-datepicker-popup",style:t.innerPopupStyle,on:{click:function(t){t.stopPropagation(),t.preventDefault()}}},[t._t("header",[t.range&&t.innerShortcuts.length?n("div",{staticClass:"mx-shortcuts-wrapper"},t._l(t.innerShortcuts,function(e,r){return n("button",{key:r,staticClass:"mx-shortcuts",attrs:{type:"button"},on:{click:function(n){t.selectRange(e)}}},[t._v(t._s(e.text))])})):t._e()]),t._v(" "),t.range?n("div",{staticClass:"mx-range-wrapper"},[n("calendar-panel",t._b({staticStyle:{"box-shadow":"1px 0 rgba(0, 0, 0, .1)"},attrs:{type:t.innerType,"date-format":t.innerDateFormat,value:t.currentValue[0],"end-at":t.currentValue[1],"start-at":null,visible:t.popupVisible},on:{"select-date":t.selectStartDate,"select-time":t.selectStartTime}},"calendar-panel",t.$attrs,!1)),t._v(" "),n("calendar-panel",t._b({attrs:{type:t.innerType,"date-format":t.innerDateFormat,value:t.currentValue[1],"start-at":t.currentValue[0],"end-at":null,visible:t.popupVisible},on:{"select-date":t.selectEndDate,"select-time":t.selectEndTime}},"calendar-panel",t.$attrs,!1))],1):n("calendar-panel",t._b({attrs:{type:t.innerType,"date-format":t.innerDateFormat,value:t.currentValue,visible:t.popupVisible},on:{"select-date":t.selectDate,"select-time":t.selectTime}},"calendar-panel",t.$attrs,!1)),t._v(" "),t._t("footer",[t.confirm?n("div",{staticClass:"mx-datepicker-footer"},[n("button",{staticClass:"mx-datepicker-btn mx-datepicker-btn-confirm",attrs:{type:"button"},on:{click:t.confirmDate}},[t._v(t._s(t.confirmText))])]):t._e()],{confirm:t.confirmDate})],2)])},[],!1,null,null,null).exports;n(6),x.install=function(t){t.component(x.name,x)},"undefined"!=typeof window&&window.Vue&&x.install(window.Vue),e.default=x},function(t,e){t.exports=function(){var t=[];return t.toString=function(){for(var t=[],e=0;e<this.length;e++){var n=this[e];n[2]?t.push("@media "+n[2]+"{"+n[1]+"}"):t.push(n[1])}return t.join("")},t.i=function(e,n){"string"==typeof e&&(e=[[null,e,""]]);for(var r={},i=0;i<this.length;i++){var o=this[i][0];"number"==typeof o&&(r[o]=!0)}for(i=0;i<e.length;i++){var a=e[i];"number"==typeof a[0]&&r[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]="("+a[2]+") and ("+n+")"),t.push(a))}},t}},function(t,e,n){(t.exports=n(4)()).push([t.i,"@charset \"UTF-8\";\n.mx-datepicker {\n position: relative;\n display: inline-block;\n width: 210px;\n color: #73879c;\n font: 14px/1.5 'Helvetica Neue', Helvetica, Arial, 'Microsoft Yahei', sans-serif; }\n .mx-datepicker * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n .mx-datepicker.disabled {\n opacity: 0.7;\n cursor: not-allowed; }\n\n.mx-datepicker-range {\n width: 320px; }\n\n.mx-datepicker-popup {\n position: absolute;\n margin-top: 1px;\n margin-bottom: 1px;\n border: 1px solid #d9d9d9;\n background-color: #fff;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n z-index: 1000; }\n\n.mx-input-wrapper {\n position: relative; }\n .mx-input-wrapper .mx-clear-wrapper {\n display: none; }\n .mx-input-wrapper:hover .mx-clear-wrapper {\n display: block; }\n\n.mx-input {\n display: inline-block;\n width: 100%;\n height: 34px;\n padding: 6px 30px;\n padding-left: 10px;\n font-size: 14px;\n line-height: 1.4;\n color: #555;\n background-color: #fff;\n border: 1px solid #ccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }\n .mx-input:disabled, .mx-input.disabled {\n opacity: 0.7;\n cursor: not-allowed; }\n .mx-input:focus {\n outline: none; }\n\n.mx-input-append {\n position: absolute;\n top: 0;\n right: 0;\n width: 30px;\n height: 100%;\n padding: 6px;\n background-color: #fff;\n background-clip: content-box; }\n\n.mx-input-icon {\n display: inline-block;\n width: 100%;\n height: 100%;\n font-style: normal;\n color: #555;\n text-align: center;\n cursor: pointer; }\n\n.mx-calendar-icon {\n width: 100%;\n height: 100%;\n color: #555;\n stroke-width: 8px;\n stroke: currentColor;\n fill: currentColor; }\n\n.mx-clear-icon::before {\n display: inline-block;\n content: '\\2716';\n vertical-align: middle; }\n\n.mx-clear-icon::after {\n content: '';\n display: inline-block;\n width: 0;\n height: 100%;\n vertical-align: middle; }\n\n.mx-range-wrapper {\n width: 496px;\n overflow: hidden; }\n\n.mx-shortcuts-wrapper {\n text-align: left;\n padding: 0 12px;\n line-height: 34px;\n border-bottom: 1px solid rgba(0, 0, 0, 0.05); }\n .mx-shortcuts-wrapper .mx-shortcuts {\n background: none;\n outline: none;\n border: 0;\n color: #48576a;\n margin: 0;\n padding: 0;\n white-space: nowrap;\n cursor: pointer; }\n .mx-shortcuts-wrapper .mx-shortcuts:hover {\n color: #419dec; }\n .mx-shortcuts-wrapper .mx-shortcuts:after {\n content: '|';\n margin: 0 10px;\n color: #48576a; }\n\n.mx-datepicker-footer {\n padding: 4px;\n clear: both;\n text-align: right;\n border-top: 1px solid rgba(0, 0, 0, 0.05); }\n\n.mx-datepicker-btn {\n font-size: 12px;\n line-height: 1;\n padding: 7px 15px;\n margin: 0 5px;\n cursor: pointer;\n background-color: transparent;\n outline: none;\n border: none;\n border-radius: 3px; }\n\n.mx-datepicker-btn-confirm {\n border: 1px solid rgba(0, 0, 0, 0.1);\n color: #73879c; }\n .mx-datepicker-btn-confirm:hover {\n color: #1284e7;\n border-color: #1284e7; }\n\n/* 日历组件 */\n.mx-calendar {\n float: left;\n color: #73879c;\n padding: 6px 12px;\n font: 14px/1.5 Helvetica Neue,Helvetica,Arial,Microsoft Yahei,sans-serif; }\n .mx-calendar * {\n -webkit-box-sizing: border-box;\n box-sizing: border-box; }\n\n.mx-calendar-header {\n padding: 0 4px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n overflow: hidden; }\n .mx-calendar-header > a {\n color: inherit;\n text-decoration: none;\n cursor: pointer; }\n .mx-calendar-header > a:hover {\n color: #419dec; }\n .mx-icon-last-month, .mx-icon-last-year,\n .mx-icon-next-month,\n .mx-icon-next-year {\n padding: 0 6px;\n font-size: 20px;\n line-height: 30px; }\n .mx-icon-last-month, .mx-icon-last-year {\n float: left; }\n \n .mx-icon-next-month,\n .mx-icon-next-year {\n float: right; }\n\n.mx-calendar-content {\n width: 224px;\n height: 224px; }\n .mx-calendar-content .cell {\n vertical-align: middle;\n cursor: pointer; }\n .mx-calendar-content .cell:hover {\n background-color: #eaf8fe; }\n .mx-calendar-content .cell.actived {\n color: #fff;\n background-color: #1284e7; }\n .mx-calendar-content .cell.inrange {\n background-color: #eaf8fe; }\n .mx-calendar-content .cell.disabled {\n cursor: not-allowed;\n color: #ccc;\n background-color: #f3f3f3; }\n\n.mx-panel {\n width: 100%;\n height: 100%;\n text-align: center; }\n\n.mx-panel-date {\n table-layout: fixed;\n border-collapse: collapse;\n border-spacing: 0; }\n .mx-panel-date td, .mx-panel-date th {\n font-size: 12px;\n width: 32px;\n height: 32px;\n padding: 0;\n overflow: hidden;\n text-align: center; }\n .mx-panel-date td.today {\n color: #2a90e9; }\n .mx-panel-date td.last-month, .mx-panel-date td.next-month {\n color: #ddd; }\n\n.mx-panel-year {\n padding: 7px 0; }\n .mx-panel-year .cell {\n display: inline-block;\n width: 40%;\n margin: 1px 5%;\n line-height: 40px; }\n\n.mx-panel-month .cell {\n display: inline-block;\n width: 30%;\n line-height: 40px;\n margin: 8px 1.5%; }\n\n.mx-time-list {\n position: relative;\n float: left;\n margin: 0;\n padding: 0;\n list-style: none;\n width: 100%;\n height: 100%;\n border-top: 1px solid rgba(0, 0, 0, 0.05);\n border-left: 1px solid rgba(0, 0, 0, 0.05);\n overflow-y: auto;\n /* 滚动条滑块 */ }\n .mx-time-list .mx-time-picker-item {\n display: block;\n text-align: left;\n padding-left: 10px; }\n .mx-time-list:first-child {\n border-left: 0; }\n .mx-time-list .cell {\n width: 100%;\n font-size: 12px;\n height: 30px;\n line-height: 30px; }\n .mx-time-list::-webkit-scrollbar {\n width: 8px;\n height: 8px; }\n .mx-time-list::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.05);\n border-radius: 10px;\n -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1);\n box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1); }\n .mx-time-list:hover::-webkit-scrollbar-thumb {\n background-color: rgba(0, 0, 0, 0.2); }\n",""])},function(t,e,n){var r=n(5);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals),(0,n(2).default)("511dbeb0",r,!0,{})}])},function(t,e,n){var r=n(14),i=n(9),o=n(34);t.exports=function(t){return function(e,n,a){var s,u=r(e),c=i(u.length),l=o(a,c);if(t&&n!=n){for(;c>l;)if((s=u[l++])!=s)return!0}else for(;c>l;l++)if((t||l in u)&&u[l]===n)return t||l||0;return!t&&-1}}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(23),i=n(5)("toStringTag"),o="Arguments"==r(function(){return arguments}());t.exports=function(t){var e,n,a;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:o?r(e):"Object"==(a=r(e))&&"function"==typeof e.callee?"Arguments":a}},function(t,e,n){var r=n(0),i=n(24),o=n(1),a=n(73),s="["+a+"]",u=RegExp("^"+s+s+"*"),c=RegExp(s+s+"*$"),l=function(t,e,n){var i={},s=o(function(){return!!a[t]()||"
"!="
"[t]()}),u=i[t]=s?e(f):a[t];n&&(i[n]=u),r(r.P+r.F*s,"String",i)},f=l.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(u,"")),2&e&&(t=t.replace(c,"")),t};t.exports=l},function(t,e,n){var r=n(5)("iterator"),i=!1;try{var o=[7][r]();o.return=function(){i=!0},Array.from(o,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!i)return!1;var n=!1;try{var o=[7],a=o[r]();a.next=function(){return{done:n=!0}},o[r]=function(){return a},t(o)}catch(t){}return n}},function(t,e,n){"use strict";var r=n(13),i=n(10),o=n(1),a=n(24),s=n(5);t.exports=function(t,e,n){var u=s(t),c=n(a,u,""[t]),l=c[0],f=c[1];o(function(){var e={};return e[u]=function(){return 7},7!=""[t](e)})&&(i(String.prototype,t,l),r(RegExp.prototype,u,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){var r=n(21),i=n(107),o=n(82),a=n(4),s=n(9),u=n(84),c={},l={};(e=t.exports=function(t,e,n,f,p){var d,h,v,m,g=p?function(){return t}:u(t),y=r(n,f,e?2:1),_=0;if("function"!=typeof g)throw TypeError(t+" is not iterable!");if(o(g)){for(d=s(t.length);d>_;_++)if((m=e?y(a(h=t[_])[0],h[1]):y(t[_]))===c||m===l)return m}else for(v=g.call(t);!(h=v.next()).done;)if((m=i(v,y,h.value,e))===c||m===l)return m}).BREAK=c,e.RETURN=l},function(t,e,n){var r=n(4),i=n(22),o=n(5)("species");t.exports=function(t,e){var n,a=r(t).constructor;return void 0===a||void 0==(n=r(a)[o])?e:i(n)}},function(t,e,n){var r=n(2).navigator;t.exports=r&&r.userAgent||""},function(t,e,n){"use strict";var r=n(2),i=n(0),o=n(10),a=n(43),s=n(28),u=n(56),c=n(42),l=n(3),f=n(1),p=n(54),d=n(38),h=n(74);t.exports=function(t,e,n,v,m,g){var y=r[t],_=y,b=m?"set":"add",w=_&&_.prototype,x={},O=function(t){var e=w[t];o(w,t,"delete"==t?function(t){return!(g&&!l(t))&&e.call(this,0===t?0:t)}:"has"==t?function(t){return!(g&&!l(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return g&&!l(t)?void 0:e.call(this,0===t?0:t)}:"add"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};if("function"==typeof _&&(g||w.forEach&&!f(function(){(new _).entries().next()}))){var S=new _,C=S[b](g?{}:-0,1)!=S,k=f(function(){S.has(1)}),E=p(function(t){new _(t)}),T=!g&&f(function(){for(var t=new _,e=5;e--;)t[b](e,e);return!t.has(-0)});E||((_=e(function(e,n){c(e,_,t);var r=h(new y,e,_);return void 0!=n&&u(n,m,r[b],r),r})).prototype=w,w.constructor=_),(k||T)&&(O("delete"),O("has"),m&&O("get")),(T||C)&&O(b),g&&w.clear&&delete w.clear}else _=v.getConstructor(e,t,m,b),a(_.prototype,n),s.NEED=!0;return d(_,t),x[t]=_,i(i.G+i.W+i.F*(_!=y),x),g||v.setStrong(_,t,m),_}},function(t,e,n){for(var r,i=n(2),o=n(13),a=n(31),s=a("typed_array"),u=a("view"),c=!(!i.ArrayBuffer||!i.DataView),l=c,f=0,p="Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array".split(",");f<9;)(r=i[p[f++]])?(o(r.prototype,s,!0),o(r.prototype,u,!0)):l=!1;t.exports={ABV:c,CONSTR:l,TYPED:s,VIEW:u}},function(t,e,n){var r=n(320);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals),(0,n(48).default)("7aebefbb",r,!1,{})},function(t,e,n){var r=n(322);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals),(0,n(48).default)("722cdc3c",r,!1,{})},function(t,e,n){var r=n(326);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals),(0,n(48).default)("3ce5d415",r,!1,{})},function(t,e,n){"use strict";(function(t){n.d(e,"a",function(){return Ft});for( +/**! + * @fileOverview Kickass library to create and place poppers near their reference elements. + * @version 1.14.3 + * @license + * Copyright (c) 2016 Federico Zivolo and contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +var r="undefined"!=typeof window&&"undefined"!=typeof document,i=["Edge","Trident","Firefox"],o=0,a=0;a<i.length;a+=1)if(r&&navigator.userAgent.indexOf(i[a])>=0){o=1;break}var s=r&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then(function(){e=!1,t()}))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout(function(){e=!1,t()},o))}};function u(t){return t&&"[object Function]"==={}.toString.call(t)}function c(t,e){if(1!==t.nodeType)return[];var n=getComputedStyle(t,null);return e?n[e]:n}function l(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function f(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=c(t),n=e.overflow,r=e.overflowX,i=e.overflowY;return/(auto|scroll|overlay)/.test(n+i+r)?t:f(l(t))}var p=r&&!(!window.MSInputMethodContext||!document.documentMode),d=r&&/MSIE 10/.test(navigator.userAgent);function h(t){return 11===t?p:10===t?d:p||d}function v(t){if(!t)return document.documentElement;for(var e=h(10)?document.body:null,n=t.offsetParent;n===e&&t.nextElementSibling;)n=(t=t.nextElementSibling).offsetParent;var r=n&&n.nodeName;return r&&"BODY"!==r&&"HTML"!==r?-1!==["TD","TABLE"].indexOf(n.nodeName)&&"static"===c(n,"position")?v(n):n:t?t.ownerDocument.documentElement:document.documentElement}function m(t){return null!==t.parentNode?m(t.parentNode):t}function g(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,r=n?t:e,i=n?e:t,o=document.createRange();o.setStart(r,0),o.setEnd(i,0);var a=o.commonAncestorContainer;if(t!==a&&e!==a||r.contains(i))return function(t){var e=t.nodeName;return"BODY"!==e&&("HTML"===e||v(t.firstElementChild)===t)}(a)?a:v(a);var s=m(t);return s.host?g(s.host,e):g(t,m(e).host)}function y(t){var e="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=t.nodeName;if("BODY"===n||"HTML"===n){var r=t.ownerDocument.documentElement;return(t.ownerDocument.scrollingElement||r)[e]}return t[e]}function _(t,e){var n="x"===e?"Left":"Top",r="Left"===n?"Right":"Bottom";return parseFloat(t["border"+n+"Width"],10)+parseFloat(t["border"+r+"Width"],10)}function b(t,e,n,r){return Math.max(e["offset"+t],e["scroll"+t],n["client"+t],n["offset"+t],n["scroll"+t],h(10)?n["offset"+t]+r["margin"+("Height"===t?"Top":"Left")]+r["margin"+("Height"===t?"Bottom":"Right")]:0)}function w(){var t=document.body,e=document.documentElement,n=h(10)&&getComputedStyle(e);return{height:b("Height",t,e,n),width:b("Width",t,e,n)}}var x=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},O=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),S=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t},C=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t};function k(t){return C({},t,{right:t.left+t.width,bottom:t.top+t.height})}function E(t){var e={};try{if(h(10)){e=t.getBoundingClientRect();var n=y(t,"top"),r=y(t,"left");e.top+=n,e.left+=r,e.bottom+=n,e.right+=r}else e=t.getBoundingClientRect()}catch(t){}var i={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},o="HTML"===t.nodeName?w():{},a=o.width||t.clientWidth||i.right-i.left,s=o.height||t.clientHeight||i.bottom-i.top,u=t.offsetWidth-a,l=t.offsetHeight-s;if(u||l){var f=c(t);u-=_(f,"x"),l-=_(f,"y"),i.width-=u,i.height-=l}return k(i)}function T(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=h(10),i="HTML"===e.nodeName,o=E(t),a=E(e),s=f(t),u=c(e),l=parseFloat(u.borderTopWidth,10),p=parseFloat(u.borderLeftWidth,10);n&&"HTML"===e.nodeName&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var d=k({top:o.top-a.top-l,left:o.left-a.left-p,width:o.width,height:o.height});if(d.marginTop=0,d.marginLeft=0,!r&&i){var v=parseFloat(u.marginTop,10),m=parseFloat(u.marginLeft,10);d.top-=l-v,d.bottom-=l-v,d.left-=p-m,d.right-=p-m,d.marginTop=v,d.marginLeft=m}return(r&&!n?e.contains(s):e===s&&"BODY"!==s.nodeName)&&(d=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=y(e,"top"),i=y(e,"left"),o=n?-1:1;return t.top+=r*o,t.bottom+=r*o,t.left+=i*o,t.right+=i*o,t}(d,e)),d}function A(t){if(!t||!t.parentElement||h())return document.documentElement;for(var e=t.parentElement;e&&"none"===c(e,"transform");)e=e.parentElement;return e||document.documentElement}function D(t,e,n,r){var i=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o={top:0,left:0},a=i?A(t):g(t,e);if("viewport"===r)o=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.ownerDocument.documentElement,r=T(t,n),i=Math.max(n.clientWidth,window.innerWidth||0),o=Math.max(n.clientHeight,window.innerHeight||0),a=e?0:y(n),s=e?0:y(n,"left");return k({top:a-r.top+r.marginTop,left:s-r.left+r.marginLeft,width:i,height:o})}(a,i);else{var s=void 0;"scrollParent"===r?"BODY"===(s=f(l(e))).nodeName&&(s=t.ownerDocument.documentElement):s="window"===r?t.ownerDocument.documentElement:r;var u=T(s,a,i);if("HTML"!==s.nodeName||function t(e){var n=e.nodeName;return"BODY"!==n&&"HTML"!==n&&("fixed"===c(e,"position")||t(l(e)))}(a))o=u;else{var p=w(),d=p.height,h=p.width;o.top+=u.top-u.marginTop,o.bottom=d+u.top,o.left+=u.left-u.marginLeft,o.right=h+u.left}}return o.left+=n,o.top+=n,o.right-=n,o.bottom-=n,o}function M(t,e,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var a=D(n,r,o,i),s={top:{width:a.width,height:e.top-a.top},right:{width:a.right-e.right,height:a.height},bottom:{width:a.width,height:a.bottom-e.bottom},left:{width:e.left-a.left,height:a.height}},u=Object.keys(s).map(function(t){return C({key:t},s[t],{area:function(t){return t.width*t.height}(s[t])})}).sort(function(t,e){return e.area-t.area}),c=u.filter(function(t){var e=t.width,r=t.height;return e>=n.clientWidth&&r>=n.clientHeight}),l=c.length>0?c[0].key:u[0].key,f=t.split("-")[1];return l+(f?"-"+f:"")}function P(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return T(n,r?A(e):g(e,n),r)}function N(t){var e=getComputedStyle(t),n=parseFloat(e.marginTop)+parseFloat(e.marginBottom),r=parseFloat(e.marginLeft)+parseFloat(e.marginRight);return{width:t.offsetWidth+r,height:t.offsetHeight+n}}function $(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,function(t){return e[t]})}function L(t,e,n){n=n.split("-")[0];var r=N(t),i={width:r.width,height:r.height},o=-1!==["right","left"].indexOf(n),a=o?"top":"left",s=o?"left":"top",u=o?"height":"width",c=o?"width":"height";return i[a]=e[a]+e[u]/2-r[u]/2,i[s]=n===s?e[s]-r[c]:e[$(s)],i}function j(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function I(t,e,n){return(void 0===n?t:t.slice(0,function(t,e,n){if(Array.prototype.findIndex)return t.findIndex(function(t){return t[e]===n});var r=j(t,function(t){return t[e]===n});return t.indexOf(r)}(t,"name",n))).forEach(function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=t.function||t.fn;t.enabled&&u(n)&&(e.offsets.popper=k(e.offsets.popper),e.offsets.reference=k(e.offsets.reference),e=n(e,t))}),e}function F(t,e){return t.some(function(t){var n=t.name;return t.enabled&&n===e})}function R(t){for(var e=[!1,"ms","Webkit","Moz","O"],n=t.charAt(0).toUpperCase()+t.slice(1),r=0;r<e.length;r++){var i=e[r],o=i?""+i+n:t;if(void 0!==document.body.style[o])return o}return null}function B(t){var e=t.ownerDocument;return e?e.defaultView:window}function U(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function V(t,e){Object.keys(e).forEach(function(n){var r="";-1!==["width","height","top","right","bottom","left"].indexOf(n)&&U(e[n])&&(r="px"),t.style[n]=e[n]+r})}function H(t,e,n){var r=j(t,function(t){return t.name===e}),i=!!r&&t.some(function(t){return t.name===n&&t.enabled&&t.order<r.order});if(!i){var o="`"+e+"`",a="`"+n+"`";console.warn(a+" modifier is required by "+o+" modifier in order to work, be sure to include it before "+o+"!")}return i}var z=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],W=z.slice(3);function Y(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=W.indexOf(t),r=W.slice(n+1).concat(W.slice(0,n));return e?r.reverse():r}var G={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"},q={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split("-")[0],r=e.split("-")[1];if(r){var i=t.offsets,o=i.reference,a=i.popper,s=-1!==["bottom","top"].indexOf(n),u=s?"left":"top",c=s?"width":"height",l={start:S({},u,o[u]),end:S({},u,o[u]+o[c]-a[c])};t.offsets.popper=C({},a,l[r])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,r=t.placement,i=t.offsets,o=i.popper,a=i.reference,s=r.split("-")[0],u=void 0;return u=U(+n)?[+n,0]:function(t,e,n,r){var i=[0,0],o=-1!==["right","left"].indexOf(r),a=t.split(/(\+|\-)/).map(function(t){return t.trim()}),s=a.indexOf(j(a,function(t){return-1!==t.search(/,|\s/)}));a[s]&&-1===a[s].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var u=/\s*,\s*|\s+/,c=-1!==s?[a.slice(0,s).concat([a[s].split(u)[0]]),[a[s].split(u)[1]].concat(a.slice(s+1))]:[a];return(c=c.map(function(t,r){var i=(1===r?!o:o)?"height":"width",a=!1;return t.reduce(function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,a=!0,t):a?(t[t.length-1]+=e,a=!1,t):t.concat(e)},[]).map(function(t){return function(t,e,n,r){var i=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),o=+i[1],a=i[2];if(!o)return t;if(0===a.indexOf("%")){var s=void 0;switch(a){case"%p":s=n;break;case"%":case"%r":default:s=r}return k(s)[e]/100*o}return"vh"===a||"vw"===a?("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*o:o}(t,i,e,n)})})).forEach(function(t,e){t.forEach(function(n,r){U(n)&&(i[e]+=n*("-"===t[r-1]?-1:1))})}),i}(n,o,a,s),"left"===s?(o.top+=u[0],o.left-=u[1]):"right"===s?(o.top+=u[0],o.left+=u[1]):"top"===s?(o.left+=u[0],o.top-=u[1]):"bottom"===s&&(o.left+=u[0],o.top+=u[1]),t.popper=o,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var n=e.boundariesElement||v(t.instance.popper);t.instance.reference===n&&(n=v(n));var r=R("transform"),i=t.instance.popper.style,o=i.top,a=i.left,s=i[r];i.top="",i.left="",i[r]="";var u=D(t.instance.popper,t.instance.reference,e.padding,n,t.positionFixed);i.top=o,i.left=a,i[r]=s,e.boundaries=u;var c=e.priority,l=t.offsets.popper,f={primary:function(t){var n=l[t];return l[t]<u[t]&&!e.escapeWithReference&&(n=Math.max(l[t],u[t])),S({},t,n)},secondary:function(t){var n="right"===t?"left":"top",r=l[n];return l[t]>u[t]&&!e.escapeWithReference&&(r=Math.min(l[n],u[t]-("right"===t?l.width:l.height))),S({},n,r)}};return c.forEach(function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";l=C({},l,f[e](t))}),t.offsets.popper=l,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,r=e.reference,i=t.placement.split("-")[0],o=Math.floor,a=-1!==["top","bottom"].indexOf(i),s=a?"right":"bottom",u=a?"left":"top",c=a?"width":"height";return n[s]<o(r[u])&&(t.offsets.popper[u]=o(r[u])-n[c]),n[u]>o(r[s])&&(t.offsets.popper[u]=o(r[s])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var n;if(!H(t.instance.modifiers,"arrow","keepTogether"))return t;var r=e.element;if("string"==typeof r){if(!(r=t.instance.popper.querySelector(r)))return t}else if(!t.instance.popper.contains(r))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var i=t.placement.split("-")[0],o=t.offsets,a=o.popper,s=o.reference,u=-1!==["left","right"].indexOf(i),l=u?"height":"width",f=u?"Top":"Left",p=f.toLowerCase(),d=u?"left":"top",h=u?"bottom":"right",v=N(r)[l];s[h]-v<a[p]&&(t.offsets.popper[p]-=a[p]-(s[h]-v)),s[p]+v>a[h]&&(t.offsets.popper[p]+=s[p]+v-a[h]),t.offsets.popper=k(t.offsets.popper);var m=s[p]+s[l]/2-v/2,g=c(t.instance.popper),y=parseFloat(g["margin"+f],10),_=parseFloat(g["border"+f+"Width"],10),b=m-t.offsets.popper[p]-y-_;return b=Math.max(Math.min(a[l]-v,b),0),t.arrowElement=r,t.offsets.arrow=(S(n={},p,Math.round(b)),S(n,d,""),n),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(F(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var n=D(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement,t.positionFixed),r=t.placement.split("-")[0],i=$(r),o=t.placement.split("-")[1]||"",a=[];switch(e.behavior){case G.FLIP:a=[r,i];break;case G.CLOCKWISE:a=Y(r);break;case G.COUNTERCLOCKWISE:a=Y(r,!0);break;default:a=e.behavior}return a.forEach(function(s,u){if(r!==s||a.length===u+1)return t;r=t.placement.split("-")[0],i=$(r);var c=t.offsets.popper,l=t.offsets.reference,f=Math.floor,p="left"===r&&f(c.right)>f(l.left)||"right"===r&&f(c.left)<f(l.right)||"top"===r&&f(c.bottom)>f(l.top)||"bottom"===r&&f(c.top)<f(l.bottom),d=f(c.left)<f(n.left),h=f(c.right)>f(n.right),v=f(c.top)<f(n.top),m=f(c.bottom)>f(n.bottom),g="left"===r&&d||"right"===r&&h||"top"===r&&v||"bottom"===r&&m,y=-1!==["top","bottom"].indexOf(r),_=!!e.flipVariations&&(y&&"start"===o&&d||y&&"end"===o&&h||!y&&"start"===o&&v||!y&&"end"===o&&m);(p||g||_)&&(t.flipped=!0,(p||g)&&(r=a[u+1]),_&&(o=function(t){return t}(o)),t.placement=r+(o?"-"+o:""),t.offsets.popper=C({},t.offsets.popper,L(t.instance.popper,t.offsets.reference,t.placement)),t=I(t.instance.modifiers,t,"flip"))}),t},behavior:"flip",padding:5,boundariesElement:"viewport"},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split("-")[0],r=t.offsets,i=r.popper,o=r.reference,a=-1!==["left","right"].indexOf(n),s=-1===["top","left"].indexOf(n);return i[a?"left":"top"]=o[n]-(s?i[a?"width":"height"]:0),t.placement=$(e),t.offsets.popper=k(i),t}},hide:{order:800,enabled:!0,fn:function(t){if(!H(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=j(t.instance.modifiers,function(t){return"preventOverflow"===t.name}).boundaries;if(e.bottom<n.top||e.left>n.right||e.top>n.bottom||e.right<n.left){if(!0===t.hide)return t;t.hide=!0,t.attributes["x-out-of-boundaries"]=""}else{if(!1===t.hide)return t;t.hide=!1,t.attributes["x-out-of-boundaries"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var n=e.x,r=e.y,i=t.offsets.popper,o=j(t.instance.modifiers,function(t){return"applyStyle"===t.name}).gpuAcceleration;void 0!==o&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var a=void 0!==o?o:e.gpuAcceleration,s=E(v(t.instance.popper)),u={position:i.position},c={left:Math.floor(i.left),top:Math.round(i.top),bottom:Math.round(i.bottom),right:Math.floor(i.right)},l="bottom"===n?"top":"bottom",f="right"===r?"left":"right",p=R("transform"),d=void 0,h=void 0;if(h="bottom"===l?-s.height+c.bottom:c.top,d="right"===f?-s.width+c.right:c.left,a&&p)u[p]="translate3d("+d+"px, "+h+"px, 0)",u[l]=0,u[f]=0,u.willChange="transform";else{var m="bottom"===l?-1:1,g="right"===f?-1:1;u[l]=h*m,u[f]=d*g,u.willChange=l+", "+f}var y={"x-placement":t.placement};return t.attributes=C({},y,t.attributes),t.styles=C({},u,t.styles),t.arrowStyles=C({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(t){return V(t.instance.popper,t.styles),function(t,e){Object.keys(e).forEach(function(n){!1!==e[n]?t.setAttribute(n,e[n]):t.removeAttribute(n)})}(t.instance.popper,t.attributes),t.arrowElement&&Object.keys(t.arrowStyles).length&&V(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,n,r,i){var o=P(i,e,t,n.positionFixed),a=M(n.placement,o,e,t,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return e.setAttribute("x-placement",a),V(e,{position:n.positionFixed?"fixed":"absolute"}),n},gpuAcceleration:void 0}}},K=function(){function t(e,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};x(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=s(this.update.bind(this)),this.options=C({},t.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(C({},t.Defaults.modifiers,i.modifiers)).forEach(function(e){r.options.modifiers[e]=C({},t.Defaults.modifiers[e]||{},i.modifiers?i.modifiers[e]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(t){return C({name:t},r.options.modifiers[t])}).sort(function(t,e){return t.order-e.order}),this.modifiers.forEach(function(t){t.enabled&&u(t.onLoad)&&t.onLoad(r.reference,r.popper,r.options,t,r.state)}),this.update();var o=this.options.eventsEnabled;o&&this.enableEventListeners(),this.state.eventsEnabled=o}return O(t,[{key:"update",value:function(){return function(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=P(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=M(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=L(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=I(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}.call(this)}},{key:"destroy",value:function(){return function(){return this.state.isDestroyed=!0,F(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[R("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}.call(this)}},{key:"enableEventListeners",value:function(){return function(){this.state.eventsEnabled||(this.state=function(t,e,n,r){n.updateBound=r,B(t).addEventListener("resize",n.updateBound,{passive:!0});var i=f(t);return function t(e,n,r,i){var o="BODY"===e.nodeName,a=o?e.ownerDocument.defaultView:e;a.addEventListener(n,r,{passive:!0}),o||t(f(a.parentNode),n,r,i),i.push(a)}(i,"scroll",n.updateBound,n.scrollParents),n.scrollElement=i,n.eventsEnabled=!0,n}(this.reference,this.options,this.state,this.scheduleUpdate))}.call(this)}},{key:"disableEventListeners",value:function(){return function(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=function(t,e){return B(t).removeEventListener("resize",e.updateBound),e.scrollParents.forEach(function(t){t.removeEventListener("scroll",e.updateBound)}),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e}(this.reference,this.state))}.call(this)}}]),t}();K.Utils=("undefined"!=typeof window?window:t).PopperUtils,K.placements=z,K.Defaults=q;var J=function(){};function X(t){return"string"==typeof t&&(t=t.split(" ")),t}function Z(t,e){var n=X(e),r=void 0;r=t.className instanceof J?X(t.className.baseVal):X(t.className),n.forEach(function(t){-1===r.indexOf(t)&&r.push(t)}),t instanceof SVGElement?t.setAttribute("class",r.join(" ")):t.className=r.join(" ")}function Q(t,e){var n=X(e),r=void 0;r=t.className instanceof J?X(t.className.baseVal):X(t.className),n.forEach(function(t){var e=r.indexOf(t);-1!==e&&r.splice(e,1)}),t instanceof SVGElement?t.setAttribute("class",r.join(" ")):t.className=r.join(" ")}"undefined"!=typeof window&&(J=window.SVGAnimatedString);var tt=!1;if("undefined"!=typeof window){tt=!1;try{var et=Object.defineProperty({},"passive",{get:function(){tt=!0}});window.addEventListener("test",null,et)}catch(t){}}var nt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},rt=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},it=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),ot=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},at={container:!1,delay:0,html:!1,placement:"top",title:"",template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",offset:0},st=[],ut=function(){function t(e,n){rt(this,t),ct.call(this),n=ot({},at,n),e.jquery&&(e=e[0]),this.reference=e,this.options=n,this._isOpen=!1,this._init()}return it(t,[{key:"setClasses",value:function(t){this._classes=t}},{key:"setContent",value:function(t){this.options.title=t,this._tooltipNode&&this._setContent(t,this.options)}},{key:"setOptions",value:function(t){var e=!1,n=t&&t.classes||yt.options.defaultClass;this._classes!==n&&(this.setClasses(n),e=!0),t=dt(t);var r=!1,i=!1;for(var o in this.options.offset===t.offset&&this.options.placement===t.placement||(r=!0),(this.options.template!==t.template||this.options.trigger!==t.trigger||this.options.container!==t.container||e)&&(i=!0),t)this.options[o]=t[o];if(this._tooltipNode)if(i){var a=this._isOpen;this.dispose(),this._init(),a&&this.show()}else r&&this.popperInstance.update()}},{key:"_init",value:function(){var t="string"==typeof this.options.trigger?this.options.trigger.split(" ").filter(function(t){return-1!==["click","hover","focus"].indexOf(t)}):[];this._isDisposed=!1,this._enableDocumentTouch=-1===t.indexOf("manual"),this._setEventListeners(this.reference,t,this.options)}},{key:"_create",value:function(t,e){var n=window.document.createElement("div");n.innerHTML=e.trim();var r=n.childNodes[0];return r.id="tooltip_"+Math.random().toString(36).substr(2,10),r.setAttribute("aria-hidden","true"),this.options.autoHide&&-1!==this.options.trigger.indexOf("hover")&&(r.addEventListener("mouseenter",this.hide),r.addEventListener("click",this.hide)),r}},{key:"_setContent",value:function(t,e){var n=this;this.asyncContent=!1,this._applyContent(t,e).then(function(){n.popperInstance.update()})}},{key:"_applyContent",value:function(t,e){var n=this;return new Promise(function(r,i){var o=e.html,a=n._tooltipNode;if(a){var s=a.querySelector(n.options.innerSelector);if(1===t.nodeType){if(o){for(;s.firstChild;)s.removeChild(s.firstChild);s.appendChild(t)}}else{if("function"==typeof t){var u=t();return void(u&&"function"==typeof u.then?(n.asyncContent=!0,e.loadingClass&&Z(a,e.loadingClass),e.loadingContent&&n._applyContent(e.loadingContent,e),u.then(function(t){return e.loadingClass&&Q(a,e.loadingClass),n._applyContent(t,e)}).then(r).catch(i)):n._applyContent(u,e).then(r).catch(i))}o?s.innerHTML=t:s.innerText=t}r()}})}},{key:"_show",value:function(t,e){if(!e||"string"!=typeof e.container||document.querySelector(e.container)){clearTimeout(this._disposeTimer),delete(e=Object.assign({},e)).offset;var n=!0;this._tooltipNode&&(Z(this._tooltipNode,this._classes),n=!1);var r=this._ensureShown(t,e);return n&&this._tooltipNode&&Z(this._tooltipNode,this._classes),Z(t,["v-tooltip-open"]),r}}},{key:"_ensureShown",value:function(t,e){var n=this;if(this._isOpen)return this;if(this._isOpen=!0,st.push(this),this._tooltipNode)return this._tooltipNode.style.display="",this._tooltipNode.setAttribute("aria-hidden","false"),this.popperInstance.enableEventListeners(),this.popperInstance.update(),this.asyncContent&&this._setContent(e.title,e),this;var r=t.getAttribute("title")||e.title;if(!r)return this;var i=this._create(t,e.template);this._tooltipNode=i,this._setContent(r,e),t.setAttribute("aria-describedby",i.id);var o=this._findContainer(e.container,t);this._append(i,o);var a=ot({},e.popperOptions,{placement:e.placement});return a.modifiers=ot({},a.modifiers,{arrow:{element:this.options.arrowSelector}}),e.boundariesElement&&(a.modifiers.preventOverflow={boundariesElement:e.boundariesElement}),this.popperInstance=new K(t,i,a),requestAnimationFrame(function(){!n._isDisposed&&n.popperInstance?(n.popperInstance.update(),requestAnimationFrame(function(){n._isDisposed?n.dispose():n._isOpen&&i.setAttribute("aria-hidden","false")})):n.dispose()}),this}},{key:"_noLongerOpen",value:function(){var t=st.indexOf(this);-1!==t&&st.splice(t,1)}},{key:"_hide",value:function(){var t=this;if(!this._isOpen)return this;this._isOpen=!1,this._noLongerOpen(),this._tooltipNode.style.display="none",this._tooltipNode.setAttribute("aria-hidden","true"),this.popperInstance.disableEventListeners(),clearTimeout(this._disposeTimer);var e=yt.options.disposeTimeout;return null!==e&&(this._disposeTimer=setTimeout(function(){t._tooltipNode&&(t._tooltipNode.removeEventListener("mouseenter",t.hide),t._tooltipNode.removeEventListener("click",t.hide),t._tooltipNode.parentNode.removeChild(t._tooltipNode),t._tooltipNode=null)},e)),Q(this.reference,["v-tooltip-open"]),this}},{key:"_dispose",value:function(){var t=this;return this._isDisposed=!0,this._events.forEach(function(e){var n=e.func,r=e.event;t.reference.removeEventListener(r,n)}),this._events=[],this._tooltipNode?(this._hide(),this._tooltipNode.removeEventListener("mouseenter",this.hide),this._tooltipNode.removeEventListener("click",this.hide),this.popperInstance.destroy(),this.popperInstance.options.removeOnDestroy||(this._tooltipNode.parentNode.removeChild(this._tooltipNode),this._tooltipNode=null)):this._noLongerOpen(),this}},{key:"_findContainer",value:function(t,e){return"string"==typeof t?t=window.document.querySelector(t):!1===t&&(t=e.parentNode),t}},{key:"_append",value:function(t,e){e.appendChild(t)}},{key:"_setEventListeners",value:function(t,e,n){var r=this,i=[],o=[];e.forEach(function(t){switch(t){case"hover":i.push("mouseenter"),o.push("mouseleave"),r.options.hideOnTargetClick&&o.push("click");break;case"focus":i.push("focus"),o.push("blur"),r.options.hideOnTargetClick&&o.push("click");break;case"click":i.push("click"),o.push("click")}}),i.forEach(function(e){var i=function(e){!0!==r._isOpen&&(e.usedByTooltip=!0,r._scheduleShow(t,n.delay,n,e))};r._events.push({event:e,func:i}),t.addEventListener(e,i)}),o.forEach(function(e){var i=function(e){!0!==e.usedByTooltip&&r._scheduleHide(t,n.delay,n,e)};r._events.push({event:e,func:i}),t.addEventListener(e,i)})}},{key:"_onDocumentTouch",value:function(t){this._enableDocumentTouch&&this._scheduleHide(this.reference,this.options.delay,this.options,t)}},{key:"_scheduleShow",value:function(t,e,n){var r=this,i=e&&e.show||e||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout(function(){return r._show(t,n)},i)}},{key:"_scheduleHide",value:function(t,e,n,r){var i=this,o=e&&e.hide||e||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout(function(){if(!1!==i._isOpen&&document.body.contains(i._tooltipNode)){if("mouseleave"===r.type&&i._setTooltipNodeEvent(r,t,e,n))return;i._hide(t,n)}},o)}}]),t}(),ct=function(){var t=this;this.show=function(){t._show(t.reference,t.options)},this.hide=function(){t._hide()},this.dispose=function(){t._dispose()},this.toggle=function(){return t._isOpen?t.hide():t.show()},this._events=[],this._setTooltipNodeEvent=function(e,n,r,i){var o=e.relatedreference||e.toElement||e.relatedTarget;return!!t._tooltipNode.contains(o)&&(t._tooltipNode.addEventListener(e.type,function r(o){var a=o.relatedreference||o.toElement||o.relatedTarget;t._tooltipNode.removeEventListener(e.type,r),n.contains(a)||t._scheduleHide(n,i.delay,i,o)}),!0)}};"undefined"!=typeof document&&document.addEventListener("touchstart",function(t){for(var e=0;e<st.length;e++)st[e]._onDocumentTouch(t)},!tt||{passive:!0,capture:!0});var lt={enabled:!0},ft=["top","top-start","top-end","right","right-start","right-end","bottom","bottom-start","bottom-end","left","left-start","left-end"],pt={defaultPlacement:"top",defaultClass:"vue-tooltip-theme",defaultTargetClass:"has-tooltip",defaultHtml:!0,defaultTemplate:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',defaultArrowSelector:".tooltip-arrow, .tooltip__arrow",defaultInnerSelector:".tooltip-inner, .tooltip__inner",defaultDelay:0,defaultTrigger:"hover focus",defaultOffset:0,defaultContainer:"body",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultLoadingClass:"tooltip-loading",defaultLoadingContent:"...",autoHide:!0,defaultHideOnTargetClick:!0,disposeTimeout:5e3,popover:{defaultPlacement:"bottom",defaultClass:"vue-popover-theme",defaultBaseClass:"tooltip popover",defaultWrapperClass:"wrapper",defaultInnerClass:"tooltip-inner popover-inner",defaultArrowClass:"tooltip-arrow popover-arrow",defaultDelay:0,defaultTrigger:"click",defaultOffset:0,defaultContainer:"body",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultAutoHide:!0,defaultHandleResize:!0}};function dt(t){var e={placement:void 0!==t.placement?t.placement:yt.options.defaultPlacement,delay:void 0!==t.delay?t.delay:yt.options.defaultDelay,html:void 0!==t.html?t.html:yt.options.defaultHtml,template:void 0!==t.template?t.template:yt.options.defaultTemplate,arrowSelector:void 0!==t.arrowSelector?t.arrowSelector:yt.options.defaultArrowSelector,innerSelector:void 0!==t.innerSelector?t.innerSelector:yt.options.defaultInnerSelector,trigger:void 0!==t.trigger?t.trigger:yt.options.defaultTrigger,offset:void 0!==t.offset?t.offset:yt.options.defaultOffset,container:void 0!==t.container?t.container:yt.options.defaultContainer,boundariesElement:void 0!==t.boundariesElement?t.boundariesElement:yt.options.defaultBoundariesElement,autoHide:void 0!==t.autoHide?t.autoHide:yt.options.autoHide,hideOnTargetClick:void 0!==t.hideOnTargetClick?t.hideOnTargetClick:yt.options.defaultHideOnTargetClick,loadingClass:void 0!==t.loadingClass?t.loadingClass:yt.options.defaultLoadingClass,loadingContent:void 0!==t.loadingContent?t.loadingContent:yt.options.defaultLoadingContent,popperOptions:ot({},void 0!==t.popperOptions?t.popperOptions:yt.options.defaultPopperOptions)};if(e.offset){var n=nt(e.offset),r=e.offset;("number"===n||"string"===n&&-1===r.indexOf(","))&&(r="0, "+r),e.popperOptions.modifiers||(e.popperOptions.modifiers={}),e.popperOptions.modifiers.offset={offset:r}}return e.trigger&&-1!==e.trigger.indexOf("click")&&(e.hideOnTargetClick=!1),e}function ht(t,e){for(var n=t.placement,r=0;r<ft.length;r++){var i=ft[r];e[i]&&(n=i)}return n}function vt(t){var e=void 0===t?"undefined":nt(t);return"string"===e?t:!(!t||"object"!==e)&&t.content}function mt(t){t._tooltip&&(t._tooltip.dispose(),delete t._tooltip,delete t._tooltipOldShow),t._tooltipTargetClasses&&(Q(t,t._tooltipTargetClasses),delete t._tooltipTargetClasses)}function gt(t,e){var n=e.value,r=(e.oldValue,e.modifiers),i=vt(n);if(i&<.enabled){var o=void 0;t._tooltip?((o=t._tooltip).setContent(i),o.setOptions(ot({},n,{placement:ht(n,r)}))):o=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=vt(e),i=void 0!==e.classes?e.classes:yt.options.defaultClass,o=ot({title:r},dt(ot({},e,{placement:ht(e,n)}))),a=t._tooltip=new ut(t,o);a.setClasses(i),a._vueEl=t;var s=void 0!==e.targetClasses?e.targetClasses:yt.options.defaultTargetClass;return t._tooltipTargetClasses=s,Z(t,s),a}(t,n,r),void 0!==n.show&&n.show!==t._tooltipOldShow&&(t._tooltipOldShow=n.show,n.show?o.show():o.hide())}else mt(t)}var yt={options:pt,bind:gt,update:gt,unbind:function(t){mt(t)}};function _t(t){t.addEventListener("click",wt),t.addEventListener("touchstart",xt,!!tt&&{passive:!0})}function bt(t){t.removeEventListener("click",wt),t.removeEventListener("touchstart",xt),t.removeEventListener("touchend",Ot),t.removeEventListener("touchcancel",St)}function wt(t){var e=t.currentTarget;t.closePopover=!e.$_vclosepopover_touch,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}function xt(t){if(1===t.changedTouches.length){var e=t.currentTarget;e.$_vclosepopover_touch=!0;var n=t.changedTouches[0];e.$_vclosepopover_touchPoint=n,e.addEventListener("touchend",Ot),e.addEventListener("touchcancel",St)}}function Ot(t){var e=t.currentTarget;if(e.$_vclosepopover_touch=!1,1===t.changedTouches.length){var n=t.changedTouches[0],r=e.$_vclosepopover_touchPoint;t.closePopover=Math.abs(n.screenY-r.screenY)<20&&Math.abs(n.screenX-r.screenX)<20,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}}function St(t){t.currentTarget.$_vclosepopover_touch=!1}var Ct={bind:function(t,e){var n=e.value,r=e.modifiers;t.$_closePopoverModifiers=r,(void 0===n||n)&&_t(t)},update:function(t,e){var n=e.value,r=e.oldValue,i=e.modifiers;t.$_closePopoverModifiers=i,n!==r&&(void 0===n||n?_t(t):bt(t))},unbind:function(t){bt(t)}},kt=void 0,Et={render:function(){var t=this.$createElement;return(this._self._c||t)("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},staticRenderFns:[],_scopeId:"data-v-b329ee4c",name:"resize-observer",methods:{notify:function(){this.$emit("notify")},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.notify),this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||this.notify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!kt&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.notify),delete this._resizeObject.onload)}},mounted:function(){var t=this;(function t(){t.init||(t.init=!0,kt=-1!==function(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);if(t.indexOf("Trident/")>0){var n=t.indexOf("rv:");return parseInt(t.substring(n+3,t.indexOf(".",n)),10)}var r=t.indexOf("Edge/");return r>0?parseInt(t.substring(r+5,t.indexOf(".",r)),10):-1}())})(),this.$nextTick(function(){t._w=t.$el.offsetWidth,t._h=t.$el.offsetHeight});var e=document.createElement("object");this._resizeObject=e,e.setAttribute("style","display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1;"),e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",kt&&this.$el.appendChild(e),e.data="about:blank",kt||this.$el.appendChild(e)},beforeDestroy:function(){this.removeResizeHandlers()}},Tt={version:"0.4.4",install:function(t){t.component("resize-observer",Et)}},At=null;function Dt(t){var e=yt.options.popover[t];return void 0===e?yt.options[t]:e}"undefined"!=typeof window?At=window.Vue:void 0!==t&&(At=t.Vue),At&&At.use(Tt);var Mt=!1;"undefined"!=typeof window&&"undefined"!=typeof navigator&&(Mt=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);var Pt=[],Nt=function(){};"undefined"!=typeof window&&(Nt=window.Element);var $t={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"v-popover",class:t.cssClass},[n("span",{ref:"trigger",staticClass:"trigger",staticStyle:{display:"inline-block"},attrs:{"aria-describedby":t.popoverId,tabindex:-1!==t.trigger.indexOf("focus")?0:-1}},[t._t("default")],2),t._v(" "),n("div",{ref:"popover",class:[t.popoverBaseClass,t.popoverClass,t.cssClass],style:{visibility:t.isOpen?"visible":"hidden"},attrs:{id:t.popoverId,"aria-hidden":t.isOpen?"false":"true"}},[n("div",{class:t.popoverWrapperClass},[n("div",{ref:"inner",class:t.popoverInnerClass,staticStyle:{position:"relative"}},[n("div",[t._t("popover")],2),t._v(" "),t.handleResize?n("ResizeObserver",{on:{notify:t.$_handleResize}}):t._e()],1),t._v(" "),n("div",{ref:"arrow",class:t.popoverArrowClass})])])])},staticRenderFns:[],name:"VPopover",components:{ResizeObserver:Et},props:{open:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},placement:{type:String,default:function(){return Dt("defaultPlacement")}},delay:{type:[String,Number,Object],default:function(){return Dt("defaultDelay")}},offset:{type:[String,Number],default:function(){return Dt("defaultOffset")}},trigger:{type:String,default:function(){return Dt("defaultTrigger")}},container:{type:[String,Object,Nt,Boolean],default:function(){return Dt("defaultContainer")}},boundariesElement:{type:[String,Nt],default:function(){return Dt("defaultBoundariesElement")}},popperOptions:{type:Object,default:function(){return Dt("defaultPopperOptions")}},popoverClass:{type:[String,Array],default:function(){return Dt("defaultClass")}},popoverBaseClass:{type:[String,Array],default:function(){return yt.options.popover.defaultBaseClass}},popoverInnerClass:{type:[String,Array],default:function(){return yt.options.popover.defaultInnerClass}},popoverWrapperClass:{type:[String,Array],default:function(){return yt.options.popover.defaultWrapperClass}},popoverArrowClass:{type:[String,Array],default:function(){return yt.options.popover.defaultArrowClass}},autoHide:{type:Boolean,default:function(){return yt.options.popover.defaultAutoHide}},handleResize:{type:Boolean,default:function(){return yt.options.popover.defaultHandleResize}},openGroup:{type:String,default:null}},data:function(){return{isOpen:!1,id:Math.random().toString(36).substr(2,10)}},computed:{cssClass:function(){return{open:this.isOpen}},popoverId:function(){return"popover_"+this.id}},watch:{open:function(t){t?this.show():this.hide()},disabled:function(t,e){t!==e&&(t?this.hide():this.open&&this.show())},container:function(t){if(this.isOpen&&this.popperInstance){var e=this.$refs.popover,n=this.$refs.trigger,r=this.$_findContainer(this.container,n);if(!r)return void console.warn("No container for popover",this);r.appendChild(e),this.popperInstance.scheduleUpdate()}},trigger:function(t){this.$_removeEventListeners(),this.$_addEventListeners()},placement:function(t){var e=this;this.$_updatePopper(function(){e.popperInstance.options.placement=t})},offset:"$_restartPopper",boundariesElement:"$_restartPopper",popperOptions:{handler:"$_restartPopper",deep:!0}},created:function(){this.$_isDisposed=!1,this.$_mounted=!1,this.$_events=[],this.$_preventOpen=!1},mounted:function(){var t=this.$refs.popover;t.parentNode&&t.parentNode.removeChild(t),this.$_init(),this.open&&this.show()},beforeDestroy:function(){this.dispose()},methods:{show:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.event,r=(e.skipDelay,e.force);!(void 0!==r&&r)&&this.disabled||(this.$_scheduleShow(n),this.$emit("show")),this.$emit("update:open",!0),this.$_beingShowed=!0,requestAnimationFrame(function(){t.$_beingShowed=!1})},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.event;t.skipDelay,this.$_scheduleHide(e),this.$emit("hide"),this.$emit("update:open",!1)},dispose:function(){if(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.popperInstance&&(this.popperInstance.destroy(),!this.popperInstance.options.removeOnDestroy)){var t=this.$refs.popover;t.parentNode&&t.parentNode.removeChild(t)}this.$_mounted=!1,this.popperInstance=null,this.isOpen=!1,this.$emit("dispose")},$_init:function(){-1===this.trigger.indexOf("manual")&&this.$_addEventListeners()},$_show:function(){var t=this,e=this.$refs.trigger,n=this.$refs.popover;if(clearTimeout(this.$_disposeTimer),!this.isOpen){if(this.popperInstance&&(this.isOpen=!0,this.popperInstance.enableEventListeners(),this.popperInstance.scheduleUpdate()),!this.$_mounted){var r=this.$_findContainer(this.container,e);if(!r)return void console.warn("No container for popover",this);r.appendChild(n),this.$_mounted=!0}if(!this.popperInstance){var i=ot({},this.popperOptions,{placement:this.placement});if(i.modifiers=ot({},i.modifiers,{arrow:ot({},i.modifiers&&i.modifiers.arrow,{element:this.$refs.arrow})}),this.offset){var o=this.$_getOffset();i.modifiers.offset=ot({},i.modifiers&&i.modifiers.offset,{offset:o})}this.boundariesElement&&(i.modifiers.preventOverflow=ot({},i.modifiers&&i.modifiers.preventOverflow,{boundariesElement:this.boundariesElement})),this.popperInstance=new K(e,n,i),requestAnimationFrame(function(){!t.$_isDisposed&&t.popperInstance?(t.popperInstance.scheduleUpdate(),requestAnimationFrame(function(){t.$_isDisposed?t.dispose():t.isOpen=!0})):t.dispose()})}var a=this.openGroup;if(a)for(var s=void 0,u=0;u<Pt.length;u++)(s=Pt[u]).openGroup!==a&&(s.hide(),s.$emit("close-group"));Pt.push(this),this.$emit("apply-show")}},$_hide:function(){var t=this;if(this.isOpen){var e=Pt.indexOf(this);-1!==e&&Pt.splice(e,1),this.isOpen=!1,this.popperInstance&&this.popperInstance.disableEventListeners(),clearTimeout(this.$_disposeTimer);var n=yt.options.popover.disposeTimeout||yt.options.disposeTimeout;null!==n&&(this.$_disposeTimer=setTimeout(function(){var e=t.$refs.popover;e&&(e.parentNode&&e.parentNode.removeChild(e),t.$_mounted=!1)},n)),this.$emit("apply-hide")}},$_findContainer:function(t,e){return"string"==typeof t?t=window.document.querySelector(t):!1===t&&(t=e.parentNode),t},$_getOffset:function(){var t=nt(this.offset),e=this.offset;return("number"===t||"string"===t&&-1===e.indexOf(","))&&(e="0, "+e),e},$_addEventListeners:function(){var t=this,e=this.$refs.trigger,n=[],r=[];("string"==typeof this.trigger?this.trigger.split(" ").filter(function(t){return-1!==["click","hover","focus"].indexOf(t)}):[]).forEach(function(t){switch(t){case"hover":n.push("mouseenter"),r.push("mouseleave");break;case"focus":n.push("focus"),r.push("blur");break;case"click":n.push("click"),r.push("click")}}),n.forEach(function(n){var r=function(e){t.isOpen||(e.usedByTooltip=!0,!t.$_preventOpen&&t.show({event:e}))};t.$_events.push({event:n,func:r}),e.addEventListener(n,r)}),r.forEach(function(n){var r=function(e){e.usedByTooltip||t.hide({event:e})};t.$_events.push({event:n,func:r}),e.addEventListener(n,r)})},$_scheduleShow:function(){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),t)this.$_show();else{var e=parseInt(this.delay&&this.delay.show||this.delay||0);this.$_scheduleTimer=setTimeout(this.$_show.bind(this),e)}},$_scheduleHide:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),n)this.$_hide();else{var r=parseInt(this.delay&&this.delay.hide||this.delay||0);this.$_scheduleTimer=setTimeout(function(){if(t.isOpen){if(e&&"mouseleave"===e.type&&t.$_setTooltipNodeEvent(e))return;t.$_hide()}},r)}},$_setTooltipNodeEvent:function(t){var e=this,n=this.$refs.trigger,r=this.$refs.popover,i=t.relatedreference||t.toElement||t.relatedTarget;return!!r.contains(i)&&(r.addEventListener(t.type,function i(o){var a=o.relatedreference||o.toElement||o.relatedTarget;r.removeEventListener(t.type,i),n.contains(a)||e.hide({event:o})}),!0)},$_removeEventListeners:function(){var t=this.$refs.trigger;this.$_events.forEach(function(e){var n=e.func,r=e.event;t.removeEventListener(r,n)}),this.$_events=[]},$_updatePopper:function(t){this.popperInstance&&(t(),this.isOpen&&this.popperInstance.scheduleUpdate())},$_restartPopper:function(){if(this.popperInstance){var t=this.isOpen;this.dispose(),this.$_isDisposed=!1,this.$_init(),t&&this.show({skipDelay:!0,force:!0})}},$_handleGlobalClose:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.$_beingShowed||(this.hide({event:t}),t.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),n&&(this.$_preventOpen=!0,setTimeout(function(){e.$_preventOpen=!1},300)))},$_handleResize:function(){this.isOpen&&this.popperInstance&&(this.popperInstance.scheduleUpdate(),this.$emit("resize"))}}};function Lt(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];requestAnimationFrame(function(){for(var n=void 0,r=0;r<Pt.length;r++)if((n=Pt[r]).$refs.popover){var i=n.$refs.popover.contains(t.target);(t.closeAllPopover||t.closePopover&&i||n.autoHide&&!i)&&n.$_handleGlobalClose(t,e)}})}"undefined"!=typeof document&&"undefined"!=typeof window&&(Mt?document.addEventListener("touchend",function(t){Lt(t,!0)},!tt||{passive:!0,capture:!0}):window.addEventListener("click",function(t){Lt(t)},!0));var jt="undefined"!=typeof window?window:void 0!==t?t:"undefined"!=typeof self?self:{},It=function(t,e){return function(t,e){var n="__lodash_hash_undefined__",r=9007199254740991,i="[object Arguments]",o="[object AsyncFunction]",a="[object Function]",s="[object GeneratorFunction]",u="[object Null]",c="[object Object]",l="[object Proxy]",f="[object Undefined]",p=/^\[object .+?Constructor\]$/,d=/^(?:0|[1-9]\d*)$/,h={};h["[object Float32Array]"]=h["[object Float64Array]"]=h["[object Int8Array]"]=h["[object Int16Array]"]=h["[object Int32Array]"]=h["[object Uint8Array]"]=h["[object Uint8ClampedArray]"]=h["[object Uint16Array]"]=h["[object Uint32Array]"]=!0,h[i]=h["[object Array]"]=h["[object ArrayBuffer]"]=h["[object Boolean]"]=h["[object DataView]"]=h["[object Date]"]=h["[object Error]"]=h[a]=h["[object Map]"]=h["[object Number]"]=h[c]=h["[object RegExp]"]=h["[object Set]"]=h["[object String]"]=h["[object WeakMap]"]=!1;var v="object"==typeof jt&&jt&&jt.Object===Object&&jt,m="object"==typeof self&&self&&self.Object===Object&&self,g=v||m||Function("return this")(),y=e&&!e.nodeType&&e,_=y&&t&&!t.nodeType&&t,b=_&&_.exports===y,w=b&&v.process,x=function(){try{return w&&w.binding&&w.binding("util")}catch(t){}}(),O=x&&x.isTypedArray;function S(t,e){return"__proto__"==e?void 0:t[e]}var C=Array.prototype,k=Function.prototype,E=Object.prototype,T=g["__core-js_shared__"],A=k.toString,D=E.hasOwnProperty,M=function(){var t=/[^.]+$/.exec(T&&T.keys&&T.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),P=E.toString,N=A.call(Object),$=RegExp("^"+A.call(D).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),L=b?g.Buffer:void 0,j=g.Symbol,I=g.Uint8Array,F=(L&&L.allocUnsafe,function(t,e){return function(n){return t(e(n))}}(Object.getPrototypeOf,Object)),R=Object.create,B=E.propertyIsEnumerable,U=C.splice,V=j?j.toStringTag:void 0,H=function(){try{var t=ct(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),z=L?L.isBuffer:void 0,W=Math.max,Y=Date.now,G=ct(g,"Map"),q=ct(Object,"create"),K=function(){function t(){}return function(e){if(!bt(e))return{};if(R)return R(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();function J(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function X(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Z(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function Q(t){var e=this.__data__=new X(t);this.size=e.size}function tt(t,e,n){(void 0===n||dt(t[e],n))&&(void 0!==n||e in t)||rt(t,e,n)}function et(t,e,n){var r=t[e];D.call(t,e)&&dt(r,n)&&(void 0!==n||e in t)||rt(t,e,n)}function nt(t,e){for(var n=t.length;n--;)if(dt(t[n][0],e))return n;return-1}function rt(t,e,n){"__proto__"==e&&H?H(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}J.prototype.clear=function(){this.__data__=q?q(null):{},this.size=0},J.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},J.prototype.get=function(t){var e=this.__data__;if(q){var r=e[t];return r===n?void 0:r}return D.call(e,t)?e[t]:void 0},J.prototype.has=function(t){var e=this.__data__;return q?void 0!==e[t]:D.call(e,t)},J.prototype.set=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=q&&void 0===e?n:e,this},X.prototype.clear=function(){this.__data__=[],this.size=0},X.prototype.delete=function(t){var e=this.__data__,n=nt(e,t);return!(n<0||(n==e.length-1?e.pop():U.call(e,n,1),--this.size,0))},X.prototype.get=function(t){var e=this.__data__,n=nt(e,t);return n<0?void 0:e[n][1]},X.prototype.has=function(t){return nt(this.__data__,t)>-1},X.prototype.set=function(t,e){var n=this.__data__,r=nt(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this},Z.prototype.clear=function(){this.size=0,this.__data__={hash:new J,map:new(G||X),string:new J}},Z.prototype.delete=function(t){var e=ut(this,t).delete(t);return this.size-=e?1:0,e},Z.prototype.get=function(t){return ut(this,t).get(t)},Z.prototype.has=function(t){return ut(this,t).has(t)},Z.prototype.set=function(t,e){var n=ut(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this},Q.prototype.clear=function(){this.__data__=new X,this.size=0},Q.prototype.delete=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n},Q.prototype.get=function(t){return this.__data__.get(t)},Q.prototype.has=function(t){return this.__data__.has(t)},Q.prototype.set=function(t,e){var n=this.__data__;if(n instanceof X){var r=n.__data__;if(!G||r.length<199)return r.push([t,e]),this.size=++n.size,this;n=this.__data__=new Z(r)}return n.set(t,e),this.size=n.size,this};var it=function(t,e,n){for(var r=-1,i=Object(t),o=n(t),a=o.length;a--;){var s=o[++r];if(!1===e(i[s],s,i))break}return t};function ot(t){return null==t?void 0===t?f:u:V&&V in Object(t)?function(t){var e=D.call(t,V),n=t[V];try{t[V]=void 0;var r=!0}catch(t){}var i=P.call(t);return r&&(e?t[V]=n:delete t[V]),i}(t):function(t){return P.call(t)}(t)}function at(t){return wt(t)&&ot(t)==i}function st(t,e,n,r,i){t!==e&&it(e,function(o,a){if(bt(o))i||(i=new Q),function(t,e,n,r,i,o,a){var s=S(t,n),u=S(e,n),l=a.get(u);if(l)tt(t,n,l);else{var f=o?o(s,u,n+"",t,e,a):void 0,p=void 0===f;if(p){var d=vt(u),h=!d&>(u),v=!d&&!h&&xt(u);f=u,d||h||v?vt(s)?f=s:function(t){return wt(t)&&mt(t)}(s)?f=function(t,e){var n=-1,r=t.length;for(e||(e=Array(r));++n<r;)e[n]=t[n];return e}(s):h?(p=!1,f=function(t,e){return t.slice()}(u)):v?(p=!1,f=function(t,e){var n=function(t){var e=new t.constructor(t.byteLength);return new I(e).set(new I(t)),e}(t.buffer);return new t.constructor(n,t.byteOffset,t.length)}(u)):f=[]:function(t){if(!wt(t)||ot(t)!=c)return!1;var e=F(t);if(null===e)return!0;var n=D.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&A.call(n)==N}(u)||ht(u)?(f=s,ht(s)?f=function(t){return function(t,e,n,r){var i=!n;n||(n={});for(var o=-1,a=e.length;++o<a;){var s=e[o],u=void 0;void 0===u&&(u=t[s]),i?rt(n,s,u):et(n,s,u)}return n}(t,Ot(t))}(s):(!bt(s)||r&&yt(s))&&(f=function(t){return"function"!=typeof t.constructor||ft(t)?{}:K(F(t))}(u))):p=!1}p&&(a.set(u,f),i(f,u,r,o,a),a.delete(u)),tt(t,n,f)}}(t,e,a,n,st,r,i);else{var s=r?r(S(t,a),o,a+"",t,e,i):void 0;void 0===s&&(s=o),tt(t,a,s)}},Ot)}function ut(t,e){var n=t.__data__;return function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?n["string"==typeof e?"string":"hash"]:n.map}function ct(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return function(t){return!(!bt(t)||function(t){return!!M&&M in t}(t))&&(yt(t)?$:p).test(function(t){if(null!=t){try{return A.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}(n)?n:void 0}function lt(t,e){var n=typeof t;return!!(e=null==e?r:e)&&("number"==n||"symbol"!=n&&d.test(t))&&t>-1&&t%1==0&&t<e}function ft(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||E)}var pt=function(t){var e=0,n=0;return function(){var r=Y(),i=16-(r-n);if(n=r,i>0){if(++e>=800)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(H?function(t,e){return H(t,"toString",{configurable:!0,enumerable:!1,value:function(t){return function(){return t}}(e),writable:!0})}:Ct);function dt(t,e){return t===e||t!=t&&e!=e}var ht=at(function(){return arguments}())?at:function(t){return wt(t)&&D.call(t,"callee")&&!B.call(t,"callee")},vt=Array.isArray;function mt(t){return null!=t&&_t(t.length)&&!yt(t)}var gt=z||function(){return!1};function yt(t){if(!bt(t))return!1;var e=ot(t);return e==a||e==s||e==o||e==l}function _t(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=r}function bt(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function wt(t){return null!=t&&"object"==typeof t}var xt=O?function(t){return function(e){return t(e)}}(O):function(t){return wt(t)&&_t(t.length)&&!!h[ot(t)]};function Ot(t){return mt(t)?function(t,e){var n=vt(t),r=!n&&ht(t),i=!n&&!r&>(t),o=!n&&!r&&!i&&xt(t),a=n||r||i||o,s=a?function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}(t.length,String):[],u=s.length;for(var c in t)!e&&!D.call(t,c)||a&&("length"==c||i&&("offset"==c||"parent"==c)||o&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||lt(c,u))||s.push(c);return s}(t,!0):function(t){if(!bt(t))return function(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e}(t);var e=ft(t),n=[];for(var r in t)("constructor"!=r||!e&&D.call(t,r))&&n.push(r);return n}(t)}var St=function(t){return function(t,e){return pt(function(t,e,n){return e=W(void 0===e?t.length-1:e,0),function(){for(var r=arguments,i=-1,o=W(r.length-e,0),a=Array(o);++i<o;)a[i]=r[e+i];i=-1;for(var s=Array(e+1);++i<e;)s[i]=r[i];return s[e]=n(a),function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}(t,this,s)}}(t,e,Ct),t+"")}(function(e,n){var r=-1,i=n.length,o=i>1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=t.length>3&&"function"==typeof o?(i--,o):void 0,a&&function(t,e,n){if(!bt(n))return!1;var r=typeof e;return!!("number"==r?mt(n)&<(e,n.length):"string"==r&&e in n)&&dt(n[e],t)}(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),e=Object(e);++r<i;){var s=n[r];s&&t(e,s,r)}return e})}(function(t,e,n){st(t,e,n)});function Ct(t){return t}t.exports=St}(e={exports:{}},e.exports),e.exports}(),Ft=yt,Rt={install:function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!t.installed){t.installed=!0;var r={};It(r,pt,n),Rt.options=r,yt.options=r,e.directive("tooltip",yt),e.directive("close-popover",Ct),e.component("v-popover",$t)}},get enabled(){return lt.enabled},set enabled(t){lt.enabled=t}},Bt=null;"undefined"!=typeof window?Bt=window.Vue:void 0!==t&&(Bt=t.Vue),Bt&&Bt.use(Rt)}).call(this,n(91))},function(t,e,n){var r=n(3),i=n(2).document,o=r(i)&&r(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},function(t,e,n){var r=n(8),i=n(2),o=i["__core-js_shared__"]||(i["__core-js_shared__"]={});(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n(32)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){e.f=n(5)},function(t,e,n){var r=n(66)("keys"),i=n(31);t.exports=function(t){return r[t]||(r[t]=i(t))}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var r=n(23);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){var r=n(2).document;t.exports=r&&r.documentElement},function(t,e,n){var r=n(3),i=n(4),o=function(t,e){if(i(t),!r(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,r){try{(r=n(21)(Function.call,n(18).f(Object.prototype,"__proto__").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:r(t,n),t}}({},!1):void 0),check:o}},function(t,e){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},function(t,e,n){var r=n(3),i=n(72).set;t.exports=function(t,e,n){var o,a=e.constructor;return a!==n&&"function"==typeof a&&(o=a.prototype)!==n.prototype&&r(o)&&i&&i(t,o),t}},function(t,e,n){"use strict";var r=n(25),i=n(24);t.exports=function(t){var e=String(i(this)),n="",o=r(t);if(o<0||o==1/0)throw RangeError("Count can't be negative");for(;o>0;(o>>>=1)&&(e+=e))1&o&&(n+=e);return n}},function(t,e){t.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},function(t,e){var n=Math.expm1;t.exports=!n||n(10)>22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(t){return 0==(t=+t)?t:t>-1e-6&&t<1e-6?t+t*t/2:Math.exp(t)-1}:n},function(t,e,n){"use strict";var r=n(32),i=n(0),o=n(10),a=n(13),s=n(39),u=n(106),c=n(38),l=n(37),f=n(5)("iterator"),p=!([].keys&&"next"in[].keys()),d=function(){return this};t.exports=function(t,e,n,h,v,m,g){u(n,e,h);var y,_,b,w=function(t){if(!p&&t in C)return C[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},x=e+" Iterator",O="values"==v,S=!1,C=t.prototype,k=C[f]||C["@@iterator"]||v&&C[v],E=k||w(v),T=v?O?w("entries"):E:void 0,A="Array"==e&&C.entries||k;if(A&&(b=l(A.call(new t)))!==Object.prototype&&b.next&&(c(b,x,!0),r||"function"==typeof b[f]||a(b,f,d)),O&&k&&"values"!==k.name&&(S=!0,E=function(){return k.call(this)}),r&&!g||!p&&!S&&C[f]||a(C,f,E),s[e]=E,s[x]=d,v)if(y={values:O?E:w("values"),keys:m?E:w("keys"),entries:T},g)for(_ in y)_ in C||o(C,_,y[_]);else i(i.P+i.F*(p||S),e,y);return y}},function(t,e,n){var r=n(80),i=n(24);t.exports=function(t,e,n){if(r(e))throw TypeError("String#"+n+" doesn't accept regex!");return String(i(t))}},function(t,e,n){var r=n(3),i=n(23),o=n(5)("match");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[o])?!!e:"RegExp"==i(t))}},function(t,e,n){var r=n(5)("match");t.exports=function(t){var e=/./;try{"/./"[t](e)}catch(n){try{return e[r]=!1,!"/./"[t](e)}catch(t){}}return!0}},function(t,e,n){var r=n(39),i=n(5)("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||o[i]===t)}},function(t,e,n){"use strict";var r=n(6),i=n(30);t.exports=function(t,e,n){e in t?r.f(t,e,i(0,n)):t[e]=n}},function(t,e,n){var r=n(52),i=n(5)("iterator"),o=n(39);t.exports=n(8).getIteratorMethod=function(t){if(void 0!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,e,n){"use strict";var r=n(15),i=n(34),o=n(9);t.exports=function(t){for(var e=r(this),n=o(e.length),a=arguments.length,s=i(a>1?arguments[1]:void 0,n),u=a>2?arguments[2]:void 0,c=void 0===u?n:i(u,n);c>s;)e[s++]=t;return e}},function(t,e,n){"use strict";var r=n(40),i=n(110),o=n(39),a=n(14);t.exports=n(78)(Array,"Array",function(t,e){this._t=a(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,i(1)):i(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},function(t,e,n){"use strict";var r=n(4);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){var r,i,o,a=n(21),s=n(99),u=n(71),c=n(65),l=n(2),f=l.process,p=l.setImmediate,d=l.clearImmediate,h=l.MessageChannel,v=l.Dispatch,m=0,g={},y=function(){var t=+this;if(g.hasOwnProperty(t)){var e=g[t];delete g[t],e()}},_=function(t){y.call(t.data)};p&&d||(p=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return g[++m]=function(){s("function"==typeof t?t:Function(t),e)},r(m),m},d=function(t){delete g[t]},"process"==n(23)(f)?r=function(t){f.nextTick(a(y,t,1))}:v&&v.now?r=function(t){v.now(a(y,t,1))}:h?(o=(i=new h).port2,i.port1.onmessage=_,r=a(o.postMessage,o,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(r=function(t){l.postMessage(t+"","*")},l.addEventListener("message",_,!1)):r="onreadystatechange"in c("script")?function(t){u.appendChild(c("script")).onreadystatechange=function(){u.removeChild(this),y.call(t)}}:function(t){setTimeout(a(y,t,1),0)}),t.exports={set:p,clear:d}},function(t,e,n){"use strict";var r=n(2),i=n(7),o=n(32),a=n(60),s=n(13),u=n(43),c=n(1),l=n(42),f=n(25),p=n(9),d=n(117),h=n(36).f,v=n(6).f,m=n(85),g=n(38),y="prototype",_="Wrong index!",b=r.ArrayBuffer,w=r.DataView,x=r.Math,O=r.RangeError,S=r.Infinity,C=b,k=x.abs,E=x.pow,T=x.floor,A=x.log,D=x.LN2,M=i?"_b":"buffer",P=i?"_l":"byteLength",N=i?"_o":"byteOffset";function $(t,e,n){var r,i,o,a=new Array(n),s=8*n-e-1,u=(1<<s)-1,c=u>>1,l=23===e?E(2,-24)-E(2,-77):0,f=0,p=t<0||0===t&&1/t<0?1:0;for((t=k(t))!=t||t===S?(i=t!=t?1:0,r=u):(r=T(A(t)/D),t*(o=E(2,-r))<1&&(r--,o*=2),(t+=r+c>=1?l/o:l*E(2,1-c))*o>=2&&(r++,o/=2),r+c>=u?(i=0,r=u):r+c>=1?(i=(t*o-1)*E(2,e),r+=c):(i=t*E(2,c-1)*E(2,e),r=0));e>=8;a[f++]=255&i,i/=256,e-=8);for(r=r<<e|i,s+=e;s>0;a[f++]=255&r,r/=256,s-=8);return a[--f]|=128*p,a}function L(t,e,n){var r,i=8*n-e-1,o=(1<<i)-1,a=o>>1,s=i-7,u=n-1,c=t[u--],l=127&c;for(c>>=7;s>0;l=256*l+t[u],u--,s-=8);for(r=l&(1<<-s)-1,l>>=-s,s+=e;s>0;r=256*r+t[u],u--,s-=8);if(0===l)l=1-a;else{if(l===o)return r?NaN:c?-S:S;r+=E(2,e),l-=a}return(c?-1:1)*r*E(2,l-e)}function j(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]}function I(t){return[255&t]}function F(t){return[255&t,t>>8&255]}function R(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]}function B(t){return $(t,52,8)}function U(t){return $(t,23,4)}function V(t,e,n){v(t[y],e,{get:function(){return this[n]}})}function H(t,e,n,r){var i=d(+n);if(i+e>t[P])throw O(_);var o=t[M]._b,a=i+t[N],s=o.slice(a,a+e);return r?s:s.reverse()}function z(t,e,n,r,i,o){var a=d(+n);if(a+e>t[P])throw O(_);for(var s=t[M]._b,u=a+t[N],c=r(+i),l=0;l<e;l++)s[u+l]=c[o?l:e-l-1]}if(a.ABV){if(!c(function(){b(1)})||!c(function(){new b(-1)})||c(function(){return new b,new b(1.5),new b(NaN),"ArrayBuffer"!=b.name})){for(var W,Y=(b=function(t){return l(this,b),new C(d(t))})[y]=C[y],G=h(C),q=0;G.length>q;)(W=G[q++])in b||s(b,W,C[W]);o||(Y.constructor=b)}var K=new w(new b(2)),J=w[y].setInt8;K.setInt8(0,2147483648),K.setInt8(1,2147483649),!K.getInt8(0)&&K.getInt8(1)||u(w[y],{setInt8:function(t,e){J.call(this,t,e<<24>>24)},setUint8:function(t,e){J.call(this,t,e<<24>>24)}},!0)}else b=function(t){l(this,b,"ArrayBuffer");var e=d(t);this._b=m.call(new Array(e),0),this[P]=e},w=function(t,e,n){l(this,w,"DataView"),l(t,b,"DataView");var r=t[P],i=f(e);if(i<0||i>r)throw O("Wrong offset!");if(i+(n=void 0===n?r-i:p(n))>r)throw O("Wrong length!");this[M]=t,this[N]=i,this[P]=n},i&&(V(b,"byteLength","_l"),V(w,"buffer","_b"),V(w,"byteLength","_l"),V(w,"byteOffset","_o")),u(w[y],{getInt8:function(t){return H(this,1,t)[0]<<24>>24},getUint8:function(t){return H(this,1,t)[0]},getInt16:function(t){var e=H(this,2,t,arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=H(this,2,t,arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return j(H(this,4,t,arguments[1]))},getUint32:function(t){return j(H(this,4,t,arguments[1]))>>>0},getFloat32:function(t){return L(H(this,4,t,arguments[1]),23,4)},getFloat64:function(t){return L(H(this,8,t,arguments[1]),52,8)},setInt8:function(t,e){z(this,1,t,I,e)},setUint8:function(t,e){z(this,1,t,I,e)},setInt16:function(t,e){z(this,2,t,F,e,arguments[2])},setUint16:function(t,e){z(this,2,t,F,e,arguments[2])},setInt32:function(t,e){z(this,4,t,R,e,arguments[2])},setUint32:function(t,e){z(this,4,t,R,e,arguments[2])},setFloat32:function(t,e){z(this,4,t,U,e,arguments[2])},setFloat64:function(t,e){z(this,8,t,B,e,arguments[2])}});g(b,"ArrayBuffer"),g(w,"DataView"),s(w[y],a.VIEW,!0),e.ArrayBuffer=b,e.DataView=w},function(t,e,n){"use strict";(function(e){var r=n(16),i=n(303),o={"Content-Type":"application/x-www-form-urlencoded"};function a(t,e){!r.isUndefined(t)&&r.isUndefined(t["Content-Type"])&&(t["Content-Type"]=e)}var s={adapter:function(){var t;return"undefined"!=typeof XMLHttpRequest?t=n(123):void 0!==e&&(t=n(123)),t}(),transformRequest:[function(t,e){return i(e,"Content-Type"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(a(e,"application/x-www-form-urlencoded;charset=utf-8"),t.toString()):r.isObject(t)?(a(e,"application/json;charset=utf-8"),JSON.stringify(t)):t}],transformResponse:[function(t){if("string"==typeof t)try{t=JSON.parse(t)}catch(t){}return t}],timeout:0,xsrfCookieName:"XSRF-TOKEN",xsrfHeaderName:"X-XSRF-TOKEN",maxContentLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:"application/json, text/plain, */*"}}};r.forEach(["delete","get","head"],function(t){s.headers[t]={}}),r.forEach(["post","put","patch"],function(t){s.headers[t]=r.merge(o)}),t.exports=s}).call(this,n(302))},function(t,e){var n;n=function(){return this}();try{n=n||Function("return this")()||(0,eval)("this")}catch(t){"object"==typeof window&&(n=window)}t.exports=n},function(t,e,n){t.exports=!n(7)&&!n(1)(function(){return 7!=Object.defineProperty(n(65)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var r=n(2),i=n(8),o=n(32),a=n(67),s=n(6).f;t.exports=function(t){var e=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});"_"==t.charAt(0)||t in e||s(e,t,{value:a.f(t)})}},function(t,e,n){var r=n(12),i=n(14),o=n(50)(!1),a=n(68)("IE_PROTO");t.exports=function(t,e){var n,s=i(t),u=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~o(c,n)||c.push(n));return c}},function(t,e,n){var r=n(6),i=n(4),o=n(33);t.exports=n(7)?Object.defineProperties:function(t,e){i(t);for(var n,a=o(e),s=a.length,u=0;s>u;)r.f(t,n=a[u++],e[n]);return t}},function(t,e,n){var r=n(14),i=n(36).f,o={}.toString,a="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return a&&"[object Window]"==o.call(t)?function(t){try{return i(t)}catch(t){return a.slice()}}(t):i(r(t))}},function(t,e,n){"use strict";var r=n(33),i=n(51),o=n(46),a=n(15),s=n(45),u=Object.assign;t.exports=!u||n(1)(function(){var t={},e={},n=Symbol(),r="abcdefghijklmnopqrst";return t[n]=7,r.split("").forEach(function(t){e[t]=t}),7!=u({},t)[n]||Object.keys(u({},e)).join("")!=r})?function(t,e){for(var n=a(t),u=arguments.length,c=1,l=i.f,f=o.f;u>c;)for(var p,d=s(arguments[c++]),h=l?r(d).concat(l(d)):r(d),v=h.length,m=0;v>m;)f.call(d,p=h[m++])&&(n[p]=d[p]);return n}:u},function(t,e,n){"use strict";var r=n(22),i=n(3),o=n(99),a=[].slice,s={};t.exports=Function.bind||function(t){var e=r(this),n=a.call(arguments,1),u=function(){var r=n.concat(a.call(arguments));return this instanceof u?function(t,e,n){if(!(e in s)){for(var r=[],i=0;i<e;i++)r[i]="a["+i+"]";s[e]=Function("F,a","return new F("+r.join(",")+")")}return s[e](t,n)}(e,r.length,r):o(e,r,t)};return i(e.prototype)&&(u.prototype=e.prototype),u}},function(t,e){t.exports=function(t,e,n){var r=void 0===n;switch(e.length){case 0:return r?t():t.call(n);case 1:return r?t(e[0]):t.call(n,e[0]);case 2:return r?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return r?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return r?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){var r=n(2).parseInt,i=n(53).trim,o=n(73),a=/^[-+]?0[xX]/;t.exports=8!==r(o+"08")||22!==r(o+"0x16")?function(t,e){var n=i(String(t),3);return r(n,e>>>0||(a.test(n)?16:10))}:r},function(t,e,n){var r=n(2).parseFloat,i=n(53).trim;t.exports=1/r(n(73)+"-0")!=-1/0?function(t){var e=i(String(t),3),n=r(e);return 0===n&&"-"==e.charAt(0)?-0:n}:r},function(t,e,n){var r=n(23);t.exports=function(t,e){if("number"!=typeof t&&"Number"!=r(t))throw TypeError(e);return+t}},function(t,e,n){var r=n(3),i=Math.floor;t.exports=function(t){return!r(t)&&isFinite(t)&&i(t)===t}},function(t,e){t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:Math.log(1+t)}},function(t,e,n){var r=n(25),i=n(24);t.exports=function(t){return function(e,n){var o,a,s=String(i(e)),u=r(n),c=s.length;return u<0||u>=c?t?"":void 0:(o=s.charCodeAt(u))<55296||o>56319||u+1===c||(a=s.charCodeAt(u+1))<56320||a>57343?t?s.charAt(u):o:t?s.slice(u,u+2):a-56320+(o-55296<<10)+65536}}},function(t,e,n){"use strict";var r=n(35),i=n(30),o=n(38),a={};n(13)(a,n(5)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=r(a,{next:i(1,n)}),o(t,e+" Iterator")}},function(t,e,n){var r=n(4);t.exports=function(t,e,n,i){try{return i?e(r(n)[0],n[1]):e(n)}catch(e){var o=t.return;throw void 0!==o&&r(o.call(t)),e}}},function(t,e,n){var r=n(22),i=n(15),o=n(45),a=n(9);t.exports=function(t,e,n,s,u){r(e);var c=i(t),l=o(c),f=a(c.length),p=u?f-1:0,d=u?-1:1;if(n<2)for(;;){if(p in l){s=l[p],p+=d;break}if(p+=d,u?p<0:f<=p)throw TypeError("Reduce of empty array with no initial value")}for(;u?p>=0:f>p;p+=d)p in l&&(s=e(s,l[p],p,c));return s}},function(t,e,n){"use strict";var r=n(15),i=n(34),o=n(9);t.exports=[].copyWithin||function(t,e){var n=r(this),a=o(n.length),s=i(t,a),u=i(e,a),c=arguments.length>2?arguments[2]:void 0,l=Math.min((void 0===c?a:i(c,a))-u,a-s),f=1;for(u<s&&s<u+l&&(f=-1,u+=l-1,s+=l-1);l-- >0;)u in n?n[s]=n[u]:delete n[s],s+=f,u+=f;return n}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){n(7)&&"g"!=/./g.flags&&n(6).f(RegExp.prototype,"flags",{configurable:!0,get:n(87)})},function(t,e,n){"use strict";var r,i,o,a,s=n(32),u=n(2),c=n(21),l=n(52),f=n(0),p=n(3),d=n(22),h=n(42),v=n(56),m=n(57),g=n(88).set,y=n(245)(),_=n(113),b=n(246),w=n(58),x=n(114),O=u.TypeError,S=u.process,C=S&&S.versions,k=C&&C.v8||"",E=u.Promise,T="process"==l(S),A=function(){},D=i=_.f,M=!!function(){try{var t=E.resolve(1),e=(t.constructor={})[n(5)("species")]=function(t){t(A,A)};return(T||"function"==typeof PromiseRejectionEvent)&&t.then(A)instanceof e&&0!==k.indexOf("6.6")&&-1===w.indexOf("Chrome/66")}catch(t){}}(),P=function(t){var e;return!(!p(t)||"function"!=typeof(e=t.then))&&e},N=function(t,e){if(!t._n){t._n=!0;var n=t._c;y(function(){for(var r=t._v,i=1==t._s,o=0,a=function(e){var n,o,a,s=i?e.ok:e.fail,u=e.resolve,c=e.reject,l=e.domain;try{s?(i||(2==t._h&&j(t),t._h=1),!0===s?n=r:(l&&l.enter(),n=s(r),l&&(l.exit(),a=!0)),n===e.promise?c(O("Promise-chain cycle")):(o=P(n))?o.call(n,u,c):u(n)):c(r)}catch(t){l&&!a&&l.exit(),c(t)}};n.length>o;)a(n[o++]);t._c=[],t._n=!1,e&&!t._h&&$(t)})}},$=function(t){g.call(u,function(){var e,n,r,i=t._v,o=L(t);if(o&&(e=b(function(){T?S.emit("unhandledRejection",i,t):(n=u.onunhandledrejection)?n({promise:t,reason:i}):(r=u.console)&&r.error&&r.error("Unhandled promise rejection",i)}),t._h=T||L(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},L=function(t){return 1!==t._h&&0===(t._a||t._c).length},j=function(t){g.call(u,function(){var e;T?S.emit("rejectionHandled",t):(e=u.onrejectionhandled)&&e({promise:t,reason:t._v})})},I=function(t){var e=this;e._d||(e._d=!0,(e=e._w||e)._v=t,e._s=2,e._a||(e._a=e._c.slice()),N(e,!0))},F=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw O("Promise can't be resolved itself");(e=P(t))?y(function(){var r={_w:n,_d:!1};try{e.call(t,c(F,r,1),c(I,r,1))}catch(t){I.call(r,t)}}):(n._v=t,n._s=1,N(n,!1))}catch(t){I.call({_w:n,_d:!1},t)}}};M||(E=function(t){h(this,E,"Promise","_h"),d(t),r.call(this);try{t(c(F,this,1),c(I,this,1))}catch(t){I.call(this,t)}},(r=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=n(43)(E.prototype,{then:function(t,e){var n=D(m(this,E));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=T?S.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&N(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r;this.promise=t,this.resolve=c(F,t,1),this.reject=c(I,t,1)},_.f=D=function(t){return t===E||t===a?new o(t):i(t)}),f(f.G+f.W+f.F*!M,{Promise:E}),n(38)(E,"Promise"),n(41)("Promise"),a=n(8).Promise,f(f.S+f.F*!M,"Promise",{reject:function(t){var e=D(this);return(0,e.reject)(t),e.promise}}),f(f.S+f.F*(s||!M),"Promise",{resolve:function(t){return x(s&&this===a?E:this,t)}}),f(f.S+f.F*!(M&&n(54)(function(t){E.all(t).catch(A)})),"Promise",{all:function(t){var e=this,n=D(e),r=n.resolve,i=n.reject,o=b(function(){var n=[],o=0,a=1;v(t,!1,function(t){var s=o++,u=!1;n.push(void 0),a++,e.resolve(t).then(function(t){u||(u=!0,n[s]=t,--a||r(n))},i)}),--a||r(n)});return o.e&&i(o.v),n.promise},race:function(t){var e=this,n=D(e),r=n.reject,i=b(function(){v(t,!1,function(t){e.resolve(t).then(n.resolve,r)})});return i.e&&r(i.v),n.promise}})},function(t,e,n){"use strict";var r=n(22);t.exports.f=function(t){return new function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=r}),this.resolve=r(e),this.reject=r(n)}(t)}},function(t,e,n){var r=n(4),i=n(3),o=n(113);t.exports=function(t,e){if(r(t),i(e)&&e.constructor===t)return e;var n=o.f(t);return(0,n.resolve)(e),n.promise}},function(t,e,n){"use strict";var r=n(6).f,i=n(35),o=n(43),a=n(21),s=n(42),u=n(56),c=n(78),l=n(110),f=n(41),p=n(7),d=n(28).fastKey,h=n(44),v=p?"_s":"size",m=function(t,e){var n,r=d(e);if("F"!==r)return t._i[r];for(n=t._f;n;n=n.n)if(n.k==e)return n};t.exports={getConstructor:function(t,e,n,c){var l=t(function(t,r){s(t,l,e,"_i"),t._t=e,t._i=i(null),t._f=void 0,t._l=void 0,t[v]=0,void 0!=r&&u(r,n,t[c],t)});return o(l.prototype,{clear:function(){for(var t=h(this,e),n=t._i,r=t._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete n[r.i];t._f=t._l=void 0,t[v]=0},delete:function(t){var n=h(this,e),r=m(n,t);if(r){var i=r.n,o=r.p;delete n._i[r.i],r.r=!0,o&&(o.n=i),i&&(i.p=o),n._f==r&&(n._f=i),n._l==r&&(n._l=o),n[v]--}return!!r},forEach:function(t){h(this,e);for(var n,r=a(t,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(r(n.v,n.k,this);n&&n.r;)n=n.p},has:function(t){return!!m(h(this,e),t)}}),p&&r(l.prototype,"size",{get:function(){return h(this,e)[v]}}),l},def:function(t,e,n){var r,i,o=m(t,e);return o?o.v=n:(t._l=o={i:i=d(e,!0),k:e,v:n,p:r=t._l,n:void 0,r:!1},t._f||(t._f=o),r&&(r.n=o),t[v]++,"F"!==i&&(t._i[i]=o)),t},getEntry:m,setStrong:function(t,e,n){c(t,e,function(t,n){this._t=h(t,e),this._k=n,this._l=void 0},function(){for(var t=this._k,e=this._l;e&&e.r;)e=e.p;return this._t&&(this._l=e=e?e.n:this._t._f)?l(0,"keys"==t?e.k:"values"==t?e.v:[e.k,e.v]):(this._t=void 0,l(1))},n?"entries":"values",!n,!0),f(e)}}},function(t,e,n){"use strict";var r=n(43),i=n(28).getWeak,o=n(4),a=n(3),s=n(42),u=n(56),c=n(20),l=n(12),f=n(44),p=c(5),d=c(6),h=0,v=function(t){return t._l||(t._l=new m)},m=function(){this.a=[]},g=function(t,e){return p(t.a,function(t){return t[0]===e})};m.prototype={get:function(t){var e=g(this,t);if(e)return e[1]},has:function(t){return!!g(this,t)},set:function(t,e){var n=g(this,t);n?n[1]=e:this.a.push([t,e])},delete:function(t){var e=d(this.a,function(e){return e[0]===t});return~e&&this.a.splice(e,1),!!~e}},t.exports={getConstructor:function(t,e,n,o){var c=t(function(t,r){s(t,c,e,"_i"),t._t=e,t._i=h++,t._l=void 0,void 0!=r&&u(r,n,t[o],t)});return r(c.prototype,{delete:function(t){if(!a(t))return!1;var n=i(t);return!0===n?v(f(this,e)).delete(t):n&&l(n,this._i)&&delete n[this._i]},has:function(t){if(!a(t))return!1;var n=i(t);return!0===n?v(f(this,e)).has(t):n&&l(n,this._i)}}),c},def:function(t,e,n){var r=i(o(e),!0);return!0===r?v(t).set(e,n):r[t._i]=n,t},ufstore:v}},function(t,e,n){var r=n(25),i=n(9);t.exports=function(t){if(void 0===t)return 0;var e=r(t),n=i(e);if(e!==n)throw RangeError("Wrong length!");return n}},function(t,e,n){var r=n(36),i=n(51),o=n(4),a=n(2).Reflect;t.exports=a&&a.ownKeys||function(t){var e=r.f(o(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(9),i=n(75),o=n(24);t.exports=function(t,e,n,a){var s=String(o(t)),u=s.length,c=void 0===n?" ":String(n),l=r(e);if(l<=u||""==c)return s;var f=l-u,p=i.call(c,Math.ceil(f/c.length));return p.length>f&&(p=p.slice(0,f)),a?p+s:s+p}},function(t,e,n){var r=n(33),i=n(14),o=n(46).f;t.exports=function(t){return function(e){for(var n,a=i(e),s=r(a),u=s.length,c=0,l=[];u>c;)o.call(a,n=s[c++])&&l.push(t?[n,a[n]]:a[n]);return l}}},function(t,e,n){"use strict";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return t.apply(e,n)}}},function(t,e){function n(t){return!!t.constructor&&"function"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)} +/*! + * Determine if an object is a Buffer + * + * @author Feross Aboukhadijeh <https://feross.org> + * @license MIT + */t.exports=function(t){return null!=t&&(n(t)||function(t){return"function"==typeof t.readFloatLE&&"function"==typeof t.slice&&n(t.slice(0,0))}(t)||!!t._isBuffer)}},function(t,e,n){"use strict";var r=n(16),i=n(304),o=n(306),a=n(307),s=n(308),u=n(124),c="undefined"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(309);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p["Content-Type"];var d=new XMLHttpRequest,h="onreadystatechange",v=!1;if("undefined"==typeof window||!window.XDomainRequest||"withCredentials"in d||s(t.url)||(d=new window.XDomainRequest,h="onload",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||"",g=t.auth.password||"";p.Authorization="Basic "+c(m+":"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf("file:"))){var n="getAllResponseHeaders"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&"text"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?"No Content":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(u("Network Error",t,null,d)),d=null},d.ontimeout=function(){l(u("timeout of "+t.timeout+"ms exceeded",t,"ECONNABORTED",d)),d=null},r.isStandardBrowserEnv()){var y=n(310),_=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;_&&(p[t.xsrfHeaderName]=_)}if("setRequestHeader"in d&&r.forEach(p,function(t,e){void 0===f&&"content-type"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if("json"!==t.responseType)throw e}"function"==typeof t.onDownloadProgress&&d.addEventListener("progress",t.onDownloadProgress),"function"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener("progress",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){"use strict";var r=n(305);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e,n){"use strict";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e,n){"use strict";function r(t){this.message=t}r.prototype.toString=function(){return"Cancel"+(this.message?": "+this.message:"")},r.prototype.__CANCEL__=!0,t.exports=r},function(t,e){var n={utf8:{stringToBytes:function(t){return n.bin.stringToBytes(unescape(encodeURIComponent(t)))},bytesToString:function(t){return decodeURIComponent(escape(n.bin.bytesToString(t)))}},bin:{stringToBytes:function(t){for(var e=[],n=0;n<t.length;n++)e.push(255&t.charCodeAt(n));return e},bytesToString:function(t){for(var e=[],n=0;n<t.length;n++)e.push(String.fromCharCode(t[n]));return e.join("")}}};t.exports=n},function(t,e,n){t.exports=function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="/",e(e.s=60)}([function(t,e){var n=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=n)},function(t,e,n){var r=n(49)("wks"),i=n(30),o=n(0).Symbol,a="function"==typeof o;(t.exports=function(t){return r[t]||(r[t]=a&&o[t]||(a?o:i)("Symbol."+t))}).store=r},function(t,e,n){var r=n(5);t.exports=function(t){if(!r(t))throw TypeError(t+" is not an object!");return t}},function(t,e,n){var r=n(0),i=n(10),o=n(8),a=n(6),s=n(11),u=function(t,e,n){var c,l,f,p,d=t&u.F,h=t&u.G,v=t&u.S,m=t&u.P,g=t&u.B,y=h?r:v?r[e]||(r[e]={}):(r[e]||{}).prototype,_=h?i:i[e]||(i[e]={}),b=_.prototype||(_.prototype={});for(c in h&&(n=e),n)l=!d&&y&&void 0!==y[c],f=(l?y:n)[c],p=g&&l?s(f,r):m&&"function"==typeof f?s(Function.call,f):f,y&&a(y,c,f,t&u.U),_[c]!=f&&o(_,c,p),m&&b[c]!=f&&(b[c]=f)};r.core=i,u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e,n){t.exports=!n(7)(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(0),i=n(8),o=n(12),a=n(30)("src"),s=Function.toString,u=(""+s).split("toString");n(10).inspectSource=function(t){return s.call(t)},(t.exports=function(t,e,n,s){var c="function"==typeof n;c&&(o(n,"name")||i(n,"name",e)),t[e]!==n&&(c&&(o(n,a)||i(n,a,t[e]?""+t[e]:u.join(String(e)))),t===r?t[e]=n:s?t[e]?t[e]=n:i(t,e,n):(delete t[e],i(t,e,n)))})(Function.prototype,"toString",function(){return"function"==typeof this&&this[a]||s.call(this)})},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(13),i=n(25);t.exports=n(4)?function(t,e,n){return r.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){var n=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=n)},function(t,e,n){var r=n(14);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,i){return t.call(e,n,r,i)}}return function(){return t.apply(e,arguments)}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(2),i=n(41),o=n(29),a=Object.defineProperty;e.f=n(4)?Object.defineProperty:function(t,e,n){if(r(t),e=o(e,!0),r(n),i)try{return a(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!");return t}},function(t,e){t.exports={}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){"use strict";var r=n(7);t.exports=function(t,e){return!!t&&r(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e,n){var r=n(23),i=n(16);t.exports=function(t){return r(i(t))}},function(t,e,n){var r=n(53),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},function(t,e,n){var r=n(11),i=n(23),o=n(28),a=n(19),s=n(64);t.exports=function(t,e){var n=1==t,u=2==t,c=3==t,l=4==t,f=6==t,p=5==t||f,d=e||s;return function(e,s,h){for(var v,m,g=o(e),y=i(g),_=r(s,h,3),b=a(y.length),w=0,x=n?d(e,b):u?d(e,0):void 0;b>w;w++)if((p||w in y)&&(v=y[w],m=_(v,w,g),t))if(n)x[w]=m;else if(m)switch(t){case 3:return!0;case 5:return v;case 6:return w;case 2:x.push(v)}else if(l)return!1;return f?-1:c||l?l:x}}},function(t,e,n){var r=n(5),i=n(0).document,o=r(i)&&r(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},function(t,e){t.exports="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(",")},function(t,e,n){var r=n(9);t.exports=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==r(t)?t.split(""):Object(t)}},function(t,e){t.exports=!1},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(13).f,i=n(12),o=n(1)("toStringTag");t.exports=function(t,e,n){t&&!i(t=n?t:t.prototype,o)&&r(t,o,{configurable:!0,value:e})}},function(t,e,n){var r=n(49)("keys"),i=n(30);t.exports=function(t){return r[t]||(r[t]=i(t))}},function(t,e,n){var r=n(16);t.exports=function(t){return Object(r(t))}},function(t,e,n){var r=n(5);t.exports=function(t,e){if(!r(t))return t;var n,i;if(e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!r(i=n.call(t)))return i;if(!e&&"function"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++n+r).toString(36))}},function(t,e,n){"use strict";var r=n(0),i=n(12),o=n(9),a=n(67),s=n(29),u=n(7),c=n(77).f,l=n(45).f,f=n(13).f,p=n(51).trim,d=r.Number,h=d,v=d.prototype,m="Number"==o(n(44)(v)),g="trim"in String.prototype,y=function(t){var e=s(t,!1);if("string"==typeof e&&e.length>2){var n,r,i,o=(e=g?e.trim():p(e,3)).charCodeAt(0);if(43===o||45===o){if(88===(n=e.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(e.charCodeAt(1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+e}for(var a,u=e.slice(2),c=0,l=u.length;c<l;c++)if((a=u.charCodeAt(c))<48||a>i)return NaN;return parseInt(u,r)}}return+e};if(!d(" 0o1")||!d("0b1")||d("+0x1")){d=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof d&&(m?u(function(){v.valueOf.call(n)}):"Number"!=o(n))?a(new h(y(e)),n,d):y(e)};for(var _,b=n(4)?c(h):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;b.length>w;w++)i(h,_=b[w])&&!i(d,_)&&f(d,_,l(h,_));d.prototype=v,v.constructor=d,n(6)(r,"Number",d)}},function(t,e,n){"use strict";function r(t){return!(0===t||(!Array.isArray(t)||0!==t.length)&&t)}function i(t){return function(){return!t.apply(void 0,arguments)}}function o(t,e,n,r){return t.filter(function(t){return function(t,e){return void 0===t&&(t="undefined"),null===t&&(t="null"),!1===t&&(t="false"),-1!==t.toString().toLowerCase().indexOf(e.trim())}(r(t,n),e)})}function a(t){return t.filter(function(t){return!t.$isLabel})}function s(t,e){return function(n){return n.reduce(function(n,r){return r[t]&&r[t].length?(n.push({$groupLabel:r[e],$isLabel:!0}),n.concat(r[t])):n},[])}}function u(t,e,r,i,a){return function(s){return s.map(function(s){var u;if(!s[r])return console.warn("Options passed to vue-multiselect do not contain groups, despite the config."),[];var c=o(s[r],t,e,a);return c.length?(u={},n.i(d.a)(u,i,s[i]),n.i(d.a)(u,r,c),u):[]})}}var c=n(59),l=n(54),f=(n.n(l),n(95)),p=(n.n(f),n(31)),d=(n.n(p),n(58)),h=n(91),v=(n.n(h),n(98)),m=(n.n(v),n(92)),g=(n.n(m),n(88)),y=(n.n(g),n(97)),_=(n.n(y),n(89)),b=(n.n(_),n(96)),w=(n.n(b),n(93)),x=(n.n(w),n(90)),O=(n.n(x),function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce(function(t,e){return e(t)},t)}});e.a={data:function(){return{search:"",isOpen:!1,prefferedOpenDirection:"below",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},value:{type:null,default:function(){return[]}},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:"Select option"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default:function(t,e){return r(t)?"":e?t[e]:t}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:"Press enter to create a tag"},tagPosition:{type:String,default:"top"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default:function(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1}},mounted:function(){this.multiple||this.clearOnSelect||console.warn("[Vue-Multiselect warn]: ClearOnSelect and Multiple props can’t be both set to false."),!this.multiple&&this.max&&console.warn("[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false."),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue:function(){return this.value||0===this.value?Array.isArray(this.value)?this.value:[this.value]:[]},filteredOptions:function(){var t=this.search||"",e=t.toLowerCase().trim(),n=this.options.concat();return n=this.internalSearch?this.groupValues?this.filterAndFlat(n,e,this.label):o(n,e,this.label,this.customLabel):this.groupValues?s(this.groupValues,this.groupLabel)(n):n,n=this.hideSelected?n.filter(i(this.isSelected)):n,this.taggable&&e.length&&!this.isExistingOption(e)&&("bottom"===this.tagPosition?n.push({isTag:!0,label:t}):n.unshift({isTag:!0,label:t})),n.slice(0,this.optionsLimit)},valueKeys:function(){var t=this;return this.trackBy?this.internalValue.map(function(e){return e[t.trackBy]}):this.internalValue},optionKeys:function(){var t=this;return(this.groupValues?this.flatAndStrip(this.options):this.options).map(function(e){return t.customLabel(e,t.label).toString().toLowerCase()})},currentOptionLabel:function(){return this.multiple?this.searchable?"":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?"":this.placeholder}},watch:{internalValue:function(){this.resetAfter&&this.internalValue.length&&(this.search="",this.$emit("input",this.multiple?[]:null))},search:function(){this.$emit("search-change",this.search,this.id)}},methods:{getValue:function(){return this.multiple?this.internalValue:0===this.internalValue.length?null:this.internalValue[0]},filterAndFlat:function(t,e,n){return O(u(e,n,this.groupValues,this.groupLabel,this.customLabel),s(this.groupValues,this.groupLabel))(t)},flatAndStrip:function(t){return O(s(this.groupValues,this.groupLabel),a)(t)},updateSearch:function(t){this.search=t},isExistingOption:function(t){return!!this.options&&this.optionKeys.indexOf(t)>-1},isSelected:function(t){var e=this.trackBy?t[this.trackBy]:t;return this.valueKeys.indexOf(e)>-1},getOptionLabel:function(t){if(r(t))return"";if(t.isTag)return t.label;if(t.$isLabel)return t.$groupLabel;var e=this.customLabel(t,this.label);return r(e)?"":e},select:function(t,e){if(t.$isLabel&&this.groupSelect)this.selectGroup(t);else if(!(-1!==this.blockKeys.indexOf(e)||this.disabled||t.$isDisabled||t.$isLabel)&&(!this.max||!this.multiple||this.internalValue.length!==this.max)&&("Tab"!==e||this.pointerDirty)){if(t.isTag)this.$emit("tag",t.label,this.id),this.search="",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(t))return void("Tab"!==e&&this.removeElement(t));this.$emit("select",t,this.id),this.multiple?this.$emit("input",this.internalValue.concat([t]),this.id):this.$emit("input",t,this.id),this.clearOnSelect&&(this.search="")}this.closeOnSelect&&this.deactivate()}},selectGroup:function(t){var e=this,n=this.options.find(function(n){return n[e.groupLabel]===t.$groupLabel});if(n)if(this.wholeGroupSelected(n)){this.$emit("remove",n[this.groupValues],this.id);var r=this.internalValue.filter(function(t){return-1===n[e.groupValues].indexOf(t)});this.$emit("input",r,this.id)}else{var o=n[this.groupValues].filter(i(this.isSelected));this.$emit("select",o,this.id),this.$emit("input",this.internalValue.concat(o),this.id)}},wholeGroupSelected:function(t){return t[this.groupValues].every(this.isSelected)},removeElement:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(!this.disabled){if(!this.allowEmpty&&this.internalValue.length<=1)return void this.deactivate();var r="object"===n.i(c.a)(t)?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);if(this.$emit("remove",t,this.id),this.multiple){var i=this.internalValue.slice(0,r).concat(this.internalValue.slice(r+1));this.$emit("input",i,this.id)}else this.$emit("input",null,this.id);this.closeOnSelect&&e&&this.deactivate()}},removeLastElement:function(){-1===this.blockKeys.indexOf("Delete")&&0===this.search.length&&Array.isArray(this.internalValue)&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate:function(){var t=this;this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&0===this.pointer&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=""),this.$nextTick(function(){return t.$refs.search.focus()})):this.$el.focus(),this.$emit("open",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search.blur():this.$el.blur(),this.preserveSearch||(this.search=""),this.$emit("close",this.getValue(),this.id))},toggle:function(){this.isOpen?this.deactivate():this.activate()},adjustPosition:function(){if("undefined"!=typeof window){var t=this.$el.getBoundingClientRect().top,e=window.innerHeight-this.$el.getBoundingClientRect().bottom;e>this.maxHeight||e>t||"below"===this.openDirection||"bottom"===this.openDirection?(this.prefferedOpenDirection="below",this.optimizedHeight=Math.min(e-40,this.maxHeight)):(this.prefferedOpenDirection="above",this.optimizedHeight=Math.min(t-40,this.maxHeight))}}}}},function(t,e,n){"use strict";var r=n(54),i=(n.n(r),n(31));n.n(i),e.a={data:function(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition:function(){return this.pointer*this.optionHeight},visibleElements:function(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions:function(){this.pointerAdjust()},isOpen:function(){this.pointerDirty=!1}},methods:{optionHighlight:function(t,e){return{"multiselect__option--highlight":t===this.pointer&&this.showPointer,"multiselect__option--selected":this.isSelected(e)}},groupHighlight:function(t,e){var n=this;if(!this.groupSelect)return["multiselect__option--group","multiselect__option--disabled"];var r=this.options.find(function(t){return t[n.groupLabel]===e.$groupLabel});return["multiselect__option--group",{"multiselect__option--highlight":t===this.pointer&&this.showPointer},{"multiselect__option--group-selected":this.wholeGroupSelected(r)}]},addPointerElement:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"Enter",e=t.key;this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],e),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward:function(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet:function(t){this.pointer=t,this.pointerDirty=!0}}}},function(t,e,n){"use strict";var r=n(36),i=n(74),o=n(15),a=n(18);t.exports=n(72)(Array,"Array",function(t,e){this._t=a(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,i(1)):i(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values"),o.Arguments=o.Array,r("keys"),r("values"),r("entries")},function(t,e,n){"use strict";var r=n(31),i=(n.n(r),n(32)),o=n(33);e.a={name:"vue-multiselect",mixins:[i.a,o.a],props:{name:{type:String,default:""},selectLabel:{type:String,default:"Press enter to select"},selectGroupLabel:{type:String,default:"Press enter to select group"},selectedLabel:{type:String,default:"Selected"},deselectLabel:{type:String,default:"Press enter to remove"},deselectGroupLabel:{type:String,default:"Press enter to deselect group"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:function(t){return"and ".concat(t," more")}},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},openDirection:{type:String,default:""},showNoOptions:{type:Boolean,default:!0},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0}},computed:{isSingleLabelVisible:function(){return this.singleValue&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible:function(){return!(this.internalValue.length||this.searchable&&this.isOpen)},visibleValues:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue:function(){return this.internalValue[0]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:""},deselectGroupLabelText:function(){return this.showLabels?this.deselectGroupLabel:""},selectLabelText:function(){return this.showLabels?this.selectLabel:""},selectGroupLabelText:function(){return this.showLabels?this.selectGroupLabel:""},selectedLabelText:function(){return this.showLabels?this.selectedLabel:""},inputStyle:function(){if(this.searchable||this.multiple&&this.value&&this.value.length)return this.isOpen?{width:"auto"}:{width:"0",position:"absolute",padding:"0"}},contentStyle:function(){return this.options.length?{display:"inline-block"}:{display:"block"}},isAbove:function(){return"above"===this.openDirection||"top"===this.openDirection||"below"!==this.openDirection&&"bottom"!==this.openDirection&&"above"===this.prefferedOpenDirection},showSearchInput:function(){return this.searchable&&(!this.hasSingleSelectedSlot||!this.visibleSingleValue&&0!==this.visibleSingleValue||this.isOpen)}}}},function(t,e,n){var r=n(1)("unscopables"),i=Array.prototype;void 0==i[r]&&n(8)(i,r,{}),t.exports=function(t){i[r][t]=!0}},function(t,e,n){var r=n(18),i=n(19),o=n(85);t.exports=function(t){return function(e,n,a){var s,u=r(e),c=i(u.length),l=o(a,c);if(t&&n!=n){for(;c>l;)if((s=u[l++])!=s)return!0}else for(;c>l;l++)if((t||l in u)&&u[l]===n)return t||l||0;return!t&&-1}}},function(t,e,n){var r=n(9),i=n(1)("toStringTag"),o="Arguments"==r(function(){return arguments}());t.exports=function(t){var e,n,a;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:o?r(e):"Object"==(a=r(e))&&"function"==typeof e.callee?"Arguments":a}},function(t,e,n){"use strict";var r=n(2);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){var r=n(0).document;t.exports=r&&r.documentElement},function(t,e,n){t.exports=!n(4)&&!n(7)(function(){return 7!=Object.defineProperty(n(21)("div"),"a",{get:function(){return 7}}).a})},function(t,e,n){var r=n(9);t.exports=Array.isArray||function(t){return"Array"==r(t)}},function(t,e,n){"use strict";var r=n(14);t.exports.f=function(t){return new function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw TypeError("Bad Promise constructor");e=t,n=r}),this.resolve=r(e),this.reject=r(n)}(t)}},function(t,e,n){var r=n(2),i=n(76),o=n(22),a=n(27)("IE_PROTO"),s=function(){},u=function(){var t,e=n(21)("iframe"),r=o.length;for(e.style.display="none",n(40).appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),u=t.F;r--;)delete u.prototype[o[r]];return u()};t.exports=Object.create||function(t,e){var n;return null!==t?(s.prototype=r(t),n=new s,s.prototype=null,n[a]=t):n=u(),void 0===e?n:i(n,e)}},function(t,e,n){var r=n(79),i=n(25),o=n(18),a=n(29),s=n(12),u=n(41),c=Object.getOwnPropertyDescriptor;e.f=n(4)?c:function(t,e){if(t=o(t),e=a(e,!0),u)try{return c(t,e)}catch(t){}if(s(t,e))return i(!r.f.call(t,e),t[e])}},function(t,e,n){var r=n(12),i=n(18),o=n(37)(!1),a=n(27)("IE_PROTO");t.exports=function(t,e){var n,s=i(t),u=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~o(c,n)||c.push(n));return c}},function(t,e,n){var r=n(46),i=n(22);t.exports=Object.keys||function(t){return r(t,i)}},function(t,e,n){var r=n(2),i=n(5),o=n(43);t.exports=function(t,e){if(r(t),i(e)&&e.constructor===t)return e;var n=o.f(t);return(0,n.resolve)(e),n.promise}},function(t,e,n){var r=n(10),i=n(0),o=i["__core-js_shared__"]||(i["__core-js_shared__"]={});(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:r.version,mode:n(24)?"pure":"global",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})},function(t,e,n){var r=n(2),i=n(14),o=n(1)("species");t.exports=function(t,e){var n,a=r(t).constructor;return void 0===a||void 0==(n=r(a)[o])?e:i(n)}},function(t,e,n){var r=n(3),i=n(16),o=n(7),a=n(84),s="["+a+"]",u=RegExp("^"+s+s+"*"),c=RegExp(s+s+"*$"),l=function(t,e,n){var i={},s=o(function(){return!!a[t]()||"
"!="
"[t]()}),u=i[t]=s?e(f):a[t];n&&(i[n]=u),r(r.P+r.F*s,"String",i)},f=l.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(u,"")),2&e&&(t=t.replace(c,"")),t};t.exports=l},function(t,e,n){var r,i,o,a=n(11),s=n(68),u=n(40),c=n(21),l=n(0),f=l.process,p=l.setImmediate,d=l.clearImmediate,h=l.MessageChannel,v=l.Dispatch,m=0,g={},y=function(){var t=+this;if(g.hasOwnProperty(t)){var e=g[t];delete g[t],e()}},_=function(t){y.call(t.data)};p&&d||(p=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return g[++m]=function(){s("function"==typeof t?t:Function(t),e)},r(m),m},d=function(t){delete g[t]},"process"==n(9)(f)?r=function(t){f.nextTick(a(y,t,1))}:v&&v.now?r=function(t){v.now(a(y,t,1))}:h?(i=new h,o=i.port2,i.port1.onmessage=_,r=a(o.postMessage,o,1)):l.addEventListener&&"function"==typeof postMessage&&!l.importScripts?(r=function(t){l.postMessage(t+"","*")},l.addEventListener("message",_,!1)):r="onreadystatechange"in c("script")?function(t){u.appendChild(c("script")).onreadystatechange=function(){u.removeChild(this),y.call(t)}}:function(t){setTimeout(a(y,t,1),0)}),t.exports={set:p,clear:d}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){"use strict";var r=n(3),i=n(20)(5),o=!0;"find"in[]&&Array(1).find(function(){o=!1}),r(r.P+r.F*o,"Array",{find:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(36)("find")},function(t,e,n){"use strict";var r,i,o,a,s=n(24),u=n(0),c=n(11),l=n(38),f=n(3),p=n(5),d=n(14),h=n(61),v=n(66),m=n(50),g=n(52).set,y=n(75)(),_=n(43),b=n(80),w=n(86),x=n(48),O=u.TypeError,S=u.process,C=S&&S.versions,k=C&&C.v8||"",E=u.Promise,T="process"==l(S),A=function(){},D=i=_.f,M=!!function(){try{var t=E.resolve(1),e=(t.constructor={})[n(1)("species")]=function(t){t(A,A)};return(T||"function"==typeof PromiseRejectionEvent)&&t.then(A)instanceof e&&0!==k.indexOf("6.6")&&-1===w.indexOf("Chrome/66")}catch(t){}}(),P=function(t){var e;return!(!p(t)||"function"!=typeof(e=t.then))&&e},N=function(t,e){if(!t._n){t._n=!0;var n=t._c;y(function(){for(var r=t._v,i=1==t._s,o=0;n.length>o;)!function(e){var n,o,a,s=i?e.ok:e.fail,u=e.resolve,c=e.reject,l=e.domain;try{s?(i||(2==t._h&&j(t),t._h=1),!0===s?n=r:(l&&l.enter(),n=s(r),l&&(l.exit(),a=!0)),n===e.promise?c(O("Promise-chain cycle")):(o=P(n))?o.call(n,u,c):u(n)):c(r)}catch(t){l&&!a&&l.exit(),c(t)}}(n[o++]);t._c=[],t._n=!1,e&&!t._h&&$(t)})}},$=function(t){g.call(u,function(){var e,n,r,i=t._v,o=L(t);if(o&&(e=b(function(){T?S.emit("unhandledRejection",i,t):(n=u.onunhandledrejection)?n({promise:t,reason:i}):(r=u.console)&&r.error&&r.error("Unhandled promise rejection",i)}),t._h=T||L(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},L=function(t){return 1!==t._h&&0===(t._a||t._c).length},j=function(t){g.call(u,function(){var e;T?S.emit("rejectionHandled",t):(e=u.onrejectionhandled)&&e({promise:t,reason:t._v})})},I=function(t){var e=this;e._d||(e._d=!0,(e=e._w||e)._v=t,e._s=2,e._a||(e._a=e._c.slice()),N(e,!0))},F=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw O("Promise can't be resolved itself");(e=P(t))?y(function(){var r={_w:n,_d:!1};try{e.call(t,c(F,r,1),c(I,r,1))}catch(t){I.call(r,t)}}):(n._v=t,n._s=1,N(n,!1))}catch(t){I.call({_w:n,_d:!1},t)}}};M||(E=function(t){h(this,E,"Promise","_h"),d(t),r.call(this);try{t(c(F,this,1),c(I,this,1))}catch(t){I.call(this,t)}},(r=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=n(81)(E.prototype,{then:function(t,e){var n=D(m(this,E));return n.ok="function"!=typeof t||t,n.fail="function"==typeof e&&e,n.domain=T?S.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&N(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r;this.promise=t,this.resolve=c(F,t,1),this.reject=c(I,t,1)},_.f=D=function(t){return t===E||t===a?new o(t):i(t)}),f(f.G+f.W+f.F*!M,{Promise:E}),n(26)(E,"Promise"),n(83)("Promise"),a=n(10).Promise,f(f.S+f.F*!M,"Promise",{reject:function(t){var e=D(this);return(0,e.reject)(t),e.promise}}),f(f.S+f.F*(s||!M),"Promise",{resolve:function(t){return x(s&&this===a?E:this,t)}}),f(f.S+f.F*!(M&&n(73)(function(t){E.all(t).catch(A)})),"Promise",{all:function(t){var e=this,n=D(e),r=n.resolve,i=n.reject,o=b(function(){var n=[],o=0,a=1;v(t,!1,function(t){var s=o++,u=!1;n.push(void 0),a++,e.resolve(t).then(function(t){u||(u=!0,n[s]=t,--a||r(n))},i)}),--a||r(n)});return o.e&&i(o.v),n.promise},race:function(t){var e=this,n=D(e),r=n.reject,i=b(function(){v(t,!1,function(t){e.resolve(t).then(n.resolve,r)})});return i.e&&r(i.v),n.promise}})},function(t,e,n){"use strict";var r=n(3),i=n(10),o=n(0),a=n(50),s=n(48);r(r.P+r.R,"Promise",{finally:function(t){var e=a(this,i.Promise||o.Promise),n="function"==typeof t;return this.then(n?function(n){return s(e,t()).then(function(){return n})}:t,n?function(n){return s(e,t()).then(function(){throw n})}:t)}})},function(t,e,n){"use strict";var r=n(35),i=n(101),o=n(100),a=o(r.a,i.a,!1,function(t){n(99)},null,null);e.a=a.exports},function(t,e,n){"use strict";e.a=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},function(t,e,n){"use strict";function r(t){return(r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function i(t){return(i="function"==typeof Symbol&&"symbol"===r(Symbol.iterator)?function(t){return r(t)}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":r(t)})(t)}e.a=i},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(34),i=(n.n(r),n(55)),o=(n.n(i),n(56)),a=(n.n(o),n(57)),s=n(32),u=n(33);n.d(e,"Multiselect",function(){return a.a}),n.d(e,"multiselectMixin",function(){return s.a}),n.d(e,"pointerMixin",function(){return u.a}),e.default=a.a},function(t,e){t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+": incorrect invocation!");return t}},function(t,e,n){var r=n(14),i=n(28),o=n(23),a=n(19);t.exports=function(t,e,n,s,u){r(e);var c=i(t),l=o(c),f=a(c.length),p=u?f-1:0,d=u?-1:1;if(n<2)for(;;){if(p in l){s=l[p],p+=d;break}if(p+=d,u?p<0:f<=p)throw TypeError("Reduce of empty array with no initial value")}for(;u?p>=0:f>p;p+=d)p in l&&(s=e(s,l[p],p,c));return s}},function(t,e,n){var r=n(5),i=n(42),o=n(1)("species");t.exports=function(t){var e;return i(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!i(e.prototype)||(e=void 0),r(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var r=n(63);t.exports=function(t,e){return new(r(t))(e)}},function(t,e,n){"use strict";var r=n(8),i=n(6),o=n(7),a=n(16),s=n(1);t.exports=function(t,e,n){var u=s(t),c=n(a,u,""[t]),l=c[0],f=c[1];o(function(){var e={};return e[u]=function(){return 7},7!=""[t](e)})&&(i(String.prototype,t,l),r(RegExp.prototype,u,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){var r=n(11),i=n(70),o=n(69),a=n(2),s=n(19),u=n(87),c={},l={},e=t.exports=function(t,e,n,f,p){var d,h,v,m,g=p?function(){return t}:u(t),y=r(n,f,e?2:1),_=0;if("function"!=typeof g)throw TypeError(t+" is not iterable!");if(o(g)){for(d=s(t.length);d>_;_++)if((m=e?y(a(h=t[_])[0],h[1]):y(t[_]))===c||m===l)return m}else for(v=g.call(t);!(h=v.next()).done;)if((m=i(v,y,h.value,e))===c||m===l)return m};e.BREAK=c,e.RETURN=l},function(t,e,n){var r=n(5),i=n(82).set;t.exports=function(t,e,n){var o,a=e.constructor;return a!==n&&"function"==typeof a&&(o=a.prototype)!==n.prototype&&r(o)&&i&&i(t,o),t}},function(t,e){t.exports=function(t,e,n){var r=void 0===n;switch(e.length){case 0:return r?t():t.call(n);case 1:return r?t(e[0]):t.call(n,e[0]);case 2:return r?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return r?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return r?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){var r=n(15),i=n(1)("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||o[i]===t)}},function(t,e,n){var r=n(2);t.exports=function(t,e,n,i){try{return i?e(r(n)[0],n[1]):e(n)}catch(e){var o=t.return;throw void 0!==o&&r(o.call(t)),e}}},function(t,e,n){"use strict";var r=n(44),i=n(25),o=n(26),a={};n(8)(a,n(1)("iterator"),function(){return this}),t.exports=function(t,e,n){t.prototype=r(a,{next:i(1,n)}),o(t,e+" Iterator")}},function(t,e,n){"use strict";var r=n(24),i=n(3),o=n(6),a=n(8),s=n(15),u=n(71),c=n(26),l=n(78),f=n(1)("iterator"),p=!([].keys&&"next"in[].keys()),d=function(){return this};t.exports=function(t,e,n,h,v,m,g){u(n,e,h);var y,_,b,w=function(t){if(!p&&t in C)return C[t];switch(t){case"keys":case"values":return function(){return new n(this,t)}}return function(){return new n(this,t)}},x=e+" Iterator",O="values"==v,S=!1,C=t.prototype,k=C[f]||C["@@iterator"]||v&&C[v],E=k||w(v),T=v?O?w("entries"):E:void 0,A="Array"==e&&C.entries||k;if(A&&(b=l(A.call(new t)))!==Object.prototype&&b.next&&(c(b,x,!0),r||"function"==typeof b[f]||a(b,f,d)),O&&k&&"values"!==k.name&&(S=!0,E=function(){return k.call(this)}),r&&!g||!p&&!S&&C[f]||a(C,f,E),s[e]=E,s[x]=d,v)if(y={values:O?E:w("values"),keys:m?E:w("keys"),entries:T},g)for(_ in y)_ in C||o(C,_,y[_]);else i(i.P+i.F*(p||S),e,y);return y}},function(t,e,n){var r=n(1)("iterator"),i=!1;try{var o=[7][r]();o.return=function(){i=!0},Array.from(o,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!i)return!1;var n=!1;try{var o=[7],a=o[r]();a.next=function(){return{done:n=!0}},o[r]=function(){return a},t(o)}catch(t){}return n}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var r=n(0),i=n(52).set,o=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,u="process"==n(9)(a);t.exports=function(){var t,e,n,c=function(){var r,i;for(u&&(r=a.domain)&&r.exit();t;){i=t.fn,t=t.next;try{i()}catch(r){throw t?n():e=void 0,r}}e=void 0,r&&r.enter()};if(u)n=function(){a.nextTick(c)};else if(!o||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var l=s.resolve(void 0);n=function(){l.then(c)}}else n=function(){i.call(r,c)};else{var f=!0,p=document.createTextNode("");new o(c).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(r){var i={fn:r,next:void 0};e&&(e.next=i),t||(t=i,n()),e=i}}},function(t,e,n){var r=n(13),i=n(2),o=n(47);t.exports=n(4)?Object.defineProperties:function(t,e){i(t);for(var n,a=o(e),s=a.length,u=0;s>u;)r.f(t,n=a[u++],e[n]);return t}},function(t,e,n){var r=n(46),i=n(22).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},function(t,e,n){var r=n(12),i=n(28),o=n(27)("IE_PROTO"),a=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),r(t,o)?t[o]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?a:null}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,n){var r=n(6);t.exports=function(t,e,n){for(var i in e)r(t,i,e[i],n);return t}},function(t,e,n){var r=n(5),i=n(2),o=function(t,e){if(i(t),!r(e)&&null!==e)throw TypeError(e+": can't set as prototype!")};t.exports={set:Object.setPrototypeOf||("__proto__"in{}?function(t,e,r){try{(r=n(11)(Function.call,n(45).f(Object.prototype,"__proto__").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:r(t,n),t}}({},!1):void 0),check:o}},function(t,e,n){"use strict";var r=n(0),i=n(13),o=n(4),a=n(1)("species");t.exports=function(t){var e=r[t];o&&e&&!e[a]&&i.f(e,a,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports="\t\n\v\f\r \u2028\u2029\ufeff"},function(t,e,n){var r=n(53),i=Math.max,o=Math.min;t.exports=function(t,e){return(t=r(t))<0?i(t+e,0):o(t,e)}},function(t,e,n){var r=n(0),i=r.navigator;t.exports=i&&i.userAgent||""},function(t,e,n){var r=n(38),i=n(1)("iterator"),o=n(15);t.exports=n(10).getIteratorMethod=function(t){if(void 0!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,e,n){"use strict";var r=n(3),i=n(20)(2);r(r.P+r.F*!n(17)([].filter,!0),"Array",{filter:function(t){return i(this,t,arguments[1])}})},function(t,e,n){"use strict";var r=n(3),i=n(37)(!1),o=[].indexOf,a=!!o&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n(17)(o)),"Array",{indexOf:function(t){return a?o.apply(this,arguments)||0:i(this,t,arguments[1])}})},function(t,e,n){var r=n(3);r(r.S,"Array",{isArray:n(42)})},function(t,e,n){"use strict";var r=n(3),i=n(20)(1);r(r.P+r.F*!n(17)([].map,!0),"Array",{map:function(t){return i(this,t,arguments[1])}})},function(t,e,n){"use strict";var r=n(3),i=n(62);r(r.P+r.F*!n(17)([].reduce,!0),"Array",{reduce:function(t){return i(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){var r=Date.prototype,i=r.toString,o=r.getTime;new Date(NaN)+""!="Invalid Date"&&n(6)(r,"toString",function(){var t=o.call(this);return t==t?i.call(this):"Invalid Date"})},function(t,e,n){n(4)&&"g"!=/./g.flags&&n(13).f(RegExp.prototype,"flags",{configurable:!0,get:n(39)})},function(t,e,n){n(65)("search",1,function(t,e,n){return[function(n){"use strict";var r=t(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,r):new RegExp(n)[e](String(r))},n]})},function(t,e,n){"use strict";n(94);var r=n(2),i=n(39),o=n(4),a=/./.toString,s=function(t){n(6)(RegExp.prototype,"toString",t,!0)};n(7)(function(){return"/a/b"!=a.call({source:"a",flags:"b"})})?s(function(){var t=r(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?i.call(t):void 0)}):"toString"!=a.name&&s(function(){return a.call(this)})},function(t,e,n){"use strict";n(51)("trim",function(t){return function(){return t(this,3)}})},function(t,e,n){for(var r=n(34),i=n(47),o=n(6),a=n(0),s=n(8),u=n(15),c=n(1),l=c("iterator"),f=c("toStringTag"),p=u.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=i(d),v=0;v<h.length;v++){var m,g=h[v],y=d[g],_=a[g],b=_&&_.prototype;if(b&&(b[l]||s(b,l,p),b[f]||s(b,f,g),u[g]=p,y))for(m in r)b[m]||o(b,m,r[m],!0)}},function(t,e){},function(t,e){t.exports=function(t,e,n,r,i,o){var a,s=t=t||{},u=typeof t.default;"object"!==u&&"function"!==u||(a=t,s=t.default);var c,l="function"==typeof s?s.options:s;if(e&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns,l._compiled=!0),n&&(l.functional=!0),i&&(l._scopeId=i),o?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),r&&r.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},l._ssrRegister=c):r&&(c=r),c){var f=l.functional,p=f?l.render:l.beforeCreate;f?(l._injectStyles=c,l.render=function(t,e){return c.call(e),p(t,e)}):l.beforeCreate=p?[].concat(p,c):[c]}return{esModule:a,exports:s,options:l}}},function(t,e,n){"use strict";e.a={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"multiselect",class:{"multiselect--active":t.isOpen,"multiselect--disabled":t.disabled,"multiselect--above":t.isAbove},attrs:{tabindex:t.searchable?-1:t.tabindex},on:{focus:function(e){t.activate()},blur:function(e){!t.searchable&&t.deactivate()},keydown:[function(e){return"button"in e||!t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerForward()):null},function(e){return"button"in e||!t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerBackward()):null},function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")||!t._k(e.keyCode,"tab",9,e.key,"Tab")?(e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null}],keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"esc",27,e.key,"Escape"))return null;t.deactivate()}}},[t._t("caret",[n("div",{staticClass:"multiselect__select",on:{mousedown:function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}}})],{toggle:t.toggle}),t._v(" "),t._t("clear",null,{search:t.search}),t._v(" "),n("div",{ref:"tags",staticClass:"multiselect__tags"},[t._t("selection",[n("div",{directives:[{name:"show",rawName:"v-show",value:t.visibleValues.length>0,expression:"visibleValues.length > 0"}],staticClass:"multiselect__tags-wrap"},[t._l(t.visibleValues,function(e,r){return[t._t("tag",[n("span",{key:r,staticClass:"multiselect__tag"},[n("span",{domProps:{textContent:t._s(t.getOptionLabel(e))}}),t._v(" "),n("i",{staticClass:"multiselect__tag-icon",attrs:{"aria-hidden":"true",tabindex:"1"},on:{keydown:function(n){if(!("button"in n)&&t._k(n.keyCode,"enter",13,n.key,"Enter"))return null;n.preventDefault(),t.removeElement(e)},mousedown:function(n){n.preventDefault(),t.removeElement(e)}}})])],{option:e,search:t.search,remove:t.removeElement})]})],2),t._v(" "),t.internalValue&&t.internalValue.length>t.limit?[t._t("limit",[n("strong",{staticClass:"multiselect__strong",domProps:{textContent:t._s(t.limitText(t.internalValue.length-t.limit))}})])]:t._e()],{search:t.search,remove:t.removeElement,values:t.visibleValues,isOpen:t.isOpen}),t._v(" "),n("transition",{attrs:{name:"multiselect__loading"}},[t._t("loading",[n("div",{directives:[{name:"show",rawName:"v-show",value:t.loading,expression:"loading"}],staticClass:"multiselect__spinner"})])],2),t._v(" "),t.searchable?n("input",{ref:"search",staticClass:"multiselect__input",style:t.inputStyle,attrs:{name:t.name,id:t.id,type:"text",autocomplete:"off",placeholder:t.placeholder,disabled:t.disabled,tabindex:t.tabindex},domProps:{value:t.search},on:{input:function(e){t.updateSearch(e.target.value)},focus:function(e){e.preventDefault(),t.activate()},blur:function(e){e.preventDefault(),t.deactivate()},keyup:function(e){if(!("button"in e)&&t._k(e.keyCode,"esc",27,e.key,"Escape"))return null;t.deactivate()},keydown:[function(e){if(!("button"in e)&&t._k(e.keyCode,"down",40,e.key,["Down","ArrowDown"]))return null;e.preventDefault(),t.pointerForward()},function(e){if(!("button"in e)&&t._k(e.keyCode,"up",38,e.key,["Up","ArrowUp"]))return null;e.preventDefault(),t.pointerBackward()},function(e){return"button"in e||!t._k(e.keyCode,"enter",13,e.key,"Enter")?(e.preventDefault(),e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null},function(e){if(!("button"in e)&&t._k(e.keyCode,"delete",[8,46],e.key,["Backspace","Delete"]))return null;e.stopPropagation(),t.removeLastElement()}]}}):t._e(),t._v(" "),t.isSingleLabelVisible?n("span",{staticClass:"multiselect__single",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t("singleLabel",[[t._v(t._s(t.currentOptionLabel))]],{option:t.singleValue})],2):t._e(),t._v(" "),t.isPlaceholderVisible?n("span",{staticClass:"multiselect__placeholder",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t("placeholder",[t._v("\n "+t._s(t.placeholder)+"\n ")])],2):t._e()],2),t._v(" "),n("transition",{attrs:{name:"multiselect"}},[n("div",{directives:[{name:"show",rawName:"v-show",value:t.isOpen,expression:"isOpen"}],ref:"list",staticClass:"multiselect__content-wrapper",style:{maxHeight:t.optimizedHeight+"px"},attrs:{tabindex:"-1"},on:{focus:t.activate,mousedown:function(t){t.preventDefault()}}},[n("ul",{staticClass:"multiselect__content",style:t.contentStyle},[t._t("beforeList"),t._v(" "),t.multiple&&t.max===t.internalValue.length?n("li",[n("span",{staticClass:"multiselect__option"},[t._t("maxElements",[t._v("Maximum of "+t._s(t.max)+" options selected. First remove a selected option to select another.")])],2)]):t._e(),t._v(" "),!t.max||t.internalValue.length<t.max?t._l(t.filteredOptions,function(e,r){return n("li",{key:r,staticClass:"multiselect__element"},[e&&(e.$isLabel||e.$isDisabled)?t._e():n("span",{staticClass:"multiselect__option",class:t.optionHighlight(r,e),attrs:{"data-select":e&&e.isTag?t.tagPlaceholder:t.selectLabelText,"data-selected":t.selectedLabelText,"data-deselect":t.deselectLabelText},on:{click:function(n){n.stopPropagation(),t.select(e)},mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.pointerSet(r)}}},[t._t("option",[n("span",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2),t._v(" "),e&&(e.$isLabel||e.$isDisabled)?n("span",{staticClass:"multiselect__option",class:t.groupHighlight(r,e),attrs:{"data-select":t.groupSelect&&t.selectGroupLabelText,"data-deselect":t.groupSelect&&t.deselectGroupLabelText},on:{mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.groupSelect&&t.pointerSet(r)},mousedown:function(n){n.preventDefault(),t.selectGroup(e)}}},[t._t("option",[n("span",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2):t._e()])}):t._e(),t._v(" "),n("li",{directives:[{name:"show",rawName:"v-show",value:t.showNoResults&&0===t.filteredOptions.length&&t.search&&!t.loading,expression:"showNoResults && (filteredOptions.length === 0 && search && !loading)"}]},[n("span",{staticClass:"multiselect__option"},[t._t("noResult",[t._v("No elements found. Consider changing the search query.")])],2)]),t._v(" "),n("li",{directives:[{name:"show",rawName:"v-show",value:t.showNoOptions&&0===t.options.length&&!t.search&&!t.loading,expression:"showNoOptions && (options.length === 0 && !search && !loading)"}]},[n("span",{staticClass:"multiselect__option"},[t._t("noOptions",[t._v("List is empty.")])],2)]),t._v(" "),t._t("afterList")],2)])])],2)},staticRenderFns:[]}}])},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(299).default.create({headers:{requesttoken:OC.requestToken}});e.default=r},function(t,e,n){!function(){var e=n(318),r=n(127).utf8,i=n(122),o=n(127).bin,a=function(t,n){t.constructor==String?t=n&&"binary"===n.encoding?o.stringToBytes(t):r.stringToBytes(t):i(t)?t=Array.prototype.slice.call(t,0):Array.isArray(t)||(t=t.toString());for(var s=e.bytesToWords(t),u=8*t.length,c=1732584193,l=-271733879,f=-1732584194,p=271733878,d=0;d<s.length;d++)s[d]=16711935&(s[d]<<8|s[d]>>>24)|4278255360&(s[d]<<24|s[d]>>>8);s[u>>>5]|=128<<u%32,s[14+(u+64>>>9<<4)]=u;var h=a._ff,v=a._gg,m=a._hh,g=a._ii;for(d=0;d<s.length;d+=16){var y=c,_=l,b=f,w=p;l=g(l=g(l=g(l=g(l=m(l=m(l=m(l=m(l=v(l=v(l=v(l=v(l=h(l=h(l=h(l=h(l,f=h(f,p=h(p,c=h(c,l,f,p,s[d+0],7,-680876936),l,f,s[d+1],12,-389564586),c,l,s[d+2],17,606105819),p,c,s[d+3],22,-1044525330),f=h(f,p=h(p,c=h(c,l,f,p,s[d+4],7,-176418897),l,f,s[d+5],12,1200080426),c,l,s[d+6],17,-1473231341),p,c,s[d+7],22,-45705983),f=h(f,p=h(p,c=h(c,l,f,p,s[d+8],7,1770035416),l,f,s[d+9],12,-1958414417),c,l,s[d+10],17,-42063),p,c,s[d+11],22,-1990404162),f=h(f,p=h(p,c=h(c,l,f,p,s[d+12],7,1804603682),l,f,s[d+13],12,-40341101),c,l,s[d+14],17,-1502002290),p,c,s[d+15],22,1236535329),f=v(f,p=v(p,c=v(c,l,f,p,s[d+1],5,-165796510),l,f,s[d+6],9,-1069501632),c,l,s[d+11],14,643717713),p,c,s[d+0],20,-373897302),f=v(f,p=v(p,c=v(c,l,f,p,s[d+5],5,-701558691),l,f,s[d+10],9,38016083),c,l,s[d+15],14,-660478335),p,c,s[d+4],20,-405537848),f=v(f,p=v(p,c=v(c,l,f,p,s[d+9],5,568446438),l,f,s[d+14],9,-1019803690),c,l,s[d+3],14,-187363961),p,c,s[d+8],20,1163531501),f=v(f,p=v(p,c=v(c,l,f,p,s[d+13],5,-1444681467),l,f,s[d+2],9,-51403784),c,l,s[d+7],14,1735328473),p,c,s[d+12],20,-1926607734),f=m(f,p=m(p,c=m(c,l,f,p,s[d+5],4,-378558),l,f,s[d+8],11,-2022574463),c,l,s[d+11],16,1839030562),p,c,s[d+14],23,-35309556),f=m(f,p=m(p,c=m(c,l,f,p,s[d+1],4,-1530992060),l,f,s[d+4],11,1272893353),c,l,s[d+7],16,-155497632),p,c,s[d+10],23,-1094730640),f=m(f,p=m(p,c=m(c,l,f,p,s[d+13],4,681279174),l,f,s[d+0],11,-358537222),c,l,s[d+3],16,-722521979),p,c,s[d+6],23,76029189),f=m(f,p=m(p,c=m(c,l,f,p,s[d+9],4,-640364487),l,f,s[d+12],11,-421815835),c,l,s[d+15],16,530742520),p,c,s[d+2],23,-995338651),f=g(f,p=g(p,c=g(c,l,f,p,s[d+0],6,-198630844),l,f,s[d+7],10,1126891415),c,l,s[d+14],15,-1416354905),p,c,s[d+5],21,-57434055),f=g(f,p=g(p,c=g(c,l,f,p,s[d+12],6,1700485571),l,f,s[d+3],10,-1894986606),c,l,s[d+10],15,-1051523),p,c,s[d+1],21,-2054922799),f=g(f,p=g(p,c=g(c,l,f,p,s[d+8],6,1873313359),l,f,s[d+15],10,-30611744),c,l,s[d+6],15,-1560198380),p,c,s[d+13],21,1309151649),f=g(f,p=g(p,c=g(c,l,f,p,s[d+4],6,-145523070),l,f,s[d+11],10,-1120210379),c,l,s[d+2],15,718787259),p,c,s[d+9],21,-343485551),c=c+y>>>0,l=l+_>>>0,f=f+b>>>0,p=p+w>>>0}return e.endian([c,l,f,p])};a._ff=function(t,e,n,r,i,o,a){var s=t+(e&n|~e&r)+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._gg=function(t,e,n,r,i,o,a){var s=t+(e&r|n&~r)+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._hh=function(t,e,n,r,i,o,a){var s=t+(e^n^r)+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._ii=function(t,e,n,r,i,o,a){var s=t+(n^(e|~r))+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._blocksize=16,a._digestsize=16,t.exports=function(t,n){if(void 0===t||null===t)throw new Error("Illegal argument "+t);var r=e.wordsToBytes(a(t,n));return n&&n.asBytes?r:n&&n.asString?o.bytesToString(r):e.bytesToHex(r)}}()},function(t,e,n){"use strict";(function(t){n(132),n(276),n(278),n(280),n(282),n(284),n(286),n(288),n(290),n(292),n(296),t._babelPolyfill&&"undefined"!=typeof console&&console.warn&&console.warn("@babel/polyfill is loaded more than once on this page. This is probably not desirable/intended and may have consequences if different versions of the polyfills are applied sequentially. If you do need to load the polyfill more than once, use @babel/polyfill/noConflict instead to bypass the warning."),t._babelPolyfill=!0}).call(this,n(91))},function(t,e,n){n(133),n(135),n(136),n(137),n(138),n(139),n(140),n(141),n(142),n(143),n(144),n(145),n(146),n(147),n(148),n(149),n(151),n(152),n(153),n(154),n(155),n(156),n(157),n(158),n(159),n(160),n(161),n(162),n(163),n(164),n(165),n(166),n(167),n(168),n(169),n(170),n(171),n(172),n(173),n(174),n(175),n(176),n(177),n(179),n(180),n(181),n(182),n(183),n(184),n(185),n(186),n(187),n(188),n(189),n(190),n(191),n(192),n(193),n(194),n(195),n(196),n(197),n(198),n(199),n(200),n(201),n(202),n(203),n(204),n(205),n(206),n(207),n(208),n(209),n(210),n(211),n(212),n(214),n(215),n(217),n(218),n(219),n(220),n(221),n(222),n(223),n(226),n(227),n(228),n(229),n(230),n(231),n(232),n(233),n(234),n(235),n(236),n(237),n(238),n(86),n(239),n(240),n(111),n(241),n(242),n(243),n(244),n(112),n(247),n(248),n(249),n(250),n(251),n(252),n(253),n(254),n(255),n(256),n(257),n(258),n(259),n(260),n(261),n(262),n(263),n(264),n(265),n(266),n(267),n(268),n(269),n(270),n(271),n(272),n(273),n(274),n(275),t.exports=n(8)},function(t,e,n){"use strict";var r=n(2),i=n(12),o=n(7),a=n(0),s=n(10),u=n(28).KEY,c=n(1),l=n(66),f=n(38),p=n(31),d=n(5),h=n(67),v=n(93),m=n(134),g=n(70),y=n(4),_=n(3),b=n(14),w=n(27),x=n(30),O=n(35),S=n(96),C=n(18),k=n(6),E=n(33),T=C.f,A=k.f,D=S.f,M=r.Symbol,P=r.JSON,N=P&&P.stringify,$=d("_hidden"),L=d("toPrimitive"),j={}.propertyIsEnumerable,I=l("symbol-registry"),F=l("symbols"),R=l("op-symbols"),B=Object.prototype,U="function"==typeof M,V=r.QObject,H=!V||!V.prototype||!V.prototype.findChild,z=o&&c(function(){return 7!=O(A({},"a",{get:function(){return A(this,"a",{value:7}).a}})).a})?function(t,e,n){var r=T(B,e);r&&delete B[e],A(t,e,n),r&&t!==B&&A(B,e,r)}:A,W=function(t){var e=F[t]=O(M.prototype);return e._k=t,e},Y=U&&"symbol"==typeof M.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof M},G=function(t,e,n){return t===B&&G(R,e,n),y(t),e=w(e,!0),y(n),i(F,e)?(n.enumerable?(i(t,$)&&t[$][e]&&(t[$][e]=!1),n=O(n,{enumerable:x(0,!1)})):(i(t,$)||A(t,$,x(1,{})),t[$][e]=!0),z(t,e,n)):A(t,e,n)},q=function(t,e){y(t);for(var n,r=m(e=b(e)),i=0,o=r.length;o>i;)G(t,n=r[i++],e[n]);return t},K=function(t){var e=j.call(this,t=w(t,!0));return!(this===B&&i(F,t)&&!i(R,t))&&(!(e||!i(this,t)||!i(F,t)||i(this,$)&&this[$][t])||e)},J=function(t,e){if(t=b(t),e=w(e,!0),t!==B||!i(F,e)||i(R,e)){var n=T(t,e);return!n||!i(F,e)||i(t,$)&&t[$][e]||(n.enumerable=!0),n}},X=function(t){for(var e,n=D(b(t)),r=[],o=0;n.length>o;)i(F,e=n[o++])||e==$||e==u||r.push(e);return r},Z=function(t){for(var e,n=t===B,r=D(n?R:b(t)),o=[],a=0;r.length>a;)!i(F,e=r[a++])||n&&!i(B,e)||o.push(F[e]);return o};U||(s((M=function(){if(this instanceof M)throw TypeError("Symbol is not a constructor!");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===B&&e.call(R,n),i(this,$)&&i(this[$],t)&&(this[$][t]=!1),z(this,t,x(1,n))};return o&&H&&z(B,t,{configurable:!0,set:e}),W(t)}).prototype,"toString",function(){return this._k}),C.f=J,k.f=G,n(36).f=S.f=X,n(46).f=K,n(51).f=Z,o&&!n(32)&&s(B,"propertyIsEnumerable",K,!0),h.f=function(t){return W(d(t))}),a(a.G+a.W+a.F*!U,{Symbol:M});for(var Q="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),tt=0;Q.length>tt;)d(Q[tt++]);for(var et=E(d.store),nt=0;et.length>nt;)v(et[nt++]);a(a.S+a.F*!U,"Symbol",{for:function(t){return i(I,t+="")?I[t]:I[t]=M(t)},keyFor:function(t){if(!Y(t))throw TypeError(t+" is not a symbol!");for(var e in I)if(I[e]===t)return e},useSetter:function(){H=!0},useSimple:function(){H=!1}}),a(a.S+a.F*!U,"Object",{create:function(t,e){return void 0===e?O(t):q(O(t),e)},defineProperty:G,defineProperties:q,getOwnPropertyDescriptor:J,getOwnPropertyNames:X,getOwnPropertySymbols:Z}),P&&a(a.S+a.F*(!U||c(function(){var t=M();return"[null]"!=N([t])||"{}"!=N({a:t})||"{}"!=N(Object(t))})),"JSON",{stringify:function(t){for(var e,n,r=[t],i=1;arguments.length>i;)r.push(arguments[i++]);if(n=e=r[1],(_(e)||void 0!==t)&&!Y(t))return g(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!Y(e))return e}),r[1]=e,N.apply(P,r)}}),M.prototype[L]||n(13)(M.prototype,L,M.prototype.valueOf),f(M,"Symbol"),f(Math,"Math",!0),f(r.JSON,"JSON",!0)},function(t,e,n){var r=n(33),i=n(51),o=n(46);t.exports=function(t){var e=r(t),n=i.f;if(n)for(var a,s=n(t),u=o.f,c=0;s.length>c;)u.call(t,a=s[c++])&&e.push(a);return e}},function(t,e,n){var r=n(0);r(r.S,"Object",{create:n(35)})},function(t,e,n){var r=n(0);r(r.S+r.F*!n(7),"Object",{defineProperty:n(6).f})},function(t,e,n){var r=n(0);r(r.S+r.F*!n(7),"Object",{defineProperties:n(95)})},function(t,e,n){var r=n(14),i=n(18).f;n(19)("getOwnPropertyDescriptor",function(){return function(t,e){return i(r(t),e)}})},function(t,e,n){var r=n(15),i=n(37);n(19)("getPrototypeOf",function(){return function(t){return i(r(t))}})},function(t,e,n){var r=n(15),i=n(33);n(19)("keys",function(){return function(t){return i(r(t))}})},function(t,e,n){n(19)("getOwnPropertyNames",function(){return n(96).f})},function(t,e,n){var r=n(3),i=n(28).onFreeze;n(19)("freeze",function(t){return function(e){return t&&r(e)?t(i(e)):e}})},function(t,e,n){var r=n(3),i=n(28).onFreeze;n(19)("seal",function(t){return function(e){return t&&r(e)?t(i(e)):e}})},function(t,e,n){var r=n(3),i=n(28).onFreeze;n(19)("preventExtensions",function(t){return function(e){return t&&r(e)?t(i(e)):e}})},function(t,e,n){var r=n(3);n(19)("isFrozen",function(t){return function(e){return!r(e)||!!t&&t(e)}})},function(t,e,n){var r=n(3);n(19)("isSealed",function(t){return function(e){return!r(e)||!!t&&t(e)}})},function(t,e,n){var r=n(3);n(19)("isExtensible",function(t){return function(e){return!!r(e)&&(!t||t(e))}})},function(t,e,n){var r=n(0);r(r.S+r.F,"Object",{assign:n(97)})},function(t,e,n){var r=n(0);r(r.S,"Object",{is:n(150)})},function(t,e){t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},function(t,e,n){var r=n(0);r(r.S,"Object",{setPrototypeOf:n(72).set})},function(t,e,n){"use strict";var r=n(52),i={};i[n(5)("toStringTag")]="z",i+""!="[object z]"&&n(10)(Object.prototype,"toString",function(){return"[object "+r(this)+"]"},!0)},function(t,e,n){var r=n(0);r(r.P,"Function",{bind:n(98)})},function(t,e,n){var r=n(6).f,i=Function.prototype,o=/^\s*function ([^ (]*)/;"name"in i||n(7)&&r(i,"name",{configurable:!0,get:function(){try{return(""+this).match(o)[1]}catch(t){return""}}})},function(t,e,n){"use strict";var r=n(3),i=n(37),o=n(5)("hasInstance"),a=Function.prototype;o in a||n(6).f(a,o,{value:function(t){if("function"!=typeof this||!r(t))return!1;if(!r(this.prototype))return t instanceof this;for(;t=i(t);)if(this.prototype===t)return!0;return!1}})},function(t,e,n){var r=n(0),i=n(100);r(r.G+r.F*(parseInt!=i),{parseInt:i})},function(t,e,n){var r=n(0),i=n(101);r(r.G+r.F*(parseFloat!=i),{parseFloat:i})},function(t,e,n){"use strict";var r=n(2),i=n(12),o=n(23),a=n(74),s=n(27),u=n(1),c=n(36).f,l=n(18).f,f=n(6).f,p=n(53).trim,d=r.Number,h=d,v=d.prototype,m="Number"==o(n(35)(v)),g="trim"in String.prototype,y=function(t){var e=s(t,!1);if("string"==typeof e&&e.length>2){var n,r,i,o=(e=g?e.trim():p(e,3)).charCodeAt(0);if(43===o||45===o){if(88===(n=e.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(e.charCodeAt(1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+e}for(var a,u=e.slice(2),c=0,l=u.length;c<l;c++)if((a=u.charCodeAt(c))<48||a>i)return NaN;return parseInt(u,r)}}return+e};if(!d(" 0o1")||!d("0b1")||d("+0x1")){d=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof d&&(m?u(function(){v.valueOf.call(n)}):"Number"!=o(n))?a(new h(y(e)),n,d):y(e)};for(var _,b=n(7)?c(h):"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger".split(","),w=0;b.length>w;w++)i(h,_=b[w])&&!i(d,_)&&f(d,_,l(h,_));d.prototype=v,v.constructor=d,n(10)(r,"Number",d)}},function(t,e,n){"use strict";var r=n(0),i=n(25),o=n(102),a=n(75),s=1..toFixed,u=Math.floor,c=[0,0,0,0,0,0],l="Number.toFixed: incorrect invocation!",f=function(t,e){for(var n=-1,r=e;++n<6;)r+=t*c[n],c[n]=r%1e7,r=u(r/1e7)},p=function(t){for(var e=6,n=0;--e>=0;)n+=c[e],c[e]=u(n/t),n=n%t*1e7},d=function(){for(var t=6,e="";--t>=0;)if(""!==e||0===t||0!==c[t]){var n=String(c[t]);e=""===e?n:e+a.call("0",7-n.length)+n}return e},h=function(t,e,n){return 0===e?n:e%2==1?h(t,e-1,n*t):h(t*t,e/2,n)};r(r.P+r.F*(!!s&&("0.000"!==8e-5.toFixed(3)||"1"!==.9.toFixed(0)||"1.25"!==1.255.toFixed(2)||"1000000000000000128"!==(0xde0b6b3a7640080).toFixed(0))||!n(1)(function(){s.call({})})),"Number",{toFixed:function(t){var e,n,r,s,u=o(this,l),c=i(t),v="",m="0";if(c<0||c>20)throw RangeError(l);if(u!=u)return"NaN";if(u<=-1e21||u>=1e21)return String(u);if(u<0&&(v="-",u=-u),u>1e-21)if(n=(e=function(t){for(var e=0,n=t;n>=4096;)e+=12,n/=4096;for(;n>=2;)e+=1,n/=2;return e}(u*h(2,69,1))-69)<0?u*h(2,-e,1):u/h(2,e,1),n*=4503599627370496,(e=52-e)>0){for(f(0,n),r=c;r>=7;)f(1e7,0),r-=7;for(f(h(10,r,1),0),r=e-1;r>=23;)p(1<<23),r-=23;p(1<<r),f(1,1),p(2),m=d()}else f(0,n),f(1<<-e,0),m=d()+a.call("0",c);return m=c>0?v+((s=m.length)<=c?"0."+a.call("0",c-s)+m:m.slice(0,s-c)+"."+m.slice(s-c)):v+m}})},function(t,e,n){"use strict";var r=n(0),i=n(1),o=n(102),a=1..toPrecision;r(r.P+r.F*(i(function(){return"1"!==a.call(1,void 0)})||!i(function(){a.call({})})),"Number",{toPrecision:function(t){var e=o(this,"Number#toPrecision: incorrect invocation!");return void 0===t?a.call(e):a.call(e,t)}})},function(t,e,n){var r=n(0);r(r.S,"Number",{EPSILON:Math.pow(2,-52)})},function(t,e,n){var r=n(0),i=n(2).isFinite;r(r.S,"Number",{isFinite:function(t){return"number"==typeof t&&i(t)}})},function(t,e,n){var r=n(0);r(r.S,"Number",{isInteger:n(103)})},function(t,e,n){var r=n(0);r(r.S,"Number",{isNaN:function(t){return t!=t}})},function(t,e,n){var r=n(0),i=n(103),o=Math.abs;r(r.S,"Number",{isSafeInteger:function(t){return i(t)&&o(t)<=9007199254740991}})},function(t,e,n){var r=n(0);r(r.S,"Number",{MAX_SAFE_INTEGER:9007199254740991})},function(t,e,n){var r=n(0);r(r.S,"Number",{MIN_SAFE_INTEGER:-9007199254740991})},function(t,e,n){var r=n(0),i=n(101);r(r.S+r.F*(Number.parseFloat!=i),"Number",{parseFloat:i})},function(t,e,n){var r=n(0),i=n(100);r(r.S+r.F*(Number.parseInt!=i),"Number",{parseInt:i})},function(t,e,n){var r=n(0),i=n(104),o=Math.sqrt,a=Math.acosh;r(r.S+r.F*!(a&&710==Math.floor(a(Number.MAX_VALUE))&&a(1/0)==1/0),"Math",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:i(t-1+o(t-1)*o(t+1))}})},function(t,e,n){var r=n(0),i=Math.asinh;r(r.S+r.F*!(i&&1/i(0)>0),"Math",{asinh:function t(e){return isFinite(e=+e)&&0!=e?e<0?-t(-e):Math.log(e+Math.sqrt(e*e+1)):e}})},function(t,e,n){var r=n(0),i=Math.atanh;r(r.S+r.F*!(i&&1/i(-0)<0),"Math",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},function(t,e,n){var r=n(0),i=n(76);r(r.S,"Math",{cbrt:function(t){return i(t=+t)*Math.pow(Math.abs(t),1/3)}})},function(t,e,n){var r=n(0);r(r.S,"Math",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},function(t,e,n){var r=n(0),i=Math.exp;r(r.S,"Math",{cosh:function(t){return(i(t=+t)+i(-t))/2}})},function(t,e,n){var r=n(0),i=n(77);r(r.S+r.F*(i!=Math.expm1),"Math",{expm1:i})},function(t,e,n){var r=n(0);r(r.S,"Math",{fround:n(178)})},function(t,e,n){var r=n(76),i=Math.pow,o=i(2,-52),a=i(2,-23),s=i(2,127)*(2-a),u=i(2,-126);t.exports=Math.fround||function(t){var e,n,i=Math.abs(t),c=r(t);return i<u?c*function(t){return t+1/o-1/o}(i/u/a)*u*a:(n=(e=(1+a/o)*i)-(e-i))>s||n!=n?c*(1/0):c*n}},function(t,e,n){var r=n(0),i=Math.abs;r(r.S,"Math",{hypot:function(t,e){for(var n,r,o=0,a=0,s=arguments.length,u=0;a<s;)u<(n=i(arguments[a++]))?(o=o*(r=u/n)*r+1,u=n):o+=n>0?(r=n/u)*r:n;return u===1/0?1/0:u*Math.sqrt(o)}})},function(t,e,n){var r=n(0),i=Math.imul;r(r.S+r.F*n(1)(function(){return-5!=i(4294967295,5)||2!=i.length}),"Math",{imul:function(t,e){var n=+t,r=+e,i=65535&n,o=65535&r;return 0|i*o+((65535&n>>>16)*o+i*(65535&r>>>16)<<16>>>0)}})},function(t,e,n){var r=n(0);r(r.S,"Math",{log10:function(t){return Math.log(t)*Math.LOG10E}})},function(t,e,n){var r=n(0);r(r.S,"Math",{log1p:n(104)})},function(t,e,n){var r=n(0);r(r.S,"Math",{log2:function(t){return Math.log(t)/Math.LN2}})},function(t,e,n){var r=n(0);r(r.S,"Math",{sign:n(76)})},function(t,e,n){var r=n(0),i=n(77),o=Math.exp;r(r.S+r.F*n(1)(function(){return-2e-17!=!Math.sinh(-2e-17)}),"Math",{sinh:function(t){return Math.abs(t=+t)<1?(i(t)-i(-t))/2:(o(t-1)-o(-t-1))*(Math.E/2)}})},function(t,e,n){var r=n(0),i=n(77),o=Math.exp;r(r.S,"Math",{tanh:function(t){var e=i(t=+t),n=i(-t);return e==1/0?1:n==1/0?-1:(e-n)/(o(t)+o(-t))}})},function(t,e,n){var r=n(0);r(r.S,"Math",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},function(t,e,n){var r=n(0),i=n(34),o=String.fromCharCode,a=String.fromCodePoint;r(r.S+r.F*(!!a&&1!=a.length),"String",{fromCodePoint:function(t){for(var e,n=[],r=arguments.length,a=0;r>a;){if(e=+arguments[a++],i(e,1114111)!==e)throw RangeError(e+" is not a valid code point");n.push(e<65536?o(e):o(55296+((e-=65536)>>10),e%1024+56320))}return n.join("")}})},function(t,e,n){var r=n(0),i=n(14),o=n(9);r(r.S,"String",{raw:function(t){for(var e=i(t.raw),n=o(e.length),r=arguments.length,a=[],s=0;n>s;)a.push(String(e[s++])),s<r&&a.push(String(arguments[s]));return a.join("")}})},function(t,e,n){"use strict";n(53)("trim",function(t){return function(){return t(this,3)}})},function(t,e,n){"use strict";var r=n(105)(!0);n(78)(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=r(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){"use strict";var r=n(0),i=n(105)(!1);r(r.P,"String",{codePointAt:function(t){return i(this,t)}})},function(t,e,n){"use strict";var r=n(0),i=n(9),o=n(79),a="".endsWith;r(r.P+r.F*n(81)("endsWith"),"String",{endsWith:function(t){var e=o(this,t,"endsWith"),n=arguments.length>1?arguments[1]:void 0,r=i(e.length),s=void 0===n?r:Math.min(i(n),r),u=String(t);return a?a.call(e,u,s):e.slice(s-u.length,s)===u}})},function(t,e,n){"use strict";var r=n(0),i=n(79);r(r.P+r.F*n(81)("includes"),"String",{includes:function(t){return!!~i(this,t,"includes").indexOf(t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){var r=n(0);r(r.P,"String",{repeat:n(75)})},function(t,e,n){"use strict";var r=n(0),i=n(9),o=n(79),a="".startsWith;r(r.P+r.F*n(81)("startsWith"),"String",{startsWith:function(t){var e=o(this,t,"startsWith"),n=i(Math.min(arguments.length>1?arguments[1]:void 0,e.length)),r=String(t);return a?a.call(e,r,n):e.slice(n,n+r.length)===r}})},function(t,e,n){"use strict";n(11)("anchor",function(t){return function(e){return t(this,"a","name",e)}})},function(t,e,n){"use strict";n(11)("big",function(t){return function(){return t(this,"big","","")}})},function(t,e,n){"use strict";n(11)("blink",function(t){return function(){return t(this,"blink","","")}})},function(t,e,n){"use strict";n(11)("bold",function(t){return function(){return t(this,"b","","")}})},function(t,e,n){"use strict";n(11)("fixed",function(t){return function(){return t(this,"tt","","")}})},function(t,e,n){"use strict";n(11)("fontcolor",function(t){return function(e){return t(this,"font","color",e)}})},function(t,e,n){"use strict";n(11)("fontsize",function(t){return function(e){return t(this,"font","size",e)}})},function(t,e,n){"use strict";n(11)("italics",function(t){return function(){return t(this,"i","","")}})},function(t,e,n){"use strict";n(11)("link",function(t){return function(e){return t(this,"a","href",e)}})},function(t,e,n){"use strict";n(11)("small",function(t){return function(){return t(this,"small","","")}})},function(t,e,n){"use strict";n(11)("strike",function(t){return function(){return t(this,"strike","","")}})},function(t,e,n){"use strict";n(11)("sub",function(t){return function(){return t(this,"sub","","")}})},function(t,e,n){"use strict";n(11)("sup",function(t){return function(){return t(this,"sup","","")}})},function(t,e,n){var r=n(0);r(r.S,"Date",{now:function(){return(new Date).getTime()}})},function(t,e,n){"use strict";var r=n(0),i=n(15),o=n(27);r(r.P+r.F*n(1)(function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}),"Date",{toJSON:function(t){var e=i(this),n=o(e);return"number"!=typeof n||isFinite(n)?e.toISOString():null}})},function(t,e,n){var r=n(0),i=n(213);r(r.P+r.F*(Date.prototype.toISOString!==i),"Date",{toISOString:i})},function(t,e,n){"use strict";var r=n(1),i=Date.prototype.getTime,o=Date.prototype.toISOString,a=function(t){return t>9?t:"0"+t};t.exports=r(function(){return"0385-07-25T07:06:39.999Z"!=o.call(new Date(-5e13-1))})||!r(function(){o.call(new Date(NaN))})?function(){if(!isFinite(i.call(this)))throw RangeError("Invalid time value");var t=this,e=t.getUTCFullYear(),n=t.getUTCMilliseconds(),r=e<0?"-":e>9999?"+":"";return r+("00000"+Math.abs(e)).slice(r?-6:-4)+"-"+a(t.getUTCMonth()+1)+"-"+a(t.getUTCDate())+"T"+a(t.getUTCHours())+":"+a(t.getUTCMinutes())+":"+a(t.getUTCSeconds())+"."+(n>99?n:"0"+a(n))+"Z"}:o},function(t,e,n){var r=Date.prototype,i=r.toString,o=r.getTime;new Date(NaN)+""!="Invalid Date"&&n(10)(r,"toString",function(){var t=o.call(this);return t==t?i.call(this):"Invalid Date"})},function(t,e,n){var r=n(5)("toPrimitive"),i=Date.prototype;r in i||n(13)(i,r,n(216))},function(t,e,n){"use strict";var r=n(4),i=n(27);t.exports=function(t){if("string"!==t&&"number"!==t&&"default"!==t)throw TypeError("Incorrect hint");return i(r(this),"number"!=t)}},function(t,e,n){var r=n(0);r(r.S,"Array",{isArray:n(70)})},function(t,e,n){"use strict";var r=n(21),i=n(0),o=n(15),a=n(107),s=n(82),u=n(9),c=n(83),l=n(84);i(i.S+i.F*!n(54)(function(t){Array.from(t)}),"Array",{from:function(t){var e,n,i,f,p=o(t),d="function"==typeof this?this:Array,h=arguments.length,v=h>1?arguments[1]:void 0,m=void 0!==v,g=0,y=l(p);if(m&&(v=r(v,h>2?arguments[2]:void 0,2)),void 0==y||d==Array&&s(y))for(n=new d(e=u(p.length));e>g;g++)c(n,g,m?v(p[g],g):p[g]);else for(f=y.call(p),n=new d;!(i=f.next()).done;g++)c(n,g,m?a(f,v,[i.value,g],!0):i.value);return n.length=g,n}})},function(t,e,n){"use strict";var r=n(0),i=n(83);r(r.S+r.F*n(1)(function(){function t(){}return!(Array.of.call(t)instanceof t)}),"Array",{of:function(){for(var t=0,e=arguments.length,n=new("function"==typeof this?this:Array)(e);e>t;)i(n,t,arguments[t++]);return n.length=e,n}})},function(t,e,n){"use strict";var r=n(0),i=n(14),o=[].join;r(r.P+r.F*(n(45)!=Object||!n(17)(o)),"Array",{join:function(t){return o.call(i(this),void 0===t?",":t)}})},function(t,e,n){"use strict";var r=n(0),i=n(71),o=n(23),a=n(34),s=n(9),u=[].slice;r(r.P+r.F*n(1)(function(){i&&u.call(i)}),"Array",{slice:function(t,e){var n=s(this.length),r=o(this);if(e=void 0===e?n:e,"Array"==r)return u.call(this,t,e);for(var i=a(t,n),c=a(e,n),l=s(c-i),f=new Array(l),p=0;p<l;p++)f[p]="String"==r?this.charAt(i+p):this[i+p];return f}})},function(t,e,n){"use strict";var r=n(0),i=n(22),o=n(15),a=n(1),s=[].sort,u=[1,2,3];r(r.P+r.F*(a(function(){u.sort(void 0)})||!a(function(){u.sort(null)})||!n(17)(s)),"Array",{sort:function(t){return void 0===t?s.call(o(this)):s.call(o(this),i(t))}})},function(t,e,n){"use strict";var r=n(0),i=n(20)(0),o=n(17)([].forEach,!0);r(r.P+r.F*!o,"Array",{forEach:function(t){return i(this,t,arguments[1])}})},function(t,e,n){var r=n(225);t.exports=function(t,e){return new(r(t))(e)}},function(t,e,n){var r=n(3),i=n(70),o=n(5)("species");t.exports=function(t){var e;return i(t)&&("function"!=typeof(e=t.constructor)||e!==Array&&!i(e.prototype)||(e=void 0),r(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){"use strict";var r=n(0),i=n(20)(1);r(r.P+r.F*!n(17)([].map,!0),"Array",{map:function(t){return i(this,t,arguments[1])}})},function(t,e,n){"use strict";var r=n(0),i=n(20)(2);r(r.P+r.F*!n(17)([].filter,!0),"Array",{filter:function(t){return i(this,t,arguments[1])}})},function(t,e,n){"use strict";var r=n(0),i=n(20)(3);r(r.P+r.F*!n(17)([].some,!0),"Array",{some:function(t){return i(this,t,arguments[1])}})},function(t,e,n){"use strict";var r=n(0),i=n(20)(4);r(r.P+r.F*!n(17)([].every,!0),"Array",{every:function(t){return i(this,t,arguments[1])}})},function(t,e,n){"use strict";var r=n(0),i=n(108);r(r.P+r.F*!n(17)([].reduce,!0),"Array",{reduce:function(t){return i(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){"use strict";var r=n(0),i=n(108);r(r.P+r.F*!n(17)([].reduceRight,!0),"Array",{reduceRight:function(t){return i(this,t,arguments.length,arguments[1],!0)}})},function(t,e,n){"use strict";var r=n(0),i=n(50)(!1),o=[].indexOf,a=!!o&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n(17)(o)),"Array",{indexOf:function(t){return a?o.apply(this,arguments)||0:i(this,t,arguments[1])}})},function(t,e,n){"use strict";var r=n(0),i=n(14),o=n(25),a=n(9),s=[].lastIndexOf,u=!!s&&1/[1].lastIndexOf(1,-0)<0;r(r.P+r.F*(u||!n(17)(s)),"Array",{lastIndexOf:function(t){if(u)return s.apply(this,arguments)||0;var e=i(this),n=a(e.length),r=n-1;for(arguments.length>1&&(r=Math.min(r,o(arguments[1]))),r<0&&(r=n+r);r>=0;r--)if(r in e&&e[r]===t)return r||0;return-1}})},function(t,e,n){var r=n(0);r(r.P,"Array",{copyWithin:n(109)}),n(40)("copyWithin")},function(t,e,n){var r=n(0);r(r.P,"Array",{fill:n(85)}),n(40)("fill")},function(t,e,n){"use strict";var r=n(0),i=n(20)(5),o=!0;"find"in[]&&Array(1).find(function(){o=!1}),r(r.P+r.F*o,"Array",{find:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(40)("find")},function(t,e,n){"use strict";var r=n(0),i=n(20)(6),o="findIndex",a=!0;o in[]&&Array(1)[o](function(){a=!1}),r(r.P+r.F*a,"Array",{findIndex:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(40)(o)},function(t,e,n){n(41)("Array")},function(t,e,n){var r=n(2),i=n(74),o=n(6).f,a=n(36).f,s=n(80),u=n(87),c=r.RegExp,l=c,f=c.prototype,p=/a/g,d=/a/g,h=new c(p)!==p;if(n(7)&&(!h||n(1)(function(){return d[n(5)("match")]=!1,c(p)!=p||c(d)==d||"/a/i"!=c(p,"i")}))){c=function(t,e){var n=this instanceof c,r=s(t),o=void 0===e;return!n&&r&&t.constructor===c&&o?t:i(h?new l(r&&!o?t.source:t,e):l((r=t instanceof c)?t.source:t,r&&o?u.call(t):e),n?this:f,c)};for(var v=function(t){t in c||o(c,t,{configurable:!0,get:function(){return l[t]},set:function(e){l[t]=e}})},m=a(l),g=0;m.length>g;)v(m[g++]);f.constructor=c,c.prototype=f,n(10)(r,"RegExp",c)}n(41)("RegExp")},function(t,e,n){"use strict";n(111);var r=n(4),i=n(87),o=n(7),a=/./.toString,s=function(t){n(10)(RegExp.prototype,"toString",t,!0)};n(1)(function(){return"/a/b"!=a.call({source:"a",flags:"b"})})?s(function(){var t=r(this);return"/".concat(t.source,"/","flags"in t?t.flags:!o&&t instanceof RegExp?i.call(t):void 0)}):"toString"!=a.name&&s(function(){return a.call(this)})},function(t,e,n){n(55)("match",1,function(t,e,n){return[function(n){"use strict";var r=t(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,r):new RegExp(n)[e](String(r))},n]})},function(t,e,n){n(55)("replace",2,function(t,e,n){return[function(r,i){"use strict";var o=t(this),a=void 0==r?void 0:r[e];return void 0!==a?a.call(r,o,i):n.call(String(o),r,i)},n]})},function(t,e,n){n(55)("search",1,function(t,e,n){return[function(n){"use strict";var r=t(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,r):new RegExp(n)[e](String(r))},n]})},function(t,e,n){n(55)("split",2,function(t,e,r){"use strict";var i=n(80),o=r,a=[].push;if("c"=="abbc".split(/(b)*/)[1]||4!="test".split(/(?:)/,-1).length||2!="ab".split(/(?:ab)*/).length||4!=".".split(/(.?)(.?)/).length||".".split(/()()/).length>1||"".split(/.?/).length){var s=void 0===/()??/.exec("")[1];r=function(t,e){var n=String(this);if(void 0===t&&0===e)return[];if(!i(t))return o.call(n,t,e);var r,u,c,l,f,p=[],d=(t.ignoreCase?"i":"")+(t.multiline?"m":"")+(t.unicode?"u":"")+(t.sticky?"y":""),h=0,v=void 0===e?4294967295:e>>>0,m=new RegExp(t.source,d+"g");for(s||(r=new RegExp("^"+m.source+"$(?!\\s)",d));(u=m.exec(n))&&!((c=u.index+u[0].length)>h&&(p.push(n.slice(h,u.index)),!s&&u.length>1&&u[0].replace(r,function(){for(f=1;f<arguments.length-2;f++)void 0===arguments[f]&&(u[f]=void 0)}),u.length>1&&u.index<n.length&&a.apply(p,u.slice(1)),l=u[0].length,h=c,p.length>=v));)m.lastIndex===u.index&&m.lastIndex++;return h===n.length?!l&&m.test("")||p.push(""):p.push(n.slice(h)),p.length>v?p.slice(0,v):p}}else"0".split(void 0,0).length&&(r=function(t,e){return void 0===t&&0===e?[]:o.call(this,t,e)});return[function(n,i){var o=t(this),a=void 0==n?void 0:n[e];return void 0!==a?a.call(n,o,i):r.call(String(o),n,i)},r]})},function(t,e,n){var r=n(2),i=n(88).set,o=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,u="process"==n(23)(a);t.exports=function(){var t,e,n,c=function(){var r,i;for(u&&(r=a.domain)&&r.exit();t;){i=t.fn,t=t.next;try{i()}catch(r){throw t?n():e=void 0,r}}e=void 0,r&&r.enter()};if(u)n=function(){a.nextTick(c)};else if(!o||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var l=s.resolve(void 0);n=function(){l.then(c)}}else n=function(){i.call(r,c)};else{var f=!0,p=document.createTextNode("");new o(c).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(r){var i={fn:r,next:void 0};e&&(e.next=i),t||(t=i,n()),e=i}}},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,n){"use strict";var r=n(115),i=n(44);t.exports=n(59)("Map",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){var e=r.getEntry(i(this,"Map"),t);return e&&e.v},set:function(t,e){return r.def(i(this,"Map"),0===t?0:t,e)}},r,!0)},function(t,e,n){"use strict";var r=n(115),i=n(44);t.exports=n(59)("Set",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return r.def(i(this,"Set"),t=0===t?0:t,t)}},r)},function(t,e,n){"use strict";var r,i=n(20)(0),o=n(10),a=n(28),s=n(97),u=n(116),c=n(3),l=n(1),f=n(44),p=a.getWeak,d=Object.isExtensible,h=u.ufstore,v={},m=function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},g={get:function(t){if(c(t)){var e=p(t);return!0===e?h(f(this,"WeakMap")).get(t):e?e[this._i]:void 0}},set:function(t,e){return u.def(f(this,"WeakMap"),t,e)}},y=t.exports=n(59)("WeakMap",m,g,u,!0,!0);l(function(){return 7!=(new y).set((Object.freeze||Object)(v),7).get(v)})&&(s((r=u.getConstructor(m,"WeakMap")).prototype,g),a.NEED=!0,i(["delete","has","get","set"],function(t){var e=y.prototype,n=e[t];o(e,t,function(e,i){if(c(e)&&!d(e)){this._f||(this._f=new r);var o=this._f[t](e,i);return"set"==t?this:o}return n.call(this,e,i)})}))},function(t,e,n){"use strict";var r=n(116),i=n(44);n(59)("WeakSet",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return r.def(i(this,"WeakSet"),t,!0)}},r,!1,!0)},function(t,e,n){"use strict";var r=n(0),i=n(60),o=n(89),a=n(4),s=n(34),u=n(9),c=n(3),l=n(2).ArrayBuffer,f=n(57),p=o.ArrayBuffer,d=o.DataView,h=i.ABV&&l.isView,v=p.prototype.slice,m=i.VIEW;r(r.G+r.W+r.F*(l!==p),{ArrayBuffer:p}),r(r.S+r.F*!i.CONSTR,"ArrayBuffer",{isView:function(t){return h&&h(t)||c(t)&&m in t}}),r(r.P+r.U+r.F*n(1)(function(){return!new p(2).slice(1,void 0).byteLength}),"ArrayBuffer",{slice:function(t,e){if(void 0!==v&&void 0===e)return v.call(a(this),t);for(var n=a(this).byteLength,r=s(t,n),i=s(void 0===e?n:e,n),o=new(f(this,p))(u(i-r)),c=new d(this),l=new d(o),h=0;r<i;)l.setUint8(h++,c.getUint8(r++));return o}}),n(41)("ArrayBuffer")},function(t,e,n){var r=n(0);r(r.G+r.W+r.F*!n(60).ABV,{DataView:n(89).DataView})},function(t,e,n){n(26)("Int8",1,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)("Uint8",1,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)("Uint8",1,function(t){return function(e,n,r){return t(this,e,n,r)}},!0)},function(t,e,n){n(26)("Int16",2,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)("Uint16",2,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)("Int32",4,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)("Uint32",4,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)("Float32",4,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)("Float64",8,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){var r=n(0),i=n(22),o=n(4),a=(n(2).Reflect||{}).apply,s=Function.apply;r(r.S+r.F*!n(1)(function(){a(function(){})}),"Reflect",{apply:function(t,e,n){var r=i(t),u=o(n);return a?a(r,e,u):s.call(r,e,u)}})},function(t,e,n){var r=n(0),i=n(35),o=n(22),a=n(4),s=n(3),u=n(1),c=n(98),l=(n(2).Reflect||{}).construct,f=u(function(){function t(){}return!(l(function(){},[],t)instanceof t)}),p=!u(function(){l(function(){})});r(r.S+r.F*(f||p),"Reflect",{construct:function(t,e){o(t),a(e);var n=arguments.length<3?t:o(arguments[2]);if(p&&!f)return l(t,e,n);if(t==n){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var r=[null];return r.push.apply(r,e),new(c.apply(t,r))}var u=n.prototype,d=i(s(u)?u:Object.prototype),h=Function.apply.call(t,d,e);return s(h)?h:d}})},function(t,e,n){var r=n(6),i=n(0),o=n(4),a=n(27);i(i.S+i.F*n(1)(function(){Reflect.defineProperty(r.f({},1,{value:1}),1,{value:2})}),"Reflect",{defineProperty:function(t,e,n){o(t),e=a(e,!0),o(n);try{return r.f(t,e,n),!0}catch(t){return!1}}})},function(t,e,n){var r=n(0),i=n(18).f,o=n(4);r(r.S,"Reflect",{deleteProperty:function(t,e){var n=i(o(t),e);return!(n&&!n.configurable)&&delete t[e]}})},function(t,e,n){"use strict";var r=n(0),i=n(4),o=function(t){this._t=i(t),this._i=0;var e,n=this._k=[];for(e in t)n.push(e)};n(106)(o,"Object",function(){var t,e=this._k;do{if(this._i>=e.length)return{value:void 0,done:!0}}while(!((t=e[this._i++])in this._t));return{value:t,done:!1}}),r(r.S,"Reflect",{enumerate:function(t){return new o(t)}})},function(t,e,n){var r=n(18),i=n(37),o=n(12),a=n(0),s=n(3),u=n(4);a(a.S,"Reflect",{get:function t(e,n){var a,c,l=arguments.length<3?e:arguments[2];return u(e)===l?e[n]:(a=r.f(e,n))?o(a,"value")?a.value:void 0!==a.get?a.get.call(l):void 0:s(c=i(e))?t(c,n,l):void 0}})},function(t,e,n){var r=n(18),i=n(0),o=n(4);i(i.S,"Reflect",{getOwnPropertyDescriptor:function(t,e){return r.f(o(t),e)}})},function(t,e,n){var r=n(0),i=n(37),o=n(4);r(r.S,"Reflect",{getPrototypeOf:function(t){return i(o(t))}})},function(t,e,n){var r=n(0);r(r.S,"Reflect",{has:function(t,e){return e in t}})},function(t,e,n){var r=n(0),i=n(4),o=Object.isExtensible;r(r.S,"Reflect",{isExtensible:function(t){return i(t),!o||o(t)}})},function(t,e,n){var r=n(0);r(r.S,"Reflect",{ownKeys:n(118)})},function(t,e,n){var r=n(0),i=n(4),o=Object.preventExtensions;r(r.S,"Reflect",{preventExtensions:function(t){i(t);try{return o&&o(t),!0}catch(t){return!1}}})},function(t,e,n){var r=n(6),i=n(18),o=n(37),a=n(12),s=n(0),u=n(30),c=n(4),l=n(3);s(s.S,"Reflect",{set:function t(e,n,s){var f,p,d=arguments.length<4?e:arguments[3],h=i.f(c(e),n);if(!h){if(l(p=o(e)))return t(p,n,s,d);h=u(0)}if(a(h,"value")){if(!1===h.writable||!l(d))return!1;if(f=i.f(d,n)){if(f.get||f.set||!1===f.writable)return!1;f.value=s,r.f(d,n,f)}else r.f(d,n,u(0,s));return!0}return void 0!==h.set&&(h.set.call(d,s),!0)}})},function(t,e,n){var r=n(0),i=n(72);i&&r(r.S,"Reflect",{setPrototypeOf:function(t,e){i.check(t,e);try{return i.set(t,e),!0}catch(t){return!1}}})},function(t,e,n){n(277),t.exports=n(8).Array.includes},function(t,e,n){"use strict";var r=n(0),i=n(50)(!0);r(r.P,"Array",{includes:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(40)("includes")},function(t,e,n){n(279),t.exports=n(8).String.padStart},function(t,e,n){"use strict";var r=n(0),i=n(119),o=n(58);r(r.P+r.F*/Version\/10\.\d+(\.\d+)? Safari\//.test(o),"String",{padStart:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},function(t,e,n){n(281),t.exports=n(8).String.padEnd},function(t,e,n){"use strict";var r=n(0),i=n(119),o=n(58);r(r.P+r.F*/Version\/10\.\d+(\.\d+)? Safari\//.test(o),"String",{padEnd:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},function(t,e,n){n(283),t.exports=n(67).f("asyncIterator")},function(t,e,n){n(93)("asyncIterator")},function(t,e,n){n(285),t.exports=n(8).Object.getOwnPropertyDescriptors},function(t,e,n){var r=n(0),i=n(118),o=n(14),a=n(18),s=n(83);r(r.S,"Object",{getOwnPropertyDescriptors:function(t){for(var e,n,r=o(t),u=a.f,c=i(r),l={},f=0;c.length>f;)void 0!==(n=u(r,e=c[f++]))&&s(l,e,n);return l}})},function(t,e,n){n(287),t.exports=n(8).Object.values},function(t,e,n){var r=n(0),i=n(120)(!1);r(r.S,"Object",{values:function(t){return i(t)}})},function(t,e,n){n(289),t.exports=n(8).Object.entries},function(t,e,n){var r=n(0),i=n(120)(!0);r(r.S,"Object",{entries:function(t){return i(t)}})},function(t,e,n){"use strict";n(112),n(291),t.exports=n(8).Promise.finally},function(t,e,n){"use strict";var r=n(0),i=n(8),o=n(2),a=n(57),s=n(114);r(r.P+r.R,"Promise",{finally:function(t){var e=a(this,i.Promise||o.Promise),n="function"==typeof t;return this.then(n?function(n){return s(e,t()).then(function(){return n})}:t,n?function(n){return s(e,t()).then(function(){throw n})}:t)}})},function(t,e,n){n(293),n(294),n(295),t.exports=n(8)},function(t,e,n){var r=n(2),i=n(0),o=n(58),a=[].slice,s=/MSIE .\./.test(o),u=function(t){return function(e,n){var r=arguments.length>2,i=!!r&&a.call(arguments,2);return t(r?function(){("function"==typeof e?e:Function(e)).apply(this,i)}:e,n)}};i(i.G+i.B+i.F*s,{setTimeout:u(r.setTimeout),setInterval:u(r.setInterval)})},function(t,e,n){var r=n(0),i=n(88);r(r.G+r.B,{setImmediate:i.set,clearImmediate:i.clear})},function(t,e,n){for(var r=n(86),i=n(33),o=n(10),a=n(2),s=n(13),u=n(39),c=n(5),l=c("iterator"),f=c("toStringTag"),p=u.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=i(d),v=0;v<h.length;v++){var m,g=h[v],y=d[g],_=a[g],b=_&&_.prototype;if(b&&(b[l]||s(b,l,p),b[f]||s(b,f,g),u[g]=p,y))for(m in r)b[m]||o(b,m,r[m],!0)}},function(t,e){!function(e){"use strict";var n,r=Object.prototype,i=r.hasOwnProperty,o="function"==typeof Symbol?Symbol:{},a=o.iterator||"@@iterator",s=o.asyncIterator||"@@asyncIterator",u=o.toStringTag||"@@toStringTag",c="object"==typeof t,l=e.regeneratorRuntime;if(l)c&&(t.exports=l);else{(l=e.regeneratorRuntime=c?t.exports:{}).wrap=b;var f="suspendedStart",p="suspendedYield",d="executing",h="completed",v={},m={};m[a]=function(){return this};var g=Object.getPrototypeOf,y=g&&g(g(M([])));y&&y!==r&&i.call(y,a)&&(m=y);var _=S.prototype=x.prototype=Object.create(m);O.prototype=_.constructor=S,S.constructor=O,S[u]=O.displayName="GeneratorFunction",l.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===O||"GeneratorFunction"===(e.displayName||e.name))},l.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,S):(t.__proto__=S,u in t||(t[u]="GeneratorFunction")),t.prototype=Object.create(_),t},l.awrap=function(t){return{__await:t}},C(k.prototype),k.prototype[s]=function(){return this},l.AsyncIterator=k,l.async=function(t,e,n,r){var i=new k(b(t,e,n,r));return l.isGeneratorFunction(e)?i:i.next().then(function(t){return t.done?t.value:i.next()})},C(_),_[u]="Generator",_[a]=function(){return this},_.toString=function(){return"[object Generator]"},l.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){for(;e.length;){var r=e.pop();if(r in t)return n.value=r,n.done=!1,n}return n.done=!0,n}},l.values=M,D.prototype={constructor:D,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=n,this.done=!1,this.delegate=null,this.method="next",this.arg=n,this.tryEntries.forEach(A),!t)for(var e in this)"t"===e.charAt(0)&&i.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=n)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function r(r,i){return s.type="throw",s.arg=t,e.next=r,i&&(e.method="next",e.arg=n),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if("root"===a.tryLoc)return r("end");if(a.tryLoc<=this.prev){var u=i.call(a,"catchLoc"),c=i.call(a,"finallyLoc");if(u&&c){if(this.prev<a.catchLoc)return r(a.catchLoc,!0);if(this.prev<a.finallyLoc)return r(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return r(a.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<a.finallyLoc)return r(a.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&i.call(r,"finallyLoc")&&this.prev<r.finallyLoc){var o=r;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method="next",this.next=o.finallyLoc,v):this.complete(a)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if("throw"===r.type){var i=r.arg;A(n)}return i}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:M(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=n),v}}}function b(t,e,n,r){var i=e&&e.prototype instanceof x?e:x,o=Object.create(i.prototype),a=new D(r||[]);return o._invoke=function(t,e,n){var r=f;return function(i,o){if(r===d)throw new Error("Generator is already running");if(r===h){if("throw"===i)throw o;return P()}for(n.method=i,n.arg=o;;){var a=n.delegate;if(a){var s=E(a,n);if(s){if(s===v)continue;return s}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if(r===f)throw r=h,n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);r=d;var u=w(t,e,n);if("normal"===u.type){if(r=n.done?h:p,u.arg===v)continue;return{value:u.arg,done:n.done}}"throw"===u.type&&(r=h,n.method="throw",n.arg=u.arg)}}}(t,n,a),o}function w(t,e,n){try{return{type:"normal",arg:t.call(e,n)}}catch(t){return{type:"throw",arg:t}}}function x(){}function O(){}function S(){}function C(t){["next","throw","return"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function k(t){var e;this._invoke=function(n,r){function o(){return new Promise(function(e,o){!function e(n,r,o,a){var s=w(t[n],t,r);if("throw"!==s.type){var u=s.arg,c=u.value;return c&&"object"==typeof c&&i.call(c,"__await")?Promise.resolve(c.__await).then(function(t){e("next",t,o,a)},function(t){e("throw",t,o,a)}):Promise.resolve(c).then(function(t){u.value=t,o(u)},a)}a(s.arg)}(n,r,e,o)})}return e=e?e.then(o,o):o()}}function E(t,e){var r=t.iterator[e.method];if(r===n){if(e.delegate=null,"throw"===e.method){if(t.iterator.return&&(e.method="return",e.arg=n,E(t,e),"throw"===e.method))return v;e.method="throw",e.arg=new TypeError("The iterator does not provide a 'throw' method")}return v}var i=w(r,t.iterator,e.arg);if("throw"===i.type)return e.method="throw",e.arg=i.arg,e.delegate=null,v;var o=i.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=n),e.delegate=null,v):o:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,v)}function T(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function A(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function D(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(T,this),this.reset(!0)}function M(t){if(t){var e=t[a];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,o=function e(){for(;++r<t.length;)if(i.call(t,r))return e.value=t[r],e.done=!1,e;return e.value=n,e.done=!0,e};return o.next=o}}return{next:P}}function P(){return{value:n,done:!0}}}(function(){return this}()||Function("return this")())},function(t,e,n){var r=n(298);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals),(0,n(48).default)("d087ca94",r,!1,{})},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,".mx-datepicker[data-v-d01dd49] {\n width: 210px;\n color: inherit;\n font: inherit;\n user-select: none; }\n .mx-datepicker[data-v-d01dd49] .mx-datepicker-popup {\n box-shadow: none; }\n .mx-datepicker[data-v-d01dd49] .mx-shortcuts-wrapper .mx-shortcuts {\n font-weight: normal;\n color: var(--color-text-lighter); }\n .mx-datepicker[data-v-d01dd49] .mx-shortcuts-wrapper .mx-shortcuts:hover {\n color: var(--color-text-light); }\n .mx-datepicker[data-v-d01dd49] .mx-shortcuts-wrapper .mx-shortcuts:after {\n color: var(--color-text-lighter);\n opacity: 0.7; }\n .mx-datepicker[data-v-d01dd49] .mx-datepicker-btn-confirm {\n background-color: var(--color-primary-element);\n color: var(--color-primary-text); }\n .mx-datepicker[data-v-d01dd49] .mx-datepicker-btn-confirm:hover {\n color: var(--color-primary-text);\n border-color: var(--color-primary-element); }\n .mx-datepicker[data-v-d01dd49] .mx-calendar {\n font: inherit;\n color: var(--color-main-text); }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header {\n display: flex;\n align-items: center;\n justify-content: space-between; }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a {\n color: var(--color-text-lighter); }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a:hover {\n color: var(--color-main-text);\n background-color: var(--color-background-darker); }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-current-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-current-year {\n padding: 5px;\n border-radius: 30px;\n height: 30px;\n line-height: 20px; }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-last-year, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-last-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-year {\n min-width: 22px;\n height: 22px;\n border-radius: 50%;\n line-height: 22px; }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-year {\n order: 3; }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell {\n opacity: 0.7;\n border-radius: 50px;\n transition: all 100ms ease-in-out; }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell:hover, .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell:focus, .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell.actived {\n font-weight: bold;\n opacity: 1;\n color: var(--color-primary-text);\n background-color: var(--color-primary-element); }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell.inrange {\n background-color: transparent; }\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell.disabled {\n color: var(--color-text-lighter);\n background-color: var(--color-background-darker);\n opacity: 0.5;\n border-radius: 0;\n font-weight: normal; }\n .mx-datepicker[data-v-d01dd49] .mx-panel-date tr:hover,\n .mx-datepicker[data-v-d01dd49] .mx-panel-date tr:focus,\n .mx-datepicker[data-v-d01dd49] .mx-panel-date tr:active {\n background: none; }\n .mx-datepicker[data-v-d01dd49] .mx-panel-date th {\n color: var(--color-primary-element);\n background-color: var(--color-main-background); }\n .mx-datepicker[data-v-d01dd49] .mx-panel-date td.today {\n color: var(--color-primary);\n opacity: 1;\n font-weight: bold; }\n .mx-datepicker[data-v-d01dd49] .mx-panel-date td.last-month, .mx-datepicker[data-v-d01dd49] .mx-panel-date td.next-month {\n color: var(--color-text-lighter);\n opacity: 0.5; }\n .mx-datepicker[data-v-d01dd49] .mx-time-list {\n padding: 5px; }\n .mx-datepicker[data-v-d01dd49] .mx-time-list li {\n display: flex;\n justify-content: center; }\n .mx-datepicker[data-v-d01dd49] .mx-time-list::-webkit-scrollbar {\n width: 5px;\n height: 5px; }\n .mx-datepicker[data-v-d01dd49] .mx-time-list::-webkit-scrollbar-thumb {\n background-color: var(--color-background-darker);\n border-radius: var(--border-radius);\n box-shadow: none; }\n .mx-datepicker[data-v-d01dd49] .mx-time-list:hover::-webkit-scrollbar-thumb {\n background-color: var(--color-background-darker); }\n",""])},function(t,e,n){t.exports=n(300)},function(t,e,n){"use strict";var r=n(16),i=n(121),o=n(301),a=n(90);function s(t){var e=new o(t),n=i(o.prototype.request,e);return r.extend(n,o.prototype,e),r.extend(n,e),n}var u=s(a);u.Axios=o,u.create=function(t){return s(r.merge(a,t))},u.Cancel=n(126),u.CancelToken=n(316),u.isCancel=n(125),u.all=function(t){return Promise.all(t)},u.spread=n(317),t.exports=u,t.exports.default=u},function(t,e,n){"use strict";var r=n(90),i=n(16),o=n(311),a=n(312);function s(t){this.defaults=t,this.interceptors={request:new o,response:new o}}s.prototype.request=function(t){"string"==typeof t&&(t=i.merge({url:arguments[0]},arguments[1])),(t=i.merge(r,{method:"get"},this.defaults,t)).method=t.method.toLowerCase();var e=[a,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach(function(t){e.unshift(t.fulfilled,t.rejected)}),this.interceptors.response.forEach(function(t){e.push(t.fulfilled,t.rejected)});e.length;)n=n.then(e.shift(),e.shift());return n},i.forEach(["delete","get","head","options"],function(t){s.prototype[t]=function(e,n){return this.request(i.merge(n||{},{method:t,url:e}))}}),i.forEach(["post","put","patch"],function(t){s.prototype[t]=function(e,n,r){return this.request(i.merge(r||{},{method:t,url:e,data:n}))}}),t.exports=s},function(t,e){var n,r,i=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(t){r=a}}();var u,c=[],l=!1,f=-1;function p(){l&&u&&(l=!1,u.length?c=u.concat(c):f=-1,c.length&&d())}function d(){if(!l){var t=s(p);l=!0;for(var e=c.length;e;){for(u=c,c=[];++f<e;)u&&u[f].run();f=-1,e=c.length}u=null,l=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function v(){}i.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];c.push(new h(t,e)),1!==c.length||l||s(d)},h.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=v,i.addListener=v,i.once=v,i.off=v,i.removeListener=v,i.removeAllListeners=v,i.emit=v,i.prependListener=v,i.prependOnceListener=v,i.listeners=function(t){return[]},i.binding=function(t){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(t){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},function(t,e,n){"use strict";var r=n(16);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){"use strict";var r=n(124);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r("Request failed with status code "+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){"use strict";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){"use strict";var r=n(16);function i(t){return encodeURIComponent(t).replace(/%40/gi,"@").replace(/%3A/gi,":").replace(/%24/g,"$").replace(/%2C/gi,",").replace(/%20/g,"+").replace(/%5B/gi,"[").replace(/%5D/gi,"]")}t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(r.isURLSearchParams(e))o=e.toString();else{var a=[];r.forEach(e,function(t,e){null!==t&&void 0!==t&&(r.isArray(t)?e+="[]":t=[t],r.forEach(t,function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(i(e)+"="+i(t))}))}),o=a.join("&")}return o&&(t+=(-1===t.indexOf("?")?"?":"&")+o),t}},function(t,e,n){"use strict";var r=n(16),i=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split("\n"),function(t){if(o=t.indexOf(":"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}}),a):a}},function(t,e,n){"use strict";var r=n(16);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(t){var r=t;return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=i(window.location.href),function(e){var n=r.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},function(t,e,n){"use strict";function r(){this.message="String contains an invalid character"}r.prototype=new Error,r.prototype.code=5,r.prototype.name="InvalidCharacterError",t.exports=function(t){for(var e,n,i=String(t),o="",a=0,s="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";i.charAt(0|a)||(s="=",a%1);o+=s.charAt(63&e>>8-a%1*8)){if((n=i.charCodeAt(a+=.75))>255)throw new r;e=e<<8|n}return o}},function(t,e,n){"use strict";var r=n(16);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(i)&&s.push("path="+i),r.isString(o)&&s.push("domain="+o),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";var r=n(16);function i(){this.handlers=[]}i.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){r.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=i},function(t,e,n){"use strict";var r=n(16),i=n(313),o=n(125),a=n(90),s=n(314),u=n(315);function c(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return c(t),t.baseURL&&!s(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=i(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),r.forEach(["delete","get","head","post","put","patch","common"],function(e){delete t.headers[e]}),(t.adapter||a.adapter)(t).then(function(e){return c(t),e.data=i(e.data,e.headers,t.transformResponse),e},function(e){return o(e)||(c(t),e&&e.response&&(e.response.data=i(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){"use strict";var r=n(16);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var r=n(126);function i(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new r(t),e(n.reason))})}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i(function(e){t=e}),cancel:t}},t.exports=i},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e){!function(){var e="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",n={rotl:function(t,e){return t<<e|t>>>32-e},rotr:function(t,e){return t<<32-e|t>>>e},endian:function(t){if(t.constructor==Number)return 16711935&n.rotl(t,8)|4278255360&n.rotl(t,24);for(var e=0;e<t.length;e++)t[e]=n.endian(t[e]);return t},randomBytes:function(t){for(var e=[];t>0;t--)e.push(Math.floor(256*Math.random()));return e},bytesToWords:function(t){for(var e=[],n=0,r=0;n<t.length;n++,r+=8)e[r>>>5]|=t[n]<<24-r%32;return e},wordsToBytes:function(t){for(var e=[],n=0;n<32*t.length;n+=8)e.push(t[n>>>5]>>>24-n%32&255);return e},bytesToHex:function(t){for(var e=[],n=0;n<t.length;n++)e.push((t[n]>>>4).toString(16)),e.push((15&t[n]).toString(16));return e.join("")},hexToBytes:function(t){for(var e=[],n=0;n<t.length;n+=2)e.push(parseInt(t.substr(n,2),16));return e},bytesToBase64:function(t){for(var n=[],r=0;r<t.length;r+=3)for(var i=t[r]<<16|t[r+1]<<8|t[r+2],o=0;o<4;o++)8*r+6*o<=8*t.length?n.push(e.charAt(i>>>6*(3-o)&63)):n.push("=");return n.join("")},base64ToBytes:function(t){t=t.replace(/[^A-Z0-9+\/]/gi,"");for(var n=[],r=0,i=0;r<t.length;i=++r%4)0!=i&&n.push((e.indexOf(t.charAt(r-1))&Math.pow(2,-2*i+8)-1)<<2*i|e.indexOf(t.charAt(r))>>>6-2*i);return n}};t.exports=n}()},function(t,e,n){"use strict";var r=n(61);n.n(r).a},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,"\n.avatardiv[data-v-100e3b6f] {\n\tdisplay: inline-block;\n}\n.avatardiv.unknown[data-v-100e3b6f] {\n\tbackground-color: var(--color-text-maxcontrast);\n\tposition: relative;\n}\n.avatardiv > .unknown[data-v-100e3b6f] {\n\tposition: absolute;\n\tcolor: var(--color-main-background);\n\twidth: 100%;\n\ttext-align: center;\n\tdisplay: block;\n\tleft: 0;\n\ttop: 0;\n}\n.avatardiv img[data-v-100e3b6f] {\n\twidth: 100%;\n\theight: 100%;\n}\n.popovermenu-wrapper[data-v-100e3b6f] {\n\tposition: relative;\n\tdisplay: inline-block;\n}\n.popovermenu[data-v-100e3b6f] {\n\tdisplay: block;\n\tmargin: 0;\n\tfont-size: initial;\n}\n",""])},function(t,e,n){"use strict";var r=n(62);n.n(r).a},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,"\n.option[data-v-72601db4] {\n display: flex;\n align-items: center;\n height: 32px;\n width: 100%;\n}\n.option__avatar[data-v-72601db4] {\n flex: 0 0 32px;\n width: 32px;\n height: 32px;\n margin-right: 6px;\n}\n.option__desc[data-v-72601db4] {\n display: flex;\n flex-direction: column;\n justify-content: center;\n flex: 1 1;\n}\n.option__desc--lineone[data-v-72601db4] {\n color: var(--color-text-light);\n}\n.option__desc--lineone--highlight[data-v-72601db4] {\n font-weight: 600;\n}\n.option__desc--linetwo[data-v-72601db4] {\n opacity: .7;\n}\n.option__icon[data-v-72601db4] {\n width: 44px;\n height: 44px;\n flex: 0 0 44px;\n margin: -6px;\n opacity: .5;\n}\n",""])},function(t,e,n){var r=n(324);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals),(0,n(48).default)("20d0f5bc",r,!1,{})},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,".multiselect[data-v-d01dd49] {\n margin: 1px 2px;\n padding: 0 !important;\n display: inline-block;\n width: 160px;\n position: relative;\n background-color: var(--color-main-background);\n /* results wrapper */ }\n .multiselect[data-v-d01dd49].multiselect--active {\n /* Opened: force display the input */ }\n .multiselect[data-v-d01dd49].multiselect--active input.multiselect__input {\n opacity: 1 !important;\n cursor: text !important; }\n .multiselect[data-v-d01dd49].multiselect--disabled,\n .multiselect[data-v-d01dd49].multiselect--disabled .multiselect__single {\n background-color: var(--color-background-dark) !important; }\n .multiselect[data-v-d01dd49] .multiselect__tags {\n /* space between tags and limit tag */\n display: flex;\n flex-wrap: nowrap;\n overflow: hidden;\n border: 1px solid var(--color-border-dark);\n cursor: pointer;\n position: relative;\n border-radius: 3px;\n height: 34px;\n /* tag wrapper */\n /* Single select default value */\n /* displayed text if tag limit reached */\n /* default multiselect input for search and placeholder */ }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap {\n align-items: center;\n display: inline-flex;\n overflow: hidden;\n max-width: 100%;\n position: relative;\n padding: 3px 5px;\n flex-grow: 1;\n /* no tags or simple select? Show input directly\n\t\t\tinput is used to display single value */\n /* selected tag */ }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap:empty ~ input.multiselect__input {\n opacity: 1 !important;\n /* hide default empty text, show input instead */ }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap:empty ~ input.multiselect__input + span:not(.multiselect__single) {\n display: none; }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag {\n flex: 1 0 0;\n line-height: 20px;\n padding: 1px 5px;\n background-image: none;\n color: var(--color-text-lighter);\n border: 1px solid var(--color-border-dark);\n display: inline-flex;\n align-items: center;\n border-radius: 3px;\n /* require to override the default width\n\t\t\t\tand force the tag to shring properly */\n min-width: 0;\n max-width: 50%;\n max-width: fit-content;\n max-width: -moz-fit-content;\n /* css hack, detect if more than two tags\n\t\t\t\tif so, flex-basis is set to half */\n /* ellipsis the groups to be sure\n\t\t\t\twe display at least two of them */ }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag:only-child {\n flex: 0 1 auto; }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag:not(:last-child) {\n margin-right: 5px; }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag > span {\n white-space: nowrap;\n text-overflow: ellipsis;\n overflow: hidden; }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__single {\n padding: 8px 10px;\n flex: 0 0 100%;\n z-index: 1;\n /* above input */\n background-color: var(--color-main-background);\n cursor: pointer;\n line-height: 17px; }\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__strong,\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__limit {\n flex: 0 0 auto;\n line-height: 20px;\n color: var(--color-text-lighter);\n display: inline-flex;\n align-items: center;\n opacity: .7;\n margin-right: 5px;\n /* above the input */\n z-index: 5; }\n .multiselect[data-v-d01dd49] .multiselect__tags input.multiselect__input {\n width: 100% !important;\n position: absolute !important;\n margin: 0;\n opacity: 0;\n /* let's leave it on top of tags but hide it */\n height: 100%;\n border: none;\n /* override hide to force show the placeholder */\n display: block !important;\n /* only when not active */\n cursor: pointer; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper {\n position: absolute;\n width: 100%;\n margin-top: -1px;\n border: 1px solid var(--color-border-dark);\n background: var(--color-main-background);\n z-index: 50;\n max-height: 250px;\n overflow-y: auto; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper .multiselect__content {\n width: 100%;\n padding: 5px 0; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li {\n position: relative;\n display: flex;\n align-items: center;\n background-color: transparent; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li,\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li span {\n cursor: pointer; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span {\n padding: 5px;\n white-space: nowrap;\n overflow: hidden;\n text-overflow: ellipsis;\n margin: 0;\n height: auto;\n min-height: 1em;\n -webkit-touch-callout: none;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n display: inline-flex;\n align-items: center;\n background-color: transparent;\n color: var(--color-text-lighter);\n width: 100%;\n /* selected checkmark icon */\n /* add the prop tag-placeholder=\"create\" to add the +\n\t\t\t\ticon on top of an unknown-and-ready-to-be-created entry */ }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span::before {\n content: ' ';\n background-image: var(--icon-checkmark-000);\n background-repeat: no-repeat;\n background-position: center;\n min-width: 16px;\n min-height: 16px;\n display: block;\n opacity: .5;\n margin-right: 5px;\n visibility: hidden; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span.multiselect__option--disabled {\n background-color: var(--color-background-dark);\n opacity: .5; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span[data-select='create']::before {\n background-image: var(--icon-add-000);\n visibility: visible; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span.multiselect__option--highlight {\n color: var(--color-main-text);\n background-color: var(--color-background-dark); }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span:not(.multiselect__option--disabled):hover::before {\n opacity: .3; }\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span.multiselect__option--selected::before, .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span:not(.multiselect__option--disabled):hover::before {\n visibility: visible; }\n",""])},function(t,e,n){"use strict";var r=n(63);n.n(r).a},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,"\n.action-item[data-v-886e6e62] {\n display: inline-block;\n}\n.action-item--single[data-v-886e6e62], .action-item__menutoggle[data-v-886e6e62] {\n padding: 14px;\n height: 44px;\n width: 44px;\n cursor: pointer;\n}\n.action-item__menutoggle[data-v-886e6e62] {\n display: inline-block;\n}\n.action-item--multiple[data-v-886e6e62] {\n position: relative;\n}\n",""])},function(t,e,n){"use strict";n.r(e);var r={};n.r(r),n.d(r,"AppNavigation",function(){return g}),n.d(r,"PopoverMenu",function(){return p}),n.d(r,"DatetimePicker",function(){return w}),n.d(r,"Multiselect",function(){return U}),n.d(r,"Avatar",function(){return $}),n.d(r,"Action",function(){return W}),n(131);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{class:{"icon-loading":t.menu.loading},attrs:{id:"app-navigation"}},[t.menu.new?n("div",{staticClass:"app-navigation-new"},[n("button",{class:t.menu.new.icon,attrs:{id:t.menu.new.id,type:"button",disabled:t.menu.new.disabled},on:{click:t.menu.new.action}},[t._v("\n\t\t\t"+t._s(t.menu.new.text)+"\n\t\t")])]):t._e(),t._v(" "),n("ul",{attrs:{id:t.menu.id}},t._l(t.menu.items,function(t){return n("app-navigation-item",{key:t.key,attrs:{item:t}})})),t._v(" "),t.$slots["settings-content"]?n("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.closeMenu,expression:"closeMenu"}],class:{open:t.opened},attrs:{id:"app-settings"}},[n("div",{attrs:{id:"app-settings-header"}},[n("button",{staticClass:"settings-button",attrs:{"data-apps-slide-toggle":"#app-settings-content"},on:{click:t.toggleMenu}},[t._v(t._s(t.t("contacts","Settings")))])]),t._v(" "),n("div",{attrs:{id:"app-settings-content"}},[t._t("settings-content")],2)]):t._e()])};i._withStripped=!0;var o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.item.caption?n("li",{staticClass:"app-navigation-caption"},[t._v(t._s(t.item.text))]):n("nav-element",t._b({class:[{"icon-loading-small":t.item.loading,open:t.opened,collapsible:t.collapsible},t.item.classes],attrs:{id:t.item.id,title:t.item.title}},"nav-element",t.navElement(t.item),!1),[t.item.bullet?n("div",{staticClass:"app-navigation-entry-bullet",style:{backgroundColor:t.item.bullet}}):t._e(),t._v(" "),t.collapsible?n("button",{staticClass:"collapse",on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.toggleCollapse(e)}}}):t._e(),t._v(" "),t.item.action?n("a",{class:t.item.icon,attrs:{href:"#"},on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.item.action(e)}}},[t.item.iconUrl?n("img",{attrs:{alt:t.item.text,src:t.item.iconUrl}}):t._e(),t._v("\n\t\t"+t._s(t.item.text)+"\n\t")]):n("a",{class:t.item.icon,attrs:{href:t.item.href?t.item.href:"#"}},[t.item.iconUrl?n("img",{attrs:{alt:t.item.text,src:t.item.iconUrl}}):t._e(),t._v("\n\t\t"+t._s(t.item.text)+"\n\t")]),t._v(" "),t.item.utils?n("div",{staticClass:"app-navigation-entry-utils"},[n("ul",[Number.isInteger(t.item.utils.counter)&&t.item.utils.counter>0?n("li",{staticClass:"app-navigation-entry-utils-counter"},[t._v("\n\t\t\t\t"+t._s(t.item.utils.counter)+"\n\t\t\t")]):t._e(),t._v(" "),t.item.utils.actions&&1===t.item.utils.actions.length?n("li",{staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{class:t.item.utils.actions[0].icon,attrs:{title:t.item.utils.actions[0].text},on:{click:t.item.utils.actions[0].action}})]):t.item.utils.actions&&2===t.item.utils.actions.length&&!Number.isInteger(t.item.utils.counter)?t._l(t.item.utils.actions,function(t){return n("li",{key:t.action,staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{class:t.icon,attrs:{title:t.text},on:{click:t.action}})])}):t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n("li",{staticClass:"app-navigation-entry-utils-menu-button"},[n("button",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.hideMenu,expression:"hideMenu"}],on:{click:t.showMenu}})]):t._e()],2)]):t._e(),t._v(" "),t.item.utils&&t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n("div",{staticClass:"app-navigation-entry-menu",class:{open:t.openedMenu}},[n("popover-menu",{attrs:{menu:t.item.utils.actions}})],1):t._e(),t._v(" "),t.item.undo?n("div",{staticClass:"app-navigation-entry-deleted"},[n("div",{staticClass:"app-navigation-entry-deleted-description"},[t._v(t._s(t.item.undo.text))]),t._v(" "),n("button",{staticClass:"app-navigation-entry-deleted-button icon-history",attrs:{title:t.t("settings","Undo")}})]):t._e(),t._v(" "),t.item.edit?n("div",{staticClass:"app-navigation-entry-edit"},[n("form",{on:{submit:function(e){return e.preventDefault(),e.stopPropagation(),t.item.edit.action(e)}}},[n("input",{attrs:{placeholder:t.item.edit.text,type:"text"}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}}),t._v(" "),n("input",{staticClass:"icon-close",attrs:{type:"submit",value:""},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.cancelEdit(e)}}})])]):t._e(),t._v(" "),t.item.children?n("ul",t._l(t.item.children,function(t,e){return n("app-navigation-item",{key:e,attrs:{item:t}})})):t._e()])};o._withStripped=!0;var a=function(){var t=this.$createElement,e=this._self._c||t;return e("ul",this._l(this.menu,function(t,n){return e("popover-menu-item",{key:n,attrs:{item:t}})}))};a._withStripped=!0;var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("li",[t.item.href?n("a",{attrs:{href:t.item.href?t.item.href:"#",target:t.item.target?t.item.target:"",rel:"noreferrer noopener"},on:{click:t.action}},[t.iconIsUrl?n("img",{attrs:{src:t.item.icon}}):n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()]):t.item.input?n("span",{staticClass:"menuitem"},["checkbox"!==t.item.input?n("span",{class:t.item.icon}):t._e(),t._v(" "),"text"===t.item.input?n("form",{class:t.item.input,on:{submit:function(e){return e.preventDefault(),t.item.action(e)}}},[n("input",{attrs:{type:t.item.input,placeholder:t.item.text,required:""},domProps:{value:t.item.value}}),t._v(" "),n("input",{staticClass:"icon-confirm",attrs:{type:"submit",value:""}})]):["checkbox"===t.item.input?n("input",{directives:[{name:"model",rawName:"v-model",value:t.item.model,expression:"item.model"}],class:t.item.input,attrs:{id:t.key,type:"checkbox"},domProps:{checked:Array.isArray(t.item.model)?t._i(t.item.model,null)>-1:t.item.model},on:{change:[function(e){var n=t.item.model,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&t.$set(t.item,"model",n.concat([null])):o>-1&&t.$set(t.item,"model",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.item,"model",i)},t.item.action]}}):"radio"===t.item.input?n("input",{directives:[{name:"model",rawName:"v-model",value:t.item.model,expression:"item.model"}],class:t.item.input,attrs:{id:t.key,type:"radio"},domProps:{checked:t._q(t.item.model,null)},on:{change:[function(e){t.$set(t.item,"model",null)},t.item.action]}}):n("input",{directives:[{name:"model",rawName:"v-model",value:t.item.model,expression:"item.model"}],class:t.item.input,attrs:{id:t.key,type:t.item.input},domProps:{value:t.item.model},on:{change:t.item.action,input:function(e){e.target.composing||t.$set(t.item,"model",e.target.value)}}}),t._v(" "),n("label",{attrs:{for:t.key},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.item.action(e)}}},[t._v(t._s(t.item.text))])]],2):t.item.action?n("button",{on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.item.action(e)}}},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()]):n("span",{staticClass:"menuitem"},[n("span",{class:t.item.icon}),t._v(" "),t.item.text?n("span",[t._v(t._s(t.item.text))]):t.item.longtext?n("p",[t._v(t._s(t.item.longtext))]):t._e()])])};function u(t,e,n,r,i,o,a,s){var u,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),a?(u=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=u):i&&(u=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),u)if(c.functional){c._injectStyles=u;var l=c.render;c.render=function(t,e){return u.call(e),l(t,e)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,u):[u]}return{exports:t,options:c}}s._withStripped=!0;var c=u({name:"PopoverMenuItem",props:{item:{type:Object,required:!0,default:function(){return{key:"nextcloud-link",href:"https://nextcloud.com",icon:"icon-links",text:"Nextcloud"}},validator:function(t){return!t.input||-1!==["text","checkbox"].indexOf(t.input)}}},computed:{key:function(){return this.item.key?this.item.key:Math.round(16*Math.random()*1e6).toString(16)},iconIsUrl:function(){try{return new URL(this.item.icon),!0}catch(t){return!1}}},methods:{action:function(t){this.item.action&&this.item.action(t)}}},s,[],!1,null,null,null);c.options.__file="src/components/PopoverMenu/PopoverMenuItem.vue";var l=u({name:"PopoverMenu",components:{PopoverMenuItem:c.exports},props:{menu:{type:Array,default:function(){return[{href:"https://nextcloud.com",icon:"icon-links",text:"Nextcloud"}]},required:!0}}},a,[],!1,null,null,null);l.options.__file="src/components/PopoverMenu/PopoverMenu.vue";var f=l.exports,p=f,d=n(29),h=n.n(d),v=u({name:"AppNavigationItem",components:{PopoverMenu:f},directives:{ClickOutside:h.a},props:{item:{type:Object,required:!0}},data:function(){return{openedMenu:!1,opened:!!this.item.opened}},computed:{collapsible:function(){return this.item.collapsible&&this.item.children&&this.item.children.length>0}},watch:{item:function(t,e){this.opened=!!e.opened}},mounted:function(){this.popupItem=this.$el},methods:{showMenu:function(){this.openedMenu=!0},hideMenu:function(){this.openedMenu=!1},toggleCollapse:function(){this.opened=!this.opened},cancelEdit:function(t){Array.isArray(this.item.classes)&&(this.item.classes=this.item.classes.filter(function(t){return"editing"!==t})),this.item.edit.reset(t)},navElement:function(t){if(t.router){var e=t.router.exact;return void 0===t.router.exact&&(e=!0),{is:"router-link",tag:"li",to:t.router,exact:e}}return{is:"li"}}}},o,[],!1,null,null,null); +/** + * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> + * + * @author John Molakvoæ <skjnldsv@protonmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */v.options.__file="src/components/AppNavigation/AppNavigationItem.vue";var m=u({name:"AppNavigation",components:{AppNavigationItem:v.exports},directives:{ClickOutside:h.a},props:{menu:{type:Object,required:!0,default:function(){return{new:{id:"new-item",action:function(){return alert("Success!")},icon:"icon-add",text:"New item"},items:[]}}}},data:function(){return{opened:!1}},methods:{toggleMenu:function(){this.opened=!this.opened},closeMenu:function(){this.opened=!1}}},i,[],!1,null,null,null);m.options.__file="src/components/AppNavigation/AppNavigation.vue";var g=m.exports,y=function(t){t.mounted?Array.isArray(t.mounted)||(t.mounted=[t.mounted]):t.mounted=[],t.mounted.push(function(){this.$el.setAttribute("data-v-".concat("d01dd49"),"")})},_=n(49),b=n.n(_); +/** + * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> + * + * @author John Molakvoæ <skjnldsv@protonmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */n(297), +/** + * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> + * + * @author John Molakvoæ <skjnldsv@protonmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ +y(b.a),b.a.methods.displayPopup=function(){var t=this.$el.querySelector(".mx-datepicker-popup");t&&!t.classList.contains("popovermenu")&&(t.className+=" popovermenu menu-center open")};var w=b.a,x=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("vue-multiselect",t._g(t._b({attrs:{value:t.value,limit:t.maxOptions,"close-on-select":!t.multiple,multiple:t.multiple,label:t.label,"track-by":t.trackBy,"tag-placeholder":"create"},on:{"update:value":function(e){t.$emit("update:value",t.value)}},scopedSlots:t._u([{key:"option",fn:function(e){var r=e.option;return t.userSelect?[n("avatar-select-option",{attrs:{option:r}})]:void 0}}])},"vue-multiselect",t.$attrs,!1),t.$listeners),[t.multiple?n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.formatLimitTitle(t.value),expression:"formatLimitTitle(value)",modifiers:{auto:!0}}],staticClass:"multiselect__limit",attrs:{slot:"limit"},slot:"limit"},[t._v("\n\t\t"+t._s(t.limitString)+"\n\t")]):t._e()])};x._withStripped=!0;var O=n(128),S=n.n(O),C=n(64),k=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("span",{staticClass:"option"},[n("avatar",{staticClass:"option__avatar",attrs:{"display-name":t.option.displayName,user:t.option.user,"disable-tooltip":!0}}),t._v(" "),n("div",{staticClass:"option__desc"},[n("span",{staticClass:"option__desc--lineone"},[t._v(t._s(t.option.displayName))]),t._v(" "),t.option.desc?n("span",{staticClass:"option__desc--linetwo"},[t._v(t._s(t.option.desc))]):t._e()]),t._v(" "),t.option.icon?n("span",{staticClass:"icon option__icon",class:t.option.icon}):t._e()],1)};k._withStripped=!0;var E=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{directives:[{name:"tooltip",rawName:"v-tooltip",value:t.tooltip,expression:"tooltip"},{name:"click-outside",rawName:"v-click-outside",value:t.closeMenu,expression:"closeMenu"}],staticClass:"avatardiv popovermenu-wrapper",class:{"icon-loading":t.loadingState,unknown:t.userDoesNotExist},style:t.avatarStyle,on:{click:t.toggleMenu}},[t.loadingState||t.userDoesNotExist?t._e():n("img",{attrs:{src:t.avatarUrlLoaded}}),t._v(" "),t.userDoesNotExist?n("div",{staticClass:"unknown"},[t._v(t._s(t.initials))]):t._e(),t._v(" "),n("div",{directives:[{name:"show",rawName:"v-show",value:t.contactsMenuOpenState,expression:"contactsMenuOpenState"}],staticClass:"popovermenu"},[n("popover-menu",{attrs:{"is-open":t.contactsMenuOpenState,menu:t.menu}})],1)])};E._withStripped=!0;var T=n(129),A=n.n(T),D=n(130),M=n.n(D),P={name:"Avatar",directives:{tooltip:C.a,ClickOutside:h.a},components:{PopoverMenu:f},props:{url:{type:String,default:void 0},user:{type:String,default:void 0},displayName:{type:String,default:void 0},size:{type:Number,default:32},allowPlaceholder:{type:Boolean,default:!0},disableTooltip:{type:Boolean,default:!1},isNoUser:{type:Boolean,default:!1}},data:function(){return{avatarUrlLoaded:null,userDoesNotExist:!1,loadingState:!0,contactsMenuActions:[],contactsMenuOpenState:!1}},computed:{getUserIdentifier:function(){return this.isDisplayNameDefined?this.displayName:this.isUserDefined?this.user:""},isUserDefined:function(){return void 0!==this.user},isDisplayNameDefined:function(){return void 0!==this.displayName},isUrlDefined:function(){return void 0!==this.url},shouldShowPlaceholder:function(){return this.allowPlaceholder&&this.userDoesNotExist},avatarStyle:function(){var t={width:this.size+"px",height:this.size+"px",lineHeight:this.size+"px",fontSize:Math.round(.55*this.size)+"px"};if(!this.shouldShowPlaceholder)return t;var e=function(t){var e=t.toLowerCase();function n(t,e,n){this.r=t,this.g=e,this.b=n}function r(t,e,r){var i=[];i.push(e);for(var o=function(t,e){var n=new Array(3);return n[0]=(e[1].r-e[0].r)/t,n[1]=(e[1].g-e[0].g)/t,n[2]=(e[1].b-e[0].b)/t,n}(t,[e,r]),a=1;a<t;a++){var s=parseInt(e.r+o[0]*a),u=parseInt(e.g+o[1]*a),c=parseInt(e.b+o[2]*a);i.push(new n(s,u,c))}return i}null===e.match(/^([0-9a-f]{4}-?){8}$/)&&(e=M()(e)),e=e.replace(/[^0-9a-f]/g,"");var i=new n(182,70,157),o=new n(221,203,85),a=new n(0,130,201),s=r(6,i,o),u=r(6,o,a),c=r(6,a,i);return s.concat(u).concat(c)[function(t,e){for(var n=0,r=[],i=0;i<t.length;i++)r.push(parseInt(t.charAt(i),16)%16);for(var o in r)n+=r[o];return parseInt(parseInt(n)%18)}(e)]}(this.getUserIdentifier);return t.backgroundColor="rgb("+e.r+", "+e.g+", "+e.b+")",t},tooltip:function(){return!this.disableTooltip&&this.displayName},initials:function(){return this.shouldShowPlaceholder?this.getUserIdentifier.charAt(0).toUpperCase():"?"},menu:function(){return this.contactsMenuActions.map(function(t){return{href:t.hyperlink,icon:t.icon,text:t.title}})}},watch:{url:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()},user:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()}},mounted:function(){this.loadAvatarUrl()},methods:{toggleMenu:function(){this.user===OC.getCurrentUser().uid||this.userDoesNotExist||this.url||(this.contactsMenuOpenState=!this.contactsMenuOpenState,this.contactsMenuOpenState&&this.fetchContactsMenu())},closeMenu:function(){this.contactsMenuOpenState=!1},fetchContactsMenu:function(){var t=this;A.a.post(OC.generateUrl("contactsmenu/findOne"),"shareType=0&shareWith="+encodeURIComponent(this.user)).then(function(e){t.contactsMenuActions=[e.data.topAction].concat(e.data.actions)}).catch(function(){t.contactsMenuOpenState=!1})},loadAvatarUrl:function(){var t=this;if(this.loadingState=!0,!this.isUrlDefined&&(!this.isUserDefined||this.isNoUser))return this.loadingState=!1,void(this.userDoesNotExist=!0);var e=OC.generateUrl("/avatar/{user}/{size}",{user:this.user,size:Math.ceil(this.size*window.devicePixelRatio)});this.user===OC.getCurrentUser().uid&&"undefined"!=typeof oc_userconfig&&(e+="?v="+oc_userconfig.avatar.version),this.isUrlDefined&&(e=this.url);var n=new Image;n.onload=function(){t.avatarUrlLoaded=e,t.loadingState=!1},n.onerror=function(){t.userDoesNotExist=!0,t.loadingState=!1},n.src=e}}},N=(n(319),u(P,E,[],!1,null,"100e3b6f",null));N.options.__file="src/components/Avatar/Avatar.vue";var $=N.exports,L={name:"AvatarSelectOption",components:{Avatar:$},props:{option:{type:Object,default:function(){return{desc:"",displayName:"Admin",icon:"icon-user",user:"admin"}},validator:function(t){return"displayName"in t}}}},j=(n(321),u(L,k,[],!1,null,"72601db4",null)); +/** + * @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net> + * + * @author Julius Härtl <jus@bitgrid.net> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */j.options.__file="src/components/Multiselect/AvatarSelectOption.vue";var I=j.exports;function F(t){return(F="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var R=u({name:"Multiselect",components:{VueMultiselect:S.a,AvatarSelectOption:I},directives:{tooltip:C.a},inheritAttrs:!1,props:{value:{default:function(){return[]}},multiple:{type:Boolean,default:!1},limit:{type:Number,default:99999},label:{type:String},trackBy:{type:String},userSelect:{type:Boolean,default:!1},autoLimit:{type:Boolean,default:!0},tagWidth:{type:Number,default:150,validator:function(t){return t>0}}},data:function(){return{elWidth:0}},computed:{maxOptions:function(){if(this.autoLimit&&this.elWidth>0&&0!==this.tagWidth){var t=Math.floor(this.elWidth/this.tagWidth);return t>0?t:1}return this.limit?this.limit:9999},limitString:function(){return"+".concat(this.value.length-this.maxOptions)}},watch:{value:function(){this.updateWidth()}},mounted:function(){this.updateWidth(),window.addEventListener("resize",this.updateWidth)},beforeDestroy:function(){window.removeEventListener("resize",this.updateWidth)},methods:{formatLimitTitle:function(t){var e=this;if(Array.isArray(t)&&t.length>0){var n=t;return"object"===F(t[0])&&(n=t.map(function(t){return t[e.label]})),n.slice(this.maxOptions).join(", ")}return""},updateWidth:function(){this.elWidth=this.$el.querySelector(".multiselect__tags-wrap").offsetWidth-10}}},x,[],!1,null,null,null);R.options.__file="src/components/Multiselect/Multiselect.vue";var B=R.exports;n(323), +/** + * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> + * + * @author John Molakvoæ <skjnldsv@protonmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */ +y(B);var U=B,V=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("action",t._g(t._b({staticClass:"action-item",class:[t.isSingleAction?t.firstAction.icon+" action-item--single":"action-item--multiple"],attrs:{href:t.isSingleAction&&t.firstAction.href?t.firstAction.href:"#"}},"action",t.mainActionElement(),!1),t.isSingleAction&&t.firstAction.action?{click:t.firstAction.action}:{}),[t.isSingleAction?t._e():[n("div",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.closeMenu,expression:"closeMenu"}],staticClass:"action-item__menutoggle icon-more",attrs:{tabindex:"1"},on:{click:function(e){return e.preventDefault(),t.toggleMenu(e)}}}),t._v(" "),n("div",{staticClass:"action-item__menu popovermenu",class:{open:t.opened}},[n("popover-menu",{attrs:{menu:t.actions}})],1)]],2)};V._withStripped=!0;var H={name:"Action",components:{PopoverMenu:f},directives:{ClickOutside:h.a},props:{actions:{type:Array,required:!0,default:function(){return[{href:"https://nextcloud.com",icon:"icon-links",text:"Nextcloud"},{action:function(){alert("Deleted !")},icon:"icon-delete",text:"Delete"}]}}},data:function(){return{opened:!1}},computed:{isSingleAction:function(){return 1===this.actions.length},firstAction:function(){return this.actions[0]}},mounted:function(){this.popupItem=this.$el},methods:{toggleMenu:function(){this.opened=!this.opened},closeMenu:function(){this.opened=!1},mainActionElement:function(){return{is:this.isSingleAction?"a":"div"}}}},z=(n(325),u(H,V,[],!1,null,"886e6e62",null));z.options.__file="src/components/Action/Action.vue";var W=z.exports; +/** + * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> + * + * @author John Molakvoæ <skjnldsv@protonmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */function Y(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t} +/** + * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> + * + * @author John Molakvoæ <skjnldsv@protonmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */function G(t){Object.values(r).forEach(function(e){t.component(e.name,e)})} +/** + * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com> + * + * @author John Molakvoæ <skjnldsv@protonmail.com> + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + */n.d(e,"AppNavigation",function(){return g}),n.d(e,"PopoverMenu",function(){return p}),n.d(e,"DatetimePicker",function(){return w}),n.d(e,"Multiselect",function(){return U}),n.d(e,"Avatar",function(){return $}),n.d(e,"Action",function(){return W}),"undefined"!=typeof window&&window.Vue&&G(window.Vue),e.default=function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},r=Object.keys(n);"function"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),r.forEach(function(e){Y(t,e,n[e])})}return t}({install:G},r)}])},function(t,e,n){"use strict";(function(t){n.d(e,"a",function(){return Vt});for( +/**! + * @fileOverview Kickass library to create and place poppers near their reference elements. + * @version 1.14.3 + * @license + * Copyright (c) 2016 Federico Zivolo and contributors + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE + * SOFTWARE. + */ +var r="undefined"!=typeof window&&"undefined"!=typeof document,i=["Edge","Trident","Firefox"],o=0,a=0;a<i.length;a+=1)if(r&&navigator.userAgent.indexOf(i[a])>=0){o=1;break}var s=r&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then(function(){e=!1,t()}))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout(function(){e=!1,t()},o))}};function u(t){return t&&"[object Function]"==={}.toString.call(t)}function c(t,e){if(1!==t.nodeType)return[];var n=getComputedStyle(t,null);return e?n[e]:n}function l(t){return"HTML"===t.nodeName?t:t.parentNode||t.host}function f(t){if(!t)return document.body;switch(t.nodeName){case"HTML":case"BODY":return t.ownerDocument.body;case"#document":return t.body}var e=c(t),n=e.overflow,r=e.overflowX,i=e.overflowY;return/(auto|scroll|overlay)/.test(n+i+r)?t:f(l(t))}var p=r&&!(!window.MSInputMethodContext||!document.documentMode),d=r&&/MSIE 10/.test(navigator.userAgent);function h(t){return 11===t?p:10===t?d:p||d}function v(t){if(!t)return document.documentElement;for(var e=h(10)?document.body:null,n=t.offsetParent;n===e&&t.nextElementSibling;)n=(t=t.nextElementSibling).offsetParent;var r=n&&n.nodeName;return r&&"BODY"!==r&&"HTML"!==r?-1!==["TD","TABLE"].indexOf(n.nodeName)&&"static"===c(n,"position")?v(n):n:t?t.ownerDocument.documentElement:document.documentElement}function m(t){return null!==t.parentNode?m(t.parentNode):t}function g(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,r=n?t:e,i=n?e:t,o=document.createRange();o.setStart(r,0),o.setEnd(i,0);var a=o.commonAncestorContainer;if(t!==a&&e!==a||r.contains(i))return function(t){var e=t.nodeName;return"BODY"!==e&&("HTML"===e||v(t.firstElementChild)===t)}(a)?a:v(a);var s=m(t);return s.host?g(s.host,e):g(t,m(e).host)}function y(t){var e="top"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:"top")?"scrollTop":"scrollLeft",n=t.nodeName;if("BODY"===n||"HTML"===n){var r=t.ownerDocument.documentElement;return(t.ownerDocument.scrollingElement||r)[e]}return t[e]}function _(t,e){var n="x"===e?"Left":"Top",r="Left"===n?"Right":"Bottom";return parseFloat(t["border"+n+"Width"],10)+parseFloat(t["border"+r+"Width"],10)}function b(t,e,n,r){return Math.max(e["offset"+t],e["scroll"+t],n["client"+t],n["offset"+t],n["scroll"+t],h(10)?n["offset"+t]+r["margin"+("Height"===t?"Top":"Left")]+r["margin"+("Height"===t?"Bottom":"Right")]:0)}function w(){var t=document.body,e=document.documentElement,n=h(10)&&getComputedStyle(e);return{height:b("Height",t,e,n),width:b("Width",t,e,n)}}var x=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},O=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),S=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t},C=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t};function k(t){return C({},t,{right:t.left+t.width,bottom:t.top+t.height})}function E(t){var e={};try{if(h(10)){e=t.getBoundingClientRect();var n=y(t,"top"),r=y(t,"left");e.top+=n,e.left+=r,e.bottom+=n,e.right+=r}else e=t.getBoundingClientRect()}catch(t){}var i={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},o="HTML"===t.nodeName?w():{},a=o.width||t.clientWidth||i.right-i.left,s=o.height||t.clientHeight||i.bottom-i.top,u=t.offsetWidth-a,l=t.offsetHeight-s;if(u||l){var f=c(t);u-=_(f,"x"),l-=_(f,"y"),i.width-=u,i.height-=l}return k(i)}function T(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=h(10),i="HTML"===e.nodeName,o=E(t),a=E(e),s=f(t),u=c(e),l=parseFloat(u.borderTopWidth,10),p=parseFloat(u.borderLeftWidth,10);n&&"HTML"===e.nodeName&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var d=k({top:o.top-a.top-l,left:o.left-a.left-p,width:o.width,height:o.height});if(d.marginTop=0,d.marginLeft=0,!r&&i){var v=parseFloat(u.marginTop,10),m=parseFloat(u.marginLeft,10);d.top-=l-v,d.bottom-=l-v,d.left-=p-m,d.right-=p-m,d.marginTop=v,d.marginLeft=m}return(r&&!n?e.contains(s):e===s&&"BODY"!==s.nodeName)&&(d=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=y(e,"top"),i=y(e,"left"),o=n?-1:1;return t.top+=r*o,t.bottom+=r*o,t.left+=i*o,t.right+=i*o,t}(d,e)),d}function A(t){if(!t||!t.parentElement||h())return document.documentElement;for(var e=t.parentElement;e&&"none"===c(e,"transform");)e=e.parentElement;return e||document.documentElement}function D(t,e,n,r){var i=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o={top:0,left:0},a=i?A(t):g(t,e);if("viewport"===r)o=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.ownerDocument.documentElement,r=T(t,n),i=Math.max(n.clientWidth,window.innerWidth||0),o=Math.max(n.clientHeight,window.innerHeight||0),a=e?0:y(n),s=e?0:y(n,"left");return k({top:a-r.top+r.marginTop,left:s-r.left+r.marginLeft,width:i,height:o})}(a,i);else{var s=void 0;"scrollParent"===r?"BODY"===(s=f(l(e))).nodeName&&(s=t.ownerDocument.documentElement):s="window"===r?t.ownerDocument.documentElement:r;var u=T(s,a,i);if("HTML"!==s.nodeName||function t(e){var n=e.nodeName;return"BODY"!==n&&"HTML"!==n&&("fixed"===c(e,"position")||t(l(e)))}(a))o=u;else{var p=w(),d=p.height,h=p.width;o.top+=u.top-u.marginTop,o.bottom=d+u.top,o.left+=u.left-u.marginLeft,o.right=h+u.left}}return o.left+=n,o.top+=n,o.right-=n,o.bottom-=n,o}function M(t,e,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf("auto"))return t;var a=D(n,r,o,i),s={top:{width:a.width,height:e.top-a.top},right:{width:a.right-e.right,height:a.height},bottom:{width:a.width,height:a.bottom-e.bottom},left:{width:e.left-a.left,height:a.height}},u=Object.keys(s).map(function(t){return C({key:t},s[t],{area:function(t){return t.width*t.height}(s[t])})}).sort(function(t,e){return e.area-t.area}),c=u.filter(function(t){var e=t.width,r=t.height;return e>=n.clientWidth&&r>=n.clientHeight}),l=c.length>0?c[0].key:u[0].key,f=t.split("-")[1];return l+(f?"-"+f:"")}function P(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return T(n,r?A(e):g(e,n),r)}function N(t){var e=getComputedStyle(t),n=parseFloat(e.marginTop)+parseFloat(e.marginBottom),r=parseFloat(e.marginLeft)+parseFloat(e.marginRight);return{width:t.offsetWidth+r,height:t.offsetHeight+n}}function $(t){var e={left:"right",right:"left",bottom:"top",top:"bottom"};return t.replace(/left|right|bottom|top/g,function(t){return e[t]})}function L(t,e,n){n=n.split("-")[0];var r=N(t),i={width:r.width,height:r.height},o=-1!==["right","left"].indexOf(n),a=o?"top":"left",s=o?"left":"top",u=o?"height":"width",c=o?"width":"height";return i[a]=e[a]+e[u]/2-r[u]/2,i[s]=n===s?e[s]-r[c]:e[$(s)],i}function j(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function I(t,e,n){return(void 0===n?t:t.slice(0,function(t,e,n){if(Array.prototype.findIndex)return t.findIndex(function(t){return t[e]===n});var r=j(t,function(t){return t[e]===n});return t.indexOf(r)}(t,"name",n))).forEach(function(t){t.function&&console.warn("`modifier.function` is deprecated, use `modifier.fn`!");var n=t.function||t.fn;t.enabled&&u(n)&&(e.offsets.popper=k(e.offsets.popper),e.offsets.reference=k(e.offsets.reference),e=n(e,t))}),e}function F(t,e){return t.some(function(t){var n=t.name;return t.enabled&&n===e})}function R(t){for(var e=[!1,"ms","Webkit","Moz","O"],n=t.charAt(0).toUpperCase()+t.slice(1),r=0;r<e.length;r++){var i=e[r],o=i?""+i+n:t;if(void 0!==document.body.style[o])return o}return null}function B(t){var e=t.ownerDocument;return e?e.defaultView:window}function U(t,e,n,r){n.updateBound=r,B(t).addEventListener("resize",n.updateBound,{passive:!0});var i=f(t);return function t(e,n,r,i){var o="BODY"===e.nodeName,a=o?e.ownerDocument.defaultView:e;a.addEventListener(n,r,{passive:!0}),o||t(f(a.parentNode),n,r,i),i.push(a)}(i,"scroll",n.updateBound,n.scrollParents),n.scrollElement=i,n.eventsEnabled=!0,n}function V(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=function(t,e){return B(t).removeEventListener("resize",e.updateBound),e.scrollParents.forEach(function(t){t.removeEventListener("scroll",e.updateBound)}),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e}(this.reference,this.state))}function H(t){return""!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function z(t,e){Object.keys(e).forEach(function(n){var r="";-1!==["width","height","top","right","bottom","left"].indexOf(n)&&H(e[n])&&(r="px"),t.style[n]=e[n]+r})}function W(t,e,n){var r=j(t,function(t){return t.name===e}),i=!!r&&t.some(function(t){return t.name===n&&t.enabled&&t.order<r.order});if(!i){var o="`"+e+"`",a="`"+n+"`";console.warn(a+" modifier is required by "+o+" modifier in order to work, be sure to include it before "+o+"!")}return i}var Y=["auto-start","auto","auto-end","top-start","top","top-end","right-start","right","right-end","bottom-end","bottom","bottom-start","left-end","left","left-start"],G=Y.slice(3);function q(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=G.indexOf(t),r=G.slice(n+1).concat(G.slice(0,n));return e?r.reverse():r}var K={FLIP:"flip",CLOCKWISE:"clockwise",COUNTERCLOCKWISE:"counterclockwise"};function J(t,e,n,r){var i=[0,0],o=-1!==["right","left"].indexOf(r),a=t.split(/(\+|\-)/).map(function(t){return t.trim()}),s=a.indexOf(j(a,function(t){return-1!==t.search(/,|\s/)}));a[s]&&-1===a[s].indexOf(",")&&console.warn("Offsets separated by white space(s) are deprecated, use a comma (,) instead.");var u=/\s*,\s*|\s+/,c=-1!==s?[a.slice(0,s).concat([a[s].split(u)[0]]),[a[s].split(u)[1]].concat(a.slice(s+1))]:[a];return(c=c.map(function(t,r){var i=(1===r?!o:o)?"height":"width",a=!1;return t.reduce(function(t,e){return""===t[t.length-1]&&-1!==["+","-"].indexOf(e)?(t[t.length-1]=e,a=!0,t):a?(t[t.length-1]+=e,a=!1,t):t.concat(e)},[]).map(function(t){return function(t,e,n,r){var i=t.match(/((?:\-|\+)?\d*\.?\d*)(.*)/),o=+i[1],a=i[2];if(!o)return t;if(0===a.indexOf("%")){var s=void 0;switch(a){case"%p":s=n;break;case"%":case"%r":default:s=r}return k(s)[e]/100*o}if("vh"===a||"vw"===a)return("vh"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*o;return o}(t,i,e,n)})})).forEach(function(t,e){t.forEach(function(n,r){H(n)&&(i[e]+=n*("-"===t[r-1]?-1:1))})}),i}var X={placement:"bottom",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split("-")[0],r=e.split("-")[1];if(r){var i=t.offsets,o=i.reference,a=i.popper,s=-1!==["bottom","top"].indexOf(n),u=s?"left":"top",c=s?"width":"height",l={start:S({},u,o[u]),end:S({},u,o[u]+o[c]-a[c])};t.offsets.popper=C({},a,l[r])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,r=t.placement,i=t.offsets,o=i.popper,a=i.reference,s=r.split("-")[0],u=void 0;return u=H(+n)?[+n,0]:J(n,o,a,s),"left"===s?(o.top+=u[0],o.left-=u[1]):"right"===s?(o.top+=u[0],o.left+=u[1]):"top"===s?(o.left+=u[0],o.top-=u[1]):"bottom"===s&&(o.left+=u[0],o.top+=u[1]),t.popper=o,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var n=e.boundariesElement||v(t.instance.popper);t.instance.reference===n&&(n=v(n));var r=R("transform"),i=t.instance.popper.style,o=i.top,a=i.left,s=i[r];i.top="",i.left="",i[r]="";var u=D(t.instance.popper,t.instance.reference,e.padding,n,t.positionFixed);i.top=o,i.left=a,i[r]=s,e.boundaries=u;var c=e.priority,l=t.offsets.popper,f={primary:function(t){var n=l[t];return l[t]<u[t]&&!e.escapeWithReference&&(n=Math.max(l[t],u[t])),S({},t,n)},secondary:function(t){var n="right"===t?"left":"top",r=l[n];return l[t]>u[t]&&!e.escapeWithReference&&(r=Math.min(l[n],u[t]-("right"===t?l.width:l.height))),S({},n,r)}};return c.forEach(function(t){var e=-1!==["left","top"].indexOf(t)?"primary":"secondary";l=C({},l,f[e](t))}),t.offsets.popper=l,t},priority:["left","right","top","bottom"],padding:5,boundariesElement:"scrollParent"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,r=e.reference,i=t.placement.split("-")[0],o=Math.floor,a=-1!==["top","bottom"].indexOf(i),s=a?"right":"bottom",u=a?"left":"top",c=a?"width":"height";return n[s]<o(r[u])&&(t.offsets.popper[u]=o(r[u])-n[c]),n[u]>o(r[s])&&(t.offsets.popper[u]=o(r[s])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var n;if(!W(t.instance.modifiers,"arrow","keepTogether"))return t;var r=e.element;if("string"==typeof r){if(!(r=t.instance.popper.querySelector(r)))return t}else if(!t.instance.popper.contains(r))return console.warn("WARNING: `arrow.element` must be child of its popper element!"),t;var i=t.placement.split("-")[0],o=t.offsets,a=o.popper,s=o.reference,u=-1!==["left","right"].indexOf(i),l=u?"height":"width",f=u?"Top":"Left",p=f.toLowerCase(),d=u?"left":"top",h=u?"bottom":"right",v=N(r)[l];s[h]-v<a[p]&&(t.offsets.popper[p]-=a[p]-(s[h]-v)),s[p]+v>a[h]&&(t.offsets.popper[p]+=s[p]+v-a[h]),t.offsets.popper=k(t.offsets.popper);var m=s[p]+s[l]/2-v/2,g=c(t.instance.popper),y=parseFloat(g["margin"+f],10),_=parseFloat(g["border"+f+"Width"],10),b=m-t.offsets.popper[p]-y-_;return b=Math.max(Math.min(a[l]-v,b),0),t.arrowElement=r,t.offsets.arrow=(S(n={},p,Math.round(b)),S(n,d,""),n),t},element:"[x-arrow]"},flip:{order:600,enabled:!0,fn:function(t,e){if(F(t.instance.modifiers,"inner"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var n=D(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement,t.positionFixed),r=t.placement.split("-")[0],i=$(r),o=t.placement.split("-")[1]||"",a=[];switch(e.behavior){case K.FLIP:a=[r,i];break;case K.CLOCKWISE:a=q(r);break;case K.COUNTERCLOCKWISE:a=q(r,!0);break;default:a=e.behavior}return a.forEach(function(s,u){if(r!==s||a.length===u+1)return t;r=t.placement.split("-")[0],i=$(r);var c=t.offsets.popper,l=t.offsets.reference,f=Math.floor,p="left"===r&&f(c.right)>f(l.left)||"right"===r&&f(c.left)<f(l.right)||"top"===r&&f(c.bottom)>f(l.top)||"bottom"===r&&f(c.top)<f(l.bottom),d=f(c.left)<f(n.left),h=f(c.right)>f(n.right),v=f(c.top)<f(n.top),m=f(c.bottom)>f(n.bottom),g="left"===r&&d||"right"===r&&h||"top"===r&&v||"bottom"===r&&m,y=-1!==["top","bottom"].indexOf(r),_=!!e.flipVariations&&(y&&"start"===o&&d||y&&"end"===o&&h||!y&&"start"===o&&v||!y&&"end"===o&&m);(p||g||_)&&(t.flipped=!0,(p||g)&&(r=a[u+1]),_&&(o=function(t){return"end"===t?"start":"start"===t?"end":t}(o)),t.placement=r+(o?"-"+o:""),t.offsets.popper=C({},t.offsets.popper,L(t.instance.popper,t.offsets.reference,t.placement)),t=I(t.instance.modifiers,t,"flip"))}),t},behavior:"flip",padding:5,boundariesElement:"viewport"},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split("-")[0],r=t.offsets,i=r.popper,o=r.reference,a=-1!==["left","right"].indexOf(n),s=-1===["top","left"].indexOf(n);return i[a?"left":"top"]=o[n]-(s?i[a?"width":"height"]:0),t.placement=$(e),t.offsets.popper=k(i),t}},hide:{order:800,enabled:!0,fn:function(t){if(!W(t.instance.modifiers,"hide","preventOverflow"))return t;var e=t.offsets.reference,n=j(t.instance.modifiers,function(t){return"preventOverflow"===t.name}).boundaries;if(e.bottom<n.top||e.left>n.right||e.top>n.bottom||e.right<n.left){if(!0===t.hide)return t;t.hide=!0,t.attributes["x-out-of-boundaries"]=""}else{if(!1===t.hide)return t;t.hide=!1,t.attributes["x-out-of-boundaries"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var n=e.x,r=e.y,i=t.offsets.popper,o=j(t.instance.modifiers,function(t){return"applyStyle"===t.name}).gpuAcceleration;void 0!==o&&console.warn("WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!");var a=void 0!==o?o:e.gpuAcceleration,s=E(v(t.instance.popper)),u={position:i.position},c={left:Math.floor(i.left),top:Math.round(i.top),bottom:Math.round(i.bottom),right:Math.floor(i.right)},l="bottom"===n?"top":"bottom",f="right"===r?"left":"right",p=R("transform"),d=void 0,h=void 0;if(h="bottom"===l?-s.height+c.bottom:c.top,d="right"===f?-s.width+c.right:c.left,a&&p)u[p]="translate3d("+d+"px, "+h+"px, 0)",u[l]=0,u[f]=0,u.willChange="transform";else{var m="bottom"===l?-1:1,g="right"===f?-1:1;u[l]=h*m,u[f]=d*g,u.willChange=l+", "+f}var y={"x-placement":t.placement};return t.attributes=C({},y,t.attributes),t.styles=C({},u,t.styles),t.arrowStyles=C({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:"bottom",y:"right"},applyStyle:{order:900,enabled:!0,fn:function(t){return z(t.instance.popper,t.styles),function(t,e){Object.keys(e).forEach(function(n){!1!==e[n]?t.setAttribute(n,e[n]):t.removeAttribute(n)})}(t.instance.popper,t.attributes),t.arrowElement&&Object.keys(t.arrowStyles).length&&z(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,n,r,i){var o=P(i,e,t,n.positionFixed),a=M(n.placement,o,e,t,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return e.setAttribute("x-placement",a),z(e,{position:n.positionFixed?"fixed":"absolute"}),n},gpuAcceleration:void 0}}},Z=function(){function t(e,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};x(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=s(this.update.bind(this)),this.options=C({},t.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(C({},t.Defaults.modifiers,i.modifiers)).forEach(function(e){r.options.modifiers[e]=C({},t.Defaults.modifiers[e]||{},i.modifiers?i.modifiers[e]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(t){return C({name:t},r.options.modifiers[t])}).sort(function(t,e){return t.order-e.order}),this.modifiers.forEach(function(t){t.enabled&&u(t.onLoad)&&t.onLoad(r.reference,r.popper,r.options,t,r.state)}),this.update();var o=this.options.eventsEnabled;o&&this.enableEventListeners(),this.state.eventsEnabled=o}return O(t,[{key:"update",value:function(){return function(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=P(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=M(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=L(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?"fixed":"absolute",t=I(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}.call(this)}},{key:"destroy",value:function(){return function(){return this.state.isDestroyed=!0,F(this.modifiers,"applyStyle")&&(this.popper.removeAttribute("x-placement"),this.popper.style.position="",this.popper.style.top="",this.popper.style.left="",this.popper.style.right="",this.popper.style.bottom="",this.popper.style.willChange="",this.popper.style[R("transform")]=""),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}.call(this)}},{key:"enableEventListeners",value:function(){return function(){this.state.eventsEnabled||(this.state=U(this.reference,this.options,this.state,this.scheduleUpdate))}.call(this)}},{key:"disableEventListeners",value:function(){return V.call(this)}}]),t}();Z.Utils=("undefined"!=typeof window?window:t).PopperUtils,Z.placements=Y,Z.Defaults=X;var Q=function(){};function tt(t){return"string"==typeof t&&(t=t.split(" ")),t}function et(t,e){var n=tt(e),r=void 0;r=t.className instanceof Q?tt(t.className.baseVal):tt(t.className),n.forEach(function(t){-1===r.indexOf(t)&&r.push(t)}),t instanceof SVGElement?t.setAttribute("class",r.join(" ")):t.className=r.join(" ")}function nt(t,e){var n=tt(e),r=void 0;r=t.className instanceof Q?tt(t.className.baseVal):tt(t.className),n.forEach(function(t){var e=r.indexOf(t);-1!==e&&r.splice(e,1)}),t instanceof SVGElement?t.setAttribute("class",r.join(" ")):t.className=r.join(" ")}"undefined"!=typeof window&&(Q=window.SVGAnimatedString);var rt=!1;if("undefined"!=typeof window){rt=!1;try{var it=Object.defineProperty({},"passive",{get:function(){rt=!0}});window.addEventListener("test",null,it)}catch(t){}}var ot="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},at=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")},st=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),ut=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},ct={container:!1,delay:0,html:!1,placement:"top",title:"",template:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',trigger:"hover focus",offset:0},lt=[],ft=function(){function t(e,n){at(this,t),pt.call(this),n=ut({},ct,n),e.jquery&&(e=e[0]),this.reference=e,this.options=n,this._isOpen=!1,this._init()}return st(t,[{key:"setClasses",value:function(t){this._classes=t}},{key:"setContent",value:function(t){this.options.title=t,this._tooltipNode&&this._setContent(t,this.options)}},{key:"setOptions",value:function(t){var e=!1,n=t&&t.classes||wt.options.defaultClass;this._classes!==n&&(this.setClasses(n),e=!0),t=mt(t);var r=!1,i=!1;for(var o in this.options.offset===t.offset&&this.options.placement===t.placement||(r=!0),(this.options.template!==t.template||this.options.trigger!==t.trigger||this.options.container!==t.container||e)&&(i=!0),t)this.options[o]=t[o];if(this._tooltipNode)if(i){var a=this._isOpen;this.dispose(),this._init(),a&&this.show()}else r&&this.popperInstance.update()}},{key:"_init",value:function(){var t="string"==typeof this.options.trigger?this.options.trigger.split(" ").filter(function(t){return-1!==["click","hover","focus"].indexOf(t)}):[];this._isDisposed=!1,this._enableDocumentTouch=-1===t.indexOf("manual"),this._setEventListeners(this.reference,t,this.options)}},{key:"_create",value:function(t,e){var n=window.document.createElement("div");n.innerHTML=e.trim();var r=n.childNodes[0];return r.id="tooltip_"+Math.random().toString(36).substr(2,10),r.setAttribute("aria-hidden","true"),this.options.autoHide&&-1!==this.options.trigger.indexOf("hover")&&(r.addEventListener("mouseenter",this.hide),r.addEventListener("click",this.hide)),r}},{key:"_setContent",value:function(t,e){var n=this;this.asyncContent=!1,this._applyContent(t,e).then(function(){n.popperInstance.update()})}},{key:"_applyContent",value:function(t,e){var n=this;return new Promise(function(r,i){var o=e.html,a=n._tooltipNode;if(a){var s=a.querySelector(n.options.innerSelector);if(1===t.nodeType){if(o){for(;s.firstChild;)s.removeChild(s.firstChild);s.appendChild(t)}}else{if("function"==typeof t){var u=t();return void(u&&"function"==typeof u.then?(n.asyncContent=!0,e.loadingClass&&et(a,e.loadingClass),e.loadingContent&&n._applyContent(e.loadingContent,e),u.then(function(t){return e.loadingClass&&nt(a,e.loadingClass),n._applyContent(t,e)}).then(r).catch(i)):n._applyContent(u,e).then(r).catch(i))}o?s.innerHTML=t:s.innerText=t}r()}})}},{key:"_show",value:function(t,e){if(e&&"string"==typeof e.container&&!document.querySelector(e.container))return;clearTimeout(this._disposeTimer),delete(e=Object.assign({},e)).offset;var n=!0;this._tooltipNode&&(et(this._tooltipNode,this._classes),n=!1);var r=this._ensureShown(t,e);return n&&this._tooltipNode&&et(this._tooltipNode,this._classes),et(t,["v-tooltip-open"]),r}},{key:"_ensureShown",value:function(t,e){var n=this;if(this._isOpen)return this;if(this._isOpen=!0,lt.push(this),this._tooltipNode)return this._tooltipNode.style.display="",this._tooltipNode.setAttribute("aria-hidden","false"),this.popperInstance.enableEventListeners(),this.popperInstance.update(),this.asyncContent&&this._setContent(e.title,e),this;var r=t.getAttribute("title")||e.title;if(!r)return this;var i=this._create(t,e.template);this._tooltipNode=i,this._setContent(r,e),t.setAttribute("aria-describedby",i.id);var o=this._findContainer(e.container,t);this._append(i,o);var a=ut({},e.popperOptions,{placement:e.placement});return a.modifiers=ut({},a.modifiers,{arrow:{element:this.options.arrowSelector}}),e.boundariesElement&&(a.modifiers.preventOverflow={boundariesElement:e.boundariesElement}),this.popperInstance=new Z(t,i,a),requestAnimationFrame(function(){!n._isDisposed&&n.popperInstance?(n.popperInstance.update(),requestAnimationFrame(function(){n._isDisposed?n.dispose():n._isOpen&&i.setAttribute("aria-hidden","false")})):n.dispose()}),this}},{key:"_noLongerOpen",value:function(){var t=lt.indexOf(this);-1!==t&<.splice(t,1)}},{key:"_hide",value:function(){var t=this;if(!this._isOpen)return this;this._isOpen=!1,this._noLongerOpen(),this._tooltipNode.style.display="none",this._tooltipNode.setAttribute("aria-hidden","true"),this.popperInstance.disableEventListeners(),clearTimeout(this._disposeTimer);var e=wt.options.disposeTimeout;return null!==e&&(this._disposeTimer=setTimeout(function(){t._tooltipNode&&(t._tooltipNode.removeEventListener("mouseenter",t.hide),t._tooltipNode.removeEventListener("click",t.hide),t._tooltipNode.parentNode.removeChild(t._tooltipNode),t._tooltipNode=null)},e)),nt(this.reference,["v-tooltip-open"]),this}},{key:"_dispose",value:function(){var t=this;return this._isDisposed=!0,this._events.forEach(function(e){var n=e.func,r=e.event;t.reference.removeEventListener(r,n)}),this._events=[],this._tooltipNode?(this._hide(),this._tooltipNode.removeEventListener("mouseenter",this.hide),this._tooltipNode.removeEventListener("click",this.hide),this.popperInstance.destroy(),this.popperInstance.options.removeOnDestroy||(this._tooltipNode.parentNode.removeChild(this._tooltipNode),this._tooltipNode=null)):this._noLongerOpen(),this}},{key:"_findContainer",value:function(t,e){return"string"==typeof t?t=window.document.querySelector(t):!1===t&&(t=e.parentNode),t}},{key:"_append",value:function(t,e){e.appendChild(t)}},{key:"_setEventListeners",value:function(t,e,n){var r=this,i=[],o=[];e.forEach(function(t){switch(t){case"hover":i.push("mouseenter"),o.push("mouseleave"),r.options.hideOnTargetClick&&o.push("click");break;case"focus":i.push("focus"),o.push("blur"),r.options.hideOnTargetClick&&o.push("click");break;case"click":i.push("click"),o.push("click")}}),i.forEach(function(e){var i=function(e){!0!==r._isOpen&&(e.usedByTooltip=!0,r._scheduleShow(t,n.delay,n,e))};r._events.push({event:e,func:i}),t.addEventListener(e,i)}),o.forEach(function(e){var i=function(e){!0!==e.usedByTooltip&&r._scheduleHide(t,n.delay,n,e)};r._events.push({event:e,func:i}),t.addEventListener(e,i)})}},{key:"_onDocumentTouch",value:function(t){this._enableDocumentTouch&&this._scheduleHide(this.reference,this.options.delay,this.options,t)}},{key:"_scheduleShow",value:function(t,e,n){var r=this,i=e&&e.show||e||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout(function(){return r._show(t,n)},i)}},{key:"_scheduleHide",value:function(t,e,n,r){var i=this,o=e&&e.hide||e||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout(function(){if(!1!==i._isOpen&&document.body.contains(i._tooltipNode)){if("mouseleave"===r.type)if(i._setTooltipNodeEvent(r,t,e,n))return;i._hide(t,n)}},o)}}]),t}(),pt=function(){var t=this;this.show=function(){t._show(t.reference,t.options)},this.hide=function(){t._hide()},this.dispose=function(){t._dispose()},this.toggle=function(){return t._isOpen?t.hide():t.show()},this._events=[],this._setTooltipNodeEvent=function(e,n,r,i){var o=e.relatedreference||e.toElement||e.relatedTarget;return!!t._tooltipNode.contains(o)&&(t._tooltipNode.addEventListener(e.type,function r(o){var a=o.relatedreference||o.toElement||o.relatedTarget;t._tooltipNode.removeEventListener(e.type,r),n.contains(a)||t._scheduleHide(n,i.delay,i,o)}),!0)}};"undefined"!=typeof document&&document.addEventListener("touchstart",function(t){for(var e=0;e<lt.length;e++)lt[e]._onDocumentTouch(t)},!rt||{passive:!0,capture:!0});var dt={enabled:!0},ht=["top","top-start","top-end","right","right-start","right-end","bottom","bottom-start","bottom-end","left","left-start","left-end"],vt={defaultPlacement:"top",defaultClass:"vue-tooltip-theme",defaultTargetClass:"has-tooltip",defaultHtml:!0,defaultTemplate:'<div class="tooltip" role="tooltip"><div class="tooltip-arrow"></div><div class="tooltip-inner"></div></div>',defaultArrowSelector:".tooltip-arrow, .tooltip__arrow",defaultInnerSelector:".tooltip-inner, .tooltip__inner",defaultDelay:0,defaultTrigger:"hover focus",defaultOffset:0,defaultContainer:"body",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultLoadingClass:"tooltip-loading",defaultLoadingContent:"...",autoHide:!0,defaultHideOnTargetClick:!0,disposeTimeout:5e3,popover:{defaultPlacement:"bottom",defaultClass:"vue-popover-theme",defaultBaseClass:"tooltip popover",defaultWrapperClass:"wrapper",defaultInnerClass:"tooltip-inner popover-inner",defaultArrowClass:"tooltip-arrow popover-arrow",defaultDelay:0,defaultTrigger:"click",defaultOffset:0,defaultContainer:"body",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultAutoHide:!0,defaultHandleResize:!0}};function mt(t){var e={placement:void 0!==t.placement?t.placement:wt.options.defaultPlacement,delay:void 0!==t.delay?t.delay:wt.options.defaultDelay,html:void 0!==t.html?t.html:wt.options.defaultHtml,template:void 0!==t.template?t.template:wt.options.defaultTemplate,arrowSelector:void 0!==t.arrowSelector?t.arrowSelector:wt.options.defaultArrowSelector,innerSelector:void 0!==t.innerSelector?t.innerSelector:wt.options.defaultInnerSelector,trigger:void 0!==t.trigger?t.trigger:wt.options.defaultTrigger,offset:void 0!==t.offset?t.offset:wt.options.defaultOffset,container:void 0!==t.container?t.container:wt.options.defaultContainer,boundariesElement:void 0!==t.boundariesElement?t.boundariesElement:wt.options.defaultBoundariesElement,autoHide:void 0!==t.autoHide?t.autoHide:wt.options.autoHide,hideOnTargetClick:void 0!==t.hideOnTargetClick?t.hideOnTargetClick:wt.options.defaultHideOnTargetClick,loadingClass:void 0!==t.loadingClass?t.loadingClass:wt.options.defaultLoadingClass,loadingContent:void 0!==t.loadingContent?t.loadingContent:wt.options.defaultLoadingContent,popperOptions:ut({},void 0!==t.popperOptions?t.popperOptions:wt.options.defaultPopperOptions)};if(e.offset){var n=ot(e.offset),r=e.offset;("number"===n||"string"===n&&-1===r.indexOf(","))&&(r="0, "+r),e.popperOptions.modifiers||(e.popperOptions.modifiers={}),e.popperOptions.modifiers.offset={offset:r}}return e.trigger&&-1!==e.trigger.indexOf("click")&&(e.hideOnTargetClick=!1),e}function gt(t,e){for(var n=t.placement,r=0;r<ht.length;r++){var i=ht[r];e[i]&&(n=i)}return n}function yt(t){var e=void 0===t?"undefined":ot(t);return"string"===e?t:!(!t||"object"!==e)&&t.content}function _t(t){t._tooltip&&(t._tooltip.dispose(),delete t._tooltip,delete t._tooltipOldShow),t._tooltipTargetClasses&&(nt(t,t._tooltipTargetClasses),delete t._tooltipTargetClasses)}function bt(t,e){var n=e.value,r=(e.oldValue,e.modifiers),i=yt(n);if(i&&dt.enabled){var o=void 0;t._tooltip?((o=t._tooltip).setContent(i),o.setOptions(ut({},n,{placement:gt(n,r)}))):o=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=yt(e),i=void 0!==e.classes?e.classes:wt.options.defaultClass,o=ut({title:r},mt(ut({},e,{placement:gt(e,n)}))),a=t._tooltip=new ft(t,o);a.setClasses(i),a._vueEl=t;var s=void 0!==e.targetClasses?e.targetClasses:wt.options.defaultTargetClass;return t._tooltipTargetClasses=s,et(t,s),a}(t,n,r),void 0!==n.show&&n.show!==t._tooltipOldShow&&(t._tooltipOldShow=n.show,n.show?o.show():o.hide())}else _t(t)}var wt={options:vt,bind:bt,update:bt,unbind:function(t){_t(t)}};function xt(t){t.addEventListener("click",St),t.addEventListener("touchstart",Ct,!!rt&&{passive:!0})}function Ot(t){t.removeEventListener("click",St),t.removeEventListener("touchstart",Ct),t.removeEventListener("touchend",kt),t.removeEventListener("touchcancel",Et)}function St(t){var e=t.currentTarget;t.closePopover=!e.$_vclosepopover_touch,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}function Ct(t){if(1===t.changedTouches.length){var e=t.currentTarget;e.$_vclosepopover_touch=!0;var n=t.changedTouches[0];e.$_vclosepopover_touchPoint=n,e.addEventListener("touchend",kt),e.addEventListener("touchcancel",Et)}}function kt(t){var e=t.currentTarget;if(e.$_vclosepopover_touch=!1,1===t.changedTouches.length){var n=t.changedTouches[0],r=e.$_vclosepopover_touchPoint;t.closePopover=Math.abs(n.screenY-r.screenY)<20&&Math.abs(n.screenX-r.screenX)<20,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}}function Et(t){t.currentTarget.$_vclosepopover_touch=!1}var Tt={bind:function(t,e){var n=e.value,r=e.modifiers;t.$_closePopoverModifiers=r,(void 0===n||n)&&xt(t)},update:function(t,e){var n=e.value,r=e.oldValue,i=e.modifiers;t.$_closePopoverModifiers=i,n!==r&&(void 0===n||n?xt(t):Ot(t))},unbind:function(t){Ot(t)}};var At=void 0;function Dt(){Dt.init||(Dt.init=!0,At=-1!==function(){var t=window.navigator.userAgent,e=t.indexOf("MSIE ");if(e>0)return parseInt(t.substring(e+5,t.indexOf(".",e)),10);if(t.indexOf("Trident/")>0){var n=t.indexOf("rv:");return parseInt(t.substring(n+3,t.indexOf(".",n)),10)}var r=t.indexOf("Edge/");return r>0?parseInt(t.substring(r+5,t.indexOf(".",r)),10):-1}())}var Mt={render:function(){var t=this.$createElement;return(this._self._c||t)("div",{staticClass:"resize-observer",attrs:{tabindex:"-1"}})},staticRenderFns:[],_scopeId:"data-v-b329ee4c",name:"resize-observer",methods:{notify:function(){this.$emit("notify")},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener("resize",this.notify),this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||this.notify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!At&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener("resize",this.notify),delete this._resizeObject.onload)}},mounted:function(){var t=this;Dt(),this.$nextTick(function(){t._w=t.$el.offsetWidth,t._h=t.$el.offsetHeight});var e=document.createElement("object");this._resizeObject=e,e.setAttribute("style","display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1;"),e.setAttribute("aria-hidden","true"),e.setAttribute("tabindex",-1),e.onload=this.addResizeHandlers,e.type="text/html",At&&this.$el.appendChild(e),e.data="about:blank",At||this.$el.appendChild(e)},beforeDestroy:function(){this.removeResizeHandlers()}};var Pt={version:"0.4.4",install:function(t){t.component("resize-observer",Mt)}},Nt=null;function $t(t){var e=wt.options.popover[t];return void 0===e?wt.options[t]:e}"undefined"!=typeof window?Nt=window.Vue:void 0!==t&&(Nt=t.Vue),Nt&&Nt.use(Pt);var Lt=!1;"undefined"!=typeof window&&"undefined"!=typeof navigator&&(Lt=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);var jt=[],It=function(){};"undefined"!=typeof window&&(It=window.Element);var Ft={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"v-popover",class:t.cssClass},[n("span",{ref:"trigger",staticClass:"trigger",staticStyle:{display:"inline-block"},attrs:{"aria-describedby":t.popoverId,tabindex:-1!==t.trigger.indexOf("focus")?0:-1}},[t._t("default")],2),t._v(" "),n("div",{ref:"popover",class:[t.popoverBaseClass,t.popoverClass,t.cssClass],style:{visibility:t.isOpen?"visible":"hidden"},attrs:{id:t.popoverId,"aria-hidden":t.isOpen?"false":"true"}},[n("div",{class:t.popoverWrapperClass},[n("div",{ref:"inner",class:t.popoverInnerClass,staticStyle:{position:"relative"}},[n("div",[t._t("popover")],2),t._v(" "),t.handleResize?n("ResizeObserver",{on:{notify:t.$_handleResize}}):t._e()],1),t._v(" "),n("div",{ref:"arrow",class:t.popoverArrowClass})])])])},staticRenderFns:[],name:"VPopover",components:{ResizeObserver:Mt},props:{open:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},placement:{type:String,default:function(){return $t("defaultPlacement")}},delay:{type:[String,Number,Object],default:function(){return $t("defaultDelay")}},offset:{type:[String,Number],default:function(){return $t("defaultOffset")}},trigger:{type:String,default:function(){return $t("defaultTrigger")}},container:{type:[String,Object,It,Boolean],default:function(){return $t("defaultContainer")}},boundariesElement:{type:[String,It],default:function(){return $t("defaultBoundariesElement")}},popperOptions:{type:Object,default:function(){return $t("defaultPopperOptions")}},popoverClass:{type:[String,Array],default:function(){return $t("defaultClass")}},popoverBaseClass:{type:[String,Array],default:function(){return wt.options.popover.defaultBaseClass}},popoverInnerClass:{type:[String,Array],default:function(){return wt.options.popover.defaultInnerClass}},popoverWrapperClass:{type:[String,Array],default:function(){return wt.options.popover.defaultWrapperClass}},popoverArrowClass:{type:[String,Array],default:function(){return wt.options.popover.defaultArrowClass}},autoHide:{type:Boolean,default:function(){return wt.options.popover.defaultAutoHide}},handleResize:{type:Boolean,default:function(){return wt.options.popover.defaultHandleResize}},openGroup:{type:String,default:null}},data:function(){return{isOpen:!1,id:Math.random().toString(36).substr(2,10)}},computed:{cssClass:function(){return{open:this.isOpen}},popoverId:function(){return"popover_"+this.id}},watch:{open:function(t){t?this.show():this.hide()},disabled:function(t,e){t!==e&&(t?this.hide():this.open&&this.show())},container:function(t){if(this.isOpen&&this.popperInstance){var e=this.$refs.popover,n=this.$refs.trigger,r=this.$_findContainer(this.container,n);if(!r)return void console.warn("No container for popover",this);r.appendChild(e),this.popperInstance.scheduleUpdate()}},trigger:function(t){this.$_removeEventListeners(),this.$_addEventListeners()},placement:function(t){var e=this;this.$_updatePopper(function(){e.popperInstance.options.placement=t})},offset:"$_restartPopper",boundariesElement:"$_restartPopper",popperOptions:{handler:"$_restartPopper",deep:!0}},created:function(){this.$_isDisposed=!1,this.$_mounted=!1,this.$_events=[],this.$_preventOpen=!1},mounted:function(){var t=this.$refs.popover;t.parentNode&&t.parentNode.removeChild(t),this.$_init(),this.open&&this.show()},beforeDestroy:function(){this.dispose()},methods:{show:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.event,r=(e.skipDelay,e.force);!(void 0!==r&&r)&&this.disabled||(this.$_scheduleShow(n),this.$emit("show")),this.$emit("update:open",!0),this.$_beingShowed=!0,requestAnimationFrame(function(){t.$_beingShowed=!1})},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.event;t.skipDelay;this.$_scheduleHide(e),this.$emit("hide"),this.$emit("update:open",!1)},dispose:function(){if(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.popperInstance&&(this.popperInstance.destroy(),!this.popperInstance.options.removeOnDestroy)){var t=this.$refs.popover;t.parentNode&&t.parentNode.removeChild(t)}this.$_mounted=!1,this.popperInstance=null,this.isOpen=!1,this.$emit("dispose")},$_init:function(){-1===this.trigger.indexOf("manual")&&this.$_addEventListeners()},$_show:function(){var t=this,e=this.$refs.trigger,n=this.$refs.popover;if(clearTimeout(this.$_disposeTimer),!this.isOpen){if(this.popperInstance&&(this.isOpen=!0,this.popperInstance.enableEventListeners(),this.popperInstance.scheduleUpdate()),!this.$_mounted){var r=this.$_findContainer(this.container,e);if(!r)return void console.warn("No container for popover",this);r.appendChild(n),this.$_mounted=!0}if(!this.popperInstance){var i=ut({},this.popperOptions,{placement:this.placement});if(i.modifiers=ut({},i.modifiers,{arrow:ut({},i.modifiers&&i.modifiers.arrow,{element:this.$refs.arrow})}),this.offset){var o=this.$_getOffset();i.modifiers.offset=ut({},i.modifiers&&i.modifiers.offset,{offset:o})}this.boundariesElement&&(i.modifiers.preventOverflow=ut({},i.modifiers&&i.modifiers.preventOverflow,{boundariesElement:this.boundariesElement})),this.popperInstance=new Z(e,n,i),requestAnimationFrame(function(){!t.$_isDisposed&&t.popperInstance?(t.popperInstance.scheduleUpdate(),requestAnimationFrame(function(){t.$_isDisposed?t.dispose():t.isOpen=!0})):t.dispose()})}var a=this.openGroup;if(a)for(var s=void 0,u=0;u<jt.length;u++)(s=jt[u]).openGroup!==a&&(s.hide(),s.$emit("close-group"));jt.push(this),this.$emit("apply-show")}},$_hide:function(){var t=this;if(this.isOpen){var e=jt.indexOf(this);-1!==e&&jt.splice(e,1),this.isOpen=!1,this.popperInstance&&this.popperInstance.disableEventListeners(),clearTimeout(this.$_disposeTimer);var n=wt.options.popover.disposeTimeout||wt.options.disposeTimeout;null!==n&&(this.$_disposeTimer=setTimeout(function(){var e=t.$refs.popover;e&&(e.parentNode&&e.parentNode.removeChild(e),t.$_mounted=!1)},n)),this.$emit("apply-hide")}},$_findContainer:function(t,e){return"string"==typeof t?t=window.document.querySelector(t):!1===t&&(t=e.parentNode),t},$_getOffset:function(){var t=ot(this.offset),e=this.offset;return("number"===t||"string"===t&&-1===e.indexOf(","))&&(e="0, "+e),e},$_addEventListeners:function(){var t=this,e=this.$refs.trigger,n=[],r=[];("string"==typeof this.trigger?this.trigger.split(" ").filter(function(t){return-1!==["click","hover","focus"].indexOf(t)}):[]).forEach(function(t){switch(t){case"hover":n.push("mouseenter"),r.push("mouseleave");break;case"focus":n.push("focus"),r.push("blur");break;case"click":n.push("click"),r.push("click")}}),n.forEach(function(n){var r=function(e){t.isOpen||(e.usedByTooltip=!0,!t.$_preventOpen&&t.show({event:e}))};t.$_events.push({event:n,func:r}),e.addEventListener(n,r)}),r.forEach(function(n){var r=function(e){e.usedByTooltip||t.hide({event:e})};t.$_events.push({event:n,func:r}),e.addEventListener(n,r)})},$_scheduleShow:function(){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),t)this.$_show();else{var e=parseInt(this.delay&&this.delay.show||this.delay||0);this.$_scheduleTimer=setTimeout(this.$_show.bind(this),e)}},$_scheduleHide:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),n)this.$_hide();else{var r=parseInt(this.delay&&this.delay.hide||this.delay||0);this.$_scheduleTimer=setTimeout(function(){if(t.isOpen){if(e&&"mouseleave"===e.type)if(t.$_setTooltipNodeEvent(e))return;t.$_hide()}},r)}},$_setTooltipNodeEvent:function(t){var e=this,n=this.$refs.trigger,r=this.$refs.popover,i=t.relatedreference||t.toElement||t.relatedTarget;return!!r.contains(i)&&(r.addEventListener(t.type,function i(o){var a=o.relatedreference||o.toElement||o.relatedTarget;r.removeEventListener(t.type,i),n.contains(a)||e.hide({event:o})}),!0)},$_removeEventListeners:function(){var t=this.$refs.trigger;this.$_events.forEach(function(e){var n=e.func,r=e.event;t.removeEventListener(r,n)}),this.$_events=[]},$_updatePopper:function(t){this.popperInstance&&(t(),this.isOpen&&this.popperInstance.scheduleUpdate())},$_restartPopper:function(){if(this.popperInstance){var t=this.isOpen;this.dispose(),this.$_isDisposed=!1,this.$_init(),t&&this.show({skipDelay:!0,force:!0})}},$_handleGlobalClose:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.$_beingShowed||(this.hide({event:t}),t.closePopover?this.$emit("close-directive"):this.$emit("auto-hide"),n&&(this.$_preventOpen=!0,setTimeout(function(){e.$_preventOpen=!1},300)))},$_handleResize:function(){this.isOpen&&this.popperInstance&&(this.popperInstance.scheduleUpdate(),this.$emit("resize"))}}};function Rt(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];requestAnimationFrame(function(){for(var n=void 0,r=0;r<jt.length;r++)if((n=jt[r]).$refs.popover){var i=n.$refs.popover.contains(t.target);(t.closeAllPopover||t.closePopover&&i||n.autoHide&&!i)&&n.$_handleGlobalClose(t,e)}})}"undefined"!=typeof document&&"undefined"!=typeof window&&(Lt?document.addEventListener("touchend",function(t){Rt(t,!0)},!rt||{passive:!0,capture:!0}):window.addEventListener("click",function(t){Rt(t)},!0));var Bt="undefined"!=typeof window?window:void 0!==t?t:"undefined"!=typeof self?self:{};var Ut=function(t,e){return t(e={exports:{}},e.exports),e.exports}(function(t,e){var n=200,r="__lodash_hash_undefined__",i=800,o=16,a=9007199254740991,s="[object Arguments]",u="[object AsyncFunction]",c="[object Function]",l="[object GeneratorFunction]",f="[object Null]",p="[object Object]",d="[object Proxy]",h="[object Undefined]",v=/^\[object .+?Constructor\]$/,m=/^(?:0|[1-9]\d*)$/,g={};g["[object Float32Array]"]=g["[object Float64Array]"]=g["[object Int8Array]"]=g["[object Int16Array]"]=g["[object Int32Array]"]=g["[object Uint8Array]"]=g["[object Uint8ClampedArray]"]=g["[object Uint16Array]"]=g["[object Uint32Array]"]=!0,g[s]=g["[object Array]"]=g["[object ArrayBuffer]"]=g["[object Boolean]"]=g["[object DataView]"]=g["[object Date]"]=g["[object Error]"]=g[c]=g["[object Map]"]=g["[object Number]"]=g[p]=g["[object RegExp]"]=g["[object Set]"]=g["[object String]"]=g["[object WeakMap]"]=!1;var y="object"==typeof Bt&&Bt&&Bt.Object===Object&&Bt,_="object"==typeof self&&self&&self.Object===Object&&self,b=y||_||Function("return this")(),w=e&&!e.nodeType&&e,x=w&&t&&!t.nodeType&&t,O=x&&x.exports===w,S=O&&y.process,C=function(){try{return S&&S.binding&&S.binding("util")}catch(t){}}(),k=C&&C.isTypedArray;function E(t,e){return"__proto__"==e?void 0:t[e]}var T=Array.prototype,A=Function.prototype,D=Object.prototype,M=b["__core-js_shared__"],P=A.toString,N=D.hasOwnProperty,$=function(){var t=/[^.]+$/.exec(M&&M.keys&&M.keys.IE_PROTO||"");return t?"Symbol(src)_1."+t:""}(),L=D.toString,j=P.call(Object),I=RegExp("^"+P.call(N).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),F=O?b.Buffer:void 0,R=b.Symbol,B=b.Uint8Array,U=F?F.allocUnsafe:void 0,V=function(t,e){return function(n){return t(e(n))}}(Object.getPrototypeOf,Object),H=Object.create,z=D.propertyIsEnumerable,W=T.splice,Y=R?R.toStringTag:void 0,G=function(){try{var t=gt(Object,"defineProperty");return t({},"",{}),t}catch(t){}}(),q=F?F.isBuffer:void 0,K=Math.max,J=Date.now,X=gt(b,"Map"),Z=gt(Object,"create"),Q=function(){function t(){}return function(e){if(!Tt(e))return{};if(H)return H(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();function tt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function et(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function nt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function rt(t){var e=this.__data__=new et(t);this.size=e.size}function it(t,e){var n=Ot(t),r=!n&&xt(t),i=!n&&!r&&Ct(t),o=!n&&!r&&!i&&Dt(t),a=n||r||i||o,s=a?function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}(t.length,String):[],u=s.length;for(var c in t)!e&&!N.call(t,c)||a&&("length"==c||i&&("offset"==c||"parent"==c)||o&&("buffer"==c||"byteLength"==c||"byteOffset"==c)||yt(c,u))||s.push(c);return s}function ot(t,e,n){(void 0===n||wt(t[e],n))&&(void 0!==n||e in t)||ut(t,e,n)}function at(t,e,n){var r=t[e];N.call(t,e)&&wt(r,n)&&(void 0!==n||e in t)||ut(t,e,n)}function st(t,e){for(var n=t.length;n--;)if(wt(t[n][0],e))return n;return-1}function ut(t,e,n){"__proto__"==e&&G?G(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}tt.prototype.clear=function(){this.__data__=Z?Z(null):{},this.size=0},tt.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},tt.prototype.get=function(t){var e=this.__data__;if(Z){var n=e[t];return n===r?void 0:n}return N.call(e,t)?e[t]:void 0},tt.prototype.has=function(t){var e=this.__data__;return Z?void 0!==e[t]:N.call(e,t)},tt.prototype.set=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=Z&&void 0===e?r:e,this},et.prototype.clear=function(){this.__data__=[],this.size=0},et.prototype.delete=function(t){var e=this.__data__,n=st(e,t);return!(n<0||(n==e.length-1?e.pop():W.call(e,n,1),--this.size,0))},et.prototype.get=function(t){var e=this.__data__,n=st(e,t);return n<0?void 0:e[n][1]},et.prototype.has=function(t){return st(this.__data__,t)>-1},et.prototype.set=function(t,e){var n=this.__data__,r=st(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this},nt.prototype.clear=function(){this.size=0,this.__data__={hash:new tt,map:new(X||et),string:new tt}},nt.prototype.delete=function(t){var e=mt(this,t).delete(t);return this.size-=e?1:0,e},nt.prototype.get=function(t){return mt(this,t).get(t)},nt.prototype.has=function(t){return mt(this,t).has(t)},nt.prototype.set=function(t,e){var n=mt(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this},rt.prototype.clear=function(){this.__data__=new et,this.size=0},rt.prototype.delete=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n},rt.prototype.get=function(t){return this.__data__.get(t)},rt.prototype.has=function(t){return this.__data__.has(t)},rt.prototype.set=function(t,e){var r=this.__data__;if(r instanceof et){var i=r.__data__;if(!X||i.length<n-1)return i.push([t,e]),this.size=++r.size,this;r=this.__data__=new nt(i)}return r.set(t,e),this.size=r.size,this};var ct=function(t){return function(e,n,r){for(var i=-1,o=Object(e),a=r(e),s=a.length;s--;){var u=a[t?s:++i];if(!1===n(o[u],u,o))break}return e}}();function lt(t){return null==t?void 0===t?h:f:Y&&Y in Object(t)?function(t){var e=N.call(t,Y),n=t[Y];try{t[Y]=void 0;var r=!0}catch(t){}var i=L.call(t);r&&(e?t[Y]=n:delete t[Y]);return i}(t):function(t){return L.call(t)}(t)}function ft(t){return At(t)&<(t)==s}function pt(t){return!(!Tt(t)||function(t){return!!$&&$ in t}(t))&&(kt(t)?I:v).test(function(t){if(null!=t){try{return P.call(t)}catch(t){}try{return t+""}catch(t){}}return""}(t))}function dt(t){if(!Tt(t))return function(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e}(t);var e=_t(t),n=[];for(var r in t)("constructor"!=r||!e&&N.call(t,r))&&n.push(r);return n}function ht(t,e,n,r,i){t!==e&&ct(e,function(o,a){if(Tt(o))i||(i=new rt),function(t,e,n,r,i,o,a){var s=E(t,n),u=E(e,n),c=a.get(u);if(c)return void ot(t,n,c);var l=o?o(s,u,n+"",t,e,a):void 0,f=void 0===l;if(f){var d=Ot(u),h=!d&&Ct(u),v=!d&&!h&&Dt(u);l=u,d||h||v?Ot(s)?l=s:!function(t){return At(t)&&St(t)}(s)?h?(f=!1,l=function(t,e){if(e)return t.slice();var n=t.length,r=U?U(n):new t.constructor(n);return t.copy(r),r}(u,!0)):v?(f=!1,l=function(t,e){var n=e?function(t){var e=new t.constructor(t.byteLength);return new B(e).set(new B(t)),e}(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.length)}(u,!0)):l=[]:l=function(t,e){var n=-1,r=t.length;e||(e=Array(r));for(;++n<r;)e[n]=t[n];return e}(s):function(t){if(!At(t)||lt(t)!=p)return!1;var e=V(t);if(null===e)return!0;var n=N.call(e,"constructor")&&e.constructor;return"function"==typeof n&&n instanceof n&&P.call(n)==j}(u)||xt(u)?(l=s,xt(s)?l=function(t){return function(t,e,n,r){var i=!n;n||(n={});var o=-1,a=e.length;for(;++o<a;){var s=e[o],u=r?r(n[s],t[s],s,n,t):void 0;void 0===u&&(u=t[s]),i?ut(n,s,u):at(n,s,u)}return n}(t,Mt(t))}(s):(!Tt(s)||r&&kt(s))&&(l=function(t){return"function"!=typeof t.constructor||_t(t)?{}:Q(V(t))}(u))):f=!1}f&&(a.set(u,l),i(l,u,r,o,a),a.delete(u));ot(t,n,l)}(t,e,a,n,ht,r,i);else{var s=r?r(E(t,a),o,a+"",t,e,i):void 0;void 0===s&&(s=o),ot(t,a,s)}},Mt)}function vt(t,e){return bt(function(t,e,n){return e=K(void 0===e?t.length-1:e,0),function(){for(var r=arguments,i=-1,o=K(r.length-e,0),a=Array(o);++i<o;)a[i]=r[e+i];i=-1;for(var s=Array(e+1);++i<e;)s[i]=r[i];return s[e]=n(a),function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}(t,this,s)}}(t,e,Nt),t+"")}function mt(t,e){var n=t.__data__;return function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}(e)?n["string"==typeof e?"string":"hash"]:n.map}function gt(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return pt(n)?n:void 0}function yt(t,e){var n=typeof t;return!!(e=null==e?a:e)&&("number"==n||"symbol"!=n&&m.test(t))&&t>-1&&t%1==0&&t<e}function _t(t){var e=t&&t.constructor;return t===("function"==typeof e&&e.prototype||D)}var bt=function(t){var e=0,n=0;return function(){var r=J(),a=o-(r-n);if(n=r,a>0){if(++e>=i)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(G?function(t,e){return G(t,"toString",{configurable:!0,enumerable:!1,value:function(t){return function(){return t}}(e),writable:!0})}:Nt);function wt(t,e){return t===e||t!=t&&e!=e}var xt=ft(function(){return arguments}())?ft:function(t){return At(t)&&N.call(t,"callee")&&!z.call(t,"callee")},Ot=Array.isArray;function St(t){return null!=t&&Et(t.length)&&!kt(t)}var Ct=q||function(){return!1};function kt(t){if(!Tt(t))return!1;var e=lt(t);return e==c||e==l||e==u||e==d}function Et(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=a}function Tt(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}function At(t){return null!=t&&"object"==typeof t}var Dt=k?function(t){return function(e){return t(e)}}(k):function(t){return At(t)&&Et(t.length)&&!!g[lt(t)]};function Mt(t){return St(t)?it(t,!0):dt(t)}var Pt=function(t){return vt(function(e,n){var r=-1,i=n.length,o=i>1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=t.length>3&&"function"==typeof o?(i--,o):void 0,a&&function(t,e,n){if(!Tt(n))return!1;var r=typeof e;return!!("number"==r?St(n)&&yt(e,n.length):"string"==r&&e in n)&&wt(n[e],t)}(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),e=Object(e);++r<i;){var s=n[r];s&&t(e,s,r,o)}return e})}(function(t,e,n){ht(t,e,n)});function Nt(t){return t}t.exports=Pt});var Vt=wt,Ht={install:function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!t.installed){t.installed=!0;var r={};Ut(r,vt,n),Ht.options=r,wt.options=r,e.directive("tooltip",wt),e.directive("close-popover",Tt),e.component("v-popover",Ft)}},get enabled(){return dt.enabled},set enabled(t){dt.enabled=t}},zt=null;"undefined"!=typeof window?zt=window.Vue:void 0!==t&&(zt=t.Vue),zt&&zt.use(Ht)}).call(this,n(0))},function(t,e){function n(t){return"function"==typeof t.value||(console.warn("[Vue-click-outside:] provided expression",t.expression,"is not a function."),!1)}function r(t){return void 0!==t.componentInstance&&t.componentInstance.$isServer}t.exports={bind:function(t,e,i){function o(e){if(i.context){var n=e.path||e.composedPath&&e.composedPath();n&&n.length>0&&n.unshift(e.target),t.contains(e.target)||function(t,e){if(!t||!e)return!1;for(var n=0,r=e.length;n<r;n++)try{if(t.contains(e[n]))return!0;if(e[n].contains(t))return!1}catch(t){return!1}return!1}(i.context.popupItem,n)||t.__vueClickOutside__.callback(e)}}n(e)&&(t.__vueClickOutside__={handler:o,callback:e.value},!r(i)&&document.addEventListener("click",o))},update:function(t,e){n(e)&&(t.__vueClickOutside__.callback=e.value)},unbind:function(t,e,n){!r(n)&&document.removeEventListener("click",t.__vueClickOutside__.handler),delete t.__vueClickOutside__}}},function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,i=Function.prototype.apply;function o(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new o(i.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new o(i.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},o.prototype.unref=o.prototype.ref=function(){},o.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout(function(){t._onTimeout&&t._onTimeout()},e))},n(7),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(0))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,i=1,o={},a=!1,s=t.document,u=Object.getPrototypeOf&&Object.getPrototypeOf(t);u=u&&u.setTimeout?u:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick(function(){l(t)})}:function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?function(){var e="setImmediate$"+Math.random()+"$",n=function(n){n.source===t&&"string"==typeof n.data&&0===n.data.indexOf(e)&&l(+n.data.slice(e.length))};t.addEventListener?t.addEventListener("message",n,!1):t.attachEvent("onmessage",n),r=function(n){t.postMessage(e+n,"*")}}():t.MessageChannel?function(){var t=new MessageChannel;t.port1.onmessage=function(t){l(t.data)},r=function(e){t.port2.postMessage(e)}}():s&&"onreadystatechange"in s.createElement("script")?function(){var t=s.documentElement;r=function(e){var n=s.createElement("script");n.onreadystatechange=function(){l(e),n.onreadystatechange=null,t.removeChild(n),n=null},t.appendChild(n)}}():r=function(t){setTimeout(l,0,t)},u.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var a={callback:t,args:e};return o[i]=a,r(i),i++},u.clearImmediate=c}function c(t){delete o[t]}function l(t){if(a)setTimeout(l,0,t);else{var e=o[t];if(e){a=!0;try{!function(t){var e=t.callback,r=t.args;switch(r.length){case 0:e();break;case 1:e(r[0]);break;case 2:e(r[0],r[1]);break;case 3:e(r[0],r[1],r[2]);break;default:e.apply(n,r)}}(e)}finally{c(t),a=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(0),n(8))},function(t,e){var n,r,i=t.exports={};function o(){throw new Error("setTimeout has not been defined")}function a(){throw new Error("clearTimeout has not been defined")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n="function"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{r="function"==typeof clearTimeout?clearTimeout:a}catch(t){r=a}}();var u,c=[],l=!1,f=-1;function p(){l&&u&&(l=!1,u.length?c=u.concat(c):f=-1,c.length&&d())}function d(){if(!l){var t=s(p);l=!0;for(var e=c.length;e;){for(u=c,c=[];++f<e;)u&&u[f].run();f=-1,e=c.length}u=null,l=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function v(){}i.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];c.push(new h(t,e)),1!==c.length||l||s(d)},h.prototype.run=function(){this.fun.apply(null,this.array)},i.title="browser",i.browser=!0,i.env={},i.argv=[],i.version="",i.versions={},i.on=v,i.addListener=v,i.once=v,i.off=v,i.removeListener=v,i.removeAllListeners=v,i.emit=v,i.prependListener=v,i.prependOnceListener=v,i.listeners=function(t){return[]},i.binding=function(t){throw new Error("process.binding is not supported")},i.cwd=function(){return"/"},i.chdir=function(t){throw new Error("process.chdir is not supported")},i.umask=function(){return 0}},function(t,e,n){"use strict";n.r(e);var r=n(2),i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"followupsection",attrs:{id:"updatenotification"}},[n("div",{staticClass:"update"},[t.isNewVersionAvailable?[t.versionIsEol?n("p",[n("span",{staticClass:"warning"},[n("span",{staticClass:"icon icon-error"}),t._v("\n\t\t\t\t\t"+t._s(t.t("updatenotification","The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible."))+"\n\t\t\t\t")])]):t._e(),t._v(" "),n("p",[n("span",{domProps:{innerHTML:t._s(t.newVersionAvailableString)}}),n("br"),t._v(" "),t.isListFetched?t._e():n("span",{staticClass:"icon icon-loading-small"}),t._v(" "),n("span",{domProps:{innerHTML:t._s(t.statusText)}})]),t._v(" "),t.missingAppUpdates.length?[n("h3",{on:{click:t.toggleHideMissingUpdates}},[t._v("\n\t\t\t\t\t"+t._s(t.t("updatenotification","Apps missing updates"))+"\n\t\t\t\t\t"),t.hideMissingUpdates?t._e():n("span",{staticClass:"icon icon-triangle-n"}),t._v(" "),t.hideMissingUpdates?n("span",{staticClass:"icon icon-triangle-s"}):t._e()]),t._v(" "),t.hideMissingUpdates?t._e():n("ul",{staticClass:"applist"},t._l(t.missingAppUpdates,function(e){return n("li",[n("a",{attrs:{href:"https://apps.nextcloud.com/apps/"+e.appId,title:t.t("settings","View in store")}},[t._v(t._s(e.appName)+" ↗")])])}))]:t._e(),t._v(" "),t.availableAppUpdates.length?[n("h3",{on:{click:t.toggleHideAvailableUpdates}},[t._v("\n\t\t\t\t\t"+t._s(t.t("updatenotification","Apps with available updates"))+"\n\t\t\t\t\t"),t.hideAvailableUpdates?t._e():n("span",{staticClass:"icon icon-triangle-n"}),t._v(" "),t.hideAvailableUpdates?n("span",{staticClass:"icon icon-triangle-s"}):t._e()]),t._v(" "),n("ul",{staticClass:"applist"},t._l(t.availableAppUpdates,function(e){return t.hideAvailableUpdates?t._e():n("li",[n("a",{attrs:{href:"https://apps.nextcloud.com/apps/"+e.appId,title:t.t("settings","View in store")}},[t._v(t._s(e.appName)+" ↗")])])}))]:t._e(),t._v(" "),n("p",[t.updaterEnabled?n("a",{staticClass:"button",attrs:{href:"#"},on:{click:t.clickUpdaterButton}},[t._v(t._s(t.t("updatenotification","Open updater")))]):t._e(),t._v(" "),t.downloadLink?n("a",{staticClass:"button",class:{hidden:!t.updaterEnabled},attrs:{href:t.downloadLink}},[t._v(t._s(t.t("updatenotification","Download now")))]):t._e()]),t._v(" "),t.whatsNew?n("div",{staticClass:"whatsNew"},[n("div",{staticClass:"toggleWhatsNew"},[n("span",{directives:[{name:"click-outside",rawName:"v-click-outside",value:t.hideMenu,expression:"hideMenu"}],on:{click:t.toggleMenu}},[t._v(t._s(t.t("updatenotification","What's new?")))]),t._v(" "),n("div",{staticClass:"popovermenu",class:{"menu-center":!0,open:t.openedWhatsNew}},[n("popover-menu",{attrs:{menu:t.whatsNew}})],1)])]):t._e()]:t.isUpdateChecked?[t._v("\n\t\t\t"+t._s(t.t("updatenotification","Your version is up to date."))+"\n\t\t\t"),n("span",{directives:[{name:"tooltip",rawName:"v-tooltip.auto",value:t.lastCheckedOnString,expression:"lastCheckedOnString",modifiers:{auto:!0}}],staticClass:"icon-info svg"})]:[t._v(t._s(t.t("updatenotification","The update check is not yet finished. Please refresh the page.")))],t._v(" "),t.isDefaultUpdateServerURL?t._e():[n("p",[n("em",[t._v(t._s(t.t("updatenotification","A non-default update server is in use to be checked for updates:"))+" "),n("code",[t._v(t._s(t.updateServerURL))])])])]],2),t._v(" "),n("p",[n("label",{attrs:{for:"release-channel"}},[t._v(t._s(t.t("updatenotification","Update channel:")))]),t._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:t.currentChannel,expression:"currentChannel"}],attrs:{id:"release-channel"},on:{change:[function(e){var n=Array.prototype.filter.call(e.target.options,function(t){return t.selected}).map(function(t){return"_value"in t?t._value:t.value});t.currentChannel=e.target.multiple?n:n[0]},t.changeReleaseChannel]}},t._l(t.channels,function(e){return n("option",{domProps:{value:e}},[t._v(t._s(e))])})),t._v(" "),n("span",{staticClass:"msg",attrs:{id:"channel_save_msg"}}),n("br"),t._v(" "),n("em",[t._v(t._s(t.t("updatenotification","You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.")))]),n("br"),t._v(" "),n("em",[t._v(t._s(t.t("updatenotification","Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.")))])]),t._v(" "),n("p",{staticClass:"channel-description"},[n("span",{domProps:{innerHTML:t._s(t.productionInfoString)}}),n("br"),t._v(" "),n("span",{domProps:{innerHTML:t._s(t.stableInfoString)}}),n("br"),t._v(" "),n("span",{domProps:{innerHTML:t._s(t.betaInfoString)}})]),t._v(" "),n("p",{attrs:{id:"oca_updatenotification_groups"}},[t._v("\n\t\t"+t._s(t.t("updatenotification","Notify members of the following groups about available updates:"))+"\n\t\t"),n("multiselect",{attrs:{options:t.availableGroups,multiple:!0,label:"label","track-by":"value","tag-width":75},model:{value:t.notifyGroups,callback:function(e){t.notifyGroups=e},expression:"notifyGroups"}}),n("br"),t._v(" "),"daily"===t.currentChannel||"git"===t.currentChannel?n("em",[t._v(t._s(t.t("updatenotification","Only notification for app updates are available.")))]):t._e(),t._v(" "),"daily"===t.currentChannel?n("em",[t._v(t._s(t.t("updatenotification","The selected update channel makes dedicated notifications for the server obsolete.")))]):t._e(),t._v(" "),"git"===t.currentChannel?n("em",[t._v(t._s(t.t("updatenotification","The selected update channel does not support updates of the server.")))]):t._e()],1)])};i._withStripped=!0;var o=function(t,e,n,r,i,o,a,s){var u,c="function"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId="data-v-"+o),a?(u=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||"undefined"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=u):i&&(u=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),u)if(c.functional){c._injectStyles=u;var l=c.render;c.render=function(t,e){return u.call(e),l(t,e)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,u):[u]}return{exports:t,options:c}}(n(1).a,i,[],!1,null,null,null);o.options.__file="src/components/root.vue";var a=o.exports; /** * @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com> * @@ -23,5 +249,5 @@ var r=Object.freeze({});function i(e){return void 0===e||null===e}function o(e){ * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * - */r.a.mixin({methods:{t:function(e,t,n,r,i){return OC.L10N.translate(e,t,n,r,i)},n:function(e,t,n,r,i,o){return OC.L10N.translatePlural(e,t,n,r,i,o)}}});new r.a({render:e=>e(c)}).$mount("#updatenotification")}]); + */r.a.mixin({methods:{t:function(t,e,n,r,i){return OC.L10N.translate(t,e,n,r,i)},n:function(t,e,n,r,i,o){return OC.L10N.translatePlural(t,e,n,r,i,o)}}});new r.a({render:t=>t(a)}).$mount("#updatenotification")}]); //# sourceMappingURL=updatenotification.js.map
\ No newline at end of file diff --git a/apps/updatenotification/js/updatenotification.js.map b/apps/updatenotification/js/updatenotification.js.map index 3e450bbc644..21b64f5fa55 100644 --- a/apps/updatenotification/js/updatenotification.js.map +++ b/apps/updatenotification/js/updatenotification.js.map @@ -1 +1 @@ -{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///src/components/root.vue","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/vue/dist/vue.esm.js","webpack:///./node_modules/vue-select/dist/vue-select.js","webpack:///./node_modules/vue-click-outside/index.js","webpack:///./src/components/popoverMenu.vue?6abc","webpack:///./src/components/popoverMenu/popoverItem.vue?e129","webpack:///src/components/popoverMenu/popoverItem.vue","webpack:///./src/components/popoverMenu/popoverItem.vue?37ea","webpack:///./src/components/popoverMenu/popoverItem.vue","webpack:///./src/components/popoverMenu.vue?f184","webpack:///src/components/popoverMenu.vue","webpack:///./src/components/popoverMenu.vue","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///./node_modules/process/browser.js","webpack:///./src/components/root.vue?7b3c","webpack:///./src/components/root.vue?3eba","webpack:///./src/components/root.vue","webpack:///./src/init.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","normalizeComponent","scriptExports","render","staticRenderFns","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","hook","options","_compiled","functional","_scopeId","context","this","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","shadowRoot","_injectStyles","originalRender","h","existing","beforeCreate","concat","__webpack_exports__","components","vSelect","vue_select__WEBPACK_IMPORTED_MODULE_0___default","popoverMenu","_popoverMenu__WEBPACK_IMPORTED_MODULE_1__","directives","ClickOutside","vue_click_outside__WEBPACK_IMPORTED_MODULE_2___default","data","newVersionString","lastCheckedDate","isUpdateChecked","updaterEnabled","versionIsEol","downloadLink","isNewVersionAvailable","updateServerURL","changelogURL","whatsNewData","currentChannel","channels","notifyGroups","availableGroups","isDefaultUpdateServerURL","enableChangeWatcher","availableAppUpdates","missingAppUpdates","appStoreFailed","appStoreDisabled","isListFetched","hideMissingUpdates","hideAvailableUpdates","openedWhatsNew","_$el","_$releaseChannel","_$notifyGroups","watch","selectedOptions","selectedGroups","_","each","group","push","OCP","AppConfig","setValue","JSON","stringify","$","ajax","url","OC","linkToOCS","newVersion","type","beforeSend","request","setRequestHeader","success","response","ocs","available","missing","error","xhr","responseJSON","appstore_disabled","computed","newVersionAvailableString","lastCheckedOnString","statusText","length","productionInfoString","stableInfoString","betaInfoString","whatsNew","icon","longtext","href","text","target","action","methods","clickUpdaterButton","generateUrl","getRootPath","headers","X-Updater-Auth","method","body","remove","html","dom","filter","eval","textContent","innerHTML","removeAttr","attr","Notification","showTemporary","changeReleaseChannel","val","channel","msg","finishedAction","toggleHideMissingUpdates","toggleHideAvailableUpdates","toggleMenu","hideMenu","beforeMount","parse","lastChecked","changes","admin","regular","mounted","$el","find","on","$emit","dataType","results","groups","label","updated","tooltip","placement","g","Function","e","window","global","setImmediate","emptyObject","freeze","isUndef","v","undefined","isDef","isTrue","isPrimitive","isObject","obj","_toString","toString","isPlainObject","isRegExp","isValidArrayIndex","parseFloat","String","Math","floor","isFinite","toNumber","isNaN","makeMap","str","expectsLowerCase","map","list","split","toLowerCase","isBuiltInTag","isReservedAttribute","arr","item","index","indexOf","splice","hasOwn","cached","fn","cache","camelizeRE","camelize","replace","toUpperCase","capitalize","charAt","slice","hyphenateRE","hyphenate","ctx","boundFn","a","arguments","apply","_length","toArray","start","ret","Array","extend","to","_from","toObject","res","noop","b","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArray","isArrayB","every","keysA","keys","keysB","looseIndexOf","once","called","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","config","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","_lifecycleHooks","isReserved","charCodeAt","def","writable","configurable","bailRE","_isServer","hasProto","inBrowser","inWeex","WXEnvironment","platform","weexPlatform","UA","navigator","userAgent","isIE","test","isIE9","isEdge","isIOS","nativeWatch","supportsPassive","opts","addEventListener","isServerRendering","env","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","ownKeys","Set","set","has","clear","warn","uid","Dep","id","subs","addSub","sub","removeSub","depend","addDep","notify","update","targetStack","pushTarget","_target","popTarget","pop","VNode","tag","children","elm","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","raw","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","defineProperties","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","forEach","original","args","len","inserted","result","ob","__ob__","observeArray","dep","arrayKeys","getOwnPropertyNames","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","src","__proto__","observe","asRootData","isExtensible","_isVue","defineReactive","customSetter","shallow","getOwnPropertyDescriptor","setter","childOb","dependArray","newVal","max","del","items","strats","mergeData","from","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","mergeAssets","key$1","props","inject","provide","defaultStrat","mergeOptions","normalizeProps","normalized","normalizeInject","dirs","normalizeDirectives","extendsFrom","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","prop","absent","booleanIndex","getTypeIndex","Boolean","stringIndex","default","_props","getType","getPropDefaultValue","prevShouldObserve","match","isSameType","expectedTypes","handleError","err","info","cur","$parent","hooks","errorCaptured","globalHandleError","logError","console","microTimerFunc","macroTimerFunc","callbacks","pending","flushCallbacks","copies","useMacroTask","MessageChannel","setTimeout","port","port2","port1","onmessage","postMessage","Promise","resolve","then","nextTick","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","oldOn","remove$$1","old","event","params","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","lastIndex","last","isTextNode","shift","_isVList","isFalse","ensureCtor","comp","base","getFirstComponentChild","$once","$on","remove$1","$off","updateComponentListeners","listeners","oldListeners","resolveSlots","slots","attrs","slot","name$1","isWhitespace","resolveScopedSlots","activeInstance","isInInactiveTree","_inactive","activateChildComponent","direct","_directInactive","$children","callHook","handlers","j","_hasHookEvent","queue","activatedChildren","waiting","flushing","flushSchedulerQueue","watcher","sort","run","activatedQueue","updatedQueue","callActivatedHooks","_watcher","_isMounted","callUpdatedHooks","emit","uid$1","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","sync","active","dirty","deps","newDeps","depIds","newDepIds","expression","path","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","proxy","sourceKey","initState","propsOptions","_propKeys","loop","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","handler","createWatcher","initWatch","shouldCache","createComputedGetter","$watch","resolveInject","provideKey","source","_provided","provideDefault","renderList","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","slotNodes","$slots","_rendered","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","domProps","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","_renderProxy","markOnce","markStaticNode","bindObjectListeners","ours","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","FunctionalRenderContext","contextVm","_original","isCompiled","needNormalization","injections","scopedSlots","_c","createElement","cloneAndMarkFunctionalResult","clone","mergeProps","componentVNodeHooks","init","hydrating","parentElm","refElm","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","_parentElm","_refElm","inlineTemplate","createComponentInstanceForVnode","$mount","oldVnode","parentVnode","renderChildren","hasChildren","_renderChildren","_vnode","$attrs","$listeners","propKeys","_parentListeners","$forceUpdate","updateChildComponent","insert","queueActivatedComponent","destroy","deactivateChildComponent","$destroy","hooksToMerge","createComponent","baseCtor","_base","cid","factory","errorComp","resolved","loading","loadingComp","contexts","forceRender","reject","reason","component","delay","timeout","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","renderContext","vnodes","createFunctionalComponent","nativeOn","abstract","installComponentHooks","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","applyNS","force","style","class","registerDeepBindings","_createElement","uid$3","super","superOptions","modifiedOptions","modified","latest","extended","extendOptions","sealed","sealedOptions","dedupe","resolveModifiedOptions","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","constructor","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","el","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","cbs","i$1","eventsMixin","_update","prevEl","prevVnode","prevActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","RegExp","builtInComponents","KeepAlive","include","exclude","Number","created","destroyed","this$1","parseInt","configDef","util","delete","plugin","installedPlugins","_installedPlugins","unshift","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","version","acceptValue","isEnumeratedAttr","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","isFalsyAttrValue","genClassForVnode","parentNode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","query","selected","document","querySelector","nodeOps","tagName","multiple","setAttribute","createElementNS","namespace","createTextNode","createComment","insertBefore","newNode","referenceNode","removeChild","appendChild","nextSibling","setTextContent","setStyleScope","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","dir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","join","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","removeAttribute","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","chr","index$1","expressionPos","expressionEndPos","klass","validDivisionCharRE","parseFilters","exp","prev","filters","inSingle","inDouble","inTemplateString","inRegex","curly","square","paren","lastFilterIndex","trim","pushFilter","wrapFilter","baseWarn","pluckModuleFunction","addProp","plain","addAttr","addRawAttr","attrsMap","attrsList","addDirective","arg","addHandler","important","events","right","middle","native","nativeEvents","newHandler","getBindingAttr","getStatic","dynamicValue","getAndRemoveAttr","staticValue","removeFromMap","genComponentModel","number","valueExpression","assignment","genAssignmentCode","lastIndexOf","eof","isStringStart","next","parseString","parseBracket","parseModel","inBracket","stringQuote","target$1","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","add$1","_withTask","withMacroTask","onceHandler","remove$2","createOnceHandler","updateDOMListeners","change","normalizeEvents","updateDOMProps","oldProps","childNodes","_value","strCur","shouldUpdateValue","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","isDirtyWithModifiers","parseStyleText","cssText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","normalize","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","addClass","classList","getAttribute","removeClass","tar","resolveTransition","css","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","patch","backend","removeNode","createElm","insertedVnodeQueue","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","pre","hasChildNodes","childrenMatch","firstChild","fullInvoke","isInitialPatch","isRealElement","hasAttribute","emptyNodeAt","oldElm","parentElm$1","patchable","i$2","createPatchFunction","vmodel","trigger","directive","binding","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","some","hasNoMatchingOption","actuallySetSelected","isMultiple","option","selectedIndex","createEvent","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","display","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","rawChild","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","pos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","prevChildren","rawChildren","transitionData","kept","removed","c$1","beforeUpdate","hasMove","_reflow","offsetHeight","propertyName","_hasMove","cloneNode","HTMLUnknownElement","HTMLElement","mountComponent","defaultTagRE","regexEscapeRE","buildRegex","delimiters","open","close","klass$1","staticKeys","transformNode","classBinding","genData","decoder","style$1","styleBinding","he","isUnaryTag","canBeLeftOpenTag","isNonPhrasingTag","attribute","ncname","qnameCapture","startTagOpen","startTagClose","endTag","doctype","comment","conditionalComment","IS_REGEX_CAPTURING_BROKEN","isPlainTextElement","reCache","decodingMap","<",">",""","&"," ","	","encodedAttr","encodedAttrWithNewLines","isIgnoreNewlineTag","shouldIgnoreFirstNewline","decodeAttr","shouldDecodeNewlines","re","warn$2","transforms","preTransforms","postTransforms","platformIsPreTag","platformMustUseProp","platformGetTagNamespace","onRE","dirRE","forAliasRE","forIteratorRE","stripParensRE","argRE","bindRE","modifierRE","decodeHTMLCached","createASTElement","makeAttrsMap","template","isPreTag","root","currentParent","stack","preserveWhitespace","inPre","closeElement","element","lastTag","expectHTML","isUnaryTag$$1","canBeLeftOpenTag$$1","endTagLength","stackedTag","reStackedTag","rest$1","all","chars","parseEndTag","textEnd","commentEnd","shouldKeepComment","substring","advance","conditionalEnd","doctypeMatch","endTagMatch","curIndex","startTagMatch","parseStartTag","handleStartTag","rest","unarySlash","unary","shouldDecodeNewlinesForHref","lowerCasedTag","lowerCasedTagName","parseHTML","comments","ieNSBug","ieNSPrefix","guardIESVGBug","isForbiddenTag","forbidden","checkRootConstraints","processPre","processRawAttrs","processed","processFor","if","addIfCondition","block","else","elseif","processIf","processOnce","processElement","findPrevElement","processIfConditions","slotScope","slotTarget","lastNode","isTextTag","tagRE","tokenValue","tokens","rawTokens","exec","@binding","parseText","processKey","for","checkInFor","processRef","slotName","processSlot","processComponent","isProp","hasBindings","parseModifiers","camel","argMatch","processAttrs","inMatch","alias","iteratorMatch","iterator1","iterator2","parseFor","condition","ifConditions","cloneASTElement","modules$1","preTransformNode","typeBinding","ifCondition","ifConditionExtra","hasElse","elseIfCondition","branch0","branch1","branch2","isStaticKey","isPlatformReservedTag","baseOptions","_warn","code","genSelect","valueBinding","trueValueBinding","falseValueBinding","genCheckboxModel","genRadioModel","needCompositionGuard","genDefaultModel","reduce","genStaticKeys","genStaticKeysCached","optimize","markStatic$1","static","isDirectChildOfTemplateFor","l$1","markStaticRoots","staticInFor","staticRoot","fnExpRE","simplePathRE","esc","tab","space","up","down","keyNames","genGuard","modifierCode","stop","prevent","self","ctrl","alt","meta","genHandlers","genHandler","isMethodPath","isFunctionExpression","genModifierCode","keyModifier","genFilterCode","genKeyFilter","keyVal","keyCode","keyName","baseDirectives","wrapListeners","wrapData","cloak","CodegenState","dataGenFns","maybeComponent","onceId","generate","ast","state","genElement","staticProcessed","genStatic","onceProcessed","genOnce","forProcessed","altGen","altHelper","genFor","ifProcessed","genIf","genChildren","bind$$1","genSlot","componentName","genData$2","genComponent","altEmpty","genIfConditions","conditions","genTernaryExp","needRuntime","hasRuntime","gen","genDirectives","genProps","genScopedSlot","inlineRenderFns","genInlineTemplate","genForScopedSlot","checkSkip","altGenElement","altGenNode","el$1","needsNormalization","getNormalizationType","genNode","genComment","transformSpecialNewlines","genText","createFunction","errors","div","compileToFunctions","baseCompile","compile","finalOptions","tips","tip","compiled","fnGenErrors","createCompileToFunctionFn","createCompilerCreator","createCompiler","getShouldDecode","idToTemplate","mount","documentElement","outerHTML","container","getOuterHTML","loaded","VueSelect","__g","__e","f","TypeError","store","u","F","G","S","P","B","W","y","x","virtual","R","U","random","propertyIsEnumerable","ceil","valueOf","onSearch","mutableLoading","search","toggleLoading","typeAheadPointer","maybeAdjustScroll","pixelsToPointerTop","pixelsToPointerBottom","viewport","scrollTo","bottom","pointerHeight","dropdownMenu","scrollTop","filteredOptions","typeAheadUp","typeAheadDown","typeAheadSelect","select","taggable","clearSearchOnSelect","w","O","C","k","A","M","L","T","E","entries","values","contentWindow","write","getOwnPropertySymbols","disabled","clearable","maxHeight","searchable","closeOnSelect","getOptionLabel","findOptionByIndexValue","onChange","onTab","selectOnTab","tabindex","pushTags","filterable","filterBy","createOption","mutableOptions","resetOnOptionsChange","noDrop","inputId","mutableValue","maybePushTag","isOptionSelected","optionExists","onAfterSelect","deselect","clearSelection","blur","toggleDropdown","openIndicator","toggle","contains","focus","valueAsArray","optionObjectComparator","onEscape","onSearchBlur","mousedown","searching","clearSearchOnBlur","onSearchFocus","maybeDeleteValue","onMousedown","dropdownClasses","dropdownOpen","single","unsearchable","rtl","searchPlaceholder","isValueEmpty","showClearButton","pointer","pointerScroll","done","preventExtensions","KEY","NEED","fastKey","getWeak","onFreeze","getPrototypeOf","min","Arguments","V","N","D","I","z","H","QObject","findChild","J","iterator","K","Y","Q","Z","X","tt","et","nt","ot","rt","keyFor","useSetter","useSimple","esModule","preventDefault","aria-label","click","aria-hidden","autocomplete","readonly","role","aria-expanded","keydown","keyup","input","title","max-height","highlight","mouseover","stopPropagation","parts","media","sourceMap","insertAt","Error","singleton","sources","btoa","unescape","encodeURIComponent","styleSheet","head","getElementsByTagName","locals","validate","isServer","vNode","$isServer","elements","composedPath","popupItem","isPopup","__vueClickOutside__","_h","menu","_withStripped","popoverItemvue_type_template_id_4c6af9e6_render","_vm","rel","popoverMenu_popoverItemvue_type_script_lang_js_","componentNormalizer","__file","components_popoverMenuvue_type_script_lang_js_","popoverItem","popoverMenu_component","scope","Timeout","clearFn","_id","_clearFn","clearTimeout","setInterval","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","clearImmediate","process","registerImmediate","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","importScripts","postMessageIsAsynchronous","oldOnMessage","canUsePostMessage","messagePrefix","onGlobalMessage","attachEvent","installPostMessageImplementation","installMessageChannelImplementation","script","onreadystatechange","installReadyStateChangeImplementation","task","cachedSetTimeout","cachedClearTimeout","defaultSetTimout","defaultClearTimeout","runTimeout","fun","currentQueue","draining","queueIndex","cleanUpNextTick","drainQueue","marker","runClearTimeout","Item","array","browser","argv","versions","addListener","off","removeListener","removeAllListeners","prependListener","prependOnceListener","cwd","chdir","umask","app","appId","appName","hidden","menu-center","$$selectedVal","components_rootvue_type_script_lang_js_","vue_esm","vars","count","L10N","translate","textSingular","textPlural","translatePlural"],"mappings":"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","file":"updatenotification.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/js/\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 10);\n","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","<template>\n\t<div id=\"updatenotification\" class=\"followupsection\">\n\t\t<div class=\"update\">\n\t\t\t<template v-if=\"isNewVersionAvailable\">\n\t\t\t\t<p v-if=\"versionIsEol\">\n\t\t\t\t\t<span class=\"warning\">\n\t\t\t\t\t\t<span class=\"icon icon-error\"></span>\n\t\t\t\t\t\t{{ t('updatenotification', 'The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.') }}\n\t\t\t\t\t</span>\n\t\t\t\t</p>\n\n\t\t\t\t<p>\n\t\t\t\t\t<span v-html=\"newVersionAvailableString\"></span><br>\n\t\t\t\t\t<span v-if=\"!isListFetched\" class=\"icon icon-loading-small\"></span>\n\t\t\t\t\t<span v-html=\"statusText\"></span>\n\t\t\t\t</p>\n\n\t\t\t\t<template v-if=\"missingAppUpdates.length\">\n\t\t\t\t\t<h3 @click=\"toggleHideMissingUpdates\">\n\t\t\t\t\t\t{{ t('updatenotification', 'Apps missing updates') }}\n\t\t\t\t\t\t<span v-if=\"!hideMissingUpdates\" class=\"icon icon-triangle-n\"></span>\n\t\t\t\t\t\t<span v-if=\"hideMissingUpdates\" class=\"icon icon-triangle-s\"></span>\n\t\t\t\t\t</h3>\n\t\t\t\t\t<ul class=\"applist\" v-if=\"!hideMissingUpdates\">\n\t\t\t\t\t\t<li v-for=\"app in missingAppUpdates\"><a :href=\"'https://apps.nextcloud.com/apps/' + app.appId\" :title=\"t('settings', 'View in store')\">{{app.appName}} ↗</a></li>\n\t\t\t\t\t</ul>\n\t\t\t\t</template>\n\n\t\t\t\t<template v-if=\"availableAppUpdates.length\">\n\t\t\t\t\t<h3 @click=\"toggleHideAvailableUpdates\">\n\t\t\t\t\t\t{{ t('updatenotification', 'Apps with available updates') }}\n\t\t\t\t\t\t<span v-if=\"!hideAvailableUpdates\" class=\"icon icon-triangle-n\"></span>\n\t\t\t\t\t\t<span v-if=\"hideAvailableUpdates\" class=\"icon icon-triangle-s\"></span>\n\t\t\t\t\t</h3>\n\t\t\t\t\t<ul class=\"applist\">\n\t\t\t\t\t\t<li v-for=\"app in availableAppUpdates\" v-if=\"!hideAvailableUpdates\"><a :href=\"'https://apps.nextcloud.com/apps/' + app.appId\" :title=\"t('settings', 'View in store')\">{{app.appName}} ↗</a></li>\n\t\t\t\t\t</ul>\n\t\t\t\t</template>\n\n\t\t\t\t<p>\n\t\t\t\t\t<a v-if=\"updaterEnabled\" href=\"#\" class=\"button\" @click=\"clickUpdaterButton\">{{ t('updatenotification', 'Open updater') }}</a>\n\t\t\t\t\t<a v-if=\"downloadLink\" :href=\"downloadLink\" class=\"button\" :class=\"{ hidden: !updaterEnabled }\">{{ t('updatenotification', 'Download now') }}</a>\n\t\t\t\t</p>\n\t\t\t\t<div class=\"whatsNew\" v-if=\"whatsNew\">\n\t\t\t\t\t<div class=\"toggleWhatsNew\">\n\t\t\t\t\t\t<span v-click-outside=\"hideMenu\" @click=\"toggleMenu\">{{ t('updatenotification', 'What\\'s new?') }}</span>\n\t\t\t\t\t\t<div class=\"popovermenu\" :class=\"{ 'menu-center': true, open: openedWhatsNew }\">\n\t\t\t\t\t\t\t<popover-menu :menu=\"whatsNew\" />\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</template>\n\t\t\t<template v-else-if=\"!isUpdateChecked\">{{ t('updatenotification', 'The update check is not yet finished. Please refresh the page.') }}</template>\n\t\t\t<template v-else>\n\t\t\t\t{{ t('updatenotification', 'Your version is up to date.') }}\n\t\t\t\t<span class=\"icon-info svg\" :title=\"lastCheckedOnString\"></span>\n\t\t\t</template>\n\n\t\t\t<template v-if=\"!isDefaultUpdateServerURL\">\n\t\t\t\t<p>\n\t\t\t\t\t<em>{{ t('updatenotification', 'A non-default update server is in use to be checked for updates:') }} <code>{{updateServerURL}}</code></em>\n\t\t\t\t</p>\n\t\t\t</template>\n\t\t</div>\n\n\t\t<p>\n\t\t\t<label for=\"release-channel\">{{ t('updatenotification', 'Update channel:') }}</label>\n\t\t\t<select id=\"release-channel\" v-model=\"currentChannel\" @change=\"changeReleaseChannel\">\n\t\t\t\t<option v-for=\"channel in channels\" :value=\"channel\">{{channel}}</option>\n\t\t\t</select>\n\t\t\t<span id=\"channel_save_msg\" class=\"msg\"></span><br />\n\t\t\t<em>{{ t('updatenotification', 'You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.') }}</em><br />\n\t\t\t<em>{{ t('updatenotification', 'Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.') }}</em>\n\t\t</p>\n\n\t\t<p class=\"channel-description\">\n\t\t\t<span v-html=\"productionInfoString\"></span><br>\n\t\t\t<span v-html=\"stableInfoString\"></span><br>\n\t\t\t<span v-html=\"betaInfoString\"></span>\n\t\t</p>\n\n\t\t<p id=\"oca_updatenotification_groups\">\n\t\t\t{{ t('updatenotification', 'Notify members of the following groups about available updates:') }}\n\t\t\t<v-select multiple :value=\"notifyGroups\" :options=\"availableGroups\"></v-select><br />\n\t\t\t<em v-if=\"currentChannel === 'daily' || currentChannel === 'git'\">{{ t('updatenotification', 'Only notification for app updates are available.') }}</em>\n\t\t\t<em v-if=\"currentChannel === 'daily'\">{{ t('updatenotification', 'The selected update channel makes dedicated notifications for the server obsolete.') }}</em>\n\t\t\t<em v-if=\"currentChannel === 'git'\">{{ t('updatenotification', 'The selected update channel does not support updates of the server.') }}</em>\n\t\t</p>\n\t</div>\n</template>\n\n<script>\n\timport vSelect from 'vue-select';\n\timport popoverMenu from './popoverMenu';\n\timport ClickOutside from 'vue-click-outside';\n\n\texport default {\n\t\tname: 'root',\n\t\tcomponents: {\n\t\t\tvSelect,\n\t\t\tpopoverMenu,\n\t\t},\n\t\tdirectives: {\n\t\t\tClickOutside\n\t\t},\n\t\tdata: function () {\n\t\t\treturn {\n\t\t\t\tnewVersionString: '',\n\t\t\t\tlastCheckedDate: '',\n\t\t\t\tisUpdateChecked: false,\n\t\t\t\tupdaterEnabled: true,\n\t\t\t\tversionIsEol: false,\n\t\t\t\tdownloadLink: '',\n\t\t\t\tisNewVersionAvailable: false,\n\t\t\t\tupdateServerURL: '',\n\t\t\t\tchangelogURL: '',\n\t\t\t\twhatsNewData: [],\n\t\t\t\tcurrentChannel: '',\n\t\t\t\tchannels: [],\n\t\t\t\tnotifyGroups: '',\n\t\t\t\tavailableGroups: [],\n\t\t\t\tisDefaultUpdateServerURL: true,\n\t\t\t\tenableChangeWatcher: false,\n\n\t\t\t\tavailableAppUpdates: [],\n\t\t\t\tmissingAppUpdates: [],\n\t\t\t\tappStoreFailed: false,\n\t\t\t\tappStoreDisabled: false,\n\t\t\t\tisListFetched: false,\n\t\t\t\thideMissingUpdates: false,\n\t\t\t\thideAvailableUpdates: true,\n\t\t\t\topenedWhatsNew: false,\n\t\t\t};\n\t\t},\n\n\t\t_$el: null,\n\t\t_$releaseChannel: null,\n\t\t_$notifyGroups: null,\n\n\t\twatch: {\n\t\t\tnotifyGroups: function(selectedOptions) {\n\t\t\t\tif (!this.enableChangeWatcher) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tvar selectedGroups = [];\n\t\t\t\t_.each(selectedOptions, function(group) {\n\t\t\t\t\tselectedGroups.push(group.value);\n\t\t\t\t});\n\n\t\t\t\tOCP.AppConfig.setValue('updatenotification', 'notify_groups', JSON.stringify(selectedGroups));\n\t\t\t},\n\t\t\tisNewVersionAvailable: function() {\n\t\t\t\tif (!this.isNewVersionAvailable) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t$.ajax({\n\t\t\t\t\turl: OC.linkToOCS('apps/updatenotification/api/v1/applist', 2) + this.newVersion,\n\t\t\t\t\ttype: 'GET',\n\t\t\t\t\tbeforeSend: function (request) {\n\t\t\t\t\t\trequest.setRequestHeader('Accept', 'application/json');\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function(response) {\n\t\t\t\t\t\tthis.availableAppUpdates = response.ocs.data.available;\n\t\t\t\t\t\tthis.missingAppUpdates = response.ocs.data.missing;\n\t\t\t\t\t\tthis.isListFetched = true;\n\t\t\t\t\t\tthis.appStoreFailed = false;\n\t\t\t\t\t}.bind(this),\n\t\t\t\t\terror: function(xhr) {\n\t\t\t\t\t\tthis.availableAppUpdates = [];\n\t\t\t\t\t\tthis.missingAppUpdates = [];\n\t\t\t\t\t\tthis.appStoreDisabled = xhr.responseJSON.ocs.data.appstore_disabled;\n\t\t\t\t\t\tthis.isListFetched = true;\n\t\t\t\t\t\tthis.appStoreFailed = true;\n\t\t\t\t\t}.bind(this)\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\tcomputed: {\n\t\t\tnewVersionAvailableString: function() {\n\t\t\t\treturn t('updatenotification', 'A new version is available: <strong>{newVersionString}</strong>', {\n\t\t\t\t\tnewVersionString: this.newVersionString\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tlastCheckedOnString: function() {\n\t\t\t\treturn t('updatenotification', 'Checked on {lastCheckedDate}', {\n\t\t\t\t\tlastCheckedDate: this.lastCheckedDate\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tstatusText: function() {\n\t\t\t\tif (!this.isListFetched) {\n\t\t\t\t\treturn t('updatenotification', 'Checking apps for compatible updates');\n\t\t\t\t}\n\n\t\t\t\tif (this.appStoreDisabled) {\n\t\t\t\t\treturn t('updatenotification', 'Please make sure your config.php does not set <samp>appstoreenabled</samp> to false.');\n\t\t\t\t}\n\n\t\t\t\tif (this.appStoreFailed) {\n\t\t\t\t\treturn t('updatenotification', 'Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore.');\n\t\t\t\t}\n\n\t\t\t\treturn this.missingAppUpdates.length === 0 ? t('updatenotification', '<strong>All</strong> apps have an update for this version available', this) : n('updatenotification',\n\t\t\t\t\t'<strong>%n</strong> app has no update for this version available',\n\t\t\t\t\t'<strong>%n</strong> apps have no update for this version available',\n\t\t\t\t\tthis.missingAppUpdates.length);\n\t\t\t},\n\n\t\t\tproductionInfoString: function() {\n\t\t\t\treturn t('updatenotification', '<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).');\n\t\t\t},\n\n\t\t\tstableInfoString: function() {\n\t\t\t\treturn t('updatenotification', '<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.');\n\t\t\t},\n\n\t\t\tbetaInfoString: function() {\n\t\t\t\treturn t('updatenotification', '<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.');\n\t\t\t},\n\n\t\t\twhatsNew: function () {\n\t\t\t\tif(this.whatsNewData.length === 0) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t\tvar whatsNew = [];\n\t\t\t\tfor (var i in this.whatsNewData) {\n\t\t\t\t\twhatsNew[i] = { icon: 'icon-checkmark', longtext: this.whatsNewData[i] };\n\t\t\t\t}\n\t\t\t\tif(this.changelogURL) {\n\t\t\t\t\twhatsNew.push({\n\t\t\t\t\t\thref: this.changelogURL,\n\t\t\t\t\t\ttext: t('updatenotificaiton', 'View changelog'),\n\t\t\t\t\t\ticon: 'icon-link',\n\t\t\t\t\t\ttarget: '_blank',\n\t\t\t\t\t\taction: ''\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn whatsNew;\n\t\t\t}\n\t\t},\n\n\t\tmethods: {\n\t\t\t/**\n\t\t\t * Creates a new authentication token and loads the updater URL\n\t\t\t */\n\t\t\tclickUpdaterButton: function() {\n\t\t\t\t$.ajax({\n\t\t\t\t\turl: OC.generateUrl('/apps/updatenotification/credentials')\n\t\t\t\t}).success(function(data) {\n\t\t\t\t\t$.ajax({\n\t\t\t\t\t\turl: OC.getRootPath()+'/updater/',\n\t\t\t\t\t\theaders: {\n\t\t\t\t\t\t\t'X-Updater-Auth': data\n\t\t\t\t\t\t},\n\t\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\t\tsuccess: function(data){\n\t\t\t\t\t\t\tif(data !== 'false') {\n\t\t\t\t\t\t\t\tvar body = $('body');\n\t\t\t\t\t\t\t\t$('head').remove();\n\t\t\t\t\t\t\t\tbody.html(data);\n\n\t\t\t\t\t\t\t\t// Eval the script elements in the response\n\t\t\t\t\t\t\t\tvar dom = $(data);\n\t\t\t\t\t\t\t\tdom.filter('script').each(function() {\n\t\t\t\t\t\t\t\t\teval(this.text || this.textContent || this.innerHTML || '');\n\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\tbody.removeAttr('id');\n\t\t\t\t\t\t\t\tbody.attr('id', 'body-settings');\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\terror: function() {\n\t\t\t\t\t\t\tOC.Notification.showTemporary(t('updatenotification', 'Could not start updater, please try the manual update'));\n\t\t\t\t\t\t\tthis.updaterEnabled = false;\n\t\t\t\t\t\t}.bind(this)\n\t\t\t\t\t});\n\t\t\t\t}.bind(this));\n\t\t\t},\n\t\t\tchangeReleaseChannel: function() {\n\t\t\t\tthis.currentChannel = this._$releaseChannel.val();\n\n\t\t\t\t$.ajax({\n\t\t\t\t\turl: OC.generateUrl('/apps/updatenotification/channel'),\n\t\t\t\t\ttype: 'POST',\n\t\t\t\t\tdata: {\n\t\t\t\t\t\t'channel': this.currentChannel\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function (data) {\n\t\t\t\t\t\tOC.msg.finishedAction('#channel_save_msg', data);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\t\t\ttoggleHideMissingUpdates: function() {\n\t\t\t\tthis.hideMissingUpdates = !this.hideMissingUpdates;\n\t\t\t},\n\t\t\ttoggleHideAvailableUpdates: function() {\n\t\t\t\tthis.hideAvailableUpdates = !this.hideAvailableUpdates;\n\t\t\t},\n\t\t\ttoggleMenu: function() {\n\t\t\t\tthis.openedWhatsNew = !this.openedWhatsNew;\n\t\t\t},\n\t\t\thideMenu: function() {\n\t\t\t\tthis.openedWhatsNew = false;\n\t\t\t},\n\t\t},\n\t\tbeforeMount: function() {\n\t\t\t// Parse server data\n\t\t\tvar data = JSON.parse($('#updatenotification').attr('data-json'));\n\n\t\t\tthis.newVersion = data.newVersion;\n\t\t\tthis.newVersionString = data.newVersionString;\n\t\t\tthis.lastCheckedDate = data.lastChecked;\n\t\t\tthis.isUpdateChecked = data.isUpdateChecked;\n\t\t\tthis.updaterEnabled = data.updaterEnabled;\n\t\t\tthis.downloadLink = data.downloadLink;\n\t\t\tthis.isNewVersionAvailable = data.isNewVersionAvailable;\n\t\t\tthis.updateServerURL = data.updateServerURL;\n\t\t\tthis.currentChannel = data.currentChannel;\n\t\t\tthis.channels = data.channels;\n\t\t\tthis.notifyGroups = data.notifyGroups;\n\t\t\tthis.isDefaultUpdateServerURL = data.isDefaultUpdateServerURL;\n\t\t\tthis.versionIsEol = data.versionIsEol;\n\t\t\tif(data.changes && data.changes.changelogURL) {\n\t\t\t\tthis.changelogURL = data.changes.changelogURL;\n\t\t\t}\n\t\t\tif(data.changes && data.changes.whatsNew) {\n\t\t\t\tif(data.changes.whatsNew.admin) {\n\t\t\t\t\tthis.whatsNewData = this.whatsNewData.concat(data.changes.whatsNew.admin);\n\t\t\t\t}\n\t\t\t\tthis.whatsNewData = this.whatsNewData.concat(data.changes.whatsNew.regular);\n\t\t\t}\n\t\t},\n\t\tmounted: function () {\n\t\t\tthis._$el = $(this.$el);\n\t\t\tthis._$releaseChannel = this._$el.find('#release-channel');\n\t\t\tthis._$notifyGroups = this._$el.find('#oca_updatenotification_groups_list');\n\t\t\tthis._$notifyGroups.on('change', function () {\n\t\t\t\tthis.$emit('input');\n\t\t\t}.bind(this));\n\n\t\t\t$.ajax({\n\t\t\t\turl: OC.linkToOCS('cloud', 2)+ '/groups',\n\t\t\t\tdataType: 'json',\n\t\t\t\tsuccess: function(data) {\n\t\t\t\t\tvar results = [];\n\t\t\t\t\t$.each(data.ocs.data.groups, function(i, group) {\n\t\t\t\t\t\tresults.push({value: group, label: group});\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.availableGroups = results;\n\t\t\t\t\tthis.enableChangeWatcher = true;\n\t\t\t\t}.bind(this)\n\t\t\t});\n\t\t},\n\n\t\tupdated: function () {\n\t\t\tthis._$el.find('.icon-info').tooltip({placement: 'right'});\n\t\t}\n\t}\n</script>\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || Function(\"return this\")() || (1, eval)(\"this\");\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","/*!\n * Vue.js v2.5.17\n * (c) 2014-2018 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// these helpers produces better vm code in JS engines due to their\n// explicitness and function inlining\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value e.g. [object Object]\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : typeof val === 'object'\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert a input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if a attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether the object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it... e.g.\n * PhantomJS 1.x. Technically we don't need this anymore since native bind is\n * now more performant in most browsers, but removing it would be breaking for\n * code that was able to run in PhantomJS 1.x, so this must be kept for\n * backwards compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/)\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/**\n * Return same value\n */\nvar identity = function (_) { return _; };\n\n/**\n * Generate a static keys string from compiler modules.\n */\nfunction genStaticKeys (modules) {\n return modules.reduce(function (keys, m) {\n return keys.concat(m.staticKeys || [])\n }, []).join(',')\n}\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured'\n];\n\n/* */\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n})\n\n/* */\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = /[^\\w.$]/;\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = (function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm || {};\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// the current target watcher being evaluated.\n// this is globally unique because there could be only one\n// watcher being evaluated at any time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (_target) {\n if (Dep.target) { targetStack.push(Dep.target); }\n Dep.target = _target;\n}\n\nfunction popTarget () {\n Dep.target = targetStack.pop();\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n vnode.children,\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n var augment = hasProto\n ? protoAugment\n : copyAugment;\n augment(value, arrayMethods, arrayKeys);\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through each property and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment an target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src, keys) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment an target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n if (!getter && arguments.length === 2) {\n val = obj[key];\n }\n var setter = property && property.set;\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n var keys = Object.keys(from);\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (isPlainObject(toVal) && isPlainObject(fromVal)) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n return childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!/^[a-zA-Z][\\w-]*$/.test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'can only contain alphanumeric characters and the hyphen, ' +\n 'and must start with a letter.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def = dirs[key];\n if (typeof def === 'function') {\n dirs[key] = { bind: def, update: def };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n var extendsFrom = child.extends;\n if (extendsFrom) {\n parent = mergeOptions(parent, extendsFrom, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false && isObject(value) && ('@binding' in value))\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n if (!valid) {\n warn(\n \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', ')) +\n \", got \" + (toRawType(value)) + \".\",\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n logError(e, null, 'config.errorHandler');\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n/* globals MessageChannel */\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using both microtasks and (macro) tasks.\n// In < 2.4 we used microtasks everywhere, but there are some scenarios where\n// microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690) or even between bubbling of the same\n// event (#6566). However, using (macro) tasks everywhere also has subtle problems\n// when state is changed right before repaint (e.g. #6813, out-in transitions).\n// Here we use microtask by default, but expose a way to force (macro) task when\n// needed (e.g. in event handlers attached by v-on).\nvar microTimerFunc;\nvar macroTimerFunc;\nvar useMacroTask = false;\n\n// Determine (macro) task defer implementation.\n// Technically setImmediate should be the ideal choice, but it's only available\n// in IE. The only polyfill that consistently queues the callback after all DOM\n// events triggered in the same loop is by using MessageChannel.\n/* istanbul ignore if */\nif (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n macroTimerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else if (typeof MessageChannel !== 'undefined' && (\n isNative(MessageChannel) ||\n // PhantomJS\n MessageChannel.toString() === '[object MessageChannelConstructor]'\n)) {\n var channel = new MessageChannel();\n var port = channel.port2;\n channel.port1.onmessage = flushCallbacks;\n macroTimerFunc = function () {\n port.postMessage(1);\n };\n} else {\n /* istanbul ignore next */\n macroTimerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\n// Determine microtask defer implementation.\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n microTimerFunc = function () {\n p.then(flushCallbacks);\n // in problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n} else {\n // fallback to macro\n microTimerFunc = macroTimerFunc;\n}\n\n/**\n * Wrap a function so that if any code inside triggers state change,\n * the changes are queued using a (macro) task instead of a microtask.\n */\nfunction withMacroTask (fn) {\n return fn._withTask || (fn._withTask = function () {\n useMacroTask = true;\n var res = fn.apply(null, arguments);\n useMacroTask = false;\n return res\n })\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n if (useMacroTask) {\n macroTimerFunc();\n } else {\n microTimerFunc();\n }\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n perf.clearMeasures(name);\n };\n }\n}\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) || key.charAt(0) === '_';\n if (!has && !isAllowed) {\n warnNonPresent(target, key);\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n warnNonPresent(target, key);\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n cloned[i].apply(null, arguments$1);\n }\n } else {\n // return handler return value for single handlers\n return fns.apply(null, arguments)\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n vm\n) {\n var name, def, cur, old, event;\n for (name in on) {\n def = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n /* istanbul ignore if */\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur);\n }\n add(event.name, cur, event.once, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor,\n context\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (isDef(factory.contexts)) {\n // already pending\n factory.contexts.push(context);\n } else {\n var contexts = factory.contexts = [context];\n var sync = true;\n\n var forceRender = function () {\n for (var i = 0, l = contexts.length; i < l; i++) {\n contexts[i].$forceUpdate();\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender();\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender();\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (typeof res.then === 'function') {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isDef(res.component) && typeof res.component.then === 'function') {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n setTimeout(function () {\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender();\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n setTimeout(function () {\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn, once) {\n if (once) {\n target.$once(event, fn);\n } else {\n target.$on(event, fn);\n }\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$off(event[i], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n if (fn) {\n // specific handler\n var cb;\n var i$1 = cbs.length;\n while (i$1--) {\n cb = cbs[i$1];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i$1, 1);\n break\n }\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n for (var i = 0, l = cbs.length; i < l; i++) {\n try {\n cbs[i].apply(vm, args);\n } catch (e) {\n handleError(e, vm, (\"event handler for \\\"\" + event + \"\\\"\"));\n }\n }\n }\n return vm\n };\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n var slots = {};\n if (!children) {\n return slots\n }\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res\n) {\n res = res || {};\n for (var i = 0; i < fns.length; i++) {\n if (Array.isArray(fns[i])) {\n resolveScopedSlots(fns[i], res);\n } else {\n res[fns[i].key] = fns[i].fn;\n }\n }\n return res\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n if (vm._isMounted) {\n callHook(vm, 'beforeUpdate');\n }\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(\n vm.$el, vnode, hydrating, false /* removeOnly */,\n vm.$options._parentElm,\n vm.$options._refElm\n );\n // no need for the ref nodes after initial patch\n // this prevents keeping a detached DOM tree in memory (#5851)\n vm.$options._parentElm = vm.$options._refElm = null;\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n activeInstance = prevActiveInstance;\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, null, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren\n var hasChildren = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n parentVnode.data.scopedSlots || // has new scoped slots\n vm.$scopedSlots !== emptyObject // has old scoped slots\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (hasChildren) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n try {\n handlers[i].call(vm);\n } catch (e) {\n handleError(e, vm, (hook + \" hook\"));\n }\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\nvar uid$1 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$1; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = function () {};\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n var dep = this$1.deps[i];\n if (!this$1.newDepIds.has(dep.id)) {\n dep.removeSub(this$1);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n var this$1 = this;\n\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].removeSub(this$1);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive(props, key, value, function () {\n if (vm.$parent && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : userDef;\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : userDef.get\n : noop;\n sharedPropertyDefinition.set = userDef.set\n ? userDef.set\n : noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (methods[key] == null) {\n warn(\n \"Method \\\"\" + key + \"\\\" has an undefined value in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = methods[key] == null ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function (newData) {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n cb.call(vm, watcher.value);\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject).filter(function (key) {\n /* istanbul ignore next */\n return Object.getOwnPropertyDescriptor(inject, key).enumerable\n })\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n if (isDef(ret)) {\n (ret)._isVList = true;\n }\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n var slotNodes = this.$slots[name];\n // warn duplicate slot usage\n if (slotNodes) {\n if (process.env.NODE_ENV !== 'production' && slotNodes._rendered) {\n warn(\n \"Duplicate presence of slot \\\"\" + name + \"\\\" found in the same render tree \" +\n \"- this will likely cause render errors.\",\n this\n );\n }\n slotNodes._rendered = true;\n }\n nodes = slotNodes || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n if (!(key in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () { return resolveSlots(children, parent); };\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = data.scopedSlots || emptyObject;\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n\n\n\n// Register the component hook to weex native render engine.\n// The hook will be triggered by native, not javascript.\n\n\n// Updates the state of the component to weex native render engine.\n\n/* */\n\n// https://github.com/Hanks10100/weex-native-directive/tree/master/component\n\n// listening on native callback\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (\n vnode,\n hydrating,\n parentElm,\n refElm\n ) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance,\n parentElm,\n refElm\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor, context);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n // Weex specific: invoke recycle-list optimized @render function for\n // extracting cell-slot template.\n // https://github.com/Hanks10100/weex-native-directive/tree/master/component\n /* istanbul ignore if */\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent, // activeInstance in lifecycle state\n parentElm,\n refElm\n) {\n var options = {\n _isComponent: true,\n parent: parent,\n _parentVnode: vnode,\n _parentElm: parentElm || null,\n _refElm: refElm || null\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n hooks[key] = componentVNodeHooks[key];\n }\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input';(data.props || (data.props = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n if (isDef(on[event])) {\n on[event] = [data.model.callback].concat(on[event]);\n } else {\n on[event] = data.model.callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if (isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n // reset _rendered flag on slots for duplicate slot check\n if (process.env.NODE_ENV !== 'production') {\n for (var key in vm.$slots) {\n // $flow-disable-line\n vm.$slots[key]._rendered = false;\n }\n }\n\n if (_parentVnode) {\n vm.$scopedSlots = _parentVnode.data.scopedSlots || emptyObject;\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n if (vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n opts._parentElm = options._parentElm;\n opts._refElm = options._refElm;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var extended = Ctor.extendOptions;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = dedupe(latest[key], extended[key], sealed[key]);\n }\n }\n return modified\n}\n\nfunction dedupe (latest, extended, sealed) {\n // compare latest and sealed to ensure lifecycle hooks won't be duplicated\n // between merges\n if (Array.isArray(latest)) {\n var res = [];\n sealed = Array.isArray(sealed) ? sealed : [sealed];\n extended = Array.isArray(extended) ? extended : [extended];\n for (var i = 0; i < latest.length; i++) {\n // push original options and not sealed options to exclude duplicated options\n if (extended.indexOf(latest[i]) >= 0 || sealed.indexOf(latest[i]) < 0) {\n res.push(latest[i]);\n }\n }\n return res\n } else {\n return latest\n }\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n var this$1 = this;\n\n for (var key in this$1.cache) {\n pruneCacheEntry(this$1.cache, key, this$1.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n}\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n}\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.5.17';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\nvar isPreTag = function (tag) { return tag === 'pre'; };\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\n\nvar nodeOps = Object.freeze({\n\tcreateElement: createElement$1,\n\tcreateElementNS: createElementNS,\n\tcreateTextNode: createTextNode,\n\tcreateComment: createComment,\n\tinsertBefore: insertBefore,\n\tremoveChild: removeChild,\n\tappendChild: appendChild,\n\tparentNode: parentNode,\n\tnextSibling: nextSibling,\n\ttagName: tagName,\n\tsetTextContent: setTextContent,\n\tsetStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n}\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove () {\n if (--remove.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove.listeners = listeners;\n return remove\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */, parentElm, refElm);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (ref$$1.parentNode === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (parentElm, vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(parentElm, oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (oldVnode, vnode, insertedVnodeQueue, removeOnly) {\n if (oldVnode === vnode) {\n return\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(elm, oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly, parentElm, refElm) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue, parentElm, refElm);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm$1 = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm$1,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm$1)) {\n removeVnodes(parentElm$1, [oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n}\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n]\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true');\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n}\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n}\n\n/* */\n\nvar validDivisionCharRE = /[\\w).+\\-_$\\]]/;\n\nfunction parseFilters (exp) {\n var inSingle = false;\n var inDouble = false;\n var inTemplateString = false;\n var inRegex = false;\n var curly = 0;\n var square = 0;\n var paren = 0;\n var lastFilterIndex = 0;\n var c, prev, i, expression, filters;\n\n for (i = 0; i < exp.length; i++) {\n prev = c;\n c = exp.charCodeAt(i);\n if (inSingle) {\n if (c === 0x27 && prev !== 0x5C) { inSingle = false; }\n } else if (inDouble) {\n if (c === 0x22 && prev !== 0x5C) { inDouble = false; }\n } else if (inTemplateString) {\n if (c === 0x60 && prev !== 0x5C) { inTemplateString = false; }\n } else if (inRegex) {\n if (c === 0x2f && prev !== 0x5C) { inRegex = false; }\n } else if (\n c === 0x7C && // pipe\n exp.charCodeAt(i + 1) !== 0x7C &&\n exp.charCodeAt(i - 1) !== 0x7C &&\n !curly && !square && !paren\n ) {\n if (expression === undefined) {\n // first filter, end of expression\n lastFilterIndex = i + 1;\n expression = exp.slice(0, i).trim();\n } else {\n pushFilter();\n }\n } else {\n switch (c) {\n case 0x22: inDouble = true; break // \"\n case 0x27: inSingle = true; break // '\n case 0x60: inTemplateString = true; break // `\n case 0x28: paren++; break // (\n case 0x29: paren--; break // )\n case 0x5B: square++; break // [\n case 0x5D: square--; break // ]\n case 0x7B: curly++; break // {\n case 0x7D: curly--; break // }\n }\n if (c === 0x2f) { // /\n var j = i - 1;\n var p = (void 0);\n // find first non-whitespace prev char\n for (; j >= 0; j--) {\n p = exp.charAt(j);\n if (p !== ' ') { break }\n }\n if (!p || !validDivisionCharRE.test(p)) {\n inRegex = true;\n }\n }\n }\n }\n\n if (expression === undefined) {\n expression = exp.slice(0, i).trim();\n } else if (lastFilterIndex !== 0) {\n pushFilter();\n }\n\n function pushFilter () {\n (filters || (filters = [])).push(exp.slice(lastFilterIndex, i).trim());\n lastFilterIndex = i + 1;\n }\n\n if (filters) {\n for (i = 0; i < filters.length; i++) {\n expression = wrapFilter(expression, filters[i]);\n }\n }\n\n return expression\n}\n\nfunction wrapFilter (exp, filter) {\n var i = filter.indexOf('(');\n if (i < 0) {\n // _f: resolveFilter\n return (\"_f(\\\"\" + filter + \"\\\")(\" + exp + \")\")\n } else {\n var name = filter.slice(0, i);\n var args = filter.slice(i + 1);\n return (\"_f(\\\"\" + name + \"\\\")(\" + exp + (args !== ')' ? ',' + args : args))\n }\n}\n\n/* */\n\nfunction baseWarn (msg) {\n console.error((\"[Vue compiler]: \" + msg));\n}\n\nfunction pluckModuleFunction (\n modules,\n key\n) {\n return modules\n ? modules.map(function (m) { return m[key]; }).filter(function (_) { return _; })\n : []\n}\n\nfunction addProp (el, name, value) {\n (el.props || (el.props = [])).push({ name: name, value: value });\n el.plain = false;\n}\n\nfunction addAttr (el, name, value) {\n (el.attrs || (el.attrs = [])).push({ name: name, value: value });\n el.plain = false;\n}\n\n// add a raw attr (use this in preTransforms)\nfunction addRawAttr (el, name, value) {\n el.attrsMap[name] = value;\n el.attrsList.push({ name: name, value: value });\n}\n\nfunction addDirective (\n el,\n name,\n rawName,\n value,\n arg,\n modifiers\n) {\n (el.directives || (el.directives = [])).push({ name: name, rawName: rawName, value: value, arg: arg, modifiers: modifiers });\n el.plain = false;\n}\n\nfunction addHandler (\n el,\n name,\n value,\n modifiers,\n important,\n warn\n) {\n modifiers = modifiers || emptyObject;\n // warn prevent and passive modifier\n /* istanbul ignore if */\n if (\n process.env.NODE_ENV !== 'production' && warn &&\n modifiers.prevent && modifiers.passive\n ) {\n warn(\n 'passive and prevent can\\'t be used together. ' +\n 'Passive handler can\\'t prevent default event.'\n );\n }\n\n // check capture modifier\n if (modifiers.capture) {\n delete modifiers.capture;\n name = '!' + name; // mark the event as captured\n }\n if (modifiers.once) {\n delete modifiers.once;\n name = '~' + name; // mark the event as once\n }\n /* istanbul ignore if */\n if (modifiers.passive) {\n delete modifiers.passive;\n name = '&' + name; // mark the event as passive\n }\n\n // normalize click.right and click.middle since they don't actually fire\n // this is technically browser-specific, but at least for now browsers are\n // the only target envs that have right/middle clicks.\n if (name === 'click') {\n if (modifiers.right) {\n name = 'contextmenu';\n delete modifiers.right;\n } else if (modifiers.middle) {\n name = 'mouseup';\n }\n }\n\n var events;\n if (modifiers.native) {\n delete modifiers.native;\n events = el.nativeEvents || (el.nativeEvents = {});\n } else {\n events = el.events || (el.events = {});\n }\n\n var newHandler = {\n value: value.trim()\n };\n if (modifiers !== emptyObject) {\n newHandler.modifiers = modifiers;\n }\n\n var handlers = events[name];\n /* istanbul ignore if */\n if (Array.isArray(handlers)) {\n important ? handlers.unshift(newHandler) : handlers.push(newHandler);\n } else if (handlers) {\n events[name] = important ? [newHandler, handlers] : [handlers, newHandler];\n } else {\n events[name] = newHandler;\n }\n\n el.plain = false;\n}\n\nfunction getBindingAttr (\n el,\n name,\n getStatic\n) {\n var dynamicValue =\n getAndRemoveAttr(el, ':' + name) ||\n getAndRemoveAttr(el, 'v-bind:' + name);\n if (dynamicValue != null) {\n return parseFilters(dynamicValue)\n } else if (getStatic !== false) {\n var staticValue = getAndRemoveAttr(el, name);\n if (staticValue != null) {\n return JSON.stringify(staticValue)\n }\n }\n}\n\n// note: this only removes the attr from the Array (attrsList) so that it\n// doesn't get processed by processAttrs.\n// By default it does NOT remove it from the map (attrsMap) because the map is\n// needed during codegen.\nfunction getAndRemoveAttr (\n el,\n name,\n removeFromMap\n) {\n var val;\n if ((val = el.attrsMap[name]) != null) {\n var list = el.attrsList;\n for (var i = 0, l = list.length; i < l; i++) {\n if (list[i].name === name) {\n list.splice(i, 1);\n break\n }\n }\n }\n if (removeFromMap) {\n delete el.attrsMap[name];\n }\n return val\n}\n\n/* */\n\n/**\n * Cross-platform code generation for component v-model\n */\nfunction genComponentModel (\n el,\n value,\n modifiers\n) {\n var ref = modifiers || {};\n var number = ref.number;\n var trim = ref.trim;\n\n var baseValueExpression = '$$v';\n var valueExpression = baseValueExpression;\n if (trim) {\n valueExpression =\n \"(typeof \" + baseValueExpression + \" === 'string'\" +\n \"? \" + baseValueExpression + \".trim()\" +\n \": \" + baseValueExpression + \")\";\n }\n if (number) {\n valueExpression = \"_n(\" + valueExpression + \")\";\n }\n var assignment = genAssignmentCode(value, valueExpression);\n\n el.model = {\n value: (\"(\" + value + \")\"),\n expression: (\"\\\"\" + value + \"\\\"\"),\n callback: (\"function (\" + baseValueExpression + \") {\" + assignment + \"}\")\n };\n}\n\n/**\n * Cross-platform codegen helper for generating v-model value assignment code.\n */\nfunction genAssignmentCode (\n value,\n assignment\n) {\n var res = parseModel(value);\n if (res.key === null) {\n return (value + \"=\" + assignment)\n } else {\n return (\"$set(\" + (res.exp) + \", \" + (res.key) + \", \" + assignment + \")\")\n }\n}\n\n/**\n * Parse a v-model expression into a base path and a final key segment.\n * Handles both dot-path and possible square brackets.\n *\n * Possible cases:\n *\n * - test\n * - test[key]\n * - test[test1[key]]\n * - test[\"a\"][key]\n * - xxx.test[a[a].test1[key]]\n * - test.xxx.a[\"asa\"][test1[key]]\n *\n */\n\nvar len;\nvar str;\nvar chr;\nvar index$1;\nvar expressionPos;\nvar expressionEndPos;\n\n\n\nfunction parseModel (val) {\n // Fix https://github.com/vuejs/vue/pull/7730\n // allow v-model=\"obj.val \" (trailing whitespace)\n val = val.trim();\n len = val.length;\n\n if (val.indexOf('[') < 0 || val.lastIndexOf(']') < len - 1) {\n index$1 = val.lastIndexOf('.');\n if (index$1 > -1) {\n return {\n exp: val.slice(0, index$1),\n key: '\"' + val.slice(index$1 + 1) + '\"'\n }\n } else {\n return {\n exp: val,\n key: null\n }\n }\n }\n\n str = val;\n index$1 = expressionPos = expressionEndPos = 0;\n\n while (!eof()) {\n chr = next();\n /* istanbul ignore if */\n if (isStringStart(chr)) {\n parseString(chr);\n } else if (chr === 0x5B) {\n parseBracket(chr);\n }\n }\n\n return {\n exp: val.slice(0, expressionPos),\n key: val.slice(expressionPos + 1, expressionEndPos)\n }\n}\n\nfunction next () {\n return str.charCodeAt(++index$1)\n}\n\nfunction eof () {\n return index$1 >= len\n}\n\nfunction isStringStart (chr) {\n return chr === 0x22 || chr === 0x27\n}\n\nfunction parseBracket (chr) {\n var inBracket = 1;\n expressionPos = index$1;\n while (!eof()) {\n chr = next();\n if (isStringStart(chr)) {\n parseString(chr);\n continue\n }\n if (chr === 0x5B) { inBracket++; }\n if (chr === 0x5D) { inBracket--; }\n if (inBracket === 0) {\n expressionEndPos = index$1;\n break\n }\n }\n}\n\nfunction parseString (chr) {\n var stringQuote = chr;\n while (!eof()) {\n chr = next();\n if (chr === stringQuote) {\n break\n }\n }\n}\n\n/* */\n\nvar warn$1;\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\nfunction model (\n el,\n dir,\n _warn\n) {\n warn$1 = _warn;\n var value = dir.value;\n var modifiers = dir.modifiers;\n var tag = el.tag;\n var type = el.attrsMap.type;\n\n if (process.env.NODE_ENV !== 'production') {\n // inputs with type=\"file\" are read only and setting the input's\n // value will throw an error.\n if (tag === 'input' && type === 'file') {\n warn$1(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\" type=\\\"file\\\">:\\n\" +\n \"File inputs are read only. Use a v-on:change listener instead.\"\n );\n }\n }\n\n if (el.component) {\n genComponentModel(el, value, modifiers);\n // component v-model doesn't need extra runtime\n return false\n } else if (tag === 'select') {\n genSelect(el, value, modifiers);\n } else if (tag === 'input' && type === 'checkbox') {\n genCheckboxModel(el, value, modifiers);\n } else if (tag === 'input' && type === 'radio') {\n genRadioModel(el, value, modifiers);\n } else if (tag === 'input' || tag === 'textarea') {\n genDefaultModel(el, value, modifiers);\n } else if (!config.isReservedTag(tag)) {\n genComponentModel(el, value, modifiers);\n // component v-model doesn't need extra runtime\n return false\n } else if (process.env.NODE_ENV !== 'production') {\n warn$1(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\">: \" +\n \"v-model is not supported on this element type. \" +\n 'If you are working with contenteditable, it\\'s recommended to ' +\n 'wrap a library dedicated for that purpose inside a custom component.'\n );\n }\n\n // ensure runtime directive metadata\n return true\n}\n\nfunction genCheckboxModel (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var valueBinding = getBindingAttr(el, 'value') || 'null';\n var trueValueBinding = getBindingAttr(el, 'true-value') || 'true';\n var falseValueBinding = getBindingAttr(el, 'false-value') || 'false';\n addProp(el, 'checked',\n \"Array.isArray(\" + value + \")\" +\n \"?_i(\" + value + \",\" + valueBinding + \")>-1\" + (\n trueValueBinding === 'true'\n ? (\":(\" + value + \")\")\n : (\":_q(\" + value + \",\" + trueValueBinding + \")\")\n )\n );\n addHandler(el, 'change',\n \"var $$a=\" + value + \",\" +\n '$$el=$event.target,' +\n \"$$c=$$el.checked?(\" + trueValueBinding + \"):(\" + falseValueBinding + \");\" +\n 'if(Array.isArray($$a)){' +\n \"var $$v=\" + (number ? '_n(' + valueBinding + ')' : valueBinding) + \",\" +\n '$$i=_i($$a,$$v);' +\n \"if($$el.checked){$$i<0&&(\" + (genAssignmentCode(value, '$$a.concat([$$v])')) + \")}\" +\n \"else{$$i>-1&&(\" + (genAssignmentCode(value, '$$a.slice(0,$$i).concat($$a.slice($$i+1))')) + \")}\" +\n \"}else{\" + (genAssignmentCode(value, '$$c')) + \"}\",\n null, true\n );\n}\n\nfunction genRadioModel (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var valueBinding = getBindingAttr(el, 'value') || 'null';\n valueBinding = number ? (\"_n(\" + valueBinding + \")\") : valueBinding;\n addProp(el, 'checked', (\"_q(\" + value + \",\" + valueBinding + \")\"));\n addHandler(el, 'change', genAssignmentCode(value, valueBinding), null, true);\n}\n\nfunction genSelect (\n el,\n value,\n modifiers\n) {\n var number = modifiers && modifiers.number;\n var selectedVal = \"Array.prototype.filter\" +\n \".call($event.target.options,function(o){return o.selected})\" +\n \".map(function(o){var val = \\\"_value\\\" in o ? o._value : o.value;\" +\n \"return \" + (number ? '_n(val)' : 'val') + \"})\";\n\n var assignment = '$event.target.multiple ? $$selectedVal : $$selectedVal[0]';\n var code = \"var $$selectedVal = \" + selectedVal + \";\";\n code = code + \" \" + (genAssignmentCode(value, assignment));\n addHandler(el, 'change', code, null, true);\n}\n\nfunction genDefaultModel (\n el,\n value,\n modifiers\n) {\n var type = el.attrsMap.type;\n\n // warn if v-bind:value conflicts with v-model\n // except for inputs with v-bind:type\n if (process.env.NODE_ENV !== 'production') {\n var value$1 = el.attrsMap['v-bind:value'] || el.attrsMap[':value'];\n var typeBinding = el.attrsMap['v-bind:type'] || el.attrsMap[':type'];\n if (value$1 && !typeBinding) {\n var binding = el.attrsMap['v-bind:value'] ? 'v-bind:value' : ':value';\n warn$1(\n binding + \"=\\\"\" + value$1 + \"\\\" conflicts with v-model on the same element \" +\n 'because the latter already expands to a value binding internally'\n );\n }\n }\n\n var ref = modifiers || {};\n var lazy = ref.lazy;\n var number = ref.number;\n var trim = ref.trim;\n var needCompositionGuard = !lazy && type !== 'range';\n var event = lazy\n ? 'change'\n : type === 'range'\n ? RANGE_TOKEN\n : 'input';\n\n var valueExpression = '$event.target.value';\n if (trim) {\n valueExpression = \"$event.target.value.trim()\";\n }\n if (number) {\n valueExpression = \"_n(\" + valueExpression + \")\";\n }\n\n var code = genAssignmentCode(value, valueExpression);\n if (needCompositionGuard) {\n code = \"if($event.target.composing)return;\" + code;\n }\n\n addProp(el, 'value', (\"(\" + value + \")\"));\n addHandler(el, event, code, null, true);\n if (trim || number) {\n addHandler(el, 'blur', '$forceUpdate()');\n }\n}\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler (handler, event, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\nfunction add$1 (\n event,\n handler,\n once$$1,\n capture,\n passive\n) {\n handler = withMacroTask(handler);\n if (once$$1) { handler = createOnceHandler(handler, event, capture); }\n target$1.addEventListener(\n event,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n event,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n event,\n handler._withTask || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n}\n\n/* */\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (isUndef(props[key])) {\n elm[key] = '';\n }\n }\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else {\n elm[key] = cur;\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.lazy) {\n // inputs with lazy should only be updated when not in focus\n return false\n }\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n}\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(name, val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n}\n\n/* */\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def) {\n if (!def) {\n return\n }\n /* istanbul ignore else */\n if (typeof def === 'object') {\n var res = {};\n if (def.css !== false) {\n extend(res, autoCssTransition(def.name || 'v'));\n }\n extend(res, def);\n return res\n } else if (typeof def === 'string') {\n return autoCssTransition(def)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n var transitionDelays = styles[transitionProp + 'Delay'].split(', ');\n var transitionDurations = styles[transitionProp + 'Duration'].split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = styles[animationProp + 'Delay'].split(', ');\n var animationDurations = styles[animationProp + 'Duration'].split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\nfunction toMs (s) {\n return Number(s.slice(0, -1)) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n transitionNode = transitionNode.parent;\n context = transitionNode.context;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {}\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n]\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n}\n\nvar platformDirectives = {\n model: directive,\n show: show\n}\n\n/* */\n\n// Provides transition support for a single element/component.\n// supports transition mode (out-in / in-out)\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(function (c) { return c.tag || isAsyncPlaceholder(c); });\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(function (d) { return d.name === 'show'; })) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n}\n\n/* */\n\n// Provides transition support for list items.\n// supports move transitions using the FLIP technique.\n\n// Because the vdom's children update algorithm is \"unstable\" - i.e.\n// it doesn't guarantee the relative positioning of removed elements,\n// we force transition-group to update its children into two passes:\n// in the first pass, we remove all nodes that need to be removed,\n// triggering their leaving transition; in the second pass, we insert/move\n// into the final desired state. This way in the second pass removed\n// nodes will remain where they should be.\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n beforeUpdate: function beforeUpdate () {\n // force removing pass\n this.__patch__(\n this._vnode,\n this.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this._vnode = this.kept;\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n}\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n}\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n isChrome\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nvar defaultTagRE = /\\{\\{((?:.|\\n)+?)\\}\\}/g;\nvar regexEscapeRE = /[-.*+?^${}()|[\\]\\/\\\\]/g;\n\nvar buildRegex = cached(function (delimiters) {\n var open = delimiters[0].replace(regexEscapeRE, '\\\\$&');\n var close = delimiters[1].replace(regexEscapeRE, '\\\\$&');\n return new RegExp(open + '((?:.|\\\\n)+?)' + close, 'g')\n});\n\n\n\nfunction parseText (\n text,\n delimiters\n) {\n var tagRE = delimiters ? buildRegex(delimiters) : defaultTagRE;\n if (!tagRE.test(text)) {\n return\n }\n var tokens = [];\n var rawTokens = [];\n var lastIndex = tagRE.lastIndex = 0;\n var match, index, tokenValue;\n while ((match = tagRE.exec(text))) {\n index = match.index;\n // push text token\n if (index > lastIndex) {\n rawTokens.push(tokenValue = text.slice(lastIndex, index));\n tokens.push(JSON.stringify(tokenValue));\n }\n // tag token\n var exp = parseFilters(match[1].trim());\n tokens.push((\"_s(\" + exp + \")\"));\n rawTokens.push({ '@binding': exp });\n lastIndex = index + match[0].length;\n }\n if (lastIndex < text.length) {\n rawTokens.push(tokenValue = text.slice(lastIndex));\n tokens.push(JSON.stringify(tokenValue));\n }\n return {\n expression: tokens.join('+'),\n tokens: rawTokens\n }\n}\n\n/* */\n\nfunction transformNode (el, options) {\n var warn = options.warn || baseWarn;\n var staticClass = getAndRemoveAttr(el, 'class');\n if (process.env.NODE_ENV !== 'production' && staticClass) {\n var res = parseText(staticClass, options.delimiters);\n if (res) {\n warn(\n \"class=\\\"\" + staticClass + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div class=\"{{ val }}\">, use <div :class=\"val\">.'\n );\n }\n }\n if (staticClass) {\n el.staticClass = JSON.stringify(staticClass);\n }\n var classBinding = getBindingAttr(el, 'class', false /* getStatic */);\n if (classBinding) {\n el.classBinding = classBinding;\n }\n}\n\nfunction genData (el) {\n var data = '';\n if (el.staticClass) {\n data += \"staticClass:\" + (el.staticClass) + \",\";\n }\n if (el.classBinding) {\n data += \"class:\" + (el.classBinding) + \",\";\n }\n return data\n}\n\nvar klass$1 = {\n staticKeys: ['staticClass'],\n transformNode: transformNode,\n genData: genData\n}\n\n/* */\n\nfunction transformNode$1 (el, options) {\n var warn = options.warn || baseWarn;\n var staticStyle = getAndRemoveAttr(el, 'style');\n if (staticStyle) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n var res = parseText(staticStyle, options.delimiters);\n if (res) {\n warn(\n \"style=\\\"\" + staticStyle + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div style=\"{{ val }}\">, use <div :style=\"val\">.'\n );\n }\n }\n el.staticStyle = JSON.stringify(parseStyleText(staticStyle));\n }\n\n var styleBinding = getBindingAttr(el, 'style', false /* getStatic */);\n if (styleBinding) {\n el.styleBinding = styleBinding;\n }\n}\n\nfunction genData$1 (el) {\n var data = '';\n if (el.staticStyle) {\n data += \"staticStyle:\" + (el.staticStyle) + \",\";\n }\n if (el.styleBinding) {\n data += \"style:(\" + (el.styleBinding) + \"),\";\n }\n return data\n}\n\nvar style$1 = {\n staticKeys: ['staticStyle'],\n transformNode: transformNode$1,\n genData: genData$1\n}\n\n/* */\n\nvar decoder;\n\nvar he = {\n decode: function decode (html) {\n decoder = decoder || document.createElement('div');\n decoder.innerHTML = html;\n return decoder.textContent\n }\n}\n\n/* */\n\nvar isUnaryTag = makeMap(\n 'area,base,br,col,embed,frame,hr,img,input,isindex,keygen,' +\n 'link,meta,param,source,track,wbr'\n);\n\n// Elements that you can, intentionally, leave open\n// (and which close themselves)\nvar canBeLeftOpenTag = makeMap(\n 'colgroup,dd,dt,li,options,p,td,tfoot,th,thead,tr,source'\n);\n\n// HTML5 tags https://html.spec.whatwg.org/multipage/indices.html#elements-3\n// Phrasing Content https://html.spec.whatwg.org/multipage/dom.html#phrasing-content\nvar isNonPhrasingTag = makeMap(\n 'address,article,aside,base,blockquote,body,caption,col,colgroup,dd,' +\n 'details,dialog,div,dl,dt,fieldset,figcaption,figure,footer,form,' +\n 'h1,h2,h3,h4,h5,h6,head,header,hgroup,hr,html,legend,li,menuitem,meta,' +\n 'optgroup,option,param,rp,rt,source,style,summary,tbody,td,tfoot,th,thead,' +\n 'title,tr,track'\n);\n\n/**\n * Not type-checking this file because it's mostly vendor code.\n */\n\n/*!\n * HTML Parser By John Resig (ejohn.org)\n * Modified by Juriy \"kangax\" Zaytsev\n * Original code by Erik Arvidsson, Mozilla Public License\n * http://erik.eae.net/simplehtmlparser/simplehtmlparser.js\n */\n\n// Regular Expressions for parsing tags and attributes\nvar attribute = /^\\s*([^\\s\"'<>\\/=]+)(?:\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/;\n// could use https://www.w3.org/TR/1999/REC-xml-names-19990114/#NT-QName\n// but for Vue templates we can enforce a simple charset\nvar ncname = '[a-zA-Z_][\\\\w\\\\-\\\\.]*';\nvar qnameCapture = \"((?:\" + ncname + \"\\\\:)?\" + ncname + \")\";\nvar startTagOpen = new RegExp((\"^<\" + qnameCapture));\nvar startTagClose = /^\\s*(\\/?)>/;\nvar endTag = new RegExp((\"^<\\\\/\" + qnameCapture + \"[^>]*>\"));\nvar doctype = /^<!DOCTYPE [^>]+>/i;\n// #7298: escape - to avoid being pased as HTML comment when inlined in page\nvar comment = /^<!\\--/;\nvar conditionalComment = /^<!\\[/;\n\nvar IS_REGEX_CAPTURING_BROKEN = false;\n'x'.replace(/x(.)?/g, function (m, g) {\n IS_REGEX_CAPTURING_BROKEN = g === '';\n});\n\n// Special Elements (can contain anything)\nvar isPlainTextElement = makeMap('script,style,textarea', true);\nvar reCache = {};\n\nvar decodingMap = {\n '<': '<',\n '>': '>',\n '"': '\"',\n '&': '&',\n ' ': '\\n',\n '	': '\\t'\n};\nvar encodedAttr = /&(?:lt|gt|quot|amp);/g;\nvar encodedAttrWithNewLines = /&(?:lt|gt|quot|amp|#10|#9);/g;\n\n// #5992\nvar isIgnoreNewlineTag = makeMap('pre,textarea', true);\nvar shouldIgnoreFirstNewline = function (tag, html) { return tag && isIgnoreNewlineTag(tag) && html[0] === '\\n'; };\n\nfunction decodeAttr (value, shouldDecodeNewlines) {\n var re = shouldDecodeNewlines ? encodedAttrWithNewLines : encodedAttr;\n return value.replace(re, function (match) { return decodingMap[match]; })\n}\n\nfunction parseHTML (html, options) {\n var stack = [];\n var expectHTML = options.expectHTML;\n var isUnaryTag$$1 = options.isUnaryTag || no;\n var canBeLeftOpenTag$$1 = options.canBeLeftOpenTag || no;\n var index = 0;\n var last, lastTag;\n while (html) {\n last = html;\n // Make sure we're not in a plaintext content element like script/style\n if (!lastTag || !isPlainTextElement(lastTag)) {\n var textEnd = html.indexOf('<');\n if (textEnd === 0) {\n // Comment:\n if (comment.test(html)) {\n var commentEnd = html.indexOf('-->');\n\n if (commentEnd >= 0) {\n if (options.shouldKeepComment) {\n options.comment(html.substring(4, commentEnd));\n }\n advance(commentEnd + 3);\n continue\n }\n }\n\n // http://en.wikipedia.org/wiki/Conditional_comment#Downlevel-revealed_conditional_comment\n if (conditionalComment.test(html)) {\n var conditionalEnd = html.indexOf(']>');\n\n if (conditionalEnd >= 0) {\n advance(conditionalEnd + 2);\n continue\n }\n }\n\n // Doctype:\n var doctypeMatch = html.match(doctype);\n if (doctypeMatch) {\n advance(doctypeMatch[0].length);\n continue\n }\n\n // End tag:\n var endTagMatch = html.match(endTag);\n if (endTagMatch) {\n var curIndex = index;\n advance(endTagMatch[0].length);\n parseEndTag(endTagMatch[1], curIndex, index);\n continue\n }\n\n // Start tag:\n var startTagMatch = parseStartTag();\n if (startTagMatch) {\n handleStartTag(startTagMatch);\n if (shouldIgnoreFirstNewline(lastTag, html)) {\n advance(1);\n }\n continue\n }\n }\n\n var text = (void 0), rest = (void 0), next = (void 0);\n if (textEnd >= 0) {\n rest = html.slice(textEnd);\n while (\n !endTag.test(rest) &&\n !startTagOpen.test(rest) &&\n !comment.test(rest) &&\n !conditionalComment.test(rest)\n ) {\n // < in plain text, be forgiving and treat it as text\n next = rest.indexOf('<', 1);\n if (next < 0) { break }\n textEnd += next;\n rest = html.slice(textEnd);\n }\n text = html.substring(0, textEnd);\n advance(textEnd);\n }\n\n if (textEnd < 0) {\n text = html;\n html = '';\n }\n\n if (options.chars && text) {\n options.chars(text);\n }\n } else {\n var endTagLength = 0;\n var stackedTag = lastTag.toLowerCase();\n var reStackedTag = reCache[stackedTag] || (reCache[stackedTag] = new RegExp('([\\\\s\\\\S]*?)(</' + stackedTag + '[^>]*>)', 'i'));\n var rest$1 = html.replace(reStackedTag, function (all, text, endTag) {\n endTagLength = endTag.length;\n if (!isPlainTextElement(stackedTag) && stackedTag !== 'noscript') {\n text = text\n .replace(/<!\\--([\\s\\S]*?)-->/g, '$1') // #7298\n .replace(/<!\\[CDATA\\[([\\s\\S]*?)]]>/g, '$1');\n }\n if (shouldIgnoreFirstNewline(stackedTag, text)) {\n text = text.slice(1);\n }\n if (options.chars) {\n options.chars(text);\n }\n return ''\n });\n index += html.length - rest$1.length;\n html = rest$1;\n parseEndTag(stackedTag, index - endTagLength, index);\n }\n\n if (html === last) {\n options.chars && options.chars(html);\n if (process.env.NODE_ENV !== 'production' && !stack.length && options.warn) {\n options.warn((\"Mal-formatted tag at end of template: \\\"\" + html + \"\\\"\"));\n }\n break\n }\n }\n\n // Clean up any remaining tags\n parseEndTag();\n\n function advance (n) {\n index += n;\n html = html.substring(n);\n }\n\n function parseStartTag () {\n var start = html.match(startTagOpen);\n if (start) {\n var match = {\n tagName: start[1],\n attrs: [],\n start: index\n };\n advance(start[0].length);\n var end, attr;\n while (!(end = html.match(startTagClose)) && (attr = html.match(attribute))) {\n advance(attr[0].length);\n match.attrs.push(attr);\n }\n if (end) {\n match.unarySlash = end[1];\n advance(end[0].length);\n match.end = index;\n return match\n }\n }\n }\n\n function handleStartTag (match) {\n var tagName = match.tagName;\n var unarySlash = match.unarySlash;\n\n if (expectHTML) {\n if (lastTag === 'p' && isNonPhrasingTag(tagName)) {\n parseEndTag(lastTag);\n }\n if (canBeLeftOpenTag$$1(tagName) && lastTag === tagName) {\n parseEndTag(tagName);\n }\n }\n\n var unary = isUnaryTag$$1(tagName) || !!unarySlash;\n\n var l = match.attrs.length;\n var attrs = new Array(l);\n for (var i = 0; i < l; i++) {\n var args = match.attrs[i];\n // hackish work around FF bug https://bugzilla.mozilla.org/show_bug.cgi?id=369778\n if (IS_REGEX_CAPTURING_BROKEN && args[0].indexOf('\"\"') === -1) {\n if (args[3] === '') { delete args[3]; }\n if (args[4] === '') { delete args[4]; }\n if (args[5] === '') { delete args[5]; }\n }\n var value = args[3] || args[4] || args[5] || '';\n var shouldDecodeNewlines = tagName === 'a' && args[1] === 'href'\n ? options.shouldDecodeNewlinesForHref\n : options.shouldDecodeNewlines;\n attrs[i] = {\n name: args[1],\n value: decodeAttr(value, shouldDecodeNewlines)\n };\n }\n\n if (!unary) {\n stack.push({ tag: tagName, lowerCasedTag: tagName.toLowerCase(), attrs: attrs });\n lastTag = tagName;\n }\n\n if (options.start) {\n options.start(tagName, attrs, unary, match.start, match.end);\n }\n }\n\n function parseEndTag (tagName, start, end) {\n var pos, lowerCasedTagName;\n if (start == null) { start = index; }\n if (end == null) { end = index; }\n\n if (tagName) {\n lowerCasedTagName = tagName.toLowerCase();\n }\n\n // Find the closest opened tag of the same type\n if (tagName) {\n for (pos = stack.length - 1; pos >= 0; pos--) {\n if (stack[pos].lowerCasedTag === lowerCasedTagName) {\n break\n }\n }\n } else {\n // If no tag name is provided, clean shop\n pos = 0;\n }\n\n if (pos >= 0) {\n // Close all the open elements, up the stack\n for (var i = stack.length - 1; i >= pos; i--) {\n if (process.env.NODE_ENV !== 'production' &&\n (i > pos || !tagName) &&\n options.warn\n ) {\n options.warn(\n (\"tag <\" + (stack[i].tag) + \"> has no matching end tag.\")\n );\n }\n if (options.end) {\n options.end(stack[i].tag, start, end);\n }\n }\n\n // Remove the open elements from the stack\n stack.length = pos;\n lastTag = pos && stack[pos - 1].tag;\n } else if (lowerCasedTagName === 'br') {\n if (options.start) {\n options.start(tagName, [], true, start, end);\n }\n } else if (lowerCasedTagName === 'p') {\n if (options.start) {\n options.start(tagName, [], false, start, end);\n }\n if (options.end) {\n options.end(tagName, start, end);\n }\n }\n }\n}\n\n/* */\n\nvar onRE = /^@|^v-on:/;\nvar dirRE = /^v-|^@|^:/;\nvar forAliasRE = /([^]*?)\\s+(?:in|of)\\s+([^]*)/;\nvar forIteratorRE = /,([^,\\}\\]]*)(?:,([^,\\}\\]]*))?$/;\nvar stripParensRE = /^\\(|\\)$/g;\n\nvar argRE = /:(.*)$/;\nvar bindRE = /^:|^v-bind:/;\nvar modifierRE = /\\.[^.]+/g;\n\nvar decodeHTMLCached = cached(he.decode);\n\n// configurable state\nvar warn$2;\nvar delimiters;\nvar transforms;\nvar preTransforms;\nvar postTransforms;\nvar platformIsPreTag;\nvar platformMustUseProp;\nvar platformGetTagNamespace;\n\n\n\nfunction createASTElement (\n tag,\n attrs,\n parent\n) {\n return {\n type: 1,\n tag: tag,\n attrsList: attrs,\n attrsMap: makeAttrsMap(attrs),\n parent: parent,\n children: []\n }\n}\n\n/**\n * Convert HTML string to AST.\n */\nfunction parse (\n template,\n options\n) {\n warn$2 = options.warn || baseWarn;\n\n platformIsPreTag = options.isPreTag || no;\n platformMustUseProp = options.mustUseProp || no;\n platformGetTagNamespace = options.getTagNamespace || no;\n\n transforms = pluckModuleFunction(options.modules, 'transformNode');\n preTransforms = pluckModuleFunction(options.modules, 'preTransformNode');\n postTransforms = pluckModuleFunction(options.modules, 'postTransformNode');\n\n delimiters = options.delimiters;\n\n var stack = [];\n var preserveWhitespace = options.preserveWhitespace !== false;\n var root;\n var currentParent;\n var inVPre = false;\n var inPre = false;\n var warned = false;\n\n function warnOnce (msg) {\n if (!warned) {\n warned = true;\n warn$2(msg);\n }\n }\n\n function closeElement (element) {\n // check pre state\n if (element.pre) {\n inVPre = false;\n }\n if (platformIsPreTag(element.tag)) {\n inPre = false;\n }\n // apply post-transforms\n for (var i = 0; i < postTransforms.length; i++) {\n postTransforms[i](element, options);\n }\n }\n\n parseHTML(template, {\n warn: warn$2,\n expectHTML: options.expectHTML,\n isUnaryTag: options.isUnaryTag,\n canBeLeftOpenTag: options.canBeLeftOpenTag,\n shouldDecodeNewlines: options.shouldDecodeNewlines,\n shouldDecodeNewlinesForHref: options.shouldDecodeNewlinesForHref,\n shouldKeepComment: options.comments,\n start: function start (tag, attrs, unary) {\n // check namespace.\n // inherit parent ns if there is one\n var ns = (currentParent && currentParent.ns) || platformGetTagNamespace(tag);\n\n // handle IE svg bug\n /* istanbul ignore if */\n if (isIE && ns === 'svg') {\n attrs = guardIESVGBug(attrs);\n }\n\n var element = createASTElement(tag, attrs, currentParent);\n if (ns) {\n element.ns = ns;\n }\n\n if (isForbiddenTag(element) && !isServerRendering()) {\n element.forbidden = true;\n process.env.NODE_ENV !== 'production' && warn$2(\n 'Templates should only be responsible for mapping the state to the ' +\n 'UI. Avoid placing tags with side-effects in your templates, such as ' +\n \"<\" + tag + \">\" + ', as they will not be parsed.'\n );\n }\n\n // apply pre-transforms\n for (var i = 0; i < preTransforms.length; i++) {\n element = preTransforms[i](element, options) || element;\n }\n\n if (!inVPre) {\n processPre(element);\n if (element.pre) {\n inVPre = true;\n }\n }\n if (platformIsPreTag(element.tag)) {\n inPre = true;\n }\n if (inVPre) {\n processRawAttrs(element);\n } else if (!element.processed) {\n // structural directives\n processFor(element);\n processIf(element);\n processOnce(element);\n // element-scope stuff\n processElement(element, options);\n }\n\n function checkRootConstraints (el) {\n if (process.env.NODE_ENV !== 'production') {\n if (el.tag === 'slot' || el.tag === 'template') {\n warnOnce(\n \"Cannot use <\" + (el.tag) + \"> as component root element because it may \" +\n 'contain multiple nodes.'\n );\n }\n if (el.attrsMap.hasOwnProperty('v-for')) {\n warnOnce(\n 'Cannot use v-for on stateful component root element because ' +\n 'it renders multiple elements.'\n );\n }\n }\n }\n\n // tree management\n if (!root) {\n root = element;\n checkRootConstraints(root);\n } else if (!stack.length) {\n // allow root elements with v-if, v-else-if and v-else\n if (root.if && (element.elseif || element.else)) {\n checkRootConstraints(element);\n addIfCondition(root, {\n exp: element.elseif,\n block: element\n });\n } else if (process.env.NODE_ENV !== 'production') {\n warnOnce(\n \"Component template should contain exactly one root element. \" +\n \"If you are using v-if on multiple elements, \" +\n \"use v-else-if to chain them instead.\"\n );\n }\n }\n if (currentParent && !element.forbidden) {\n if (element.elseif || element.else) {\n processIfConditions(element, currentParent);\n } else if (element.slotScope) { // scoped slot\n currentParent.plain = false;\n var name = element.slotTarget || '\"default\"';(currentParent.scopedSlots || (currentParent.scopedSlots = {}))[name] = element;\n } else {\n currentParent.children.push(element);\n element.parent = currentParent;\n }\n }\n if (!unary) {\n currentParent = element;\n stack.push(element);\n } else {\n closeElement(element);\n }\n },\n\n end: function end () {\n // remove trailing whitespace\n var element = stack[stack.length - 1];\n var lastNode = element.children[element.children.length - 1];\n if (lastNode && lastNode.type === 3 && lastNode.text === ' ' && !inPre) {\n element.children.pop();\n }\n // pop stack\n stack.length -= 1;\n currentParent = stack[stack.length - 1];\n closeElement(element);\n },\n\n chars: function chars (text) {\n if (!currentParent) {\n if (process.env.NODE_ENV !== 'production') {\n if (text === template) {\n warnOnce(\n 'Component template requires a root element, rather than just text.'\n );\n } else if ((text = text.trim())) {\n warnOnce(\n (\"text \\\"\" + text + \"\\\" outside root element will be ignored.\")\n );\n }\n }\n return\n }\n // IE textarea placeholder bug\n /* istanbul ignore if */\n if (isIE &&\n currentParent.tag === 'textarea' &&\n currentParent.attrsMap.placeholder === text\n ) {\n return\n }\n var children = currentParent.children;\n text = inPre || text.trim()\n ? isTextTag(currentParent) ? text : decodeHTMLCached(text)\n // only preserve whitespace if its not right after a starting tag\n : preserveWhitespace && children.length ? ' ' : '';\n if (text) {\n var res;\n if (!inVPre && text !== ' ' && (res = parseText(text, delimiters))) {\n children.push({\n type: 2,\n expression: res.expression,\n tokens: res.tokens,\n text: text\n });\n } else if (text !== ' ' || !children.length || children[children.length - 1].text !== ' ') {\n children.push({\n type: 3,\n text: text\n });\n }\n }\n },\n comment: function comment (text) {\n currentParent.children.push({\n type: 3,\n text: text,\n isComment: true\n });\n }\n });\n return root\n}\n\nfunction processPre (el) {\n if (getAndRemoveAttr(el, 'v-pre') != null) {\n el.pre = true;\n }\n}\n\nfunction processRawAttrs (el) {\n var l = el.attrsList.length;\n if (l) {\n var attrs = el.attrs = new Array(l);\n for (var i = 0; i < l; i++) {\n attrs[i] = {\n name: el.attrsList[i].name,\n value: JSON.stringify(el.attrsList[i].value)\n };\n }\n } else if (!el.pre) {\n // non root node in pre blocks with no attributes\n el.plain = true;\n }\n}\n\nfunction processElement (element, options) {\n processKey(element);\n\n // determine whether this is a plain element after\n // removing structural attributes\n element.plain = !element.key && !element.attrsList.length;\n\n processRef(element);\n processSlot(element);\n processComponent(element);\n for (var i = 0; i < transforms.length; i++) {\n element = transforms[i](element, options) || element;\n }\n processAttrs(element);\n}\n\nfunction processKey (el) {\n var exp = getBindingAttr(el, 'key');\n if (exp) {\n if (process.env.NODE_ENV !== 'production' && el.tag === 'template') {\n warn$2(\"<template> cannot be keyed. Place the key on real elements instead.\");\n }\n el.key = exp;\n }\n}\n\nfunction processRef (el) {\n var ref = getBindingAttr(el, 'ref');\n if (ref) {\n el.ref = ref;\n el.refInFor = checkInFor(el);\n }\n}\n\nfunction processFor (el) {\n var exp;\n if ((exp = getAndRemoveAttr(el, 'v-for'))) {\n var res = parseFor(exp);\n if (res) {\n extend(el, res);\n } else if (process.env.NODE_ENV !== 'production') {\n warn$2(\n (\"Invalid v-for expression: \" + exp)\n );\n }\n }\n}\n\n\n\nfunction parseFor (exp) {\n var inMatch = exp.match(forAliasRE);\n if (!inMatch) { return }\n var res = {};\n res.for = inMatch[2].trim();\n var alias = inMatch[1].trim().replace(stripParensRE, '');\n var iteratorMatch = alias.match(forIteratorRE);\n if (iteratorMatch) {\n res.alias = alias.replace(forIteratorRE, '');\n res.iterator1 = iteratorMatch[1].trim();\n if (iteratorMatch[2]) {\n res.iterator2 = iteratorMatch[2].trim();\n }\n } else {\n res.alias = alias;\n }\n return res\n}\n\nfunction processIf (el) {\n var exp = getAndRemoveAttr(el, 'v-if');\n if (exp) {\n el.if = exp;\n addIfCondition(el, {\n exp: exp,\n block: el\n });\n } else {\n if (getAndRemoveAttr(el, 'v-else') != null) {\n el.else = true;\n }\n var elseif = getAndRemoveAttr(el, 'v-else-if');\n if (elseif) {\n el.elseif = elseif;\n }\n }\n}\n\nfunction processIfConditions (el, parent) {\n var prev = findPrevElement(parent.children);\n if (prev && prev.if) {\n addIfCondition(prev, {\n exp: el.elseif,\n block: el\n });\n } else if (process.env.NODE_ENV !== 'production') {\n warn$2(\n \"v-\" + (el.elseif ? ('else-if=\"' + el.elseif + '\"') : 'else') + \" \" +\n \"used on element <\" + (el.tag) + \"> without corresponding v-if.\"\n );\n }\n}\n\nfunction findPrevElement (children) {\n var i = children.length;\n while (i--) {\n if (children[i].type === 1) {\n return children[i]\n } else {\n if (process.env.NODE_ENV !== 'production' && children[i].text !== ' ') {\n warn$2(\n \"text \\\"\" + (children[i].text.trim()) + \"\\\" between v-if and v-else(-if) \" +\n \"will be ignored.\"\n );\n }\n children.pop();\n }\n }\n}\n\nfunction addIfCondition (el, condition) {\n if (!el.ifConditions) {\n el.ifConditions = [];\n }\n el.ifConditions.push(condition);\n}\n\nfunction processOnce (el) {\n var once$$1 = getAndRemoveAttr(el, 'v-once');\n if (once$$1 != null) {\n el.once = true;\n }\n}\n\nfunction processSlot (el) {\n if (el.tag === 'slot') {\n el.slotName = getBindingAttr(el, 'name');\n if (process.env.NODE_ENV !== 'production' && el.key) {\n warn$2(\n \"`key` does not work on <slot> because slots are abstract outlets \" +\n \"and can possibly expand into multiple elements. \" +\n \"Use the key on a wrapping element instead.\"\n );\n }\n } else {\n var slotScope;\n if (el.tag === 'template') {\n slotScope = getAndRemoveAttr(el, 'scope');\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && slotScope) {\n warn$2(\n \"the \\\"scope\\\" attribute for scoped slots have been deprecated and \" +\n \"replaced by \\\"slot-scope\\\" since 2.5. The new \\\"slot-scope\\\" attribute \" +\n \"can also be used on plain elements in addition to <template> to \" +\n \"denote scoped slots.\",\n true\n );\n }\n el.slotScope = slotScope || getAndRemoveAttr(el, 'slot-scope');\n } else if ((slotScope = getAndRemoveAttr(el, 'slot-scope'))) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && el.attrsMap['v-for']) {\n warn$2(\n \"Ambiguous combined usage of slot-scope and v-for on <\" + (el.tag) + \"> \" +\n \"(v-for takes higher priority). Use a wrapper <template> for the \" +\n \"scoped slot to make it clearer.\",\n true\n );\n }\n el.slotScope = slotScope;\n }\n var slotTarget = getBindingAttr(el, 'slot');\n if (slotTarget) {\n el.slotTarget = slotTarget === '\"\"' ? '\"default\"' : slotTarget;\n // preserve slot as an attribute for native shadow DOM compat\n // only for non-scoped slots.\n if (el.tag !== 'template' && !el.slotScope) {\n addAttr(el, 'slot', slotTarget);\n }\n }\n }\n}\n\nfunction processComponent (el) {\n var binding;\n if ((binding = getBindingAttr(el, 'is'))) {\n el.component = binding;\n }\n if (getAndRemoveAttr(el, 'inline-template') != null) {\n el.inlineTemplate = true;\n }\n}\n\nfunction processAttrs (el) {\n var list = el.attrsList;\n var i, l, name, rawName, value, modifiers, isProp;\n for (i = 0, l = list.length; i < l; i++) {\n name = rawName = list[i].name;\n value = list[i].value;\n if (dirRE.test(name)) {\n // mark element as dynamic\n el.hasBindings = true;\n // modifiers\n modifiers = parseModifiers(name);\n if (modifiers) {\n name = name.replace(modifierRE, '');\n }\n if (bindRE.test(name)) { // v-bind\n name = name.replace(bindRE, '');\n value = parseFilters(value);\n isProp = false;\n if (modifiers) {\n if (modifiers.prop) {\n isProp = true;\n name = camelize(name);\n if (name === 'innerHtml') { name = 'innerHTML'; }\n }\n if (modifiers.camel) {\n name = camelize(name);\n }\n if (modifiers.sync) {\n addHandler(\n el,\n (\"update:\" + (camelize(name))),\n genAssignmentCode(value, \"$event\")\n );\n }\n }\n if (isProp || (\n !el.component && platformMustUseProp(el.tag, el.attrsMap.type, name)\n )) {\n addProp(el, name, value);\n } else {\n addAttr(el, name, value);\n }\n } else if (onRE.test(name)) { // v-on\n name = name.replace(onRE, '');\n addHandler(el, name, value, modifiers, false, warn$2);\n } else { // normal directives\n name = name.replace(dirRE, '');\n // parse arg\n var argMatch = name.match(argRE);\n var arg = argMatch && argMatch[1];\n if (arg) {\n name = name.slice(0, -(arg.length + 1));\n }\n addDirective(el, name, rawName, value, arg, modifiers);\n if (process.env.NODE_ENV !== 'production' && name === 'model') {\n checkForAliasModel(el, value);\n }\n }\n } else {\n // literal attribute\n if (process.env.NODE_ENV !== 'production') {\n var res = parseText(value, delimiters);\n if (res) {\n warn$2(\n name + \"=\\\"\" + value + \"\\\": \" +\n 'Interpolation inside attributes has been removed. ' +\n 'Use v-bind or the colon shorthand instead. For example, ' +\n 'instead of <div id=\"{{ val }}\">, use <div :id=\"val\">.'\n );\n }\n }\n addAttr(el, name, JSON.stringify(value));\n // #6887 firefox doesn't update muted state if set via attribute\n // even immediately after element creation\n if (!el.component &&\n name === 'muted' &&\n platformMustUseProp(el.tag, el.attrsMap.type, name)) {\n addProp(el, name, 'true');\n }\n }\n }\n}\n\nfunction checkInFor (el) {\n var parent = el;\n while (parent) {\n if (parent.for !== undefined) {\n return true\n }\n parent = parent.parent;\n }\n return false\n}\n\nfunction parseModifiers (name) {\n var match = name.match(modifierRE);\n if (match) {\n var ret = {};\n match.forEach(function (m) { ret[m.slice(1)] = true; });\n return ret\n }\n}\n\nfunction makeAttrsMap (attrs) {\n var map = {};\n for (var i = 0, l = attrs.length; i < l; i++) {\n if (\n process.env.NODE_ENV !== 'production' &&\n map[attrs[i].name] && !isIE && !isEdge\n ) {\n warn$2('duplicate attribute: ' + attrs[i].name);\n }\n map[attrs[i].name] = attrs[i].value;\n }\n return map\n}\n\n// for script (e.g. type=\"x/template\") or style, do not decode content\nfunction isTextTag (el) {\n return el.tag === 'script' || el.tag === 'style'\n}\n\nfunction isForbiddenTag (el) {\n return (\n el.tag === 'style' ||\n (el.tag === 'script' && (\n !el.attrsMap.type ||\n el.attrsMap.type === 'text/javascript'\n ))\n )\n}\n\nvar ieNSBug = /^xmlns:NS\\d+/;\nvar ieNSPrefix = /^NS\\d+:/;\n\n/* istanbul ignore next */\nfunction guardIESVGBug (attrs) {\n var res = [];\n for (var i = 0; i < attrs.length; i++) {\n var attr = attrs[i];\n if (!ieNSBug.test(attr.name)) {\n attr.name = attr.name.replace(ieNSPrefix, '');\n res.push(attr);\n }\n }\n return res\n}\n\nfunction checkForAliasModel (el, value) {\n var _el = el;\n while (_el) {\n if (_el.for && _el.alias === value) {\n warn$2(\n \"<\" + (el.tag) + \" v-model=\\\"\" + value + \"\\\">: \" +\n \"You are binding v-model directly to a v-for iteration alias. \" +\n \"This will not be able to modify the v-for source array because \" +\n \"writing to the alias is like modifying a function local variable. \" +\n \"Consider using an array of objects and use v-model on an object property instead.\"\n );\n }\n _el = _el.parent;\n }\n}\n\n/* */\n\n/**\n * Expand input[v-model] with dyanmic type bindings into v-if-else chains\n * Turn this:\n * <input v-model=\"data[type]\" :type=\"type\">\n * into this:\n * <input v-if=\"type === 'checkbox'\" type=\"checkbox\" v-model=\"data[type]\">\n * <input v-else-if=\"type === 'radio'\" type=\"radio\" v-model=\"data[type]\">\n * <input v-else :type=\"type\" v-model=\"data[type]\">\n */\n\nfunction preTransformNode (el, options) {\n if (el.tag === 'input') {\n var map = el.attrsMap;\n if (!map['v-model']) {\n return\n }\n\n var typeBinding;\n if (map[':type'] || map['v-bind:type']) {\n typeBinding = getBindingAttr(el, 'type');\n }\n if (!map.type && !typeBinding && map['v-bind']) {\n typeBinding = \"(\" + (map['v-bind']) + \").type\";\n }\n\n if (typeBinding) {\n var ifCondition = getAndRemoveAttr(el, 'v-if', true);\n var ifConditionExtra = ifCondition ? (\"&&(\" + ifCondition + \")\") : \"\";\n var hasElse = getAndRemoveAttr(el, 'v-else', true) != null;\n var elseIfCondition = getAndRemoveAttr(el, 'v-else-if', true);\n // 1. checkbox\n var branch0 = cloneASTElement(el);\n // process for on the main node\n processFor(branch0);\n addRawAttr(branch0, 'type', 'checkbox');\n processElement(branch0, options);\n branch0.processed = true; // prevent it from double-processed\n branch0.if = \"(\" + typeBinding + \")==='checkbox'\" + ifConditionExtra;\n addIfCondition(branch0, {\n exp: branch0.if,\n block: branch0\n });\n // 2. add radio else-if condition\n var branch1 = cloneASTElement(el);\n getAndRemoveAttr(branch1, 'v-for', true);\n addRawAttr(branch1, 'type', 'radio');\n processElement(branch1, options);\n addIfCondition(branch0, {\n exp: \"(\" + typeBinding + \")==='radio'\" + ifConditionExtra,\n block: branch1\n });\n // 3. other\n var branch2 = cloneASTElement(el);\n getAndRemoveAttr(branch2, 'v-for', true);\n addRawAttr(branch2, ':type', typeBinding);\n processElement(branch2, options);\n addIfCondition(branch0, {\n exp: ifCondition,\n block: branch2\n });\n\n if (hasElse) {\n branch0.else = true;\n } else if (elseIfCondition) {\n branch0.elseif = elseIfCondition;\n }\n\n return branch0\n }\n }\n}\n\nfunction cloneASTElement (el) {\n return createASTElement(el.tag, el.attrsList.slice(), el.parent)\n}\n\nvar model$2 = {\n preTransformNode: preTransformNode\n}\n\nvar modules$1 = [\n klass$1,\n style$1,\n model$2\n]\n\n/* */\n\nfunction text (el, dir) {\n if (dir.value) {\n addProp(el, 'textContent', (\"_s(\" + (dir.value) + \")\"));\n }\n}\n\n/* */\n\nfunction html (el, dir) {\n if (dir.value) {\n addProp(el, 'innerHTML', (\"_s(\" + (dir.value) + \")\"));\n }\n}\n\nvar directives$1 = {\n model: model,\n text: text,\n html: html\n}\n\n/* */\n\nvar baseOptions = {\n expectHTML: true,\n modules: modules$1,\n directives: directives$1,\n isPreTag: isPreTag,\n isUnaryTag: isUnaryTag,\n mustUseProp: mustUseProp,\n canBeLeftOpenTag: canBeLeftOpenTag,\n isReservedTag: isReservedTag,\n getTagNamespace: getTagNamespace,\n staticKeys: genStaticKeys(modules$1)\n};\n\n/* */\n\nvar isStaticKey;\nvar isPlatformReservedTag;\n\nvar genStaticKeysCached = cached(genStaticKeys$1);\n\n/**\n * Goal of the optimizer: walk the generated template AST tree\n * and detect sub-trees that are purely static, i.e. parts of\n * the DOM that never needs to change.\n *\n * Once we detect these sub-trees, we can:\n *\n * 1. Hoist them into constants, so that we no longer need to\n * create fresh nodes for them on each re-render;\n * 2. Completely skip them in the patching process.\n */\nfunction optimize (root, options) {\n if (!root) { return }\n isStaticKey = genStaticKeysCached(options.staticKeys || '');\n isPlatformReservedTag = options.isReservedTag || no;\n // first pass: mark all non-static nodes.\n markStatic$1(root);\n // second pass: mark static roots.\n markStaticRoots(root, false);\n}\n\nfunction genStaticKeys$1 (keys) {\n return makeMap(\n 'type,tag,attrsList,attrsMap,plain,parent,children,attrs' +\n (keys ? ',' + keys : '')\n )\n}\n\nfunction markStatic$1 (node) {\n node.static = isStatic(node);\n if (node.type === 1) {\n // do not make component slot content static. this avoids\n // 1. components not able to mutate slot nodes\n // 2. static slot content fails for hot-reloading\n if (\n !isPlatformReservedTag(node.tag) &&\n node.tag !== 'slot' &&\n node.attrsMap['inline-template'] == null\n ) {\n return\n }\n for (var i = 0, l = node.children.length; i < l; i++) {\n var child = node.children[i];\n markStatic$1(child);\n if (!child.static) {\n node.static = false;\n }\n }\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n var block = node.ifConditions[i$1].block;\n markStatic$1(block);\n if (!block.static) {\n node.static = false;\n }\n }\n }\n }\n}\n\nfunction markStaticRoots (node, isInFor) {\n if (node.type === 1) {\n if (node.static || node.once) {\n node.staticInFor = isInFor;\n }\n // For a node to qualify as a static root, it should have children that\n // are not just static text. Otherwise the cost of hoisting out will\n // outweigh the benefits and it's better off to just always render it fresh.\n if (node.static && node.children.length && !(\n node.children.length === 1 &&\n node.children[0].type === 3\n )) {\n node.staticRoot = true;\n return\n } else {\n node.staticRoot = false;\n }\n if (node.children) {\n for (var i = 0, l = node.children.length; i < l; i++) {\n markStaticRoots(node.children[i], isInFor || !!node.for);\n }\n }\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n markStaticRoots(node.ifConditions[i$1].block, isInFor);\n }\n }\n }\n}\n\nfunction isStatic (node) {\n if (node.type === 2) { // expression\n return false\n }\n if (node.type === 3) { // text\n return true\n }\n return !!(node.pre || (\n !node.hasBindings && // no dynamic bindings\n !node.if && !node.for && // not v-if or v-for or v-else\n !isBuiltInTag(node.tag) && // not a built-in\n isPlatformReservedTag(node.tag) && // not a component\n !isDirectChildOfTemplateFor(node) &&\n Object.keys(node).every(isStaticKey)\n ))\n}\n\nfunction isDirectChildOfTemplateFor (node) {\n while (node.parent) {\n node = node.parent;\n if (node.tag !== 'template') {\n return false\n }\n if (node.for) {\n return true\n }\n }\n return false\n}\n\n/* */\n\nvar fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function\\s*\\(/;\nvar simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?']|\\[\"[^\"]*?\"]|\\[\\d+]|\\[[A-Za-z_$][\\w$]*])*$/;\n\n// KeyboardEvent.keyCode aliases\nvar keyCodes = {\n esc: 27,\n tab: 9,\n enter: 13,\n space: 32,\n up: 38,\n left: 37,\n right: 39,\n down: 40,\n 'delete': [8, 46]\n};\n\n// KeyboardEvent.key aliases\nvar keyNames = {\n esc: 'Escape',\n tab: 'Tab',\n enter: 'Enter',\n space: ' ',\n // #7806: IE11 uses key names without `Arrow` prefix for arrow keys.\n up: ['Up', 'ArrowUp'],\n left: ['Left', 'ArrowLeft'],\n right: ['Right', 'ArrowRight'],\n down: ['Down', 'ArrowDown'],\n 'delete': ['Backspace', 'Delete']\n};\n\n// #4868: modifiers that prevent the execution of the listener\n// need to explicitly return null so that we can determine whether to remove\n// the listener for .once\nvar genGuard = function (condition) { return (\"if(\" + condition + \")return null;\"); };\n\nvar modifierCode = {\n stop: '$event.stopPropagation();',\n prevent: '$event.preventDefault();',\n self: genGuard(\"$event.target !== $event.currentTarget\"),\n ctrl: genGuard(\"!$event.ctrlKey\"),\n shift: genGuard(\"!$event.shiftKey\"),\n alt: genGuard(\"!$event.altKey\"),\n meta: genGuard(\"!$event.metaKey\"),\n left: genGuard(\"'button' in $event && $event.button !== 0\"),\n middle: genGuard(\"'button' in $event && $event.button !== 1\"),\n right: genGuard(\"'button' in $event && $event.button !== 2\")\n};\n\nfunction genHandlers (\n events,\n isNative,\n warn\n) {\n var res = isNative ? 'nativeOn:{' : 'on:{';\n for (var name in events) {\n res += \"\\\"\" + name + \"\\\":\" + (genHandler(name, events[name])) + \",\";\n }\n return res.slice(0, -1) + '}'\n}\n\nfunction genHandler (\n name,\n handler\n) {\n if (!handler) {\n return 'function(){}'\n }\n\n if (Array.isArray(handler)) {\n return (\"[\" + (handler.map(function (handler) { return genHandler(name, handler); }).join(',')) + \"]\")\n }\n\n var isMethodPath = simplePathRE.test(handler.value);\n var isFunctionExpression = fnExpRE.test(handler.value);\n\n if (!handler.modifiers) {\n if (isMethodPath || isFunctionExpression) {\n return handler.value\n }\n /* istanbul ignore if */\n return (\"function($event){\" + (handler.value) + \"}\") // inline statement\n } else {\n var code = '';\n var genModifierCode = '';\n var keys = [];\n for (var key in handler.modifiers) {\n if (modifierCode[key]) {\n genModifierCode += modifierCode[key];\n // left/right\n if (keyCodes[key]) {\n keys.push(key);\n }\n } else if (key === 'exact') {\n var modifiers = (handler.modifiers);\n genModifierCode += genGuard(\n ['ctrl', 'shift', 'alt', 'meta']\n .filter(function (keyModifier) { return !modifiers[keyModifier]; })\n .map(function (keyModifier) { return (\"$event.\" + keyModifier + \"Key\"); })\n .join('||')\n );\n } else {\n keys.push(key);\n }\n }\n if (keys.length) {\n code += genKeyFilter(keys);\n }\n // Make sure modifiers like prevent and stop get executed after key filtering\n if (genModifierCode) {\n code += genModifierCode;\n }\n var handlerCode = isMethodPath\n ? (\"return \" + (handler.value) + \"($event)\")\n : isFunctionExpression\n ? (\"return (\" + (handler.value) + \")($event)\")\n : handler.value;\n /* istanbul ignore if */\n return (\"function($event){\" + code + handlerCode + \"}\")\n }\n}\n\nfunction genKeyFilter (keys) {\n return (\"if(!('button' in $event)&&\" + (keys.map(genFilterCode).join('&&')) + \")return null;\")\n}\n\nfunction genFilterCode (key) {\n var keyVal = parseInt(key, 10);\n if (keyVal) {\n return (\"$event.keyCode!==\" + keyVal)\n }\n var keyCode = keyCodes[key];\n var keyName = keyNames[key];\n return (\n \"_k($event.keyCode,\" +\n (JSON.stringify(key)) + \",\" +\n (JSON.stringify(keyCode)) + \",\" +\n \"$event.key,\" +\n \"\" + (JSON.stringify(keyName)) +\n \")\"\n )\n}\n\n/* */\n\nfunction on (el, dir) {\n if (process.env.NODE_ENV !== 'production' && dir.modifiers) {\n warn(\"v-on without argument does not support modifiers.\");\n }\n el.wrapListeners = function (code) { return (\"_g(\" + code + \",\" + (dir.value) + \")\"); };\n}\n\n/* */\n\nfunction bind$1 (el, dir) {\n el.wrapData = function (code) {\n return (\"_b(\" + code + \",'\" + (el.tag) + \"',\" + (dir.value) + \",\" + (dir.modifiers && dir.modifiers.prop ? 'true' : 'false') + (dir.modifiers && dir.modifiers.sync ? ',true' : '') + \")\")\n };\n}\n\n/* */\n\nvar baseDirectives = {\n on: on,\n bind: bind$1,\n cloak: noop\n}\n\n/* */\n\nvar CodegenState = function CodegenState (options) {\n this.options = options;\n this.warn = options.warn || baseWarn;\n this.transforms = pluckModuleFunction(options.modules, 'transformCode');\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData');\n this.directives = extend(extend({}, baseDirectives), options.directives);\n var isReservedTag = options.isReservedTag || no;\n this.maybeComponent = function (el) { return !isReservedTag(el.tag); };\n this.onceId = 0;\n this.staticRenderFns = [];\n};\n\n\n\nfunction generate (\n ast,\n options\n) {\n var state = new CodegenState(options);\n var code = ast ? genElement(ast, state) : '_c(\"div\")';\n return {\n render: (\"with(this){return \" + code + \"}\"),\n staticRenderFns: state.staticRenderFns\n }\n}\n\nfunction genElement (el, state) {\n if (el.staticRoot && !el.staticProcessed) {\n return genStatic(el, state)\n } else if (el.once && !el.onceProcessed) {\n return genOnce(el, state)\n } else if (el.for && !el.forProcessed) {\n return genFor(el, state)\n } else if (el.if && !el.ifProcessed) {\n return genIf(el, state)\n } else if (el.tag === 'template' && !el.slotTarget) {\n return genChildren(el, state) || 'void 0'\n } else if (el.tag === 'slot') {\n return genSlot(el, state)\n } else {\n // component or element\n var code;\n if (el.component) {\n code = genComponent(el.component, el, state);\n } else {\n var data = el.plain ? undefined : genData$2(el, state);\n\n var children = el.inlineTemplate ? null : genChildren(el, state, true);\n code = \"_c('\" + (el.tag) + \"'\" + (data ? (\",\" + data) : '') + (children ? (\",\" + children) : '') + \")\";\n }\n // module transforms\n for (var i = 0; i < state.transforms.length; i++) {\n code = state.transforms[i](el, code);\n }\n return code\n }\n}\n\n// hoist static sub-trees out\nfunction genStatic (el, state) {\n el.staticProcessed = true;\n state.staticRenderFns.push((\"with(this){return \" + (genElement(el, state)) + \"}\"));\n return (\"_m(\" + (state.staticRenderFns.length - 1) + (el.staticInFor ? ',true' : '') + \")\")\n}\n\n// v-once\nfunction genOnce (el, state) {\n el.onceProcessed = true;\n if (el.if && !el.ifProcessed) {\n return genIf(el, state)\n } else if (el.staticInFor) {\n var key = '';\n var parent = el.parent;\n while (parent) {\n if (parent.for) {\n key = parent.key;\n break\n }\n parent = parent.parent;\n }\n if (!key) {\n process.env.NODE_ENV !== 'production' && state.warn(\n \"v-once can only be used inside v-for that is keyed. \"\n );\n return genElement(el, state)\n }\n return (\"_o(\" + (genElement(el, state)) + \",\" + (state.onceId++) + \",\" + key + \")\")\n } else {\n return genStatic(el, state)\n }\n}\n\nfunction genIf (\n el,\n state,\n altGen,\n altEmpty\n) {\n el.ifProcessed = true; // avoid recursion\n return genIfConditions(el.ifConditions.slice(), state, altGen, altEmpty)\n}\n\nfunction genIfConditions (\n conditions,\n state,\n altGen,\n altEmpty\n) {\n if (!conditions.length) {\n return altEmpty || '_e()'\n }\n\n var condition = conditions.shift();\n if (condition.exp) {\n return (\"(\" + (condition.exp) + \")?\" + (genTernaryExp(condition.block)) + \":\" + (genIfConditions(conditions, state, altGen, altEmpty)))\n } else {\n return (\"\" + (genTernaryExp(condition.block)))\n }\n\n // v-if with v-once should generate code like (a)?_m(0):_m(1)\n function genTernaryExp (el) {\n return altGen\n ? altGen(el, state)\n : el.once\n ? genOnce(el, state)\n : genElement(el, state)\n }\n}\n\nfunction genFor (\n el,\n state,\n altGen,\n altHelper\n) {\n var exp = el.for;\n var alias = el.alias;\n var iterator1 = el.iterator1 ? (\",\" + (el.iterator1)) : '';\n var iterator2 = el.iterator2 ? (\",\" + (el.iterator2)) : '';\n\n if (process.env.NODE_ENV !== 'production' &&\n state.maybeComponent(el) &&\n el.tag !== 'slot' &&\n el.tag !== 'template' &&\n !el.key\n ) {\n state.warn(\n \"<\" + (el.tag) + \" v-for=\\\"\" + alias + \" in \" + exp + \"\\\">: component lists rendered with \" +\n \"v-for should have explicit keys. \" +\n \"See https://vuejs.org/guide/list.html#key for more info.\",\n true /* tip */\n );\n }\n\n el.forProcessed = true; // avoid recursion\n return (altHelper || '_l') + \"((\" + exp + \"),\" +\n \"function(\" + alias + iterator1 + iterator2 + \"){\" +\n \"return \" + ((altGen || genElement)(el, state)) +\n '})'\n}\n\nfunction genData$2 (el, state) {\n var data = '{';\n\n // directives first.\n // directives may mutate the el's other properties before they are generated.\n var dirs = genDirectives(el, state);\n if (dirs) { data += dirs + ','; }\n\n // key\n if (el.key) {\n data += \"key:\" + (el.key) + \",\";\n }\n // ref\n if (el.ref) {\n data += \"ref:\" + (el.ref) + \",\";\n }\n if (el.refInFor) {\n data += \"refInFor:true,\";\n }\n // pre\n if (el.pre) {\n data += \"pre:true,\";\n }\n // record original tag name for components using \"is\" attribute\n if (el.component) {\n data += \"tag:\\\"\" + (el.tag) + \"\\\",\";\n }\n // module data generation functions\n for (var i = 0; i < state.dataGenFns.length; i++) {\n data += state.dataGenFns[i](el);\n }\n // attributes\n if (el.attrs) {\n data += \"attrs:{\" + (genProps(el.attrs)) + \"},\";\n }\n // DOM props\n if (el.props) {\n data += \"domProps:{\" + (genProps(el.props)) + \"},\";\n }\n // event handlers\n if (el.events) {\n data += (genHandlers(el.events, false, state.warn)) + \",\";\n }\n if (el.nativeEvents) {\n data += (genHandlers(el.nativeEvents, true, state.warn)) + \",\";\n }\n // slot target\n // only for non-scoped slots\n if (el.slotTarget && !el.slotScope) {\n data += \"slot:\" + (el.slotTarget) + \",\";\n }\n // scoped slots\n if (el.scopedSlots) {\n data += (genScopedSlots(el.scopedSlots, state)) + \",\";\n }\n // component v-model\n if (el.model) {\n data += \"model:{value:\" + (el.model.value) + \",callback:\" + (el.model.callback) + \",expression:\" + (el.model.expression) + \"},\";\n }\n // inline-template\n if (el.inlineTemplate) {\n var inlineTemplate = genInlineTemplate(el, state);\n if (inlineTemplate) {\n data += inlineTemplate + \",\";\n }\n }\n data = data.replace(/,$/, '') + '}';\n // v-bind data wrap\n if (el.wrapData) {\n data = el.wrapData(data);\n }\n // v-on data wrap\n if (el.wrapListeners) {\n data = el.wrapListeners(data);\n }\n return data\n}\n\nfunction genDirectives (el, state) {\n var dirs = el.directives;\n if (!dirs) { return }\n var res = 'directives:[';\n var hasRuntime = false;\n var i, l, dir, needRuntime;\n for (i = 0, l = dirs.length; i < l; i++) {\n dir = dirs[i];\n needRuntime = true;\n var gen = state.directives[dir.name];\n if (gen) {\n // compile-time directive that manipulates AST.\n // returns true if it also needs a runtime counterpart.\n needRuntime = !!gen(el, dir, state.warn);\n }\n if (needRuntime) {\n hasRuntime = true;\n res += \"{name:\\\"\" + (dir.name) + \"\\\",rawName:\\\"\" + (dir.rawName) + \"\\\"\" + (dir.value ? (\",value:(\" + (dir.value) + \"),expression:\" + (JSON.stringify(dir.value))) : '') + (dir.arg ? (\",arg:\\\"\" + (dir.arg) + \"\\\"\") : '') + (dir.modifiers ? (\",modifiers:\" + (JSON.stringify(dir.modifiers))) : '') + \"},\";\n }\n }\n if (hasRuntime) {\n return res.slice(0, -1) + ']'\n }\n}\n\nfunction genInlineTemplate (el, state) {\n var ast = el.children[0];\n if (process.env.NODE_ENV !== 'production' && (\n el.children.length !== 1 || ast.type !== 1\n )) {\n state.warn('Inline-template components must have exactly one child element.');\n }\n if (ast.type === 1) {\n var inlineRenderFns = generate(ast, state.options);\n return (\"inlineTemplate:{render:function(){\" + (inlineRenderFns.render) + \"},staticRenderFns:[\" + (inlineRenderFns.staticRenderFns.map(function (code) { return (\"function(){\" + code + \"}\"); }).join(',')) + \"]}\")\n }\n}\n\nfunction genScopedSlots (\n slots,\n state\n) {\n return (\"scopedSlots:_u([\" + (Object.keys(slots).map(function (key) {\n return genScopedSlot(key, slots[key], state)\n }).join(',')) + \"])\")\n}\n\nfunction genScopedSlot (\n key,\n el,\n state\n) {\n if (el.for && !el.forProcessed) {\n return genForScopedSlot(key, el, state)\n }\n var fn = \"function(\" + (String(el.slotScope)) + \"){\" +\n \"return \" + (el.tag === 'template'\n ? el.if\n ? ((el.if) + \"?\" + (genChildren(el, state) || 'undefined') + \":undefined\")\n : genChildren(el, state) || 'undefined'\n : genElement(el, state)) + \"}\";\n return (\"{key:\" + key + \",fn:\" + fn + \"}\")\n}\n\nfunction genForScopedSlot (\n key,\n el,\n state\n) {\n var exp = el.for;\n var alias = el.alias;\n var iterator1 = el.iterator1 ? (\",\" + (el.iterator1)) : '';\n var iterator2 = el.iterator2 ? (\",\" + (el.iterator2)) : '';\n el.forProcessed = true; // avoid recursion\n return \"_l((\" + exp + \"),\" +\n \"function(\" + alias + iterator1 + iterator2 + \"){\" +\n \"return \" + (genScopedSlot(key, el, state)) +\n '})'\n}\n\nfunction genChildren (\n el,\n state,\n checkSkip,\n altGenElement,\n altGenNode\n) {\n var children = el.children;\n if (children.length) {\n var el$1 = children[0];\n // optimize single v-for\n if (children.length === 1 &&\n el$1.for &&\n el$1.tag !== 'template' &&\n el$1.tag !== 'slot'\n ) {\n return (altGenElement || genElement)(el$1, state)\n }\n var normalizationType = checkSkip\n ? getNormalizationType(children, state.maybeComponent)\n : 0;\n var gen = altGenNode || genNode;\n return (\"[\" + (children.map(function (c) { return gen(c, state); }).join(',')) + \"]\" + (normalizationType ? (\",\" + normalizationType) : ''))\n }\n}\n\n// determine the normalization needed for the children array.\n// 0: no normalization needed\n// 1: simple normalization needed (possible 1-level deep nested array)\n// 2: full normalization needed\nfunction getNormalizationType (\n children,\n maybeComponent\n) {\n var res = 0;\n for (var i = 0; i < children.length; i++) {\n var el = children[i];\n if (el.type !== 1) {\n continue\n }\n if (needsNormalization(el) ||\n (el.ifConditions && el.ifConditions.some(function (c) { return needsNormalization(c.block); }))) {\n res = 2;\n break\n }\n if (maybeComponent(el) ||\n (el.ifConditions && el.ifConditions.some(function (c) { return maybeComponent(c.block); }))) {\n res = 1;\n }\n }\n return res\n}\n\nfunction needsNormalization (el) {\n return el.for !== undefined || el.tag === 'template' || el.tag === 'slot'\n}\n\nfunction genNode (node, state) {\n if (node.type === 1) {\n return genElement(node, state)\n } if (node.type === 3 && node.isComment) {\n return genComment(node)\n } else {\n return genText(node)\n }\n}\n\nfunction genText (text) {\n return (\"_v(\" + (text.type === 2\n ? text.expression // no need for () because already wrapped in _s()\n : transformSpecialNewlines(JSON.stringify(text.text))) + \")\")\n}\n\nfunction genComment (comment) {\n return (\"_e(\" + (JSON.stringify(comment.text)) + \")\")\n}\n\nfunction genSlot (el, state) {\n var slotName = el.slotName || '\"default\"';\n var children = genChildren(el, state);\n var res = \"_t(\" + slotName + (children ? (\",\" + children) : '');\n var attrs = el.attrs && (\"{\" + (el.attrs.map(function (a) { return ((camelize(a.name)) + \":\" + (a.value)); }).join(',')) + \"}\");\n var bind$$1 = el.attrsMap['v-bind'];\n if ((attrs || bind$$1) && !children) {\n res += \",null\";\n }\n if (attrs) {\n res += \",\" + attrs;\n }\n if (bind$$1) {\n res += (attrs ? '' : ',null') + \",\" + bind$$1;\n }\n return res + ')'\n}\n\n// componentName is el.component, take it as argument to shun flow's pessimistic refinement\nfunction genComponent (\n componentName,\n el,\n state\n) {\n var children = el.inlineTemplate ? null : genChildren(el, state, true);\n return (\"_c(\" + componentName + \",\" + (genData$2(el, state)) + (children ? (\",\" + children) : '') + \")\")\n}\n\nfunction genProps (props) {\n var res = '';\n for (var i = 0; i < props.length; i++) {\n var prop = props[i];\n /* istanbul ignore if */\n {\n res += \"\\\"\" + (prop.name) + \"\\\":\" + (transformSpecialNewlines(prop.value)) + \",\";\n }\n }\n return res.slice(0, -1)\n}\n\n// #3895, #4268\nfunction transformSpecialNewlines (text) {\n return text\n .replace(/\\u2028/g, '\\\\u2028')\n .replace(/\\u2029/g, '\\\\u2029')\n}\n\n/* */\n\n// these keywords should not appear inside expressions, but operators like\n// typeof, instanceof and in are allowed\nvar prohibitedKeywordRE = new RegExp('\\\\b' + (\n 'do,if,for,let,new,try,var,case,else,with,await,break,catch,class,const,' +\n 'super,throw,while,yield,delete,export,import,return,switch,default,' +\n 'extends,finally,continue,debugger,function,arguments'\n).split(',').join('\\\\b|\\\\b') + '\\\\b');\n\n// these unary operators should not be used as property/method names\nvar unaryOperatorsRE = new RegExp('\\\\b' + (\n 'delete,typeof,void'\n).split(',').join('\\\\s*\\\\([^\\\\)]*\\\\)|\\\\b') + '\\\\s*\\\\([^\\\\)]*\\\\)');\n\n// strip strings in expressions\nvar stripStringRE = /'(?:[^'\\\\]|\\\\.)*'|\"(?:[^\"\\\\]|\\\\.)*\"|`(?:[^`\\\\]|\\\\.)*\\$\\{|\\}(?:[^`\\\\]|\\\\.)*`|`(?:[^`\\\\]|\\\\.)*`/g;\n\n// detect problematic expressions in a template\nfunction detectErrors (ast) {\n var errors = [];\n if (ast) {\n checkNode(ast, errors);\n }\n return errors\n}\n\nfunction checkNode (node, errors) {\n if (node.type === 1) {\n for (var name in node.attrsMap) {\n if (dirRE.test(name)) {\n var value = node.attrsMap[name];\n if (value) {\n if (name === 'v-for') {\n checkFor(node, (\"v-for=\\\"\" + value + \"\\\"\"), errors);\n } else if (onRE.test(name)) {\n checkEvent(value, (name + \"=\\\"\" + value + \"\\\"\"), errors);\n } else {\n checkExpression(value, (name + \"=\\\"\" + value + \"\\\"\"), errors);\n }\n }\n }\n }\n if (node.children) {\n for (var i = 0; i < node.children.length; i++) {\n checkNode(node.children[i], errors);\n }\n }\n } else if (node.type === 2) {\n checkExpression(node.expression, node.text, errors);\n }\n}\n\nfunction checkEvent (exp, text, errors) {\n var stipped = exp.replace(stripStringRE, '');\n var keywordMatch = stipped.match(unaryOperatorsRE);\n if (keywordMatch && stipped.charAt(keywordMatch.index - 1) !== '$') {\n errors.push(\n \"avoid using JavaScript unary operator as property name: \" +\n \"\\\"\" + (keywordMatch[0]) + \"\\\" in expression \" + (text.trim())\n );\n }\n checkExpression(exp, text, errors);\n}\n\nfunction checkFor (node, text, errors) {\n checkExpression(node.for || '', text, errors);\n checkIdentifier(node.alias, 'v-for alias', text, errors);\n checkIdentifier(node.iterator1, 'v-for iterator', text, errors);\n checkIdentifier(node.iterator2, 'v-for iterator', text, errors);\n}\n\nfunction checkIdentifier (\n ident,\n type,\n text,\n errors\n) {\n if (typeof ident === 'string') {\n try {\n new Function((\"var \" + ident + \"=_\"));\n } catch (e) {\n errors.push((\"invalid \" + type + \" \\\"\" + ident + \"\\\" in expression: \" + (text.trim())));\n }\n }\n}\n\nfunction checkExpression (exp, text, errors) {\n try {\n new Function((\"return \" + exp));\n } catch (e) {\n var keywordMatch = exp.replace(stripStringRE, '').match(prohibitedKeywordRE);\n if (keywordMatch) {\n errors.push(\n \"avoid using JavaScript keyword as property name: \" +\n \"\\\"\" + (keywordMatch[0]) + \"\\\"\\n Raw expression: \" + (text.trim())\n );\n } else {\n errors.push(\n \"invalid expression: \" + (e.message) + \" in\\n\\n\" +\n \" \" + exp + \"\\n\\n\" +\n \" Raw expression: \" + (text.trim()) + \"\\n\"\n );\n }\n }\n}\n\n/* */\n\nfunction createFunction (code, errors) {\n try {\n return new Function(code)\n } catch (err) {\n errors.push({ err: err, code: code });\n return noop\n }\n}\n\nfunction createCompileToFunctionFn (compile) {\n var cache = Object.create(null);\n\n return function compileToFunctions (\n template,\n options,\n vm\n ) {\n options = extend({}, options);\n var warn$$1 = options.warn || warn;\n delete options.warn;\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n // detect possible CSP restriction\n try {\n new Function('return 1');\n } catch (e) {\n if (e.toString().match(/unsafe-eval|CSP/)) {\n warn$$1(\n 'It seems you are using the standalone build of Vue.js in an ' +\n 'environment with Content Security Policy that prohibits unsafe-eval. ' +\n 'The template compiler cannot work in this environment. Consider ' +\n 'relaxing the policy to allow unsafe-eval or pre-compiling your ' +\n 'templates into render functions.'\n );\n }\n }\n }\n\n // check cache\n var key = options.delimiters\n ? String(options.delimiters) + template\n : template;\n if (cache[key]) {\n return cache[key]\n }\n\n // compile\n var compiled = compile(template, options);\n\n // check compilation errors/tips\n if (process.env.NODE_ENV !== 'production') {\n if (compiled.errors && compiled.errors.length) {\n warn$$1(\n \"Error compiling template:\\n\\n\" + template + \"\\n\\n\" +\n compiled.errors.map(function (e) { return (\"- \" + e); }).join('\\n') + '\\n',\n vm\n );\n }\n if (compiled.tips && compiled.tips.length) {\n compiled.tips.forEach(function (msg) { return tip(msg, vm); });\n }\n }\n\n // turn code into functions\n var res = {};\n var fnGenErrors = [];\n res.render = createFunction(compiled.render, fnGenErrors);\n res.staticRenderFns = compiled.staticRenderFns.map(function (code) {\n return createFunction(code, fnGenErrors)\n });\n\n // check function generation errors.\n // this should only happen if there is a bug in the compiler itself.\n // mostly for codegen development use\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production') {\n if ((!compiled.errors || !compiled.errors.length) && fnGenErrors.length) {\n warn$$1(\n \"Failed to generate render function:\\n\\n\" +\n fnGenErrors.map(function (ref) {\n var err = ref.err;\n var code = ref.code;\n\n return ((err.toString()) + \" in\\n\\n\" + code + \"\\n\");\n }).join('\\n'),\n vm\n );\n }\n }\n\n return (cache[key] = res)\n }\n}\n\n/* */\n\nfunction createCompilerCreator (baseCompile) {\n return function createCompiler (baseOptions) {\n function compile (\n template,\n options\n ) {\n var finalOptions = Object.create(baseOptions);\n var errors = [];\n var tips = [];\n finalOptions.warn = function (msg, tip) {\n (tip ? tips : errors).push(msg);\n };\n\n if (options) {\n // merge custom modules\n if (options.modules) {\n finalOptions.modules =\n (baseOptions.modules || []).concat(options.modules);\n }\n // merge custom directives\n if (options.directives) {\n finalOptions.directives = extend(\n Object.create(baseOptions.directives || null),\n options.directives\n );\n }\n // copy other options\n for (var key in options) {\n if (key !== 'modules' && key !== 'directives') {\n finalOptions[key] = options[key];\n }\n }\n }\n\n var compiled = baseCompile(template, finalOptions);\n if (process.env.NODE_ENV !== 'production') {\n errors.push.apply(errors, detectErrors(compiled.ast));\n }\n compiled.errors = errors;\n compiled.tips = tips;\n return compiled\n }\n\n return {\n compile: compile,\n compileToFunctions: createCompileToFunctionFn(compile)\n }\n }\n}\n\n/* */\n\n// `createCompilerCreator` allows creating compilers that use alternative\n// parser/optimizer/codegen, e.g the SSR optimizing compiler.\n// Here we just export a default compiler using the default parts.\nvar createCompiler = createCompilerCreator(function baseCompile (\n template,\n options\n) {\n var ast = parse(template.trim(), options);\n if (options.optimize !== false) {\n optimize(ast, options);\n }\n var code = generate(ast, options);\n return {\n ast: ast,\n render: code.render,\n staticRenderFns: code.staticRenderFns\n }\n});\n\n/* */\n\nvar ref$1 = createCompiler(baseOptions);\nvar compileToFunctions = ref$1.compileToFunctions;\n\n/* */\n\n// check whether current browser encodes a char inside attribute values\nvar div;\nfunction getShouldDecode (href) {\n div = div || document.createElement('div');\n div.innerHTML = href ? \"<a href=\\\"\\n\\\"/>\" : \"<div a=\\\"\\n\\\"/>\";\n return div.innerHTML.indexOf(' ') > 0\n}\n\n// #3663: IE encodes newlines inside attribute values while other browsers don't\nvar shouldDecodeNewlines = inBrowser ? getShouldDecode(false) : false;\n// #6828: chrome encodes content in a[href]\nvar shouldDecodeNewlinesForHref = inBrowser ? getShouldDecode(true) : false;\n\n/* */\n\nvar idToTemplate = cached(function (id) {\n var el = query(id);\n return el && el.innerHTML\n});\n\nvar mount = Vue.prototype.$mount;\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && query(el);\n\n /* istanbul ignore if */\n if (el === document.body || el === document.documentElement) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Do not mount Vue to <html> or <body> - mount to normal elements instead.\"\n );\n return this\n }\n\n var options = this.$options;\n // resolve template/el and convert to render function\n if (!options.render) {\n var template = options.template;\n if (template) {\n if (typeof template === 'string') {\n if (template.charAt(0) === '#') {\n template = idToTemplate(template);\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && !template) {\n warn(\n (\"Template element not found or is empty: \" + (options.template)),\n this\n );\n }\n }\n } else if (template.nodeType) {\n template = template.innerHTML;\n } else {\n if (process.env.NODE_ENV !== 'production') {\n warn('invalid template option:' + template, this);\n }\n return this\n }\n } else if (el) {\n template = getOuterHTML(el);\n }\n if (template) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n mark('compile');\n }\n\n var ref = compileToFunctions(template, {\n shouldDecodeNewlines: shouldDecodeNewlines,\n shouldDecodeNewlinesForHref: shouldDecodeNewlinesForHref,\n delimiters: options.delimiters,\n comments: options.comments\n }, this);\n var render = ref.render;\n var staticRenderFns = ref.staticRenderFns;\n options.render = render;\n options.staticRenderFns = staticRenderFns;\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n mark('compile end');\n measure((\"vue \" + (this._name) + \" compile\"), 'compile', 'compile end');\n }\n }\n }\n return mount.call(this, el, hydrating)\n};\n\n/**\n * Get outerHTML of elements, taking care\n * of SVG elements in IE as well.\n */\nfunction getOuterHTML (el) {\n if (el.outerHTML) {\n return el.outerHTML\n } else {\n var container = document.createElement('div');\n container.appendChild(el.cloneNode(true));\n return container.innerHTML\n }\n}\n\nVue.compile = compileToFunctions;\n\nexport default Vue;\n","!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.VueSelect=e():t.VueSelect=e()}(this,function(){return function(t){function e(o){if(n[o])return n[o].exports;var r=n[o]={exports:{},id:o,loaded:!1};return t[o].call(r.exports,r,r.exports,e),r.loaded=!0,r.exports}var n={};return e.m=t,e.c=n,e.p=\"/\",e(0)}([function(t,e,n){\"use strict\";function o(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,\"__esModule\",{value:!0}),e.mixins=e.VueSelect=void 0;var r=n(85),i=o(r),s=n(42),a=o(s);e.default=i.default,e.VueSelect=i.default,e.mixins=a.default},function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e){var n=t.exports={version:\"2.5.3\"};\"number\"==typeof __e&&(__e=n)},function(t,e,n){t.exports=!n(9)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var o=n(11),r=n(33),i=n(25),s=Object.defineProperty;e.f=n(3)?Object.defineProperty:function(t,e,n){if(o(t),e=i(e,!0),o(n),r)try{return s(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e,n){var o=n(5),r=n(14);t.exports=n(3)?function(t,e,n){return o.f(t,e,r(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var o=n(61),r=n(16);t.exports=function(t){return o(r(t))}},function(t,e,n){var o=n(23)(\"wks\"),r=n(15),i=n(1).Symbol,s=\"function\"==typeof i,a=t.exports=function(t){return o[t]||(o[t]=s&&i[t]||(s?i:r)(\"Symbol.\"+t))};a.store=o},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e,n){var o=n(10);t.exports=function(t){if(!o(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e,n){var o=n(1),r=n(2),i=n(58),s=n(6),a=\"prototype\",u=function(t,e,n){var l,c,f,p=t&u.F,d=t&u.G,h=t&u.S,b=t&u.P,v=t&u.B,g=t&u.W,y=d?r:r[e]||(r[e]={}),m=y[a],x=d?o:h?o[e]:(o[e]||{})[a];d&&(n=e);for(l in n)c=!p&&x&&void 0!==x[l],c&&l in y||(f=c?x[l]:n[l],y[l]=d&&\"function\"!=typeof x[l]?n[l]:v&&c?i(f,o):g&&x[l]==f?function(t){var e=function(e,n,o){if(this instanceof t){switch(arguments.length){case 0:return new t;case 1:return new t(e);case 2:return new t(e,n)}return new t(e,n,o)}return t.apply(this,arguments)};return e[a]=t[a],e}(f):b&&\"function\"==typeof f?i(Function.call,f):f,b&&((y.virtual||(y.virtual={}))[l]=f,t&u.R&&m&&!m[l]&&s(m,l,f)))};u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e,n){var o=n(38),r=n(17);t.exports=Object.keys||function(t){return o(t,r)}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,o=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+o).toString(36))}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e){t.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},function(t,e){t.exports={}},function(t,e){t.exports=!0},function(t,e){e.f={}.propertyIsEnumerable},function(t,e,n){var o=n(5).f,r=n(4),i=n(8)(\"toStringTag\");t.exports=function(t,e,n){t&&!r(t=n?t:t.prototype,i)&&o(t,i,{configurable:!0,value:e})}},function(t,e,n){var o=n(23)(\"keys\"),r=n(15);t.exports=function(t){return o[t]||(o[t]=r(t))}},function(t,e,n){var o=n(1),r=\"__core-js_shared__\",i=o[r]||(o[r]={});t.exports=function(t){return i[t]||(i[t]={})}},function(t,e){var n=Math.ceil,o=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?o:n)(t)}},function(t,e,n){var o=n(10);t.exports=function(t,e){if(!o(t))return t;var n,r;if(e&&\"function\"==typeof(n=t.toString)&&!o(r=n.call(t)))return r;if(\"function\"==typeof(n=t.valueOf)&&!o(r=n.call(t)))return r;if(!e&&\"function\"==typeof(n=t.toString)&&!o(r=n.call(t)))return r;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e,n){var o=n(1),r=n(2),i=n(19),s=n(27),a=n(5).f;t.exports=function(t){var e=r.Symbol||(r.Symbol=i?{}:o.Symbol||{});\"_\"==t.charAt(0)||t in e||a(e,t,{value:s.f(t)})}},function(t,e,n){e.f=n(8)},function(t,e){\"use strict\";t.exports={props:{loading:{type:Boolean,default:!1},onSearch:{type:Function,default:function(t,e){}}},data:function(){return{mutableLoading:!1}},watch:{search:function(){this.search.length>0&&(this.onSearch(this.search,this.toggleLoading),this.$emit(\"search\",this.search,this.toggleLoading))},loading:function(t){this.mutableLoading=t}},methods:{toggleLoading:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null;return null==t?this.mutableLoading=!this.mutableLoading:this.mutableLoading=t}}}},function(t,e){\"use strict\";t.exports={watch:{typeAheadPointer:function(){this.maybeAdjustScroll()}},methods:{maybeAdjustScroll:function(){var t=this.pixelsToPointerTop(),e=this.pixelsToPointerBottom();return t<=this.viewport().top?this.scrollTo(t):e>=this.viewport().bottom?this.scrollTo(this.viewport().top+this.pointerHeight()):void 0},pixelsToPointerTop:function t(){var t=0;if(this.$refs.dropdownMenu)for(var e=0;e<this.typeAheadPointer;e++)t+=this.$refs.dropdownMenu.children[e].offsetHeight;return t},pixelsToPointerBottom:function(){return this.pixelsToPointerTop()+this.pointerHeight()},pointerHeight:function(){var t=!!this.$refs.dropdownMenu&&this.$refs.dropdownMenu.children[this.typeAheadPointer];return t?t.offsetHeight:0},viewport:function(){return{top:this.$refs.dropdownMenu?this.$refs.dropdownMenu.scrollTop:0,bottom:this.$refs.dropdownMenu?this.$refs.dropdownMenu.offsetHeight+this.$refs.dropdownMenu.scrollTop:0}},scrollTo:function(t){return this.$refs.dropdownMenu?this.$refs.dropdownMenu.scrollTop=t:null}}}},function(t,e){\"use strict\";t.exports={data:function(){return{typeAheadPointer:-1}},watch:{filteredOptions:function(){this.typeAheadPointer=0}},methods:{typeAheadUp:function(){this.typeAheadPointer>0&&(this.typeAheadPointer--,this.maybeAdjustScroll&&this.maybeAdjustScroll())},typeAheadDown:function(){this.typeAheadPointer<this.filteredOptions.length-1&&(this.typeAheadPointer++,this.maybeAdjustScroll&&this.maybeAdjustScroll())},typeAheadSelect:function(){this.filteredOptions[this.typeAheadPointer]?this.select(this.filteredOptions[this.typeAheadPointer]):this.taggable&&this.search.length&&this.select(this.search),this.clearSearchOnSelect&&(this.search=\"\")}}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var o=n(10),r=n(1).document,i=o(r)&&o(r.createElement);t.exports=function(t){return i?r.createElement(t):{}}},function(t,e,n){t.exports=!n(3)&&!n(9)(function(){return 7!=Object.defineProperty(n(32)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){\"use strict\";var o=n(19),r=n(12),i=n(39),s=n(6),a=n(4),u=n(18),l=n(63),c=n(21),f=n(69),p=n(8)(\"iterator\"),d=!([].keys&&\"next\"in[].keys()),h=\"@@iterator\",b=\"keys\",v=\"values\",g=function(){return this};t.exports=function(t,e,n,y,m,x,w){l(n,e,y);var S,O,_,j=function(t){if(!d&&t in C)return C[t];switch(t){case b:return function(){return new n(this,t)};case v:return function(){return new n(this,t)}}return function(){return new n(this,t)}},k=e+\" Iterator\",P=m==v,A=!1,C=t.prototype,M=C[p]||C[h]||m&&C[m],L=!d&&M||j(m),T=m?P?j(\"entries\"):L:void 0,E=\"Array\"==e?C.entries||M:M;if(E&&(_=f(E.call(new t)),_!==Object.prototype&&_.next&&(c(_,k,!0),o||a(_,p)||s(_,p,g))),P&&M&&M.name!==v&&(A=!0,L=function(){return M.call(this)}),o&&!w||!d&&!A&&C[p]||s(C,p,L),u[e]=L,u[k]=g,m)if(S={values:P?L:j(v),keys:x?L:j(b),entries:T},w)for(O in S)O in C||i(C,O,S[O]);else r(r.P+r.F*(d||A),e,S);return S}},function(t,e,n){var o=n(11),r=n(66),i=n(17),s=n(22)(\"IE_PROTO\"),a=function(){},u=\"prototype\",l=function(){var t,e=n(32)(\"iframe\"),o=i.length,r=\"<\",s=\">\";for(e.style.display=\"none\",n(60).appendChild(e),e.src=\"javascript:\",t=e.contentWindow.document,t.open(),t.write(r+\"script\"+s+\"document.F=Object\"+r+\"/script\"+s),t.close(),l=t.F;o--;)delete l[u][i[o]];return l()};t.exports=Object.create||function(t,e){var n;return null!==t?(a[u]=o(t),n=new a,a[u]=null,n[s]=t):n=l(),void 0===e?n:r(n,e)}},function(t,e,n){var o=n(38),r=n(17).concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return o(t,r)}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var o=n(4),r=n(7),i=n(57)(!1),s=n(22)(\"IE_PROTO\");t.exports=function(t,e){var n,a=r(t),u=0,l=[];for(n in a)n!=s&&o(a,n)&&l.push(n);for(;e.length>u;)o(a,n=e[u++])&&(~i(l,n)||l.push(n));return l}},function(t,e,n){t.exports=n(6)},function(t,e,n){var o=n(16);t.exports=function(t){return Object(o(t))}},function(t,e,n){\"use strict\";function o(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,\"__esModule\",{value:!0});var r=n(45),i=o(r),s=n(48),a=o(s),u=n(43),l=o(u),c=n(49),f=o(c),p=n(29),d=o(p),h=n(30),b=o(h),v=n(28),g=o(v);e.default={mixins:[d.default,b.default,g.default],props:{value:{default:null},options:{type:Array,default:function(){return[]}},disabled:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},maxHeight:{type:String,default:\"400px\"},searchable:{type:Boolean,default:!0},multiple:{type:Boolean,default:!1},placeholder:{type:String,default:\"\"},transition:{type:String,default:\"fade\"},clearSearchOnSelect:{type:Boolean,default:!0},closeOnSelect:{type:Boolean,default:!0},label:{type:String,default:\"label\"},index:{type:String,default:null},getOptionLabel:{type:Function,default:function(t){return this.index&&(t=this.findOptionByIndexValue(t)),\"object\"===(\"undefined\"==typeof t?\"undefined\":(0,f.default)(t))?t.hasOwnProperty(this.label)?t[this.label]:console.warn('[vue-select warn]: Label key \"option.'+this.label+'\" does not'+(\" exist in options object \"+(0,l.default)(t)+\".\\n\")+\"http://sagalbot.github.io/vue-select/#ex-labels\"):t}},onChange:{type:Function,default:function(t){this.$emit(\"input\",t)}},onTab:{type:Function,default:function(){this.selectOnTab&&this.typeAheadSelect()}},taggable:{type:Boolean,default:!1},tabindex:{type:Number,default:null},pushTags:{type:Boolean,default:!1},filterable:{type:Boolean,default:!0},filterBy:{type:Function,default:function(t,e,n){return(e||\"\").toLowerCase().indexOf(n.toLowerCase())>-1}},filter:{type:Function,default:function(t,e){var n=this;return t.filter(function(t){var o=n.getOptionLabel(t);return\"number\"==typeof o&&(o=o.toString()),n.filterBy(t,o,e)})}},createOption:{type:Function,default:function(t){return\"object\"===(0,f.default)(this.mutableOptions[0])&&(t=(0,a.default)({},this.label,t)),this.$emit(\"option:created\",t),t}},resetOnOptionsChange:{type:Boolean,default:!1},noDrop:{type:Boolean,default:!1},inputId:{type:String},dir:{type:String,default:\"auto\"},selectOnTab:{type:Boolean,default:!1}},data:function(){return{search:\"\",open:!1,mutableValue:null,mutableOptions:[]}},watch:{value:function(t){this.mutableValue=t},mutableValue:function(t,e){this.multiple?this.onChange?this.onChange(t):null:this.onChange&&t!==e?this.onChange(t):null},options:function(t){this.mutableOptions=t},mutableOptions:function(){!this.taggable&&this.resetOnOptionsChange&&(this.mutableValue=this.multiple?[]:null)},multiple:function(t){this.mutableValue=t?[]:null}},created:function(){this.mutableValue=this.value,this.mutableOptions=this.options.slice(0),this.mutableLoading=this.loading,this.$on(\"option:created\",this.maybePushTag)},methods:{select:function(t){if(!this.isOptionSelected(t)){if(this.taggable&&!this.optionExists(t)&&(t=this.createOption(t)),this.index){if(!t.hasOwnProperty(this.index))return console.warn('[vue-select warn]: Index key \"option.'+this.index+'\" does not'+(\" exist in options object \"+(0,l.default)(t)+\".\"));t=t[this.index]}this.multiple&&!this.mutableValue?this.mutableValue=[t]:this.multiple?this.mutableValue.push(t):this.mutableValue=t}this.onAfterSelect(t)},deselect:function(t){var e=this;if(this.multiple){var n=-1;this.mutableValue.forEach(function(o){(o===t||e.index&&o===t[e.index]||\"object\"===(\"undefined\"==typeof o?\"undefined\":(0,f.default)(o))&&o[e.label]===t[e.label])&&(n=o)});var o=this.mutableValue.indexOf(n);this.mutableValue.splice(o,1)}else this.mutableValue=null},clearSelection:function(){this.mutableValue=this.multiple?[]:null},onAfterSelect:function(t){this.closeOnSelect&&(this.open=!this.open,this.$refs.search.blur()),this.clearSearchOnSelect&&(this.search=\"\")},toggleDropdown:function(t){(t.target===this.$refs.openIndicator||t.target===this.$refs.search||t.target===this.$refs.toggle||t.target.classList.contains(\"selected-tag\")||t.target===this.$el)&&(this.open?this.$refs.search.blur():this.disabled||(this.open=!0,this.$refs.search.focus()))},isOptionSelected:function(t){var e=this,n=!1;return this.valueAsArray.forEach(function(o){\"object\"===(\"undefined\"==typeof o?\"undefined\":(0,f.default)(o))?n=e.optionObjectComparator(o,t):o!==t&&o!==t[e.index]||(n=!0)}),n},optionObjectComparator:function(t,e){return!(!this.index||t!==e[this.index])||(t[this.label]===e[this.label]||t[this.label]===e||!(!this.index||t[this.index]!==e[this.index]))},findOptionByIndexValue:function(t){var e=this;return this.options.forEach(function(n){(0,l.default)(n[e.index])===(0,l.default)(t)&&(t=n)}),t},onEscape:function(){this.search.length?this.search=\"\":this.$refs.search.blur()},onSearchBlur:function(){this.mousedown&&!this.searching?this.mousedown=!1:(this.clearSearchOnBlur&&(this.search=\"\"),this.open=!1,this.$emit(\"search:blur\"))},onSearchFocus:function(){this.open=!0,this.$emit(\"search:focus\")},maybeDeleteValue:function(){if(!this.$refs.search.value.length&&this.mutableValue)return this.multiple?this.mutableValue.pop():this.mutableValue=null},optionExists:function(t){var e=this,n=!1;return this.mutableOptions.forEach(function(o){\"object\"===(\"undefined\"==typeof o?\"undefined\":(0,f.default)(o))&&o[e.label]===t?n=!0:o===t&&(n=!0)}),n},maybePushTag:function(t){this.pushTags&&this.mutableOptions.push(t)},onMousedown:function(){this.mousedown=!0}},computed:{dropdownClasses:function(){return{open:this.dropdownOpen,single:!this.multiple,searching:this.searching,searchable:this.searchable,unsearchable:!this.searchable,loading:this.mutableLoading,rtl:\"rtl\"===this.dir,disabled:this.disabled}},clearSearchOnBlur:function(){return this.clearSearchOnSelect&&!this.multiple},searching:function(){return!!this.search},dropdownOpen:function(){return!this.noDrop&&(this.open&&!this.mutableLoading)},searchPlaceholder:function(){if(this.isValueEmpty&&this.placeholder)return this.placeholder},filteredOptions:function(){if(!this.filterable&&!this.taggable)return this.mutableOptions.slice();var t=this.search.length?this.filter(this.mutableOptions,this.search,this):this.mutableOptions;return this.taggable&&this.search.length&&!this.optionExists(this.search)&&t.unshift(this.search),t},isValueEmpty:function(){return!this.mutableValue||(\"object\"===(0,f.default)(this.mutableValue)?!(0,i.default)(this.mutableValue).length:!this.valueAsArray.length)},valueAsArray:function(){return this.multiple&&this.mutableValue?this.mutableValue:this.mutableValue?[].concat(this.mutableValue):[]},showClearButton:function(){return!this.multiple&&this.clearable&&!this.open&&null!=this.mutableValue}}}},function(t,e,n){\"use strict\";function o(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,\"__esModule\",{value:!0});var r=n(28),i=o(r),s=n(30),a=o(s),u=n(29),l=o(u);e.default={ajax:i.default,pointer:a.default,pointerScroll:l.default}},function(t,e,n){t.exports={default:n(50),__esModule:!0}},function(t,e,n){t.exports={default:n(51),__esModule:!0}},function(t,e,n){t.exports={default:n(52),__esModule:!0}},function(t,e,n){t.exports={default:n(53),__esModule:!0}},function(t,e,n){t.exports={default:n(54),__esModule:!0}},function(t,e,n){\"use strict\";function o(t){return t&&t.__esModule?t:{default:t}}e.__esModule=!0;var r=n(44),i=o(r);e.default=function(t,e,n){return e in t?(0,i.default)(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},function(t,e,n){\"use strict\";function o(t){return t&&t.__esModule?t:{default:t}}e.__esModule=!0;var r=n(47),i=o(r),s=n(46),a=o(s),u=\"function\"==typeof a.default&&\"symbol\"==typeof i.default?function(t){return typeof t}:function(t){return t&&\"function\"==typeof a.default&&t.constructor===a.default&&t!==a.default.prototype?\"symbol\":typeof t};e.default=\"function\"==typeof a.default&&\"symbol\"===u(i.default)?function(t){return\"undefined\"==typeof t?\"undefined\":u(t)}:function(t){return t&&\"function\"==typeof a.default&&t.constructor===a.default&&t!==a.default.prototype?\"symbol\":\"undefined\"==typeof t?\"undefined\":u(t)}},function(t,e,n){var o=n(2),r=o.JSON||(o.JSON={stringify:JSON.stringify});t.exports=function(t){return r.stringify.apply(r,arguments)}},function(t,e,n){n(75);var o=n(2).Object;t.exports=function(t,e,n){return o.defineProperty(t,e,n)}},function(t,e,n){n(76),t.exports=n(2).Object.keys},function(t,e,n){n(79),n(77),n(80),n(81),t.exports=n(2).Symbol},function(t,e,n){n(78),n(82),t.exports=n(27).f(\"iterator\")},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e){t.exports=function(){}},function(t,e,n){var o=n(7),r=n(73),i=n(72);t.exports=function(t){return function(e,n,s){var a,u=o(e),l=r(u.length),c=i(s,l);if(t&&n!=n){for(;l>c;)if(a=u[c++],a!=a)return!0}else for(;l>c;c++)if((t||c in u)&&u[c]===n)return t||c||0;return!t&&-1}}},function(t,e,n){var o=n(55);t.exports=function(t,e,n){if(o(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,o){return t.call(e,n,o)};case 3:return function(n,o,r){return t.call(e,n,o,r)}}return function(){return t.apply(e,arguments)}}},function(t,e,n){var o=n(13),r=n(37),i=n(20);t.exports=function(t){var e=o(t),n=r.f;if(n)for(var s,a=n(t),u=i.f,l=0;a.length>l;)u.call(t,s=a[l++])&&e.push(s);return e}},function(t,e,n){var o=n(1).document;t.exports=o&&o.documentElement},function(t,e,n){var o=n(31);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==o(t)?t.split(\"\"):Object(t)}},function(t,e,n){var o=n(31);t.exports=Array.isArray||function(t){return\"Array\"==o(t)}},function(t,e,n){\"use strict\";var o=n(35),r=n(14),i=n(21),s={};n(6)(s,n(8)(\"iterator\"),function(){return this}),t.exports=function(t,e,n){t.prototype=o(s,{next:r(1,n)}),i(t,e+\" Iterator\")}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var o=n(15)(\"meta\"),r=n(10),i=n(4),s=n(5).f,a=0,u=Object.isExtensible||function(){return!0},l=!n(9)(function(){return u(Object.preventExtensions({}))}),c=function(t){s(t,o,{value:{i:\"O\"+ ++a,w:{}}})},f=function(t,e){if(!r(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!i(t,o)){if(!u(t))return\"F\";if(!e)return\"E\";c(t)}return t[o].i},p=function(t,e){if(!i(t,o)){if(!u(t))return!0;if(!e)return!1;c(t)}return t[o].w},d=function(t){return l&&h.NEED&&u(t)&&!i(t,o)&&c(t),t},h=t.exports={KEY:o,NEED:!1,fastKey:f,getWeak:p,onFreeze:d}},function(t,e,n){var o=n(5),r=n(11),i=n(13);t.exports=n(3)?Object.defineProperties:function(t,e){r(t);for(var n,s=i(e),a=s.length,u=0;a>u;)o.f(t,n=s[u++],e[n]);return t}},function(t,e,n){var o=n(20),r=n(14),i=n(7),s=n(25),a=n(4),u=n(33),l=Object.getOwnPropertyDescriptor;e.f=n(3)?l:function(t,e){if(t=i(t),e=s(e,!0),u)try{return l(t,e)}catch(t){}if(a(t,e))return r(!o.f.call(t,e),t[e])}},function(t,e,n){var o=n(7),r=n(36).f,i={}.toString,s=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],a=function(t){try{return r(t)}catch(t){return s.slice()}};t.exports.f=function(t){return s&&\"[object Window]\"==i.call(t)?a(t):r(o(t))}},function(t,e,n){var o=n(4),r=n(40),i=n(22)(\"IE_PROTO\"),s=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=r(t),o(t,i)?t[i]:\"function\"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?s:null}},function(t,e,n){var o=n(12),r=n(2),i=n(9);t.exports=function(t,e){var n=(r.Object||{})[t]||Object[t],s={};s[t]=e(n),o(o.S+o.F*i(function(){n(1)}),\"Object\",s)}},function(t,e,n){var o=n(24),r=n(16);t.exports=function(t){return function(e,n){var i,s,a=String(r(e)),u=o(n),l=a.length;return u<0||u>=l?t?\"\":void 0:(i=a.charCodeAt(u),i<55296||i>56319||u+1===l||(s=a.charCodeAt(u+1))<56320||s>57343?t?a.charAt(u):i:t?a.slice(u,u+2):(i-55296<<10)+(s-56320)+65536)}}},function(t,e,n){var o=n(24),r=Math.max,i=Math.min;t.exports=function(t,e){return t=o(t),t<0?r(t+e,0):i(t,e)}},function(t,e,n){var o=n(24),r=Math.min;t.exports=function(t){return t>0?r(o(t),9007199254740991):0}},function(t,e,n){\"use strict\";var o=n(56),r=n(64),i=n(18),s=n(7);t.exports=n(34)(Array,\"Array\",function(t,e){this._t=s(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,r(1)):\"keys\"==e?r(0,n):\"values\"==e?r(0,t[n]):r(0,[n,t[n]])},\"values\"),i.Arguments=i.Array,o(\"keys\"),o(\"values\"),o(\"entries\")},function(t,e,n){var o=n(12);o(o.S+o.F*!n(3),\"Object\",{defineProperty:n(5).f})},function(t,e,n){var o=n(40),r=n(13);n(70)(\"keys\",function(){return function(t){return r(o(t))}})},function(t,e){},function(t,e,n){\"use strict\";var o=n(71)(!0);n(34)(String,\"String\",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=o(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){\"use strict\";var o=n(1),r=n(4),i=n(3),s=n(12),a=n(39),u=n(65).KEY,l=n(9),c=n(23),f=n(21),p=n(15),d=n(8),h=n(27),b=n(26),v=n(59),g=n(62),y=n(11),m=n(10),x=n(7),w=n(25),S=n(14),O=n(35),_=n(68),j=n(67),k=n(5),P=n(13),A=j.f,C=k.f,M=_.f,L=o.Symbol,T=o.JSON,E=T&&T.stringify,V=\"prototype\",B=d(\"_hidden\"),F=d(\"toPrimitive\"),N={}.propertyIsEnumerable,$=c(\"symbol-registry\"),D=c(\"symbols\"),I=c(\"op-symbols\"),R=Object[V],z=\"function\"==typeof L,H=o.QObject,G=!H||!H[V]||!H[V].findChild,J=i&&l(function(){return 7!=O(C({},\"a\",{get:function(){return C(this,\"a\",{value:7}).a}})).a})?function(t,e,n){var o=A(R,e);o&&delete R[e],C(t,e,n),o&&t!==R&&C(R,e,o)}:C,U=function(t){var e=D[t]=O(L[V]);return e._k=t,e},W=z&&\"symbol\"==typeof L.iterator?function(t){return\"symbol\"==typeof t}:function(t){return t instanceof L},K=function(t,e,n){return t===R&&K(I,e,n),y(t),e=w(e,!0),y(n),r(D,e)?(n.enumerable?(r(t,B)&&t[B][e]&&(t[B][e]=!1),n=O(n,{enumerable:S(0,!1)})):(r(t,B)||C(t,B,S(1,{})),t[B][e]=!0),J(t,e,n)):C(t,e,n)},Y=function(t,e){y(t);for(var n,o=v(e=x(e)),r=0,i=o.length;i>r;)K(t,n=o[r++],e[n]);return t},q=function(t,e){return void 0===e?O(t):Y(O(t),e)},Q=function(t){var e=N.call(this,t=w(t,!0));return!(this===R&&r(D,t)&&!r(I,t))&&(!(e||!r(this,t)||!r(D,t)||r(this,B)&&this[B][t])||e)},Z=function(t,e){if(t=x(t),e=w(e,!0),t!==R||!r(D,e)||r(I,e)){var n=A(t,e);return!n||!r(D,e)||r(t,B)&&t[B][e]||(n.enumerable=!0),n}},X=function(t){for(var e,n=M(x(t)),o=[],i=0;n.length>i;)r(D,e=n[i++])||e==B||e==u||o.push(e);return o},tt=function(t){for(var e,n=t===R,o=M(n?I:x(t)),i=[],s=0;o.length>s;)!r(D,e=o[s++])||n&&!r(R,e)||i.push(D[e]);return i};z||(L=function(){if(this instanceof L)throw TypeError(\"Symbol is not a constructor!\");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===R&&e.call(I,n),r(this,B)&&r(this[B],t)&&(this[B][t]=!1),J(this,t,S(1,n))};return i&&G&&J(R,t,{configurable:!0,set:e}),U(t)},a(L[V],\"toString\",function(){return this._k}),j.f=Z,k.f=K,n(36).f=_.f=X,n(20).f=Q,n(37).f=tt,i&&!n(19)&&a(R,\"propertyIsEnumerable\",Q,!0),h.f=function(t){return U(d(t))}),s(s.G+s.W+s.F*!z,{Symbol:L});for(var et=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),nt=0;et.length>nt;)d(et[nt++]);for(var ot=P(d.store),rt=0;ot.length>rt;)b(ot[rt++]);s(s.S+s.F*!z,\"Symbol\",{for:function(t){return r($,t+=\"\")?$[t]:$[t]=L(t)},keyFor:function(t){if(!W(t))throw TypeError(t+\" is not a symbol!\");for(var e in $)if($[e]===t)return e},useSetter:function(){G=!0},useSimple:function(){G=!1}}),s(s.S+s.F*!z,\"Object\",{create:q,defineProperty:K,defineProperties:Y,getOwnPropertyDescriptor:Z,getOwnPropertyNames:X,getOwnPropertySymbols:tt}),T&&s(s.S+s.F*(!z||l(function(){var t=L();return\"[null]\"!=E([t])||\"{}\"!=E({a:t})||\"{}\"!=E(Object(t))})),\"JSON\",{stringify:function(t){for(var e,n,o=[t],r=1;arguments.length>r;)o.push(arguments[r++]);if(n=e=o[1],(m(e)||void 0!==t)&&!W(t))return g(e)||(e=function(t,e){if(\"function\"==typeof n&&(e=n.call(this,t,e)),!W(e))return e}),o[1]=e,E.apply(T,o)}}),L[V][F]||n(6)(L[V],F,L[V].valueOf),f(L,\"Symbol\"),f(Math,\"Math\",!0),f(o.JSON,\"JSON\",!0)},function(t,e,n){n(26)(\"asyncIterator\")},function(t,e,n){n(26)(\"observable\")},function(t,e,n){n(74);for(var o=n(1),r=n(6),i=n(18),s=n(8)(\"toStringTag\"),a=\"CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList\".split(\",\"),u=0;u<a.length;u++){var l=a[u],c=o[l],f=c&&c.prototype;f&&!f[s]&&r(f,s,l),i[l]=i.Array}},function(t,e,n){e=t.exports=n(84)(),e.push([t.id,'.v-select{position:relative;font-family:inherit}.v-select,.v-select *{box-sizing:border-box}.v-select[dir=rtl] .vs__actions{padding:0 3px 0 6px}.v-select[dir=rtl] .dropdown-toggle .clear{margin-left:6px;margin-right:0}.v-select[dir=rtl] .selected-tag .close{margin-left:0;margin-right:2px}.v-select[dir=rtl] .dropdown-menu{text-align:right}.v-select .open-indicator{display:flex;align-items:center;cursor:pointer;pointer-events:all;opacity:1;width:12px}.v-select .open-indicator,.v-select .open-indicator:before{transition:all .15s cubic-bezier(1,-.115,.975,.855);transition-timing-function:cubic-bezier(1,-.115,.975,.855)}.v-select .open-indicator:before{border-color:rgba(60,60,60,.5);border-style:solid;border-width:3px 3px 0 0;content:\"\";display:inline-block;height:10px;width:10px;vertical-align:text-top;transform:rotate(133deg);box-sizing:inherit}.v-select.open .open-indicator:before{transform:rotate(315deg)}.v-select.loading .open-indicator{opacity:0}.v-select .dropdown-toggle{-webkit-appearance:none;-moz-appearance:none;appearance:none;display:flex;padding:0 0 4px;background:none;border:1px solid rgba(60,60,60,.26);border-radius:4px;white-space:normal}.v-select .vs__selected-options{display:flex;flex-basis:100%;flex-grow:1;flex-wrap:wrap;padding:0 2px;position:relative}.v-select .vs__actions{display:flex;align-items:stretch;padding:0 6px 0 3px}.v-select .dropdown-toggle .clear{font-size:23px;font-weight:700;line-height:1;color:rgba(60,60,60,.5);padding:0;border:0;background-color:transparent;cursor:pointer;margin-right:6px}.v-select.searchable .dropdown-toggle{cursor:text}.v-select.unsearchable .dropdown-toggle{cursor:pointer}.v-select.open .dropdown-toggle{border-bottom-color:transparent;border-bottom-left-radius:0;border-bottom-right-radius:0}.v-select .dropdown-menu{display:block;position:absolute;top:100%;left:0;z-index:1000;min-width:160px;padding:5px 0;margin:0;width:100%;overflow-y:scroll;border:1px solid rgba(0,0,0,.26);box-shadow:0 3px 6px 0 rgba(0,0,0,.15);border-top:none;border-radius:0 0 4px 4px;text-align:left;list-style:none;background:#fff}.v-select .no-options{text-align:center}.v-select .selected-tag{display:flex;align-items:center;background-color:#f0f0f0;border:1px solid #ccc;border-radius:4px;color:#333;line-height:1.42857143;margin:4px 2px 0;padding:0 .25em;transition:opacity .25s}.v-select.single .selected-tag{background-color:transparent;border-color:transparent}.v-select.single.open .selected-tag{position:absolute;opacity:.4}.v-select.single.searching .selected-tag{display:none}.v-select .selected-tag .close{margin-left:2px;font-size:1.25em;appearance:none;padding:0;cursor:pointer;background:0 0;border:0;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.v-select.single.searching:not(.open):not(.loading) input[type=search]{opacity:.2}.v-select input[type=search]::-webkit-search-cancel-button,.v-select input[type=search]::-webkit-search-decoration,.v-select input[type=search]::-webkit-search-results-button,.v-select input[type=search]::-webkit-search-results-decoration{display:none}.v-select input[type=search]::-ms-clear{display:none}.v-select input[type=search],.v-select input[type=search]:focus{appearance:none;-webkit-appearance:none;-moz-appearance:none;line-height:1.42857143;font-size:1em;display:inline-block;border:1px solid transparent;border-left:none;outline:none;margin:4px 0 0;padding:0 7px;max-width:100%;background:none;box-shadow:none;flex-grow:1;width:0}.v-select.unsearchable input[type=search]{opacity:0}.v-select.unsearchable input[type=search]:hover{cursor:pointer}.v-select li{line-height:1.42857143}.v-select li>a{display:block;padding:3px 20px;clear:both;color:#333;white-space:nowrap}.v-select li:hover{cursor:pointer}.v-select .dropdown-menu .active>a{color:#333;background:rgba(50,50,50,.1)}.v-select .dropdown-menu>.highlight>a{background:#5897fb;color:#fff}.v-select .highlight:not(:last-child){margin-bottom:0}.v-select .spinner{align-self:center;opacity:0;font-size:5px;text-indent:-9999em;overflow:hidden;border-top:.9em solid hsla(0,0%,39%,.1);border-right:.9em solid hsla(0,0%,39%,.1);border-bottom:.9em solid hsla(0,0%,39%,.1);border-left:.9em solid rgba(60,60,60,.45);transform:translateZ(0);animation:vSelectSpinner 1.1s infinite linear;transition:opacity .1s}.v-select .spinner,.v-select .spinner:after{border-radius:50%;width:5em;height:5em}.v-select.disabled .dropdown-toggle,.v-select.disabled .dropdown-toggle .clear,.v-select.disabled .dropdown-toggle input,.v-select.disabled .open-indicator,.v-select.disabled .selected-tag .close{cursor:not-allowed;background-color:#f8f8f8}.v-select.loading .spinner{opacity:1}@-webkit-keyframes vSelectSpinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes vSelectSpinner{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.fade-enter-active,.fade-leave-active{transition:opacity .15s cubic-bezier(1,.5,.8,1)}.fade-enter,.fade-leave-to{opacity:0}',\"\"])},function(t,e){t.exports=function(){var t=[];return t.toString=function(){for(var t=[],e=0;e<this.length;e++){var n=this[e];n[2]?t.push(\"@media \"+n[2]+\"{\"+n[1]+\"}\"):t.push(n[1])}return t.join(\"\")},t.i=function(e,n){\"string\"==typeof e&&(e=[[null,e,\"\"]]);for(var o={},r=0;r<this.length;r++){var i=this[r][0];\"number\"==typeof i&&(o[i]=!0)}for(r=0;r<e.length;r++){var s=e[r];\"number\"==typeof s[0]&&o[s[0]]||(n&&!s[2]?s[2]=n:n&&(s[2]=\"(\"+s[2]+\") and (\"+n+\")\"),t.push(s))}},t}},function(t,e,n){n(89);var o=n(86)(n(41),n(87),null,null);t.exports=o.exports},function(t,e){t.exports=function(t,e,n,o){var r,i=t=t||{},s=typeof t.default;\"object\"!==s&&\"function\"!==s||(r=t,i=t.default);var a=\"function\"==typeof i?i.options:i;if(e&&(a.render=e.render,a.staticRenderFns=e.staticRenderFns),n&&(a._scopeId=n),o){var u=a.computed||(a.computed={});Object.keys(o).forEach(function(t){var e=o[t];u[t]=function(){return e}})}return{esModule:r,exports:i,options:a}}},function(t,e){t.exports={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"dropdown v-select\",class:t.dropdownClasses,attrs:{dir:t.dir}},[n(\"div\",{ref:\"toggle\",staticClass:\"dropdown-toggle\",on:{mousedown:function(e){e.preventDefault(),t.toggleDropdown(e)}}},[n(\"div\",{ref:\"selectedOptions\",staticClass:\"vs__selected-options\"},[t._l(t.valueAsArray,function(e){return t._t(\"selected-option-container\",[n(\"span\",{key:e.index,staticClass:\"selected-tag\"},[t._t(\"selected-option\",[t._v(\"\\n \"+t._s(t.getOptionLabel(e))+\"\\n \")],null,\"object\"==typeof e?e:(o={},\no[t.label]=e,o)),t._v(\" \"),t.multiple?n(\"button\",{staticClass:\"close\",attrs:{disabled:t.disabled,type:\"button\",\"aria-label\":\"Remove option\"},on:{click:function(n){t.deselect(e)}}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"×\")])]):t._e()],2)],{option:\"object\"==typeof e?e:(r={},r[t.label]=e,r),deselect:t.deselect,multiple:t.multiple,disabled:t.disabled});var o,r}),t._v(\" \"),n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:t.search,expression:\"search\"}],ref:\"search\",staticClass:\"form-control\",attrs:{type:\"search\",autocomplete:\"off\",disabled:t.disabled,placeholder:t.searchPlaceholder,tabindex:t.tabindex,readonly:!t.searchable,id:t.inputId,role:\"combobox\",\"aria-expanded\":t.dropdownOpen,\"aria-label\":\"Search for option\"},domProps:{value:t.search},on:{keydown:[function(e){return\"button\"in e||!t._k(e.keyCode,\"delete\",[8,46],e.key)?void t.maybeDeleteValue(e):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"up\",38,e.key)?(e.preventDefault(),void t.typeAheadUp(e)):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"down\",40,e.key)?(e.preventDefault(),void t.typeAheadDown(e)):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"enter\",13,e.key)?(e.preventDefault(),void t.typeAheadSelect(e)):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"tab\",9,e.key)?void t.onTab(e):null}],keyup:function(e){return\"button\"in e||!t._k(e.keyCode,\"esc\",27,e.key)?void t.onEscape(e):null},blur:t.onSearchBlur,focus:t.onSearchFocus,input:function(e){e.target.composing||(t.search=e.target.value)}}})],2),t._v(\" \"),n(\"div\",{staticClass:\"vs__actions\"},[n(\"button\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.showClearButton,expression:\"showClearButton\"}],staticClass:\"clear\",attrs:{disabled:t.disabled,type:\"button\",title:\"Clear selection\"},on:{click:t.clearSelection}},[n(\"span\",{attrs:{\"aria-hidden\":\"true\"}},[t._v(\"×\")])]),t._v(\" \"),t.noDrop?t._e():n(\"i\",{ref:\"openIndicator\",staticClass:\"open-indicator\",attrs:{role:\"presentation\"}}),t._v(\" \"),t._t(\"spinner\",[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.mutableLoading,expression:\"mutableLoading\"}],staticClass:\"spinner\"},[t._v(\"Loading...\")])])],2)]),t._v(\" \"),n(\"transition\",{attrs:{name:t.transition}},[t.dropdownOpen?n(\"ul\",{ref:\"dropdownMenu\",staticClass:\"dropdown-menu\",style:{\"max-height\":t.maxHeight},attrs:{role:\"listbox\"},on:{mousedown:t.onMousedown}},[t._l(t.filteredOptions,function(e,o){return n(\"li\",{key:o,class:{active:t.isOptionSelected(e),highlight:o===t.typeAheadPointer},attrs:{role:\"option\"},on:{mouseover:function(e){t.typeAheadPointer=o}}},[n(\"a\",{on:{mousedown:function(n){n.preventDefault(),n.stopPropagation(),t.select(e)}}},[t._t(\"option\",[t._v(\"\\n \"+t._s(t.getOptionLabel(e))+\"\\n \")],null,\"object\"==typeof e?e:(r={},r[t.label]=e,r))],2)]);var r}),t._v(\" \"),t.filteredOptions.length?t._e():n(\"li\",{staticClass:\"no-options\"},[t._t(\"no-options\",[t._v(\"Sorry, no matching options.\")])],2)],2):t._e()])],1)},staticRenderFns:[]}},function(t,e,n){function o(t,e){for(var n=0;n<t.length;n++){var o=t[n],r=f[o.id];if(r){r.refs++;for(var i=0;i<r.parts.length;i++)r.parts[i](o.parts[i]);for(;i<o.parts.length;i++)r.parts.push(u(o.parts[i],e))}else{for(var s=[],i=0;i<o.parts.length;i++)s.push(u(o.parts[i],e));f[o.id]={id:o.id,refs:1,parts:s}}}}function r(t){for(var e=[],n={},o=0;o<t.length;o++){var r=t[o],i=r[0],s=r[1],a=r[2],u=r[3],l={css:s,media:a,sourceMap:u};n[i]?n[i].parts.push(l):e.push(n[i]={id:i,parts:[l]})}return e}function i(t,e){var n=h(),o=g[g.length-1];if(\"top\"===t.insertAt)o?o.nextSibling?n.insertBefore(e,o.nextSibling):n.appendChild(e):n.insertBefore(e,n.firstChild),g.push(e);else{if(\"bottom\"!==t.insertAt)throw new Error(\"Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.\");n.appendChild(e)}}function s(t){t.parentNode.removeChild(t);var e=g.indexOf(t);e>=0&&g.splice(e,1)}function a(t){var e=document.createElement(\"style\");return e.type=\"text/css\",i(t,e),e}function u(t,e){var n,o,r;if(e.singleton){var i=v++;n=b||(b=a(e)),o=l.bind(null,n,i,!1),r=l.bind(null,n,i,!0)}else n=a(e),o=c.bind(null,n),r=function(){s(n)};return o(t),function(e){if(e){if(e.css===t.css&&e.media===t.media&&e.sourceMap===t.sourceMap)return;o(t=e)}else r()}}function l(t,e,n,o){var r=n?\"\":o.css;if(t.styleSheet)t.styleSheet.cssText=y(e,r);else{var i=document.createTextNode(r),s=t.childNodes;s[e]&&t.removeChild(s[e]),s.length?t.insertBefore(i,s[e]):t.appendChild(i)}}function c(t,e){var n=e.css,o=e.media,r=e.sourceMap;if(o&&t.setAttribute(\"media\",o),r&&(n+=\"\\n/*# sourceURL=\"+r.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+\" */\"),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}var f={},p=function(t){var e;return function(){return\"undefined\"==typeof e&&(e=t.apply(this,arguments)),e}},d=p(function(){return/msie [6-9]\\b/.test(window.navigator.userAgent.toLowerCase())}),h=p(function(){return document.head||document.getElementsByTagName(\"head\")[0]}),b=null,v=0,g=[];t.exports=function(t,e){e=e||{},\"undefined\"==typeof e.singleton&&(e.singleton=d()),\"undefined\"==typeof e.insertAt&&(e.insertAt=\"bottom\");var n=r(t);return o(n,e),function(t){for(var i=[],s=0;s<n.length;s++){var a=n[s],u=f[a.id];u.refs--,i.push(u)}if(t){var l=r(t);o(l,e)}for(var s=0;s<i.length;s++){var u=i[s];if(0===u.refs){for(var c=0;c<u.parts.length;c++)u.parts[c]();delete f[u.id]}}}};var y=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join(\"\\n\")}}()},function(t,e,n){var o=n(83);\"string\"==typeof o&&(o=[[t.id,o,\"\"]]);n(88)(o,{});o.locals&&(t.exports=o.locals)}])});\n//# sourceMappingURL=vue-select.js.map","function validate(binding) {\r\n if (typeof binding.value !== 'function') {\r\n console.warn('[Vue-click-outside:] provided expression', binding.expression, 'is not a function.')\r\n return false\r\n }\r\n\r\n return true\r\n}\r\n\r\nfunction isPopup(popupItem, elements) {\r\n if (!popupItem || !elements)\r\n return false\r\n\r\n for (var i = 0, len = elements.length; i < len; i++) {\r\n try {\r\n if (popupItem.contains(elements[i])) {\r\n return true\r\n }\r\n if (elements[i].contains(popupItem)) {\r\n return false\r\n }\r\n } catch(e) {\r\n return false\r\n }\r\n }\r\n\r\n return false\r\n}\r\n\r\nfunction isServer(vNode) {\r\n return typeof vNode.componentInstance !== 'undefined' && vNode.componentInstance.$isServer\r\n}\r\n\r\nexports = module.exports = {\r\n bind: function (el, binding, vNode) {\r\n if (!validate(binding)) return\r\n\r\n // Define Handler and cache it on the element\r\n function handler(e) {\r\n if (!vNode.context) return\r\n\r\n // some components may have related popup item, on which we shall prevent the click outside event handler.\r\n var elements = e.path || (e.composedPath && e.composedPath())\r\n elements && elements.length > 0 && elements.unshift(e.target)\r\n \r\n if (el.contains(e.target) || isPopup(vNode.context.popupItem, elements)) return\r\n\r\n el.__vueClickOutside__.callback(e)\r\n }\r\n\r\n // add Event Listeners\r\n el.__vueClickOutside__ = {\r\n handler: handler,\r\n callback: binding.value\r\n }\r\n !isServer(vNode) && document.addEventListener('click', handler)\r\n },\r\n\r\n update: function (el, binding) {\r\n if (validate(binding)) el.__vueClickOutside__.callback = binding.value\r\n },\r\n \r\n unbind: function (el, binding, vNode) {\r\n // Remove Event Listeners\r\n !isServer(vNode) && document.removeEventListener('click', el.__vueClickOutside__.handler)\r\n delete el.__vueClickOutside__\r\n }\r\n}\r\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"ul\",\n _vm._l(_vm.menu, function(item, key) {\n return _c(\"popover-item\", { key: key, attrs: { item: item } })\n })\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"li\", [\n _vm.item.href\n ? _c(\n \"a\",\n {\n attrs: {\n href: _vm.item.href ? _vm.item.href : \"#\",\n target: _vm.item.target ? _vm.item.target : \"\",\n rel: \"noreferrer noopener\"\n },\n on: { click: _vm.item.action }\n },\n [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ]\n )\n : _vm.item.action\n ? _c(\"button\", { on: { click: _vm.item.action } }, [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ])\n : _c(\"span\", { staticClass: \"menuitem\" }, [\n _c(\"span\", { class: _vm.item.icon }),\n _vm._v(\" \"),\n _vm.item.text\n ? _c(\"span\", [_vm._v(_vm._s(_vm.item.text))])\n : _vm.item.longtext\n ? _c(\"p\", [_vm._v(_vm._s(_vm.item.longtext))])\n : _vm._e()\n ])\n ])\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","<template>\n\t<li>\n\t\t<!-- If item.href is set, a link will be directly used -->\n\t\t<a @click=\"item.action\" v-if=\"item.href\" :href=\"(item.href) ? item.href : '#' \" :target=\"(item.target) ? item.target : '' \" rel=\"noreferrer noopener\">\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</a>\n\t\t<!-- If item.action is set instead, a button will be used -->\n\t\t<button @click=\"item.action\" v-else-if=\"item.action\">\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</button>\n\t\t<!-- If item.longtext is set AND the item does not have an action -->\n\t\t<span class=\"menuitem\" v-else>\n\t\t\t<span :class=\"item.icon\"></span>\n\t\t\t<span v-if=\"item.text\">{{item.text}}</span>\n\t\t\t<p v-else-if=\"item.longtext\">{{item.longtext}}</p>\n\t\t</span>\n\t</li>\n</template>\n\n<script>\nexport default {\n\tprops: ['item']\n}\n</script>\n","import mod from \"-!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./popoverItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./popoverItem.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./popoverItem.vue?vue&type=template&id=4c6af9e6&\"\nimport script from \"./popoverItem.vue?vue&type=script&lang=js&\"\nexport * from \"./popoverItem.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/nickv/Nextcloud/15/server/apps/updatenotification/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('4c6af9e6', component.options)\n } else {\n api.reload('4c6af9e6', component.options)\n }\n module.hot.accept(\"./popoverItem.vue?vue&type=template&id=4c6af9e6&\", function () {\n api.rerender('4c6af9e6', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/popoverMenu/popoverItem.vue\"\nexport default component.exports","import mod from \"-!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./popoverMenu.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./popoverMenu.vue?vue&type=script&lang=js&\"","<template>\n\t<ul>\n\t\t<popover-item v-for=\"(item, key) in menu\" :item=\"item\" :key=\"key\" />\n\t</ul>\n</template>\n\n\n<script>\nimport popoverItem from './popoverMenu/popoverItem';\n\nexport default {\n\tname: 'popoverMenu',\n\tprops: ['menu'],\n\tcomponents: {\n\t\tpopoverItem\n\t}\n}\n</script>\n","import { render, staticRenderFns } from \"./popoverMenu.vue?vue&type=template&id=04ea21c4&\"\nimport script from \"./popoverMenu.vue?vue&type=script&lang=js&\"\nexport * from \"./popoverMenu.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/nickv/Nextcloud/15/server/apps/updatenotification/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('04ea21c4', component.options)\n } else {\n api.reload('04ea21c4', component.options)\n }\n module.hot.accept(\"./popoverMenu.vue?vue&type=template&id=04ea21c4&\", function () {\n api.rerender('04ea21c4', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/popoverMenu.vue\"\nexport default component.exports","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"followupsection\", attrs: { id: \"updatenotification\" } },\n [\n _c(\n \"div\",\n { staticClass: \"update\" },\n [\n _vm.isNewVersionAvailable\n ? [\n _vm.versionIsEol\n ? _c(\"p\", [\n _c(\"span\", { staticClass: \"warning\" }, [\n _c(\"span\", { staticClass: \"icon icon-error\" }),\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.\"\n )\n ) +\n \"\\n\\t\\t\\t\\t\"\n )\n ])\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"p\", [\n _c(\"span\", {\n domProps: {\n innerHTML: _vm._s(_vm.newVersionAvailableString)\n }\n }),\n _c(\"br\"),\n _vm._v(\" \"),\n !_vm.isListFetched\n ? _c(\"span\", { staticClass: \"icon icon-loading-small\" })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"span\", {\n domProps: { innerHTML: _vm._s(_vm.statusText) }\n })\n ]),\n _vm._v(\" \"),\n _vm.missingAppUpdates.length\n ? [\n _c(\n \"h3\",\n { on: { click: _vm.toggleHideMissingUpdates } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Apps missing updates\"\n )\n ) +\n \"\\n\\t\\t\\t\\t\\t\"\n ),\n !_vm.hideMissingUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-n\"\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hideMissingUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-s\"\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n !_vm.hideMissingUpdates\n ? _c(\n \"ul\",\n { staticClass: \"applist\" },\n _vm._l(_vm.missingAppUpdates, function(app) {\n return _c(\"li\", [\n _c(\n \"a\",\n {\n attrs: {\n href:\n \"https://apps.nextcloud.com/apps/\" +\n app.appId,\n title: _vm.t(\"settings\", \"View in store\")\n }\n },\n [_vm._v(_vm._s(app.appName) + \" ↗\")]\n )\n ])\n })\n )\n : _vm._e()\n ]\n : _vm._e(),\n _vm._v(\" \"),\n _vm.availableAppUpdates.length\n ? [\n _c(\n \"h3\",\n { on: { click: _vm.toggleHideAvailableUpdates } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Apps with available updates\"\n )\n ) +\n \"\\n\\t\\t\\t\\t\\t\"\n ),\n !_vm.hideAvailableUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-n\"\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hideAvailableUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-s\"\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"ul\",\n { staticClass: \"applist\" },\n _vm._l(_vm.availableAppUpdates, function(app) {\n return !_vm.hideAvailableUpdates\n ? _c(\"li\", [\n _c(\n \"a\",\n {\n attrs: {\n href:\n \"https://apps.nextcloud.com/apps/\" +\n app.appId,\n title: _vm.t(\"settings\", \"View in store\")\n }\n },\n [_vm._v(_vm._s(app.appName) + \" ↗\")]\n )\n ])\n : _vm._e()\n })\n )\n ]\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"p\", [\n _vm.updaterEnabled\n ? _c(\n \"a\",\n {\n staticClass: \"button\",\n attrs: { href: \"#\" },\n on: { click: _vm.clickUpdaterButton }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"updatenotification\", \"Open updater\"))\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.downloadLink\n ? _c(\n \"a\",\n {\n staticClass: \"button\",\n class: { hidden: !_vm.updaterEnabled },\n attrs: { href: _vm.downloadLink }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"updatenotification\", \"Download now\"))\n )\n ]\n )\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _vm.whatsNew\n ? _c(\"div\", { staticClass: \"whatsNew\" }, [\n _c(\"div\", { staticClass: \"toggleWhatsNew\" }, [\n _c(\n \"span\",\n {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n on: { click: _vm.toggleMenu }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"updatenotification\", \"What's new?\"))\n )\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: {\n \"menu-center\": true,\n open: _vm.openedWhatsNew\n }\n },\n [\n _c(\"popover-menu\", {\n attrs: { menu: _vm.whatsNew }\n })\n ],\n 1\n )\n ])\n ])\n : _vm._e()\n ]\n : !_vm.isUpdateChecked\n ? [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The update check is not yet finished. Please refresh the page.\"\n )\n )\n )\n ]\n : [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Your version is up to date.\"\n )\n ) +\n \"\\n\\t\\t\\t\"\n ),\n _c(\"span\", {\n staticClass: \"icon-info svg\",\n attrs: { title: _vm.lastCheckedOnString }\n })\n ],\n _vm._v(\" \"),\n !_vm.isDefaultUpdateServerURL\n ? [\n _c(\"p\", [\n _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"A non-default update server is in use to be checked for updates:\"\n )\n ) + \" \"\n ),\n _c(\"code\", [_vm._v(_vm._s(_vm.updateServerURL))])\n ])\n ])\n ]\n : _vm._e()\n ],\n 2\n ),\n _vm._v(\" \"),\n _c(\"p\", [\n _c(\"label\", { attrs: { for: \"release-channel\" } }, [\n _vm._v(_vm._s(_vm.t(\"updatenotification\", \"Update channel:\")))\n ]),\n _vm._v(\" \"),\n _c(\n \"select\",\n {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.currentChannel,\n expression: \"currentChannel\"\n }\n ],\n attrs: { id: \"release-channel\" },\n on: {\n change: [\n function($event) {\n var $$selectedVal = Array.prototype.filter\n .call($event.target.options, function(o) {\n return o.selected\n })\n .map(function(o) {\n var val = \"_value\" in o ? o._value : o.value\n return val\n })\n _vm.currentChannel = $event.target.multiple\n ? $$selectedVal\n : $$selectedVal[0]\n },\n _vm.changeReleaseChannel\n ]\n }\n },\n _vm._l(_vm.channels, function(channel) {\n return _c(\"option\", { domProps: { value: channel } }, [\n _vm._v(_vm._s(channel))\n ])\n })\n ),\n _vm._v(\" \"),\n _c(\"span\", { staticClass: \"msg\", attrs: { id: \"channel_save_msg\" } }),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.\"\n )\n )\n )\n ]),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.\"\n )\n )\n )\n ])\n ]),\n _vm._v(\" \"),\n _c(\"p\", { staticClass: \"channel-description\" }, [\n _c(\"span\", {\n domProps: { innerHTML: _vm._s(_vm.productionInfoString) }\n }),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"span\", { domProps: { innerHTML: _vm._s(_vm.stableInfoString) } }),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"span\", { domProps: { innerHTML: _vm._s(_vm.betaInfoString) } })\n ]),\n _vm._v(\" \"),\n _c(\n \"p\",\n { attrs: { id: \"oca_updatenotification_groups\" } },\n [\n _vm._v(\n \"\\n\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Notify members of the following groups about available updates:\"\n )\n ) +\n \"\\n\\t\\t\"\n ),\n _c(\"v-select\", {\n attrs: {\n multiple: \"\",\n value: _vm.notifyGroups,\n options: _vm.availableGroups\n }\n }),\n _c(\"br\"),\n _vm._v(\" \"),\n _vm.currentChannel === \"daily\" || _vm.currentChannel === \"git\"\n ? _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Only notification for app updates are available.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.currentChannel === \"daily\"\n ? _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The selected update channel makes dedicated notifications for the server obsolete.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.currentChannel === \"git\"\n ? _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The selected update channel does not support updates of the server.\"\n )\n )\n )\n ])\n : _vm._e()\n ],\n 1\n )\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","import mod from \"-!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./root.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./root.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./root.vue?vue&type=template&id=6f6af01c&\"\nimport script from \"./root.vue?vue&type=script&lang=js&\"\nexport * from \"./root.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/nickv/Nextcloud/15/server/apps/updatenotification/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('6f6af01c', component.options)\n } else {\n api.reload('6f6af01c', component.options)\n }\n module.hot.accept(\"./root.vue?vue&type=template&id=6f6af01c&\", function () {\n api.rerender('6f6af01c', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/root.vue\"\nexport default component.exports","/**\n * @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n/* global define, $ */\nimport Vue from 'vue';\nimport Root from './components/root'\n\nVue.mixin({\n\tmethods: {\n\t\tt: function(app, text, vars, count, options) {\n\t\t\treturn OC.L10N.translate(app, text, vars, count, options);\n\t\t},\n\t\tn: function(app, textSingular, textPlural, count, vars, options) {\n\t\t\treturn OC.L10N.translatePlural(app, textSingular, textPlural, count, vars, options);\n\t\t}\n\t}\n});\n\nconst vm = new Vue({\n\trender: h => h(Root)\n}).$mount('#updatenotification');\n\n\n"],"sourceRoot":""}
\ No newline at end of file +{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///(webpack)/buildin/global.js","webpack:///src/components/root.vue","webpack:///./node_modules/vue/dist/vue.runtime.esm.js","webpack:///./node_modules/nextcloud-vue/dist/ncvuecomponents.js","webpack:///./node_modules/v-tooltip/dist/v-tooltip.esm.js","webpack:///./node_modules/vue-click-outside/index.js","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///./node_modules/process/browser.js","webpack:///./src/components/root.vue?7b3c","webpack:///./src/components/root.vue","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./src/components/root.vue?3eba","webpack:///./src/init.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","g","this","Function","eval","e","window","__webpack_exports__","components","Multiselect","nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__","PopoverMenu","directives","ClickOutside","vue_click_outside__WEBPACK_IMPORTED_MODULE_2___default","tooltip","v_tooltip__WEBPACK_IMPORTED_MODULE_1__","data","newVersionString","lastCheckedDate","isUpdateChecked","updaterEnabled","versionIsEol","downloadLink","isNewVersionAvailable","updateServerURL","changelogURL","whatsNewData","currentChannel","channels","notifyGroups","availableGroups","isDefaultUpdateServerURL","enableChangeWatcher","availableAppUpdates","missingAppUpdates","appStoreFailed","appStoreDisabled","isListFetched","hideMissingUpdates","hideAvailableUpdates","openedWhatsNew","_$el","_$releaseChannel","_$notifyGroups","watch","selectedOptions","selectedGroups","_","each","group","push","OCP","AppConfig","setValue","JSON","stringify","$","ajax","url","OC","linkToOCS","newVersion","type","beforeSend","request","setRequestHeader","success","response","ocs","available","missing","error","xhr","responseJSON","appstore_disabled","computed","newVersionAvailableString","lastCheckedOnString","statusText","length","productionInfoString","stableInfoString","betaInfoString","whatsNew","icon","longtext","href","text","target","action","methods","clickUpdaterButton","generateUrl","getRootPath","headers","X-Updater-Auth","method","body","remove","html","dom","filter","textContent","innerHTML","removeAttr","attr","Notification","showTemporary","changeReleaseChannel","val","channel","msg","finishedAction","toggleHideMissingUpdates","toggleHideAvailableUpdates","toggleMenu","hideMenu","beforeMount","parse","lastChecked","changes","admin","concat","regular","mounted","$el","find","on","$emit","dataType","results","groups","label","global","setImmediate","emptyObject","freeze","isUndef","v","undefined","isDef","isTrue","isPrimitive","isObject","obj","_toString","toString","isPlainObject","isRegExp","isValidArrayIndex","parseFloat","String","Math","floor","isFinite","toNumber","isNaN","makeMap","str","expectsLowerCase","map","list","split","toLowerCase","isReservedAttribute","arr","item","index","indexOf","splice","hasOwn","cached","fn","cache","camelizeRE","camelize","replace","toUpperCase","capitalize","charAt","slice","hyphenateRE","hyphenate","ctx","boundFn","a","arguments","apply","_length","toArray","start","ret","Array","extend","to","_from","toObject","res","noop","b","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArray","isArrayB","every","keysA","keys","keysB","looseIndexOf","once","called","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","config","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","_lifecycleHooks","isReserved","charCodeAt","def","writable","configurable","bailRE","_isServer","hasProto","inBrowser","inWeex","WXEnvironment","platform","weexPlatform","UA","navigator","userAgent","isIE","test","isIE9","isEdge","isIOS","nativeWatch","supportsPassive","opts","addEventListener","isServerRendering","env","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","ownKeys","Set","set","has","add","clear","warn","uid","Dep","id","subs","addSub","sub","removeSub","depend","addDep","notify","update","targetStack","pushTarget","_target","popTarget","pop","VNode","tag","children","elm","context","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","parent","raw","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","defineProperties","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","forEach","original","args","len","inserted","result","ob","__ob__","observeArray","dep","arrayKeys","getOwnPropertyNames","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","src","__proto__","observe","asRootData","isExtensible","_isVue","defineReactive","customSetter","shallow","getOwnPropertyDescriptor","setter","childOb","dependArray","newVal","max","del","items","strats","mergeData","from","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","mergeAssets","hook","key$1","props","inject","provide","defaultStrat","mergeOptions","options","normalizeProps","normalized","normalizeInject","dirs","normalizeDirectives","extendsFrom","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","prop","absent","booleanIndex","getTypeIndex","Boolean","stringIndex","default","$options","_props","getType","getPropDefaultValue","prevShouldObserve","match","isSameType","expectedTypes","handleError","err","info","cur","$parent","hooks","errorCaptured","globalHandleError","logError","console","microTimerFunc","macroTimerFunc","callbacks","pending","flushCallbacks","copies","useMacroTask","MessageChannel","setTimeout","port","port2","port1","onmessage","postMessage","Promise","resolve","then","nextTick","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","oldOn","remove$$1","old","event","params","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","lastIndex","last","isTextNode","shift","_isVList","isFalse","ensureCtor","comp","base","getFirstComponentChild","$once","$on","remove$1","$off","updateComponentListeners","listeners","oldListeners","resolveSlots","slots","attrs","slot","name$1","isWhitespace","resolveScopedSlots","activeInstance","isInInactiveTree","_inactive","activateChildComponent","direct","_directInactive","$children","callHook","handlers","j","_hasHookEvent","queue","activatedChildren","waiting","flushing","flushSchedulerQueue","watcher","sort","run","activatedQueue","updatedQueue","callActivatedHooks","_watcher","_isMounted","callUpdatedHooks","emit","uid$1","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","sync","active","dirty","deps","newDeps","depIds","newDepIds","expression","path","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","proxy","sourceKey","initState","propsOptions","_propKeys","loop","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","handler","createWatcher","initWatch","shouldCache","createComputedGetter","$watch","resolveInject","provideKey","source","_provided","provideDefault","renderList","render","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","slotNodes","$slots","_rendered","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","domProps","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","staticRenderFns","_renderProxy","markOnce","markStaticNode","bindObjectListeners","existing","ours","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","FunctionalRenderContext","contextVm","_original","isCompiled","_compiled","needNormalization","injections","scopedSlots","_scopeId","_c","createElement","cloneAndMarkFunctionalResult","clone","mergeProps","componentVNodeHooks","init","hydrating","parentElm","refElm","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","_parentElm","_refElm","inlineTemplate","createComponentInstanceForVnode","$mount","oldVnode","parentVnode","renderChildren","hasChildren","_renderChildren","$vnode","_vnode","$attrs","$listeners","propKeys","_parentListeners","$forceUpdate","updateChildComponent","insert","queueActivatedComponent","destroy","deactivateChildComponent","$destroy","hooksToMerge","createComponent","baseCtor","_base","cid","factory","errorComp","resolved","loading","loadingComp","contexts","forceRender","reject","reason","component","delay","timeout","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","functional","renderContext","vnodes","createFunctionalComponent","nativeOn","abstract","installComponentHooks","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","applyNS","force","style","class","registerDeepBindings","_createElement","uid$3","super","superOptions","modifiedOptions","modified","latest","extended","extendOptions","sealed","sealedOptions","dedupe","resolveModifiedOptions","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","constructor","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$root","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","el","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","cbs","i$1","eventsMixin","_update","prevEl","prevVnode","prevActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","RegExp","builtInComponents","KeepAlive","include","exclude","Number","created","destroyed","this$1","parseInt","configDef","util","delete","plugin","installedPlugins","_installedPlugins","unshift","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","ssrContext","version","acceptValue","isEnumeratedAttr","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","isFalsyAttrValue","genClassForVnode","parentNode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","nodeOps","tagName","document","multiple","setAttribute","createElementNS","namespace","createTextNode","createComment","insertBefore","newNode","referenceNode","removeChild","appendChild","nextSibling","setTextContent","setStyleScope","scopeId","registerRef","isRemoval","refs","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","dir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","join","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","removeAttribute","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","target$1","klass","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","add$1","_withTask","withMacroTask","onceHandler","remove$2","createOnceHandler","updateDOMListeners","change","normalizeEvents","events","updateDOMProps","oldProps","childNodes","_value","strCur","shouldUpdateValue","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","number","trim","isDirtyWithModifiers","parseStyleText","cssText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","normalize","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","addClass","classList","getAttribute","removeClass","tar","resolveTransition","css","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","styles","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","patch","backend","removeNode","createElm","insertedVnodeQueue","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","pre","hasChildNodes","childrenMatch","firstChild","fullInvoke","isInitialPatch","isRealElement","hasAttribute","emptyNodeAt","oldElm","parentElm$1","patchable","i$2","createPatchFunction","vmodel","trigger","directive","binding","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","some","hasNoMatchingOption","actuallySetSelected","isMultiple","selected","option","selectedIndex","createEvent","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","display","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","h","rawChild","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","pos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","prevChildren","rawChildren","transitionData","kept","removed","c$1","beforeUpdate","updated","hasMove","_reflow","offsetHeight","propertyName","_hasMove","cloneNode","HTMLUnknownElement","HTMLElement","mountComponent","querySelector","query","u","f","F","G","S","P","B","y","U","core","W","R","self","__g","TypeError","store","__e","min","inspectSource","isArrayBuffer","isBuffer","isFormData","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isString","isNumber","isUndefined","isDate","isFile","isBlob","isFunction","isStream","pipe","isURLSearchParams","URLSearchParams","isStandardBrowserEnv","product","merge","x","w","ceil","O","k","E","T","D","A","C","M","N","L","I","V","H","RangeError","Y","z","Uint8Array","q","DataView","J","K","X","Z","Q","tt","et","nt","rt","values","it","ot","entries","at","lastIndexOf","st","reduce","ut","reduceRight","ct","lt","ft","pt","dt","toLocaleString","ht","vt","mt","gt","yt","CONSTR","bt","TYPED","VIEW","xt","Et","wt","Uint16Array","St","Ot","kt","Tt","Dt","At","_d","Ct","next","done","Mt","Pt","Nt","Lt","copyWithin","fill","findIndex","includes","reverse","subarray","byteOffset","BYTES_PER_ELEMENT","jt","Ft","It","$t","Rt","Bt","Vt","ABV","round","byteLength","of","valueOf","preventExtensions","KEY","NEED","fastKey","getWeak","onFreeze","$isServer","composedPath","contains","popupItem","__vueClickOutside__","random","contentWindow","open","write","close","getPrototypeOf","propertyIsEnumerable","btoa","unescape","encodeURIComponent","sources","sourceRoot","media","sourceMap","parts","DEBUG","Error","head","getElementsByTagName","ssrId","styleSheet","substr","month","i18n","dayNamesShort","dayNames","monthNamesShort","monthNames","amPm","DoFn","getDate","DD","Do","getDay","dd","ddd","dddd","getMonth","MM","MMM","MMMM","YY","getFullYear","YYYY","getHours","hh","HH","getMinutes","mm","getSeconds","ss","getMilliseconds","SS","SSS","ZZ","getTimezoneOffset","abs","day","Date","year","hour","minute","second","millisecond","isPm","timezoneOffset","masks","shortDate","mediumDate","longDate","fullDate","shortTime","mediumTime","longTime","format","getTime","search","UTC","popupElm","hours","minutes","zh","days","months","pickers","date","dateRange","en","ro","fr","es","pt-br","ru","de","cs","sl","language","offsetParent","offsetTop","scrollTop","clientHeight","__VUE_SSR_CONTEXT__","_registeredComponents","_ssrRegister","shadowRoot","_injectStyles","beforeCreate","PanelDate","startAt","endAt","dateFormat","calendarMonth","calendarYear","firstDayOfWeek","validator","disabledDate","selectDate","getDays","getDates","setDate","setMonth","getCellClasses","setHours","getCellTitle","title","click","PanelYear","firstYear","disabledYear","isDisabled","selectYear","cell","actived","disabled","PanelMonth","disabledMonth","selectMonth","PanelTime","timePickerOptions","minuteStep","timeType","disabledTime","currentHours","currentMinutes","currentSeconds","stringifyText","selectTime","pickTime","getTimeSelectOptions","step","mx-time-picker-item","setMinutes","setSeconds","width","dispatch","visible","notBefore","notAfter","disabledDays","panel","dates","now","timeHeader","yearHeader","notBeforeTime","getCriticalTime","notAfterTime","handelPanelChange","querySelectorAll","showPanelMonth","showPanelYear","showPanelTime","showPanelDate","showPanelNone","updateNow","inBefore","inAfter","inDisabledDays","isDisabledYear","isDisabledMonth","isDisabledDate","isDisabledTime","changeCalendarYear","changeCalendarMonth","getSibling","handleIconMonth","flag","sibling","handleIconYear","changePanelYears","handleBtnYear","handleBtnMonth","handleTimeHeader","date-format","calendar-month","calendar-year","start-at","end-at","first-day-of-week","disabled-date","select","disabled-year","first-year","disabled-month","minute-step","time-picker-options","disabled-time","time-type","pick","assign","fecha","CalendarPanel","clickoutside","lang","range","rangeSeparator","confirmText","confirm","editable","clearable","shortcuts","inputName","inputClass","appendToBody","popupStyle","currentValue","userInput","popupVisible","position","initCalendar","innerPlaceholder","computedWidth","showClearIcon","innerType","innerShortcuts","onClick","updateDate","innerDateFormat","innerPopupStyle","calendar","_displayPopup","displayPopup","beforeDestroy","handleValueChange","parseDate","dateEqual","rangeEqual","selectRange","clearDate","confirmDate","closePopup","selectStartDate","selectEndDate","selectStartTime","selectEndTime","showPopup","getPopupSize","visibility","offsetWidth","marginLeft","marginRight","height","marginTop","marginBottom","documentElement","clientWidth","_popupRect","pageXOffset","pageYOffset","right","bottom","handleInput","handleChange","mx-datepicker-range","autocomplete","readonly","input","xmlns","viewBox","rx","ry","x1","x2","y1","y2","font-size","stroke-width","text-anchor","dominant-baseline","stopPropagation","preventDefault","box-shadow","select-date","select-time","locals","getOwnPropertySymbols","callee","return","BREAK","RETURN","getConstructor","setStrong","Ht","nodeName","host","ownerDocument","overflow","overflowX","overflowY","MSInputMethodContext","documentMode","nextElementSibling","compareDocumentPosition","Node","DOCUMENT_POSITION_FOLLOWING","createRange","setStart","setEnd","commonAncestorContainer","firstElementChild","scrollingElement","borderTopWidth","borderLeftWidth","parentElement","innerWidth","innerHeight","area","function","enabled","offsets","popper","reference","defaultView","order","FLIP","CLOCKWISE","COUNTERCLOCKWISE","placement","positionFixed","eventsEnabled","removeOnDestroy","onCreate","onUpdate","offset","preventOverflow","boundariesElement","instance","padding","boundaries","priority","primary","escapeWithReference","secondary","keepTogether","arrow","element","arrowElement","flip","flipped","originalPlacement","behavior","flipVariations","inner","hide","attributes","computeStyle","gpuAcceleration","willChange","x-placement","arrowStyles","applyStyle","onLoad","scheduleUpdate","Defaults","state","isDestroyed","isCreated","scrollParents","jquery","enableEventListeners","disableEventListeners","updateBound","scrollElement","cancelAnimationFrame","Utils","PopperUtils","placements","className","baseVal","SVGElement","SVGAnimatedString","iterator","container","template","_isOpen","_classes","_tooltipNode","_setContent","classes","defaultClass","setClasses","dispose","popperInstance","_isDisposed","_enableDocumentTouch","_setEventListeners","autoHide","asyncContent","_applyContent","innerSelector","loadingClass","loadingContent","catch","innerText","clearTimeout","_disposeTimer","_ensureShown","_create","_findContainer","_append","popperOptions","arrowSelector","_noLongerOpen","disposeTimeout","func","_hide","hideOnTargetClick","usedByTooltip","_scheduleShow","_scheduleHide","_scheduleTimer","_show","_setTooltipNodeEvent","_dispose","toggle","relatedreference","toElement","relatedTarget","_onDocumentTouch","defaultPlacement","defaultTargetClass","defaultHtml","defaultTemplate","defaultArrowSelector","defaultInnerSelector","defaultDelay","defaultTrigger","defaultOffset","defaultContainer","defaultBoundariesElement","defaultPopperOptions","defaultLoadingClass","defaultLoadingContent","defaultHideOnTargetClick","popover","defaultBaseClass","defaultWrapperClass","defaultInnerClass","defaultArrowClass","defaultAutoHide","defaultHandleResize","content","_tooltip","_tooltipOldShow","_tooltipTargetClasses","setContent","setOptions","_vueEl","targetClasses","currentTarget","closePopover","$_vclosepopover_touch","closeAllPopover","$_closePopoverModifiers","all","changedTouches","$_vclosepopover_touchPoint","screenY","screenX","tabindex","addResizeHandlers","_resizeObject","contentDocument","_w","_h","removeResizeHandlers","onload","substring","MSStream","Element","cssClass","aria-describedby","popoverId","popoverBaseClass","popoverClass","isOpen","aria-hidden","popoverWrapperClass","popoverInnerClass","handleResize","$_handleResize","popoverArrowClass","ResizeObserver","openGroup","$_findContainer","$_removeEventListeners","$_addEventListeners","$_updatePopper","$_isDisposed","$_mounted","$_events","$_preventOpen","$_init","skipDelay","$_scheduleShow","$_beingShowed","$_scheduleHide","$_show","$_disposeTimer","$_getOffset","$_hide","$_scheduleTimer","$_setTooltipNodeEvent","$_restartPopper","$_handleGlobalClose","process","isTypedArray","exec","IE_PROTO","Buffer","allocUnsafe","__data__","size","string","Ut","installed","Yt","copyright","setPrototypeOf","check","sign","expm1","exp","getIteratorMethod","Arguments","ignoreCase","multiline","unicode","sticky","clearImmediate","Dispatch","importScripts","onreadystatechange","Infinity","pow","log","LN2","NaN","setInt8","getInt8","setUint8","getUint8","getInt16","getUint16","getInt32","getUint32","getFloat32","getFloat64","setInt16","setUint16","setInt32","setUint32","setFloat32","setFloat64","Content-Type","adapter","XMLHttpRequest","transformRequest","transformResponse","xsrfCookieName","xsrfHeaderName","maxContentLength","validateStatus","common","Accept","log1p","flags","versions","v8","PromiseRejectionEvent","ok","fail","domain","exit","promise","onunhandledrejection","_a","onrejectionhandled","race","getEntry","ufstore","readFloatLE","_isBuffer","XDomainRequest","onprogress","ontimeout","auth","username","password","Authorization","paramsSerializer","readyState","status","responseURL","getAllResponseHeaders","responseType","responseText","onerror","withCredentials","read","onDownloadProgress","onUploadProgress","upload","cancelToken","abort","send","__CANCEL__","message","utf8","stringToBytes","bin","bytesToString","decodeURIComponent","escape","fromCharCode","$isLabel","$groupLabel","prefferedOpenDirection","optimizedHeight","maxHeight","internalSearch","required","trackBy","searchable","clearOnSelect","hideSelected","allowEmpty","resetAfter","closeOnSelect","customLabel","taggable","tagPlaceholder","tagPosition","optionsLimit","groupValues","groupLabel","groupSelect","blockKeys","preserveSearch","preselectFirst","internalValue","filteredOptions","filterAndFlat","isSelected","isExistingOption","isTag","valueKeys","optionKeys","flatAndStrip","currentOptionLabel","getOptionLabel","updateSearch","selectGroup","$isDisabled","pointerDirty","deactivate","removeElement","wholeGroupSelected","removeLastElement","adjustPosition","pointer","focus","blur","openDirection","showPointer","optionHeight","pointerPosition","visibleElements","pointerAdjust","optionHighlight","multiselect__option--highlight","multiselect__option--selected","groupHighlight","multiselect__option--group-selected","addPointerElement","pointerReset","pointerForward","pointerBackward","pointerSet","selectLabel","selectGroupLabel","selectedLabel","deselectLabel","deselectGroupLabel","showLabels","limit","limitText","showNoOptions","showNoResults","isSingleLabelVisible","singleValue","visibleValues","isPlaceholderVisible","deselectLabelText","deselectGroupLabelText","selectLabelText","selectGroupLabelText","selectedLabelText","inputStyle","contentStyle","isAbove","showSearchInput","hasSingleSelectedSlot","visibleSingleValue","finally","MutationObserver","WebKitMutationObserver","standalone","characterData","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","esModule","multiselect--active","multiselect--disabled","multiselect--above","keydown","keyCode","keyup","mousedown","data-select","data-selected","data-deselect","mouseenter","requesttoken","requestToken","encoding","bytesToWords","_ff","_gg","_hh","_ii","endian","_blocksize","_digestsize","wordsToBytes","asBytes","asString","bytesToHex","_babelPolyfill","QObject","findChild","for","keyFor","useSetter","useSimple","toFixed","toPrecision","EPSILON","isInteger","isSafeInteger","MAX_SAFE_INTEGER","MIN_SAFE_INTEGER","sqrt","acosh","MAX_VALUE","asinh","atanh","cbrt","clz32","LOG2E","cosh","fround","hypot","imul","log10","LOG10E","log2","sinh","tanh","trunc","fromCodePoint","codePointAt","endsWith","repeat","startsWith","toJSON","toISOString","getUTCFullYear","getUTCMilliseconds","getUTCMonth","getUTCDate","getUTCHours","getUTCMinutes","getUTCSeconds","construct","deleteProperty","enumerate","padStart","padEnd","getOwnPropertyDescriptors","setInterval","asyncIterator","regeneratorRuntime","wrap","displayName","isGeneratorFunction","mark","awrap","__await","AsyncIterator","async","reset","prev","sent","_sent","delegate","arg","tryEntries","stop","completion","rval","dispatchException","tryLoc","catchLoc","finallyLoc","abrupt","complete","finish","afterLoc","delegateYield","resultName","nextLoc","_invoke","Axios","Cancel","CancelToken","isCancel","spread","defaults","interceptors","fulfilled","rejected","fun","array","browser","argv","addListener","off","removeListener","removeAllListeners","prependListener","prependOnceListener","cwd","chdir","umask","code","protocol","hostname","pathname","location","toGMTString","cookie","eject","throwIfRequested","baseURL","token","cancel","rotl","rotr","randomBytes","hexToBytes","bytesToBase64","base64ToBytes","icon-loading","menu","new","closeMenu","opened","data-apps-slide-toggle","_withStripped","caption","icon-loading-small","collapsible","navElement","bullet","backgroundColor","toggleCollapse","iconUrl","alt","utils","counter","actions","showMenu","openedMenu","undo","edit","submit","cancelEdit","rel","iconIsUrl","checked","URL","__file","PopoverMenuItem","router","exact","AppNavigationItem","alert","maxOptions","close-on-select","track-by","tag-placeholder","update:value","userSelect","formatLimitTitle","auto","limitString","display-name","disable-tooltip","desc","loadingState","unknown","userDoesNotExist","avatarStyle","avatarUrlLoaded","initials","contactsMenuOpenState","is-open","allowPlaceholder","disableTooltip","isNoUser","contactsMenuActions","getUserIdentifier","isDisplayNameDefined","isUserDefined","isUrlDefined","shouldShowPlaceholder","lineHeight","fontSize","hyperlink","loadAvatarUrl","getCurrentUser","fetchContactsMenu","post","topAction","devicePixelRatio","oc_userconfig","avatar","Image","Avatar","VueMultiselect","AvatarSelectOption","autoLimit","tagWidth","elWidth","updateWidth","isSingleAction","firstAction","mainActionElement","VTooltip","isBrowser","longerTimeoutBrowsers","timeoutDuration","debounce","scheduled","functionToCheck","getStyleComputedProperty","getParentNode","getScrollParent","_getStyleComputedProp","isIE11","isIE10","getOffsetParent","noOffsetParent","getRoot","findCommonOffsetParent","element1","element2","isOffsetContainer","element1root","getScroll","upperSide","getBordersSize","axis","sideA","sideB","getSize","computedStyle","getWindowSizes","classCallCheck","Constructor","createClass","descriptor","protoProps","staticProps","_extends","getClientRect","rect","scrollLeft","sizes","horizScrollbar","vertScrollbar","getOffsetRectRelativeToArbitraryNode","fixedPosition","isHTML","childrenRect","parentRect","scrollParent","subtract","modifier","includeScroll","getFixedPositionOffsetParent","getBoundaries","excludeScroll","relativeOffset","getViewportOffsetRectRelativeToArtbitraryNode","boundariesNode","isFixed","_getWindowSizes","computeAutoPlacement","refRect","rects","sortedAreas","_ref","getArea","filteredAreas","_ref2","computedPlacement","variation","getReferenceOffsets","getOuterSizes","getOppositePlacement","matched","getPopperOffsets","referenceOffsets","popperRect","popperOffsets","isHoriz","mainSide","secondarySide","measurement","secondaryMeasurement","runModifiers","ends","isModifierEnabled","modifierName","getSupportedPropertyName","prefixes","upperProp","prefix","toCheck","getWindow","setupEventListeners","attachToScrollParents","isBody","removeEventListeners","isNumeric","setStyles","unit","isModifierRequired","requestingName","requestedName","requesting","isRequired","_requesting","requested","validPlacements","clockwise","BEHAVIORS","parseOffset","basePlacement","useHeight","fragments","frag","divider","splitRegex","ops","op","mergeWithPrevious","toValue","index2","shiftvariation","_data$offsets","isVertical","side","shiftOffsets","transformProp","popperStyles","opSide","_data$offsets$arrow","sideCapitalized","altSide","arrowElementSize","center","popperMarginSide","popperBorderSide","sideValue","placementOpposite","flipOrder","refOffsets","overlapsRef","overflowsLeft","overflowsRight","overflowsTop","overflowsBottom","overflowsBoundaries","flippedVariation","getOppositeVariation","subtractLength","bound","legacyGpuAccelerationOption","offsetParentRect","prefixedProperty","invertTop","invertLeft","setAttributes","modifierOptions","Popper","_this","convertToArray","addClasses","newClasses","newClass","removeClasses","_typeof","classCallCheck$1","createClass$1","_extends$1","DEFAULT_OPTIONS","openTooltips","Tooltip","_initialiseProps","classesUpdated","getOptions","needPopperUpdate","needRestart","tooltipGenerator","tooltipNode","_this2","allowHtml","rootNode","titleNode","asyncResult","updateClasses","_this3","_this4","disposeTime","_this5","_this6","directEvents","oppositeEvents","evt","_this7","computedDelay","_this8","_this9","evt2","relatedreference2","positions","defaultOptions","typeofOffset","getPlacement","getContent","destroyTooltip","createTooltip","addListeners","onTouchStart","removeListeners","onTouchEnd","onTouchCancel","touch","firstTouch","vclosepopover","isIE$1","initCompat","ua","msie","rv","edge","getInternetExplorerVersion","plugin$2","GlobalVue$1","getDefault","openPopovers","Popover","_vm","oldVal","popoverNode","_ref$force","event2","_ref3","handleGlobalClose","commonjsGlobal","lodash_merge","createCommonjsModule","LARGE_ARRAY_SIZE","HASH_UNDEFINED","HOT_COUNT","HOT_SPAN","argsTag","asyncTag","funcTag","genTag","nullTag","objectTag","proxyTag","undefinedTag","reIsHostCtor","reIsUint","typedArrayTags","freeGlobal","freeSelf","root","freeExports","freeModule","moduleExports","freeProcess","nodeUtil","nodeIsTypedArray","safeGet","funcProto","objectProto","coreJsData","funcToString","maskSrcKey","nativeObjectToString","objectCtorString","reIsNative","getPrototype","overArg","objectCreate","symToStringTag","getNative","nativeIsBuffer","nativeMax","nativeNow","Map","nativeCreate","baseCreate","proto","Hash","entry","ListCache","MapCache","Stack","arrayLikeKeys","inherited","isArr","isArg","isArguments","isBuff","isType","skipIndexes","iteratee","baseTimes","isIndex","assignMergeValue","eq","baseAssignValue","assignValue","objValue","assocIndexOf","getMapData","pairs","baseFor","fromRight","keysFunc","iterable","createBaseFor","baseGetTag","isOwn","unmasked","getRawTag","objectToString","baseIsArguments","isObjectLike","baseIsNative","isMasked","toSource","baseKeysIn","nativeKeysIn","isProto","isPrototype","baseMerge","srcIndex","customizer","stack","srcValue","mergeFunc","stacked","newValue","isCommon","isTyped","isArrayLike","isArrayLikeObject","isDeep","copy","cloneBuffer","typedArray","arrayBuffer","cloneArrayBuffer","cloneTypedArray","copyArray","isNew","copyObject","keysIn","toPlainObject","initCloneObject","baseMergeDeep","baseRest","setToString","otherArgs","thisArg","overRest","isKeyable","count","lastCalled","stamp","remaining","shortOut","constant","other","isLength","baseUnary","assigner","guard","isIterateeCall","createAssigner","finalOptions","GlobalVue","validate","isServer","vNode","elements","isPopup","scope","Timeout","clearFn","_id","_clearFn","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","registerImmediate","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessageIsAsynchronous","oldOnMessage","canUsePostMessage","messagePrefix","onGlobalMessage","attachEvent","installPostMessageImplementation","installMessageChannelImplementation","script","installReadyStateChangeImplementation","task","cachedSetTimeout","cachedClearTimeout","defaultSetTimout","defaultClearTimeout","runTimeout","currentQueue","draining","queueIndex","cleanUpNextTick","drainQueue","marker","runClearTimeout","Item","app","appId","appName","hidden","menu-center","$$selectedVal","tag-width","$$v","scriptExports","functionalTemplate","injectStyles","moduleIdentifier","shadowMode","originalRender","normalizeComponent","vue_runtime_esm","vars","L10N","translate","textSingular","textPlural","translatePlural"],"mappings":"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AA,MAAmB,SAAAP,EAAAkB,EAAAX,GAAiBA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,IAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA,EAAA,KAAAA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","file":"updatenotification.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"/js/\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 9);\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || Function(\"return this\")() || (1, eval)(\"this\");\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","<template>\n\t<div id=\"updatenotification\" class=\"followupsection\">\n\t\t<div class=\"update\">\n\t\t\t<template v-if=\"isNewVersionAvailable\">\n\t\t\t\t<p v-if=\"versionIsEol\">\n\t\t\t\t\t<span class=\"warning\">\n\t\t\t\t\t\t<span class=\"icon icon-error\"></span>\n\t\t\t\t\t\t{{ t('updatenotification', 'The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.') }}\n\t\t\t\t\t</span>\n\t\t\t\t</p>\n\n\t\t\t\t<p>\n\t\t\t\t\t<span v-html=\"newVersionAvailableString\"></span><br>\n\t\t\t\t\t<span v-if=\"!isListFetched\" class=\"icon icon-loading-small\"></span>\n\t\t\t\t\t<span v-html=\"statusText\"></span>\n\t\t\t\t</p>\n\n\t\t\t\t<template v-if=\"missingAppUpdates.length\">\n\t\t\t\t\t<h3 @click=\"toggleHideMissingUpdates\">\n\t\t\t\t\t\t{{ t('updatenotification', 'Apps missing updates') }}\n\t\t\t\t\t\t<span v-if=\"!hideMissingUpdates\" class=\"icon icon-triangle-n\"></span>\n\t\t\t\t\t\t<span v-if=\"hideMissingUpdates\" class=\"icon icon-triangle-s\"></span>\n\t\t\t\t\t</h3>\n\t\t\t\t\t<ul class=\"applist\" v-if=\"!hideMissingUpdates\">\n\t\t\t\t\t\t<li v-for=\"app in missingAppUpdates\"><a :href=\"'https://apps.nextcloud.com/apps/' + app.appId\" :title=\"t('settings', 'View in store')\">{{app.appName}} ↗</a></li>\n\t\t\t\t\t</ul>\n\t\t\t\t</template>\n\n\t\t\t\t<template v-if=\"availableAppUpdates.length\">\n\t\t\t\t\t<h3 @click=\"toggleHideAvailableUpdates\">\n\t\t\t\t\t\t{{ t('updatenotification', 'Apps with available updates') }}\n\t\t\t\t\t\t<span v-if=\"!hideAvailableUpdates\" class=\"icon icon-triangle-n\"></span>\n\t\t\t\t\t\t<span v-if=\"hideAvailableUpdates\" class=\"icon icon-triangle-s\"></span>\n\t\t\t\t\t</h3>\n\t\t\t\t\t<ul class=\"applist\">\n\t\t\t\t\t\t<li v-for=\"app in availableAppUpdates\" v-if=\"!hideAvailableUpdates\"><a :href=\"'https://apps.nextcloud.com/apps/' + app.appId\" :title=\"t('settings', 'View in store')\">{{app.appName}} ↗</a></li>\n\t\t\t\t\t</ul>\n\t\t\t\t</template>\n\n\t\t\t\t<p>\n\t\t\t\t\t<a v-if=\"updaterEnabled\" href=\"#\" class=\"button\" @click=\"clickUpdaterButton\">{{ t('updatenotification', 'Open updater') }}</a>\n\t\t\t\t\t<a v-if=\"downloadLink\" :href=\"downloadLink\" class=\"button\" :class=\"{ hidden: !updaterEnabled }\">{{ t('updatenotification', 'Download now') }}</a>\n\t\t\t\t</p>\n\t\t\t\t<div class=\"whatsNew\" v-if=\"whatsNew\">\n\t\t\t\t\t<div class=\"toggleWhatsNew\">\n\t\t\t\t\t\t<span v-click-outside=\"hideMenu\" @click=\"toggleMenu\">{{ t('updatenotification', 'What\\'s new?') }}</span>\n\t\t\t\t\t\t<div class=\"popovermenu\" :class=\"{ 'menu-center': true, open: openedWhatsNew }\">\n\t\t\t\t\t\t\t<popover-menu :menu=\"whatsNew\" />\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</template>\n\t\t\t<template v-else-if=\"!isUpdateChecked\">{{ t('updatenotification', 'The update check is not yet finished. Please refresh the page.') }}</template>\n\t\t\t<template v-else>\n\t\t\t\t{{ t('updatenotification', 'Your version is up to date.') }}\n\t\t\t\t<span class=\"icon-info svg\" v-tooltip.auto=\"lastCheckedOnString\"></span>\n\t\t\t</template>\n\n\t\t\t<template v-if=\"!isDefaultUpdateServerURL\">\n\t\t\t\t<p>\n\t\t\t\t\t<em>{{ t('updatenotification', 'A non-default update server is in use to be checked for updates:') }} <code>{{updateServerURL}}</code></em>\n\t\t\t\t</p>\n\t\t\t</template>\n\t\t</div>\n\n\t\t<p>\n\t\t\t<label for=\"release-channel\">{{ t('updatenotification', 'Update channel:') }}</label>\n\t\t\t<select id=\"release-channel\" v-model=\"currentChannel\" @change=\"changeReleaseChannel\">\n\t\t\t\t<option v-for=\"channel in channels\" :value=\"channel\">{{channel}}</option>\n\t\t\t</select>\n\t\t\t<span id=\"channel_save_msg\" class=\"msg\"></span><br />\n\t\t\t<em>{{ t('updatenotification', 'You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.') }}</em><br />\n\t\t\t<em>{{ t('updatenotification', 'Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.') }}</em>\n\t\t</p>\n\n\t\t<p class=\"channel-description\">\n\t\t\t<span v-html=\"productionInfoString\"></span><br>\n\t\t\t<span v-html=\"stableInfoString\"></span><br>\n\t\t\t<span v-html=\"betaInfoString\"></span>\n\t\t</p>\n\n\t\t<p id=\"oca_updatenotification_groups\">\n\t\t\t{{ t('updatenotification', 'Notify members of the following groups about available updates:') }}\n\t\t\t<multiselect v-model=\"notifyGroups\" :options=\"availableGroups\" :multiple=\"true\" label=\"label\" track-by=\"value\" :tag-width=\"75\" /><br />\n\t\t\t<em v-if=\"currentChannel === 'daily' || currentChannel === 'git'\">{{ t('updatenotification', 'Only notification for app updates are available.') }}</em>\n\t\t\t<em v-if=\"currentChannel === 'daily'\">{{ t('updatenotification', 'The selected update channel makes dedicated notifications for the server obsolete.') }}</em>\n\t\t\t<em v-if=\"currentChannel === 'git'\">{{ t('updatenotification', 'The selected update channel does not support updates of the server.') }}</em>\n\t\t</p>\n\t</div>\n</template>\n\n<script>\n\timport { PopoverMenu, Multiselect } from 'nextcloud-vue';\n\timport { VTooltip } from 'v-tooltip';\n\timport ClickOutside from 'vue-click-outside';\n\n\texport default {\n\t\tname: 'root',\n\t\tcomponents: {\n\t\t\tMultiselect,\n\t\t\tPopoverMenu,\n\t\t},\n\t\tdirectives: {\n\t\t\tClickOutside,\n\t\t\ttooltip: VTooltip\n\t\t},\n\t\tdata: function () {\n\t\t\treturn {\n\t\t\t\tnewVersionString: '',\n\t\t\t\tlastCheckedDate: '',\n\t\t\t\tisUpdateChecked: false,\n\t\t\t\tupdaterEnabled: true,\n\t\t\t\tversionIsEol: false,\n\t\t\t\tdownloadLink: '',\n\t\t\t\tisNewVersionAvailable: false,\n\t\t\t\tupdateServerURL: '',\n\t\t\t\tchangelogURL: '',\n\t\t\t\twhatsNewData: [],\n\t\t\t\tcurrentChannel: '',\n\t\t\t\tchannels: [],\n\t\t\t\tnotifyGroups: '',\n\t\t\t\tavailableGroups: [],\n\t\t\t\tisDefaultUpdateServerURL: true,\n\t\t\t\tenableChangeWatcher: false,\n\n\t\t\t\tavailableAppUpdates: [],\n\t\t\t\tmissingAppUpdates: [],\n\t\t\t\tappStoreFailed: false,\n\t\t\t\tappStoreDisabled: false,\n\t\t\t\tisListFetched: false,\n\t\t\t\thideMissingUpdates: false,\n\t\t\t\thideAvailableUpdates: true,\n\t\t\t\topenedWhatsNew: false,\n\t\t\t};\n\t\t},\n\n\t\t_$el: null,\n\t\t_$releaseChannel: null,\n\t\t_$notifyGroups: null,\n\n\t\twatch: {\n\t\t\tnotifyGroups: function(selectedOptions) {\n\t\t\t\tif (!this.enableChangeWatcher) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tvar selectedGroups = [];\n\t\t\t\t_.each(selectedOptions, function(group) {\n\t\t\t\t\tselectedGroups.push(group.value);\n\t\t\t\t});\n\n\t\t\t\tOCP.AppConfig.setValue('updatenotification', 'notify_groups', JSON.stringify(selectedGroups));\n\t\t\t},\n\t\t\tisNewVersionAvailable: function() {\n\t\t\t\tif (!this.isNewVersionAvailable) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t$.ajax({\n\t\t\t\t\turl: OC.linkToOCS('apps/updatenotification/api/v1/applist', 2) + this.newVersion,\n\t\t\t\t\ttype: 'GET',\n\t\t\t\t\tbeforeSend: function (request) {\n\t\t\t\t\t\trequest.setRequestHeader('Accept', 'application/json');\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function(response) {\n\t\t\t\t\t\tthis.availableAppUpdates = response.ocs.data.available;\n\t\t\t\t\t\tthis.missingAppUpdates = response.ocs.data.missing;\n\t\t\t\t\t\tthis.isListFetched = true;\n\t\t\t\t\t\tthis.appStoreFailed = false;\n\t\t\t\t\t}.bind(this),\n\t\t\t\t\terror: function(xhr) {\n\t\t\t\t\t\tthis.availableAppUpdates = [];\n\t\t\t\t\t\tthis.missingAppUpdates = [];\n\t\t\t\t\t\tthis.appStoreDisabled = xhr.responseJSON.ocs.data.appstore_disabled;\n\t\t\t\t\t\tthis.isListFetched = true;\n\t\t\t\t\t\tthis.appStoreFailed = true;\n\t\t\t\t\t}.bind(this)\n\t\t\t\t});\n\t\t\t}\n\t\t},\n\n\t\tcomputed: {\n\t\t\tnewVersionAvailableString: function() {\n\t\t\t\treturn t('updatenotification', 'A new version is available: <strong>{newVersionString}</strong>', {\n\t\t\t\t\tnewVersionString: this.newVersionString\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tlastCheckedOnString: function() {\n\t\t\t\treturn t('updatenotification', 'Checked on {lastCheckedDate}', {\n\t\t\t\t\tlastCheckedDate: this.lastCheckedDate\n\t\t\t\t});\n\t\t\t},\n\n\t\t\tstatusText: function() {\n\t\t\t\tif (!this.isListFetched) {\n\t\t\t\t\treturn t('updatenotification', 'Checking apps for compatible updates');\n\t\t\t\t}\n\n\t\t\t\tif (this.appStoreDisabled) {\n\t\t\t\t\treturn t('updatenotification', 'Please make sure your config.php does not set <samp>appstoreenabled</samp> to false.');\n\t\t\t\t}\n\n\t\t\t\tif (this.appStoreFailed) {\n\t\t\t\t\treturn t('updatenotification', 'Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore.');\n\t\t\t\t}\n\n\t\t\t\treturn this.missingAppUpdates.length === 0 ? t('updatenotification', '<strong>All</strong> apps have an update for this version available', this) : n('updatenotification',\n\t\t\t\t\t'<strong>%n</strong> app has no update for this version available',\n\t\t\t\t\t'<strong>%n</strong> apps have no update for this version available',\n\t\t\t\t\tthis.missingAppUpdates.length);\n\t\t\t},\n\n\t\t\tproductionInfoString: function() {\n\t\t\t\treturn t('updatenotification', '<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).');\n\t\t\t},\n\n\t\t\tstableInfoString: function() {\n\t\t\t\treturn t('updatenotification', '<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.');\n\t\t\t},\n\n\t\t\tbetaInfoString: function() {\n\t\t\t\treturn t('updatenotification', '<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.');\n\t\t\t},\n\n\t\t\twhatsNew: function () {\n\t\t\t\tif(this.whatsNewData.length === 0) {\n\t\t\t\t\treturn null;\n\t\t\t\t}\n\t\t\t\tvar whatsNew = [];\n\t\t\t\tfor (var i in this.whatsNewData) {\n\t\t\t\t\twhatsNew[i] = { icon: 'icon-checkmark', longtext: this.whatsNewData[i] };\n\t\t\t\t}\n\t\t\t\tif(this.changelogURL) {\n\t\t\t\t\twhatsNew.push({\n\t\t\t\t\t\thref: this.changelogURL,\n\t\t\t\t\t\ttext: t('updatenotificaiton', 'View changelog'),\n\t\t\t\t\t\ticon: 'icon-link',\n\t\t\t\t\t\ttarget: '_blank',\n\t\t\t\t\t\taction: ''\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\treturn whatsNew;\n\t\t\t}\n\t\t},\n\n\t\tmethods: {\n\t\t\t/**\n\t\t\t * Creates a new authentication token and loads the updater URL\n\t\t\t */\n\t\t\tclickUpdaterButton: function() {\n\t\t\t\t$.ajax({\n\t\t\t\t\turl: OC.generateUrl('/apps/updatenotification/credentials')\n\t\t\t\t}).success(function(data) {\n\t\t\t\t\t$.ajax({\n\t\t\t\t\t\turl: OC.getRootPath()+'/updater/',\n\t\t\t\t\t\theaders: {\n\t\t\t\t\t\t\t'X-Updater-Auth': data\n\t\t\t\t\t\t},\n\t\t\t\t\t\tmethod: 'POST',\n\t\t\t\t\t\tsuccess: function(data){\n\t\t\t\t\t\t\tif(data !== 'false') {\n\t\t\t\t\t\t\t\tvar body = $('body');\n\t\t\t\t\t\t\t\t$('head').remove();\n\t\t\t\t\t\t\t\tbody.html(data);\n\n\t\t\t\t\t\t\t\t// Eval the script elements in the response\n\t\t\t\t\t\t\t\tvar dom = $(data);\n\t\t\t\t\t\t\t\tdom.filter('script').each(function() {\n\t\t\t\t\t\t\t\t\teval(this.text || this.textContent || this.innerHTML || '');\n\t\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t\t\tbody.removeAttr('id');\n\t\t\t\t\t\t\t\tbody.attr('id', 'body-settings');\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\terror: function() {\n\t\t\t\t\t\t\tOC.Notification.showTemporary(t('updatenotification', 'Could not start updater, please try the manual update'));\n\t\t\t\t\t\t\tthis.updaterEnabled = false;\n\t\t\t\t\t\t}.bind(this)\n\t\t\t\t\t});\n\t\t\t\t}.bind(this));\n\t\t\t},\n\t\t\tchangeReleaseChannel: function() {\n\t\t\t\tthis.currentChannel = this._$releaseChannel.val();\n\n\t\t\t\t$.ajax({\n\t\t\t\t\turl: OC.generateUrl('/apps/updatenotification/channel'),\n\t\t\t\t\ttype: 'POST',\n\t\t\t\t\tdata: {\n\t\t\t\t\t\t'channel': this.currentChannel\n\t\t\t\t\t},\n\t\t\t\t\tsuccess: function (data) {\n\t\t\t\t\t\tOC.msg.finishedAction('#channel_save_msg', data);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t},\n\t\t\ttoggleHideMissingUpdates: function() {\n\t\t\t\tthis.hideMissingUpdates = !this.hideMissingUpdates;\n\t\t\t},\n\t\t\ttoggleHideAvailableUpdates: function() {\n\t\t\t\tthis.hideAvailableUpdates = !this.hideAvailableUpdates;\n\t\t\t},\n\t\t\ttoggleMenu: function() {\n\t\t\t\tthis.openedWhatsNew = !this.openedWhatsNew;\n\t\t\t},\n\t\t\thideMenu: function() {\n\t\t\t\tthis.openedWhatsNew = false;\n\t\t\t},\n\t\t},\n\t\tbeforeMount: function() {\n\t\t\t// Parse server data\n\t\t\tvar data = JSON.parse($('#updatenotification').attr('data-json'));\n\n\t\t\tthis.newVersion = data.newVersion;\n\t\t\tthis.newVersionString = data.newVersionString;\n\t\t\tthis.lastCheckedDate = data.lastChecked;\n\t\t\tthis.isUpdateChecked = data.isUpdateChecked;\n\t\t\tthis.updaterEnabled = data.updaterEnabled;\n\t\t\tthis.downloadLink = data.downloadLink;\n\t\t\tthis.isNewVersionAvailable = data.isNewVersionAvailable;\n\t\t\tthis.updateServerURL = data.updateServerURL;\n\t\t\tthis.currentChannel = data.currentChannel;\n\t\t\tthis.channels = data.channels;\n\t\t\tthis.notifyGroups = data.notifyGroups;\n\t\t\tthis.isDefaultUpdateServerURL = data.isDefaultUpdateServerURL;\n\t\t\tthis.versionIsEol = data.versionIsEol;\n\t\t\tif(data.changes && data.changes.changelogURL) {\n\t\t\t\tthis.changelogURL = data.changes.changelogURL;\n\t\t\t}\n\t\t\tif(data.changes && data.changes.whatsNew) {\n\t\t\t\tif(data.changes.whatsNew.admin) {\n\t\t\t\t\tthis.whatsNewData = this.whatsNewData.concat(data.changes.whatsNew.admin);\n\t\t\t\t}\n\t\t\t\tthis.whatsNewData = this.whatsNewData.concat(data.changes.whatsNew.regular);\n\t\t\t}\n\t\t},\n\t\tmounted: function () {\n\t\t\tthis._$el = $(this.$el);\n\t\t\tthis._$releaseChannel = this._$el.find('#release-channel');\n\t\t\tthis._$notifyGroups = this._$el.find('#oca_updatenotification_groups_list');\n\t\t\tthis._$notifyGroups.on('change', function () {\n\t\t\t\tthis.$emit('input');\n\t\t\t}.bind(this));\n\n\t\t\t$.ajax({\n\t\t\t\turl: OC.linkToOCS('cloud', 2)+ '/groups',\n\t\t\t\tdataType: 'json',\n\t\t\t\tsuccess: function(data) {\n\t\t\t\t\tvar results = [];\n\t\t\t\t\t$.each(data.ocs.data.groups, function(i, group) {\n\t\t\t\t\t\tresults.push({value: group, label: group});\n\t\t\t\t\t});\n\n\t\t\t\t\tthis.availableGroups = results;\n\t\t\t\t\tthis.enableChangeWatcher = true;\n\t\t\t\t}.bind(this)\n\t\t\t});\n\t\t}\n\t}\n</script>\n","/*!\n * Vue.js v2.5.17\n * (c) 2014-2018 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// these helpers produces better vm code in JS engines due to their\n// explicitness and function inlining\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value e.g. [object Object]\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : typeof val === 'object'\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert a input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if a attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether the object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it... e.g.\n * PhantomJS 1.x. Technically we don't need this anymore since native bind is\n * now more performant in most browsers, but removing it would be breaking for\n * code that was able to run in PhantomJS 1.x, so this must be kept for\n * backwards compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/)\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/**\n * Return same value\n */\nvar identity = function (_) { return _; };\n\n/**\n * Generate a static keys string from compiler modules.\n */\n\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured'\n];\n\n/* */\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n})\n\n/* */\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = /[^\\w.$]/;\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = (function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm || {};\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// the current target watcher being evaluated.\n// this is globally unique because there could be only one\n// watcher being evaluated at any time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (_target) {\n if (Dep.target) { targetStack.push(Dep.target); }\n Dep.target = _target;\n}\n\nfunction popTarget () {\n Dep.target = targetStack.pop();\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n vnode.children,\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n var augment = hasProto\n ? protoAugment\n : copyAugment;\n augment(value, arrayMethods, arrayKeys);\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through each property and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment an target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src, keys) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment an target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n if (!getter && arguments.length === 2) {\n val = obj[key];\n }\n var setter = property && property.set;\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n var keys = Object.keys(from);\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (isPlainObject(toVal) && isPlainObject(fromVal)) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n return childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!/^[a-zA-Z][\\w-]*$/.test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'can only contain alphanumeric characters and the hyphen, ' +\n 'and must start with a letter.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def = dirs[key];\n if (typeof def === 'function') {\n dirs[key] = { bind: def, update: def };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n var extendsFrom = child.extends;\n if (extendsFrom) {\n parent = mergeOptions(parent, extendsFrom, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false && isObject(value) && ('@binding' in value))\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n if (!valid) {\n warn(\n \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', ')) +\n \", got \" + (toRawType(value)) + \".\",\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n logError(e, null, 'config.errorHandler');\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n/* globals MessageChannel */\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using both microtasks and (macro) tasks.\n// In < 2.4 we used microtasks everywhere, but there are some scenarios where\n// microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690) or even between bubbling of the same\n// event (#6566). However, using (macro) tasks everywhere also has subtle problems\n// when state is changed right before repaint (e.g. #6813, out-in transitions).\n// Here we use microtask by default, but expose a way to force (macro) task when\n// needed (e.g. in event handlers attached by v-on).\nvar microTimerFunc;\nvar macroTimerFunc;\nvar useMacroTask = false;\n\n// Determine (macro) task defer implementation.\n// Technically setImmediate should be the ideal choice, but it's only available\n// in IE. The only polyfill that consistently queues the callback after all DOM\n// events triggered in the same loop is by using MessageChannel.\n/* istanbul ignore if */\nif (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n macroTimerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else if (typeof MessageChannel !== 'undefined' && (\n isNative(MessageChannel) ||\n // PhantomJS\n MessageChannel.toString() === '[object MessageChannelConstructor]'\n)) {\n var channel = new MessageChannel();\n var port = channel.port2;\n channel.port1.onmessage = flushCallbacks;\n macroTimerFunc = function () {\n port.postMessage(1);\n };\n} else {\n /* istanbul ignore next */\n macroTimerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\n// Determine microtask defer implementation.\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n microTimerFunc = function () {\n p.then(flushCallbacks);\n // in problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n} else {\n // fallback to macro\n microTimerFunc = macroTimerFunc;\n}\n\n/**\n * Wrap a function so that if any code inside triggers state change,\n * the changes are queued using a (macro) task instead of a microtask.\n */\nfunction withMacroTask (fn) {\n return fn._withTask || (fn._withTask = function () {\n useMacroTask = true;\n var res = fn.apply(null, arguments);\n useMacroTask = false;\n return res\n })\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n if (useMacroTask) {\n macroTimerFunc();\n } else {\n microTimerFunc();\n }\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) || key.charAt(0) === '_';\n if (!has && !isAllowed) {\n warnNonPresent(target, key);\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n warnNonPresent(target, key);\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n perf.clearMeasures(name);\n };\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n cloned[i].apply(null, arguments$1);\n }\n } else {\n // return handler return value for single handlers\n return fns.apply(null, arguments)\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n vm\n) {\n var name, def, cur, old, event;\n for (name in on) {\n def = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n /* istanbul ignore if */\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur);\n }\n add(event.name, cur, event.once, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor,\n context\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (isDef(factory.contexts)) {\n // already pending\n factory.contexts.push(context);\n } else {\n var contexts = factory.contexts = [context];\n var sync = true;\n\n var forceRender = function () {\n for (var i = 0, l = contexts.length; i < l; i++) {\n contexts[i].$forceUpdate();\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender();\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender();\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (typeof res.then === 'function') {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isDef(res.component) && typeof res.component.then === 'function') {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n setTimeout(function () {\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender();\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n setTimeout(function () {\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn, once) {\n if (once) {\n target.$once(event, fn);\n } else {\n target.$on(event, fn);\n }\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var this$1 = this;\n\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n this$1.$off(event[i], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n if (fn) {\n // specific handler\n var cb;\n var i$1 = cbs.length;\n while (i$1--) {\n cb = cbs[i$1];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i$1, 1);\n break\n }\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n for (var i = 0, l = cbs.length; i < l; i++) {\n try {\n cbs[i].apply(vm, args);\n } catch (e) {\n handleError(e, vm, (\"event handler for \\\"\" + event + \"\\\"\"));\n }\n }\n }\n return vm\n };\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n var slots = {};\n if (!children) {\n return slots\n }\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res\n) {\n res = res || {};\n for (var i = 0; i < fns.length; i++) {\n if (Array.isArray(fns[i])) {\n resolveScopedSlots(fns[i], res);\n } else {\n res[fns[i].key] = fns[i].fn;\n }\n }\n return res\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n if (vm._isMounted) {\n callHook(vm, 'beforeUpdate');\n }\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(\n vm.$el, vnode, hydrating, false /* removeOnly */,\n vm.$options._parentElm,\n vm.$options._refElm\n );\n // no need for the ref nodes after initial patch\n // this prevents keeping a detached DOM tree in memory (#5851)\n vm.$options._parentElm = vm.$options._refElm = null;\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n activeInstance = prevActiveInstance;\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, null, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren\n var hasChildren = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n parentVnode.data.scopedSlots || // has new scoped slots\n vm.$scopedSlots !== emptyObject // has old scoped slots\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (hasChildren) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n try {\n handlers[i].call(vm);\n } catch (e) {\n handleError(e, vm, (hook + \" hook\"));\n }\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\nvar uid$1 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$1; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = function () {};\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n var dep = this$1.deps[i];\n if (!this$1.newDepIds.has(dep.id)) {\n dep.removeSub(this$1);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var this$1 = this;\n\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n var this$1 = this;\n\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this$1.deps[i].removeSub(this$1);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive(props, key, value, function () {\n if (vm.$parent && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : userDef;\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : userDef.get\n : noop;\n sharedPropertyDefinition.set = userDef.set\n ? userDef.set\n : noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (methods[key] == null) {\n warn(\n \"Method \\\"\" + key + \"\\\" has an undefined value in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = methods[key] == null ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function (newData) {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n cb.call(vm, watcher.value);\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject).filter(function (key) {\n /* istanbul ignore next */\n return Object.getOwnPropertyDescriptor(inject, key).enumerable\n })\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n if (isDef(ret)) {\n (ret)._isVList = true;\n }\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n var slotNodes = this.$slots[name];\n // warn duplicate slot usage\n if (slotNodes) {\n if (process.env.NODE_ENV !== 'production' && slotNodes._rendered) {\n warn(\n \"Duplicate presence of slot \\\"\" + name + \"\\\" found in the same render tree \" +\n \"- this will likely cause render errors.\",\n this\n );\n }\n slotNodes._rendered = true;\n }\n nodes = slotNodes || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n if (!(key in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () { return resolveSlots(children, parent); };\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = data.scopedSlots || emptyObject;\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n\n\n\n// Register the component hook to weex native render engine.\n// The hook will be triggered by native, not javascript.\n\n\n// Updates the state of the component to weex native render engine.\n\n/* */\n\n// https://github.com/Hanks10100/weex-native-directive/tree/master/component\n\n// listening on native callback\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (\n vnode,\n hydrating,\n parentElm,\n refElm\n ) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance,\n parentElm,\n refElm\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor, context);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n // Weex specific: invoke recycle-list optimized @render function for\n // extracting cell-slot template.\n // https://github.com/Hanks10100/weex-native-directive/tree/master/component\n /* istanbul ignore if */\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent, // activeInstance in lifecycle state\n parentElm,\n refElm\n) {\n var options = {\n _isComponent: true,\n parent: parent,\n _parentVnode: vnode,\n _parentElm: parentElm || null,\n _refElm: refElm || null\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n hooks[key] = componentVNodeHooks[key];\n }\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input';(data.props || (data.props = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n if (isDef(on[event])) {\n on[event] = [data.model.callback].concat(on[event]);\n } else {\n on[event] = data.model.callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if (isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n // reset _rendered flag on slots for duplicate slot check\n if (process.env.NODE_ENV !== 'production') {\n for (var key in vm.$slots) {\n // $flow-disable-line\n vm.$slots[key]._rendered = false;\n }\n }\n\n if (_parentVnode) {\n vm.$scopedSlots = _parentVnode.data.scopedSlots || emptyObject;\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n if (vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n opts._parentElm = options._parentElm;\n opts._refElm = options._refElm;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var extended = Ctor.extendOptions;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = dedupe(latest[key], extended[key], sealed[key]);\n }\n }\n return modified\n}\n\nfunction dedupe (latest, extended, sealed) {\n // compare latest and sealed to ensure lifecycle hooks won't be duplicated\n // between merges\n if (Array.isArray(latest)) {\n var res = [];\n sealed = Array.isArray(sealed) ? sealed : [sealed];\n extended = Array.isArray(extended) ? extended : [extended];\n for (var i = 0; i < latest.length; i++) {\n // push original options and not sealed options to exclude duplicated options\n if (extended.indexOf(latest[i]) >= 0 || sealed.indexOf(latest[i]) < 0) {\n res.push(latest[i]);\n }\n }\n return res\n } else {\n return latest\n }\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n var this$1 = this;\n\n for (var key in this$1.cache) {\n pruneCacheEntry(this$1.cache, key, this$1.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n}\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n}\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.5.17';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\n\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\n\nvar nodeOps = Object.freeze({\n\tcreateElement: createElement$1,\n\tcreateElementNS: createElementNS,\n\tcreateTextNode: createTextNode,\n\tcreateComment: createComment,\n\tinsertBefore: insertBefore,\n\tremoveChild: removeChild,\n\tappendChild: appendChild,\n\tparentNode: parentNode,\n\tnextSibling: nextSibling,\n\ttagName: tagName,\n\tsetTextContent: setTextContent,\n\tsetStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n}\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove () {\n if (--remove.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove.listeners = listeners;\n return remove\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */, parentElm, refElm);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (ref$$1.parentNode === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (parentElm, vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(parentElm, oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (oldVnode, vnode, insertedVnodeQueue, removeOnly) {\n if (oldVnode === vnode) {\n return\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(elm, oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly, parentElm, refElm) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue, parentElm, refElm);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm$1 = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm$1,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm$1)) {\n removeVnodes(parentElm$1, [oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n}\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n]\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, isFalsyAttrValue(value) || value === 'false' ? 'false' : 'true');\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n}\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n}\n\n/* */\n\n/* */\n\n\n\n\n\n\n\n\n\n// add a raw attr (use this in preTransforms)\n\n\n\n\n\n\n\n\n// note: this only removes the attr from the Array (attrsList) so that it\n// doesn't get processed by processAttrs.\n// By default it does NOT remove it from the map (attrsMap) because the map is\n// needed during codegen.\n\n/* */\n\n/**\n * Cross-platform code generation for component v-model\n */\n\n\n/**\n * Cross-platform codegen helper for generating v-model value assignment code.\n */\n\n/* */\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler (handler, event, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\nfunction add$1 (\n event,\n handler,\n once$$1,\n capture,\n passive\n) {\n handler = withMacroTask(handler);\n if (once$$1) { handler = createOnceHandler(handler, event, capture); }\n target$1.addEventListener(\n event,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n event,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n event,\n handler._withTask || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n}\n\n/* */\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (isUndef(props[key])) {\n elm[key] = '';\n }\n }\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else {\n elm[key] = cur;\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.lazy) {\n // inputs with lazy should only be updated when not in focus\n return false\n }\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n}\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(name, val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n}\n\n/* */\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(/\\s+/).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def) {\n if (!def) {\n return\n }\n /* istanbul ignore else */\n if (typeof def === 'object') {\n var res = {};\n if (def.css !== false) {\n extend(res, autoCssTransition(def.name || 'v'));\n }\n extend(res, def);\n return res\n } else if (typeof def === 'string') {\n return autoCssTransition(def)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n var transitionDelays = styles[transitionProp + 'Delay'].split(', ');\n var transitionDurations = styles[transitionProp + 'Duration'].split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = styles[animationProp + 'Delay'].split(', ');\n var animationDurations = styles[animationProp + 'Duration'].split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\nfunction toMs (s) {\n return Number(s.slice(0, -1)) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n transitionNode = transitionNode.parent;\n context = transitionNode.context;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {}\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n]\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n}\n\nvar platformDirectives = {\n model: directive,\n show: show\n}\n\n/* */\n\n// Provides transition support for a single element/component.\n// supports transition mode (out-in / in-out)\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(function (c) { return c.tag || isAsyncPlaceholder(c); });\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(function (d) { return d.name === 'show'; })) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n}\n\n/* */\n\n// Provides transition support for list items.\n// supports move transitions using the FLIP technique.\n\n// Because the vdom's children update algorithm is \"unstable\" - i.e.\n// it doesn't guarantee the relative positioning of removed elements,\n// we force transition-group to update its children into two passes:\n// in the first pass, we remove all nodes that need to be removed,\n// triggering their leaving transition; in the second pass, we insert/move\n// into the final desired state. This way in the second pass removed\n// nodes will remain where they should be.\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n beforeUpdate: function beforeUpdate () {\n // force removing pass\n this.__patch__(\n this._vnode,\n this.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this._vnode = this.kept;\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n}\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n}\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n isChrome\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nexport default Vue;\n","!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define(\"NextcloudVue\",[],e):\"object\"==typeof exports?exports.NextcloudVue=e():t.NextcloudVue=e()}(window,function(){return function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:r})},n.r=function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&\"object\"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,\"default\",{enumerable:!0,value:t}),2&e&&\"string\"!=typeof t)for(var i in t)n.d(r,i,function(e){return t[e]}.bind(null,i));return r},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,\"a\",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p=\"/dist/\",n(n.s=327)}([function(t,e,n){var r=n(2),i=n(8),o=n(13),a=n(10),s=n(21),u=function(t,e,n){var c,l,f,p,d=t&u.F,h=t&u.G,v=t&u.S,m=t&u.P,g=t&u.B,y=h?r:v?r[e]||(r[e]={}):(r[e]||{}).prototype,b=h?i:i[e]||(i[e]={}),_=b.prototype||(b.prototype={});for(c in h&&(n=e),n)f=((l=!d&&y&&void 0!==y[c])?y:n)[c],p=g&&l?s(f,r):m&&\"function\"==typeof f?s(Function.call,f):f,y&&a(y,c,f,t&u.U),b[c]!=f&&o(b,c,p),m&&_[c]!=f&&(_[c]=f)};r.core=i,u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e,n){var r=n(3);t.exports=function(t){if(!r(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e,n){var r=n(66)(\"wks\"),i=n(31),o=n(2).Symbol,a=\"function\"==typeof o;(t.exports=function(t){return r[t]||(r[t]=a&&o[t]||(a?o:i)(\"Symbol.\"+t))}).store=r},function(t,e,n){var r=n(4),i=n(92),o=n(27),a=Object.defineProperty;e.f=n(7)?Object.defineProperty:function(t,e,n){if(r(t),e=o(e,!0),r(n),i)try{return a(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e,n){t.exports=!n(1)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(t,e){var n=t.exports={version:\"2.5.7\"};\"number\"==typeof __e&&(__e=n)},function(t,e,n){var r=n(25),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},function(t,e,n){var r=n(2),i=n(13),o=n(12),a=n(31)(\"src\"),s=Function.toString,u=(\"\"+s).split(\"toString\");n(8).inspectSource=function(t){return s.call(t)},(t.exports=function(t,e,n,s){var c=\"function\"==typeof n;c&&(o(n,\"name\")||i(n,\"name\",e)),t[e]!==n&&(c&&(o(n,a)||i(n,a,t[e]?\"\"+t[e]:u.join(String(e)))),t===r?t[e]=n:s?t[e]?t[e]=n:i(t,e,n):(delete t[e],i(t,e,n)))})(Function.prototype,\"toString\",function(){return\"function\"==typeof this&&this[a]||s.call(this)})},function(t,e,n){var r=n(0),i=n(1),o=n(24),a=/\"/g,s=function(t,e,n,r){var i=String(o(t)),s=\"<\"+e;return\"\"!==n&&(s+=\" \"+n+'=\"'+String(r).replace(a,\""\")+'\"'),s+\">\"+i+\"</\"+e+\">\"};t.exports=function(t,e){var n={};n[t]=e(s),r(r.P+r.F*i(function(){var e=\"\"[t]('\"');return e!==e.toLowerCase()||e.split('\"').length>3}),\"String\",n)}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(6),i=n(30);t.exports=n(7)?function(t,e,n){return r.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(45),i=n(24);t.exports=function(t){return r(i(t))}},function(t,e,n){var r=n(24);t.exports=function(t){return Object(r(t))}},function(t,e,n){\"use strict\";var r=n(121),i=n(122),o=Object.prototype.toString;function a(t){return\"[object Array]\"===o.call(t)}function s(t){return null!==t&&\"object\"==typeof t}function u(t){return\"[object Function]\"===o.call(t)}function c(t,e){if(null!==t&&void 0!==t)if(\"object\"!=typeof t&&(t=[t]),a(t))for(var n=0,r=t.length;n<r;n++)e.call(null,t[n],n,t);else for(var i in t)Object.prototype.hasOwnProperty.call(t,i)&&e.call(null,t[i],i,t)}t.exports={isArray:a,isArrayBuffer:function(t){return\"[object ArrayBuffer]\"===o.call(t)},isBuffer:i,isFormData:function(t){return\"undefined\"!=typeof FormData&&t instanceof FormData},isArrayBufferView:function(t){return\"undefined\"!=typeof ArrayBuffer&&ArrayBuffer.isView?ArrayBuffer.isView(t):t&&t.buffer&&t.buffer instanceof ArrayBuffer},isString:function(t){return\"string\"==typeof t},isNumber:function(t){return\"number\"==typeof t},isObject:s,isUndefined:function(t){return void 0===t},isDate:function(t){return\"[object Date]\"===o.call(t)},isFile:function(t){return\"[object File]\"===o.call(t)},isBlob:function(t){return\"[object Blob]\"===o.call(t)},isFunction:u,isStream:function(t){return s(t)&&u(t.pipe)},isURLSearchParams:function(t){return\"undefined\"!=typeof URLSearchParams&&t instanceof URLSearchParams},isStandardBrowserEnv:function(){return(\"undefined\"==typeof navigator||\"ReactNative\"!==navigator.product)&&\"undefined\"!=typeof window&&\"undefined\"!=typeof document},forEach:c,merge:function t(){var e={};function n(n,r){\"object\"==typeof e[r]&&\"object\"==typeof n?e[r]=t(e[r],n):e[r]=n}for(var r=0,i=arguments.length;r<i;r++)c(arguments[r],n);return e},extend:function(t,e,n){return c(e,function(e,i){t[i]=n&&\"function\"==typeof e?r(e,n):e}),t},trim:function(t){return t.replace(/^\\s*/,\"\").replace(/\\s*$/,\"\")}}},function(t,e,n){\"use strict\";var r=n(1);t.exports=function(t,e){return!!t&&r(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e,n){var r=n(46),i=n(30),o=n(14),a=n(27),s=n(12),u=n(92),c=Object.getOwnPropertyDescriptor;e.f=n(7)?c:function(t,e){if(t=o(t),e=a(e,!0),u)try{return c(t,e)}catch(t){}if(s(t,e))return i(!r.f.call(t,e),t[e])}},function(t,e,n){var r=n(0),i=n(8),o=n(1);t.exports=function(t,e){var n=(i.Object||{})[t]||Object[t],a={};a[t]=e(n),r(r.S+r.F*o(function(){n(1)}),\"Object\",a)}},function(t,e,n){var r=n(21),i=n(45),o=n(15),a=n(9),s=n(224);t.exports=function(t,e){var n=1==t,u=2==t,c=3==t,l=4==t,f=6==t,p=5==t||f,d=e||s;return function(e,s,h){for(var v,m,g=o(e),y=i(g),b=r(s,h,3),_=a(y.length),x=0,w=n?d(e,_):u?d(e,0):void 0;_>x;x++)if((p||x in y)&&(m=b(v=y[x],x,g),t))if(n)w[x]=m;else if(m)switch(t){case 3:return!0;case 5:return v;case 6:return x;case 2:w.push(v)}else if(l)return!1;return f?-1:c||l?l:w}}},function(t,e,n){var r=n(22);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,i){return t.call(e,n,r,i)}}return function(){return t.apply(e,arguments)}}},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){\"use strict\";if(n(7)){var r=n(32),i=n(2),o=n(1),a=n(0),s=n(60),u=n(89),c=n(21),l=n(42),f=n(30),p=n(13),d=n(43),h=n(25),v=n(9),m=n(117),g=n(34),y=n(27),b=n(12),_=n(52),x=n(3),w=n(15),S=n(82),O=n(35),k=n(37),E=n(36).f,T=n(84),D=n(31),A=n(5),C=n(20),M=n(50),P=n(57),N=n(86),L=n(39),j=n(54),F=n(41),I=n(85),$=n(109),R=n(6),B=n(18),V=R.f,H=B.f,U=i.RangeError,Y=i.TypeError,z=i.Uint8Array,W=Array.prototype,G=u.ArrayBuffer,q=u.DataView,J=C(0),K=C(2),X=C(3),Z=C(4),Q=C(5),tt=C(6),et=M(!0),nt=M(!1),rt=N.values,it=N.keys,ot=N.entries,at=W.lastIndexOf,st=W.reduce,ut=W.reduceRight,ct=W.join,lt=W.sort,ft=W.slice,pt=W.toString,dt=W.toLocaleString,ht=A(\"iterator\"),vt=A(\"toStringTag\"),mt=D(\"typed_constructor\"),gt=D(\"def_constructor\"),yt=s.CONSTR,bt=s.TYPED,_t=s.VIEW,xt=C(1,function(t,e){return Et(P(t,t[gt]),e)}),wt=o(function(){return 1===new z(new Uint16Array([1]).buffer)[0]}),St=!!z&&!!z.prototype.set&&o(function(){new z(1).set({})}),Ot=function(t,e){var n=h(t);if(n<0||n%e)throw U(\"Wrong offset!\");return n},kt=function(t){if(x(t)&&bt in t)return t;throw Y(t+\" is not a typed array!\")},Et=function(t,e){if(!(x(t)&&mt in t))throw Y(\"It is not a typed array constructor!\");return new t(e)},Tt=function(t,e){return Dt(P(t,t[gt]),e)},Dt=function(t,e){for(var n=0,r=e.length,i=Et(t,r);r>n;)i[n]=e[n++];return i},At=function(t,e,n){V(t,e,{get:function(){return this._d[n]}})},Ct=function(t){var e,n,r,i,o,a,s=w(t),u=arguments.length,l=u>1?arguments[1]:void 0,f=void 0!==l,p=T(s);if(void 0!=p&&!S(p)){for(a=p.call(s),r=[],e=0;!(o=a.next()).done;e++)r.push(o.value);s=r}for(f&&u>2&&(l=c(l,arguments[2],2)),e=0,n=v(s.length),i=Et(this,n);n>e;e++)i[e]=f?l(s[e],e):s[e];return i},Mt=function(){for(var t=0,e=arguments.length,n=Et(this,e);e>t;)n[t]=arguments[t++];return n},Pt=!!z&&o(function(){dt.call(new z(1))}),Nt=function(){return dt.apply(Pt?ft.call(kt(this)):kt(this),arguments)},Lt={copyWithin:function(t,e){return $.call(kt(this),t,e,arguments.length>2?arguments[2]:void 0)},every:function(t){return Z(kt(this),t,arguments.length>1?arguments[1]:void 0)},fill:function(t){return I.apply(kt(this),arguments)},filter:function(t){return Tt(this,K(kt(this),t,arguments.length>1?arguments[1]:void 0))},find:function(t){return Q(kt(this),t,arguments.length>1?arguments[1]:void 0)},findIndex:function(t){return tt(kt(this),t,arguments.length>1?arguments[1]:void 0)},forEach:function(t){J(kt(this),t,arguments.length>1?arguments[1]:void 0)},indexOf:function(t){return nt(kt(this),t,arguments.length>1?arguments[1]:void 0)},includes:function(t){return et(kt(this),t,arguments.length>1?arguments[1]:void 0)},join:function(t){return ct.apply(kt(this),arguments)},lastIndexOf:function(t){return at.apply(kt(this),arguments)},map:function(t){return xt(kt(this),t,arguments.length>1?arguments[1]:void 0)},reduce:function(t){return st.apply(kt(this),arguments)},reduceRight:function(t){return ut.apply(kt(this),arguments)},reverse:function(){for(var t,e=kt(this).length,n=Math.floor(e/2),r=0;r<n;)t=this[r],this[r++]=this[--e],this[e]=t;return this},some:function(t){return X(kt(this),t,arguments.length>1?arguments[1]:void 0)},sort:function(t){return lt.call(kt(this),t)},subarray:function(t,e){var n=kt(this),r=n.length,i=g(t,r);return new(P(n,n[gt]))(n.buffer,n.byteOffset+i*n.BYTES_PER_ELEMENT,v((void 0===e?r:g(e,r))-i))}},jt=function(t,e){return Tt(this,ft.call(kt(this),t,e))},Ft=function(t){kt(this);var e=Ot(arguments[1],1),n=this.length,r=w(t),i=v(r.length),o=0;if(i+e>n)throw U(\"Wrong length!\");for(;o<i;)this[e+o]=r[o++]},It={entries:function(){return ot.call(kt(this))},keys:function(){return it.call(kt(this))},values:function(){return rt.call(kt(this))}},$t=function(t,e){return x(t)&&t[bt]&&\"symbol\"!=typeof e&&e in t&&String(+e)==String(e)},Rt=function(t,e){return $t(t,e=y(e,!0))?f(2,t[e]):H(t,e)},Bt=function(t,e,n){return!($t(t,e=y(e,!0))&&x(n)&&b(n,\"value\"))||b(n,\"get\")||b(n,\"set\")||n.configurable||b(n,\"writable\")&&!n.writable||b(n,\"enumerable\")&&!n.enumerable?V(t,e,n):(t[e]=n.value,t)};yt||(B.f=Rt,R.f=Bt),a(a.S+a.F*!yt,\"Object\",{getOwnPropertyDescriptor:Rt,defineProperty:Bt}),o(function(){pt.call({})})&&(pt=dt=function(){return ct.call(this)});var Vt=d({},Lt);d(Vt,It),p(Vt,ht,It.values),d(Vt,{slice:jt,set:Ft,constructor:function(){},toString:pt,toLocaleString:Nt}),At(Vt,\"buffer\",\"b\"),At(Vt,\"byteOffset\",\"o\"),At(Vt,\"byteLength\",\"l\"),At(Vt,\"length\",\"e\"),V(Vt,vt,{get:function(){return this[bt]}}),t.exports=function(t,e,n,u){var c=t+((u=!!u)?\"Clamped\":\"\")+\"Array\",f=\"get\"+t,d=\"set\"+t,h=i[c],g=h||{},y=h&&k(h),b=!h||!s.ABV,w={},S=h&&h.prototype,T=function(t,n){V(t,n,{get:function(){return function(t,n){var r=t._d;return r.v[f](n*e+r.o,wt)}(this,n)},set:function(t){return function(t,n,r){var i=t._d;u&&(r=(r=Math.round(r))<0?0:r>255?255:255&r),i.v[d](n*e+i.o,r,wt)}(this,n,t)},enumerable:!0})};b?(h=n(function(t,n,r,i){l(t,h,c,\"_d\");var o,a,s,u,f=0,d=0;if(x(n)){if(!(n instanceof G||\"ArrayBuffer\"==(u=_(n))||\"SharedArrayBuffer\"==u))return bt in n?Dt(h,n):Ct.call(h,n);o=n,d=Ot(r,e);var g=n.byteLength;if(void 0===i){if(g%e)throw U(\"Wrong length!\");if((a=g-d)<0)throw U(\"Wrong length!\")}else if((a=v(i)*e)+d>g)throw U(\"Wrong length!\");s=a/e}else s=m(n),o=new G(a=s*e);for(p(t,\"_d\",{b:o,o:d,l:a,e:s,v:new q(o)});f<s;)T(t,f++)}),S=h.prototype=O(Vt),p(S,\"constructor\",h)):o(function(){h(1)})&&o(function(){new h(-1)})&&j(function(t){new h,new h(null),new h(1.5),new h(t)},!0)||(h=n(function(t,n,r,i){var o;return l(t,h,c),x(n)?n instanceof G||\"ArrayBuffer\"==(o=_(n))||\"SharedArrayBuffer\"==o?void 0!==i?new g(n,Ot(r,e),i):void 0!==r?new g(n,Ot(r,e)):new g(n):bt in n?Dt(h,n):Ct.call(h,n):new g(m(n))}),J(y!==Function.prototype?E(g).concat(E(y)):E(g),function(t){t in h||p(h,t,g[t])}),h.prototype=S,r||(S.constructor=h));var D=S[ht],A=!!D&&(\"values\"==D.name||void 0==D.name),C=It.values;p(h,mt,!0),p(S,bt,c),p(S,_t,!0),p(S,gt,h),(u?new h(1)[vt]==c:vt in S)||V(S,vt,{get:function(){return c}}),w[c]=h,a(a.G+a.W+a.F*(h!=g),w),a(a.S,c,{BYTES_PER_ELEMENT:e}),a(a.S+a.F*o(function(){g.of.call(h,1)}),c,{from:Ct,of:Mt}),\"BYTES_PER_ELEMENT\"in S||p(S,\"BYTES_PER_ELEMENT\",e),a(a.P,c,Lt),F(c),a(a.P+a.F*St,c,{set:Ft}),a(a.P+a.F*!A,c,It),r||S.toString==pt||(S.toString=pt),a(a.P+a.F*o(function(){new h(1).slice()}),c,{slice:jt}),a(a.P+a.F*(o(function(){return[1,2].toLocaleString()!=new h([1,2]).toLocaleString()})||!o(function(){S.toLocaleString.call([1,2])})),c,{toLocaleString:Nt}),L[c]=A?D:C,r||A||p(S,ht,C)}}else t.exports=function(){}},function(t,e,n){var r=n(3);t.exports=function(t,e){if(!r(t))return t;var n,i;if(e&&\"function\"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;if(\"function\"==typeof(n=t.valueOf)&&!r(i=n.call(t)))return i;if(!e&&\"function\"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e,n){var r=n(31)(\"meta\"),i=n(3),o=n(12),a=n(6).f,s=0,u=Object.isExtensible||function(){return!0},c=!n(1)(function(){return u(Object.preventExtensions({}))}),l=function(t){a(t,r,{value:{i:\"O\"+ ++s,w:{}}})},f=t.exports={KEY:r,NEED:!1,fastKey:function(t,e){if(!i(t))return\"symbol\"==typeof t?t:(\"string\"==typeof t?\"S\":\"P\")+t;if(!o(t,r)){if(!u(t))return\"F\";if(!e)return\"E\";l(t)}return t[r].i},getWeak:function(t,e){if(!o(t,r)){if(!u(t))return!0;if(!e)return!1;l(t)}return t[r].w},onFreeze:function(t){return c&&f.NEED&&u(t)&&!o(t,r)&&l(t),t}}},function(t,e){function n(t){return\"function\"==typeof t.value||(console.warn(\"[Vue-click-outside:] provided expression\",t.expression,\"is not a function.\"),!1)}function r(t){return void 0!==t.componentInstance&&t.componentInstance.$isServer}t.exports={bind:function(t,e,i){function o(e){if(i.context){var n=e.path||e.composedPath&&e.composedPath();n&&n.length>0&&n.unshift(e.target),t.contains(e.target)||function(t,e){if(!t||!e)return!1;for(var n=0,r=e.length;n<r;n++)try{if(t.contains(e[n]))return!0;if(e[n].contains(t))return!1}catch(t){return!1}return!1}(i.context.popupItem,n)||t.__vueClickOutside__.callback(e)}}n(e)&&(t.__vueClickOutside__={handler:o,callback:e.value},!r(i)&&document.addEventListener(\"click\",o))},update:function(t,e){n(e)&&(t.__vueClickOutside__.callback=e.value)},unbind:function(t,e,n){!r(n)&&document.removeEventListener(\"click\",t.__vueClickOutside__.handler),delete t.__vueClickOutside__}}},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+r).toString(36))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(94),i=n(69);t.exports=Object.keys||function(t){return r(t,i)}},function(t,e,n){var r=n(25),i=Math.max,o=Math.min;t.exports=function(t,e){return(t=r(t))<0?i(t+e,0):o(t,e)}},function(t,e,n){var r=n(4),i=n(95),o=n(69),a=n(68)(\"IE_PROTO\"),s=function(){},u=function(){var t,e=n(65)(\"iframe\"),r=o.length;for(e.style.display=\"none\",n(71).appendChild(e),e.src=\"javascript:\",(t=e.contentWindow.document).open(),t.write(\"<script>document.F=Object<\\/script>\"),t.close(),u=t.F;r--;)delete u.prototype[o[r]];return u()};t.exports=Object.create||function(t,e){var n;return null!==t?(s.prototype=r(t),n=new s,s.prototype=null,n[a]=t):n=u(),void 0===e?n:i(n,e)}},function(t,e,n){var r=n(94),i=n(69).concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},function(t,e,n){var r=n(12),i=n(15),o=n(68)(\"IE_PROTO\"),a=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),r(t,o)?t[o]:\"function\"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?a:null}},function(t,e,n){var r=n(6).f,i=n(12),o=n(5)(\"toStringTag\");t.exports=function(t,e,n){t&&!i(t=n?t:t.prototype,o)&&r(t,o,{configurable:!0,value:e})}},function(t,e){t.exports={}},function(t,e,n){var r=n(5)(\"unscopables\"),i=Array.prototype;void 0==i[r]&&n(13)(i,r,{}),t.exports=function(t){i[r][t]=!0}},function(t,e,n){\"use strict\";var r=n(2),i=n(6),o=n(7),a=n(5)(\"species\");t.exports=function(t){var e=r[t];o&&e&&!e[a]&&i.f(e,a,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+\": incorrect invocation!\");return t}},function(t,e,n){var r=n(10);t.exports=function(t,e,n){for(var i in e)r(t,i,e[i],n);return t}},function(t,e,n){var r=n(3);t.exports=function(t,e){if(!r(t)||t._t!==e)throw TypeError(\"Incompatible receiver, \"+e+\" required!\");return t}},function(t,e,n){var r=n(23);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==r(t)?t.split(\"\"):Object(t)}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e){t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n=function(t,e){var n=t[1]||\"\",r=t[3];if(!r)return n;if(e&&\"function\"==typeof btoa){var i=function(t){return\"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(t))))+\" */\"}(r),o=r.sources.map(function(t){return\"/*# sourceURL=\"+r.sourceRoot+t+\" */\"});return[n].concat(o).concat([i]).join(\"\\n\")}return[n].join(\"\\n\")}(e,t);return e[2]?\"@media \"+e[2]+\"{\"+n+\"}\":n}).join(\"\")},e.i=function(t,n){\"string\"==typeof t&&(t=[[null,t,\"\"]]);for(var r={},i=0;i<this.length;i++){var o=this[i][0];\"number\"==typeof o&&(r[o]=!0)}for(i=0;i<t.length;i++){var a=t[i];\"number\"==typeof a[0]&&r[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]=\"(\"+a[2]+\") and (\"+n+\")\"),e.push(a))}},e}},function(t,e,n){\"use strict\";function r(t,e){for(var n=[],r={},i=0;i<e.length;i++){var o=e[i],a=o[0],s={id:t+\":\"+i,css:o[1],media:o[2],sourceMap:o[3]};r[a]?r[a].parts.push(s):n.push(r[a]={id:a,parts:[s]})}return n}n.r(e),n.d(e,\"default\",function(){return h});var i=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!i)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var o={},a=i&&(document.head||document.getElementsByTagName(\"head\")[0]),s=null,u=0,c=!1,l=function(){},f=null,p=\"data-vue-ssr-id\",d=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());function h(t,e,n,i){c=n,f=i||{};var a=r(t,e);return v(a),function(e){for(var n=[],i=0;i<a.length;i++){var s=a[i];(u=o[s.id]).refs--,n.push(u)}e?v(a=r(t,e)):a=[];for(i=0;i<n.length;i++){var u;if(0===(u=n[i]).refs){for(var c=0;c<u.parts.length;c++)u.parts[c]();delete o[u.id]}}}}function v(t){for(var e=0;e<t.length;e++){var n=t[e],r=o[n.id];if(r){r.refs++;for(var i=0;i<r.parts.length;i++)r.parts[i](n.parts[i]);for(;i<n.parts.length;i++)r.parts.push(g(n.parts[i]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(i=0;i<n.parts.length;i++)a.push(g(n.parts[i]));o[n.id]={id:n.id,refs:1,parts:a}}}}function m(){var t=document.createElement(\"style\");return t.type=\"text/css\",a.appendChild(t),t}function g(t){var e,n,r=document.querySelector(\"style[\"+p+'~=\"'+t.id+'\"]');if(r){if(c)return l;r.parentNode.removeChild(r)}if(d){var i=u++;r=s||(s=m()),e=b.bind(null,r,i,!1),n=b.bind(null,r,i,!0)}else r=m(),e=function(t,e){var n=e.css,r=e.media,i=e.sourceMap;r&&t.setAttribute(\"media\",r);f.ssrId&&t.setAttribute(p,e.id);i&&(n+=\"\\n/*# sourceURL=\"+i.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+\" */\");if(t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,r),n=function(){r.parentNode.removeChild(r)};return e(t),function(r){if(r){if(r.css===t.css&&r.media===t.media&&r.sourceMap===t.sourceMap)return;e(t=r)}else n()}}var y=function(){var t=[];return function(e,n){return t[e]=n,t.filter(Boolean).join(\"\\n\")}}();function b(t,e,n,r){var i=n?\"\":r.css;if(t.styleSheet)t.styleSheet.cssText=y(e,i);else{var o=document.createTextNode(i),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(o,a[e]):t.appendChild(o)}}},function(t,e,n){window,t.exports=function(t){var e={};function n(r){if(e[r])return e[r].exports;var i=e[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,n),i.l=!0,i.exports}return n.m=t,n.c=e,n.d=function(t,e,r){n.o(t,e)||Object.defineProperty(t,e,{configurable:!1,enumerable:!0,get:r})},n.r=function(t){Object.defineProperty(t,\"__esModule\",{value:!0})},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,\"a\",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p=\"\",n(n.s=3)}([function(t,e,n){var r;!function(i){\"use strict\";var o={},a=/d{1,4}|M{1,4}|YY(?:YY)?|S{1,3}|Do|ZZ|([HhMsDm])\\1?|[aA]|\"[^\"]*\"|'[^']*'/g,s=/\\d\\d?/,u=/[0-9]*['a-z\\u00A0-\\u05FF\\u0700-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFEF]+|[\\u0600-\\u06FF\\/]+(\\s*?[\\u0600-\\u06FF]+){1,2}/i,c=/\\[([^]*?)\\]/gm,l=function(){};function f(t,e){for(var n=[],r=0,i=t.length;r<i;r++)n.push(t[r].substr(0,e));return n}function p(t){return function(e,n,r){var i=r[t].indexOf(n.charAt(0).toUpperCase()+n.substr(1).toLowerCase());~i&&(e.month=i)}}function d(t,e){for(t=String(t),e=e||2;t.length<e;)t=\"0\"+t;return t}var h=[\"Sunday\",\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\"],v=[\"January\",\"February\",\"March\",\"April\",\"May\",\"June\",\"July\",\"August\",\"September\",\"October\",\"November\",\"December\"],m=f(v,3),g=f(h,3);o.i18n={dayNamesShort:g,dayNames:h,monthNamesShort:m,monthNames:v,amPm:[\"am\",\"pm\"],DoFn:function(t){return t+[\"th\",\"st\",\"nd\",\"rd\"][t%10>3?0:(t-t%10!=10)*t%10]}};var y={D:function(t){return t.getDate()},DD:function(t){return d(t.getDate())},Do:function(t,e){return e.DoFn(t.getDate())},d:function(t){return t.getDay()},dd:function(t){return d(t.getDay())},ddd:function(t,e){return e.dayNamesShort[t.getDay()]},dddd:function(t,e){return e.dayNames[t.getDay()]},M:function(t){return t.getMonth()+1},MM:function(t){return d(t.getMonth()+1)},MMM:function(t,e){return e.monthNamesShort[t.getMonth()]},MMMM:function(t,e){return e.monthNames[t.getMonth()]},YY:function(t){return String(t.getFullYear()).substr(2)},YYYY:function(t){return d(t.getFullYear(),4)},h:function(t){return t.getHours()%12||12},hh:function(t){return d(t.getHours()%12||12)},H:function(t){return t.getHours()},HH:function(t){return d(t.getHours())},m:function(t){return t.getMinutes()},mm:function(t){return d(t.getMinutes())},s:function(t){return t.getSeconds()},ss:function(t){return d(t.getSeconds())},S:function(t){return Math.round(t.getMilliseconds()/100)},SS:function(t){return d(Math.round(t.getMilliseconds()/10),2)},SSS:function(t){return d(t.getMilliseconds(),3)},a:function(t,e){return t.getHours()<12?e.amPm[0]:e.amPm[1]},A:function(t,e){return t.getHours()<12?e.amPm[0].toUpperCase():e.amPm[1].toUpperCase()},ZZ:function(t){var e=t.getTimezoneOffset();return(e>0?\"-\":\"+\")+d(100*Math.floor(Math.abs(e)/60)+Math.abs(e)%60,4)}},b={D:[s,function(t,e){t.day=e}],Do:[new RegExp(s.source+u.source),function(t,e){t.day=parseInt(e,10)}],M:[s,function(t,e){t.month=e-1}],YY:[s,function(t,e){var n=+(\"\"+(new Date).getFullYear()).substr(0,2);t.year=\"\"+(e>68?n-1:n)+e}],h:[s,function(t,e){t.hour=e}],m:[s,function(t,e){t.minute=e}],s:[s,function(t,e){t.second=e}],YYYY:[/\\d{4}/,function(t,e){t.year=e}],S:[/\\d/,function(t,e){t.millisecond=100*e}],SS:[/\\d{2}/,function(t,e){t.millisecond=10*e}],SSS:[/\\d{3}/,function(t,e){t.millisecond=e}],d:[s,l],ddd:[u,l],MMM:[u,p(\"monthNamesShort\")],MMMM:[u,p(\"monthNames\")],a:[u,function(t,e,n){var r=e.toLowerCase();r===n.amPm[0]?t.isPm=!1:r===n.amPm[1]&&(t.isPm=!0)}],ZZ:[/([\\+\\-]\\d\\d:?\\d\\d|Z)/,function(t,e){\"Z\"===e&&(e=\"+00:00\");var n,r=(e+\"\").match(/([\\+\\-]|\\d\\d)/gi);r&&(n=60*r[1]+parseInt(r[2],10),t.timezoneOffset=\"+\"===r[0]?n:-n)}]};b.dd=b.d,b.dddd=b.ddd,b.DD=b.D,b.mm=b.m,b.hh=b.H=b.HH=b.h,b.MM=b.M,b.ss=b.s,b.A=b.a,o.masks={default:\"ddd MMM DD YYYY HH:mm:ss\",shortDate:\"M/D/YY\",mediumDate:\"MMM D, YYYY\",longDate:\"MMMM D, YYYY\",fullDate:\"dddd, MMMM D, YYYY\",shortTime:\"HH:mm\",mediumTime:\"HH:mm:ss\",longTime:\"HH:mm:ss.SSS\"},o.format=function(t,e,n){var r=n||o.i18n;if(\"number\"==typeof t&&(t=new Date(t)),\"[object Date]\"!==Object.prototype.toString.call(t)||isNaN(t.getTime()))throw new Error(\"Invalid Date in fecha.format\");var i=[];return(e=(e=(e=o.masks[e]||e||o.masks.default).replace(c,function(t,e){return i.push(e),\"??\"})).replace(a,function(e){return e in y?y[e](t,r):e.slice(1,e.length-1)})).replace(/\\?\\?/g,function(){return i.shift()})},o.parse=function(t,e,n){var r=n||o.i18n;if(\"string\"!=typeof e)throw new Error(\"Invalid format in fecha.parse\");if(e=o.masks[e]||e,t.length>1e3)return!1;var i=!0,s={};if(e.replace(a,function(e){if(b[e]){var n=b[e],o=t.search(n[0]);~o?t.replace(n[0],function(e){return n[1](s,e,r),t=t.substr(o+e.length),e}):i=!1}return b[e]?\"\":e.slice(1,e.length-1)}),!i)return!1;var u,c=new Date;return!0===s.isPm&&null!=s.hour&&12!=+s.hour?s.hour=+s.hour+12:!1===s.isPm&&12==+s.hour&&(s.hour=0),null!=s.timezoneOffset?(s.minute=+(s.minute||0)-+s.timezoneOffset,u=new Date(Date.UTC(s.year||c.getFullYear(),s.month||0,s.day||1,s.hour||0,s.minute||0,s.second||0,s.millisecond||0))):u=new Date(s.year||c.getFullYear(),s.month||0,s.day||1,s.hour||0,s.minute||0,s.second||0,s.millisecond||0),u},void 0!==t&&t.exports?t.exports=o:void 0===(r=function(){return o}.call(e,n,e,t))||(t.exports=r)}()},function(t,e){var n=/^(attrs|props|on|nativeOn|class|style|hook)$/;function r(t,e){return function(){t&&t.apply(this,arguments),e&&e.apply(this,arguments)}}t.exports=function(t){return t.reduce(function(t,e){var i,o,a,s,u;for(a in e)if(i=t[a],o=e[a],i&&n.test(a))if(\"class\"===a&&(\"string\"==typeof i&&(u=i,t[a]=i={},i[u]=!0),\"string\"==typeof o&&(u=o,e[a]=o={},o[u]=!0)),\"on\"===a||\"nativeOn\"===a||\"hook\"===a)for(s in o)i[s]=r(i[s],o[s]);else if(Array.isArray(i))t[a]=i.concat(o);else if(Array.isArray(o))t[a]=[i].concat(o);else for(s in o)i[s]=o[s];else t[a]=e[a];return t},{})}},function(t,e,n){\"use strict\";function r(t,e){for(var n=[],r={},i=0;i<e.length;i++){var o=e[i],a=o[0],s={id:t+\":\"+i,css:o[1],media:o[2],sourceMap:o[3]};r[a]?r[a].parts.push(s):n.push(r[a]={id:a,parts:[s]})}return n}n.r(e),n.d(e,\"default\",function(){return h});var i=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!i)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var o={},a=i&&(document.head||document.getElementsByTagName(\"head\")[0]),s=null,u=0,c=!1,l=function(){},f=null,p=\"data-vue-ssr-id\",d=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());function h(t,e,n,i){c=n,f=i||{};var a=r(t,e);return v(a),function(e){for(var n=[],i=0;i<a.length;i++){var s=a[i];(u=o[s.id]).refs--,n.push(u)}for(e?v(a=r(t,e)):a=[],i=0;i<n.length;i++){var u;if(0===(u=n[i]).refs){for(var c=0;c<u.parts.length;c++)u.parts[c]();delete o[u.id]}}}}function v(t){for(var e=0;e<t.length;e++){var n=t[e],r=o[n.id];if(r){r.refs++;for(var i=0;i<r.parts.length;i++)r.parts[i](n.parts[i]);for(;i<n.parts.length;i++)r.parts.push(g(n.parts[i]));r.parts.length>n.parts.length&&(r.parts.length=n.parts.length)}else{var a=[];for(i=0;i<n.parts.length;i++)a.push(g(n.parts[i]));o[n.id]={id:n.id,refs:1,parts:a}}}}function m(){var t=document.createElement(\"style\");return t.type=\"text/css\",a.appendChild(t),t}function g(t){var e,n,r=document.querySelector(\"style[\"+p+'~=\"'+t.id+'\"]');if(r){if(c)return l;r.parentNode.removeChild(r)}if(d){var i=u++;r=s||(s=m()),e=_.bind(null,r,i,!1),n=_.bind(null,r,i,!0)}else r=m(),e=function(t,e){var n=e.css,r=e.media,i=e.sourceMap;if(r&&t.setAttribute(\"media\",r),f.ssrId&&t.setAttribute(p,e.id),i&&(n+=\"\\n/*# sourceURL=\"+i.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(i))))+\" */\"),t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,r),n=function(){r.parentNode.removeChild(r)};return e(t),function(r){if(r){if(r.css===t.css&&r.media===t.media&&r.sourceMap===t.sourceMap)return;e(t=r)}else n()}}var y,b=(y=[],function(t,e){return y[t]=e,y.filter(Boolean).join(\"\\n\")});function _(t,e,n,r){var i=n?\"\":r.css;if(t.styleSheet)t.styleSheet.cssText=b(e,i);else{var o=document.createTextNode(i),a=t.childNodes;a[e]&&t.removeChild(a[e]),a.length?t.insertBefore(o,a[e]):t.appendChild(o)}}},function(t,e,n){\"use strict\";n.r(e);var r=n(0),i=n.n(r),o={bind:function(t,e,n){t[\"@clickoutside\"]=function(r){t.contains(r.target)||n.context.popupElm&&n.context.popupElm.contains(r.target)||!e.expression||!n.context[e.expression]||e.value()},document.addEventListener(\"click\",t[\"@clickoutside\"],!0)},unbind:function(t){document.removeEventListener(\"click\",t[\"@clickoutside\"],!0)}};function a(t){return t instanceof Date}function s(t){return null!==t&&void 0!==t&&!isNaN(new Date(t).getTime())}function u(t){return Array.isArray(t)&&2===t.length&&s(t[0])&&s(t[1])&&new Date(t[1]).getTime()>=new Date(t[0]).getTime()}function c(t){var e=(t||\"\").split(\":\");return e.length>=2?{hours:parseInt(e[0],10),minutes:parseInt(e[1],10)}:null}function l(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"24\",n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:\"a\",r=t.hours,i=(r=(r=\"24\"===e?r:r%12||12)<10?\"0\"+r:r)+\":\"+(t.minutes<10?\"0\"+t.minutes:t.minutes);if(\"12\"===e){var o=t.hours>=12?\"pm\":\"am\";\"A\"===n&&(o=o.toUpperCase()),i=i+\" \"+o}return i}function f(t,e){try{return i.a.format(new Date(t),e)}catch(t){return\"\"}}var p={zh:{days:[\"日\",\"一\",\"二\",\"三\",\"四\",\"五\",\"六\"],months:[\"1月\",\"2月\",\"3月\",\"4月\",\"5月\",\"6月\",\"7月\",\"8月\",\"9月\",\"10月\",\"11月\",\"12月\"],pickers:[\"未来7天\",\"未来30天\",\"最近7天\",\"最近30天\"],placeholder:{date:\"请选择日期\",dateRange:\"请选择日期范围\"}},en:{days:[\"Sun\",\"Mon\",\"Tue\",\"Wed\",\"Thu\",\"Fri\",\"Sat\"],months:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"May\",\"Jun\",\"Jul\",\"Aug\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],pickers:[\"next 7 days\",\"next 30 days\",\"previous 7 days\",\"previous 30 days\"],placeholder:{date:\"Select Date\",dateRange:\"Select Date Range\"}},ro:{days:[\"Lun\",\"Mar\",\"Mie\",\"Joi\",\"Vin\",\"Sâm\",\"Dum\"],months:[\"Ian\",\"Feb\",\"Mar\",\"Apr\",\"Mai\",\"Iun\",\"Iul\",\"Aug\",\"Sep\",\"Oct\",\"Noi\",\"Dec\"],pickers:[\"urmatoarele 7 zile\",\"urmatoarele 30 zile\",\"ultimele 7 zile\",\"ultimele 30 zile\"],placeholder:{date:\"Selectați Data\",dateRange:\"Selectați Intervalul De Date\"}},fr:{days:[\"Dim\",\"Lun\",\"Mar\",\"Mer\",\"Jeu\",\"Ven\",\"Sam\"],months:[\"Jan\",\"Fev\",\"Mar\",\"Avr\",\"Mai\",\"Juin\",\"Juil\",\"Aout\",\"Sep\",\"Oct\",\"Nov\",\"Dec\"],pickers:[\"7 jours suivants\",\"30 jours suivants\",\"7 jours précédents\",\"30 jours précédents\"],placeholder:{date:\"Sélectionnez une date\",dateRange:\"Sélectionnez une période\"}},es:{days:[\"Dom\",\"Lun\",\"mar\",\"Mie\",\"Jue\",\"Vie\",\"Sab\"],months:[\"Ene\",\"Feb\",\"Mar\",\"Abr\",\"May\",\"Jun\",\"Jul\",\"Ago\",\"Sep\",\"Oct\",\"Nov\",\"Dic\"],pickers:[\"próximos 7 días\",\"próximos 30 días\",\"7 días anteriores\",\"30 días anteriores\"],placeholder:{date:\"Seleccionar fecha\",dateRange:\"Seleccionar un rango de fechas\"}},\"pt-br\":{days:[\"Dom\",\"Seg\",\"Ter\",\"Qua\",\"Quin\",\"Sex\",\"Sáb\"],months:[\"Jan\",\"Fev\",\"Mar\",\"Abr\",\"Maio\",\"Jun\",\"Jul\",\"Ago\",\"Set\",\"Out\",\"Nov\",\"Dez\"],pickers:[\"próximos 7 dias\",\"próximos 30 dias\",\"7 dias anteriores\",\" 30 dias anteriores\"],placeholder:{date:\"Selecione uma data\",dateRange:\"Selecione um período\"}},ru:{days:[\"Вс\",\"Пн\",\"Вт\",\"Ср\",\"Чт\",\"Пт\",\"Сб\"],months:[\"Янв\",\"Фев\",\"Мар\",\"Апр\",\"Май\",\"Июн\",\"Июл\",\"Авг\",\"Сен\",\"Окт\",\"Ноя\",\"Дек\"],pickers:[\"след. 7 дней\",\"след. 30 дней\",\"прош. 7 дней\",\"прош. 30 дней\"],placeholder:{date:\"Выберите дату\",dateRange:\"Выберите период\"}},de:{days:[\"So\",\"Mo\",\"Di\",\"Mi\",\"Do\",\"Fr\",\"Sa\"],months:[\"Januar\",\"Februar\",\"März\",\"April\",\"Mai\",\"Juni\",\"Juli\",\"August\",\"September\",\"Oktober\",\"November\",\"Dezember\"],pickers:[\"nächsten 7 Tage\",\"nächsten 30 Tage\",\"vorigen 7 Tage\",\"vorigen 30 Tage\"],placeholder:{date:\"Datum auswählen\",dateRange:\"Zeitraum auswählen\"}},it:{days:[\"Dom\",\"Lun\",\"Mar\",\"Mer\",\"Gio\",\"Ven\",\"Sab\"],months:[\"Gen\",\"Feb\",\"Mar\",\"Apr\",\"Mag\",\"Giu\",\"Lug\",\"Ago\",\"Set\",\"Ott\",\"Nov\",\"Dic\"],pickers:[\"successivi 7 giorni\",\"successivi 30 giorni\",\"precedenti 7 giorni\",\"precedenti 30 giorni\"],placeholder:{date:\"Seleziona una data\",dateRange:\"Seleziona un intervallo date\"}},cs:{days:[\"Ned\",\"Pon\",\"Úte\",\"Stř\",\"Čtv\",\"Pát\",\"Sob\"],months:[\"Led\",\"Úno\",\"Bře\",\"Dub\",\"Kvě\",\"Čer\",\"Čerc\",\"Srp\",\"Zář\",\"Říj\",\"Lis\",\"Pro\"],pickers:[\"příštích 7 dní\",\"příštích 30 dní\",\"předchozích 7 dní\",\"předchozích 30 dní\"],placeholder:{date:\"Vyberte datum\",dateRange:\"Vyberte časové rozmezí\"}},sl:{days:[\"Ned\",\"Pon\",\"Tor\",\"Sre\",\"Čet\",\"Pet\",\"Sob\"],months:[\"Jan\",\"Feb\",\"Mar\",\"Apr\",\"Maj\",\"Jun\",\"Jul\",\"Avg\",\"Sep\",\"Okt\",\"Nov\",\"Dec\"],pickers:[\"naslednjih 7 dni\",\"naslednjih 30 dni\",\"prejšnjih 7 dni\",\"prejšnjih 30 dni\"],placeholder:{date:\"Izberite datum\",dateRange:\"Izberite razpon med 2 datumoma\"}}},d=p.zh,h={methods:{t:function(t){for(var e=this,n=e.$options.name;e&&(!n||\"DatePicker\"!==n);)(e=e.$parent)&&(n=e.$options.name);for(var r=e&&e.language||d,i=t.split(\".\"),o=r,a=void 0,s=0,u=i.length;s<u;s++){if(a=o[i[s]],s===u-1)return a;if(!a)return\"\";o=a}return\"\"}}};function v(t,e){if(e){for(var n=[],r=e.offsetParent;r&&t!==r&&t.contains(r);)n.push(r),r=r.offsetParent;var i=e.offsetTop+n.reduce(function(t,e){return t+e.offsetTop},0),o=i+e.offsetHeight,a=t.scrollTop,s=a+t.clientHeight;i<a?t.scrollTop=i:o>s&&(t.scrollTop=o-t.clientHeight)}else t.scrollTop=0}var m=n(1),g=n.n(m);function y(t){if(Array.isArray(t)){for(var e=0,n=Array(t.length);e<t.length;e++)n[e]=t[e];return n}return Array.from(t)}function b(t,e,n,r,i,o,a,s){var u,c=\"function\"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId=\"data-v-\"+o),a?(u=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=u):i&&(u=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),u)if(c.functional){c._injectStyles=u;var l=c.render;c.render=function(t,e){return u.call(e),l(t,e)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,u):[u]}return{exports:t,options:c}}var _=b({name:\"CalendarPanel\",components:{PanelDate:{name:\"panelDate\",mixins:[h],props:{value:null,startAt:null,endAt:null,dateFormat:{type:String,default:\"YYYY-MM-DD\"},calendarMonth:{default:(new Date).getMonth()},calendarYear:{default:(new Date).getFullYear()},firstDayOfWeek:{default:7,type:Number,validator:function(t){return t>=1&&t<=7}},disabledDate:{type:Function,default:function(){return!1}}},methods:{selectDate:function(t){var e=t.year,n=t.month,r=t.day,i=new Date(e,n,r);this.disabledDate(i)||this.$emit(\"select\",i)},getDays:function(t){var e=this.t(\"days\"),n=parseInt(t,10);return e.concat(e).slice(n,n+7)},getDates:function(t,e,n){var r=[],i=new Date(t,e);i.setDate(0);for(var o=(i.getDay()+7-n)%7+1,a=i.getDate()-(o-1),s=0;s<o;s++)r.push({year:t,month:e-1,day:a+s});i.setMonth(i.getMonth()+2,0);for(var u=i.getDate(),c=0;c<u;c++)r.push({year:t,month:e,day:1+c});i.setMonth(i.getMonth()+1,1);for(var l=42-(o+u),f=0;f<l;f++)r.push({year:t,month:e+1,day:1+f});return r},getCellClasses:function(t){var e=t.year,n=t.month,r=t.day,i=[],o=new Date(e,n,r).getTime(),a=(new Date).setHours(0,0,0,0),s=this.value&&new Date(this.value).setHours(0,0,0,0),u=this.startAt&&new Date(this.startAt).setHours(0,0,0,0),c=this.endAt&&new Date(this.endAt).setHours(0,0,0,0);return n<this.calendarMonth?i.push(\"last-month\"):n>this.calendarMonth?i.push(\"next-month\"):i.push(\"cur-month\"),o===a&&i.push(\"today\"),this.disabledDate(o)&&i.push(\"disabled\"),s&&(o===s?i.push(\"actived\"):u&&o<=s?i.push(\"inrange\"):c&&o>=s&&i.push(\"inrange\")),i},getCellTitle:function(t){var e=t.year,n=t.month,r=t.day;return f(new Date(e,n,r),this.dateFormat)}},render:function(t){var e=this,n=this.getDays(this.firstDayOfWeek).map(function(e){return t(\"th\",[e])}),r=this.getDates(this.calendarYear,this.calendarMonth,this.firstDayOfWeek),i=Array.apply(null,{length:6}).map(function(n,i){var o=r.slice(7*i,7*i+7).map(function(n){var r={class:e.getCellClasses(n)};return t(\"td\",g()([{class:\"cell\"},r,{attrs:{title:e.getCellTitle(n)},on:{click:e.selectDate.bind(e,n)}}]),[n.day])});return t(\"tr\",[o])});return t(\"table\",{class:\"mx-panel mx-panel-date\"},[t(\"thead\",[t(\"tr\",[n])]),t(\"tbody\",[i])])}},PanelYear:{name:\"panelYear\",props:{value:null,firstYear:Number,disabledYear:Function},methods:{isDisabled:function(t){return!(\"function\"!=typeof this.disabledYear||!this.disabledYear(t))},selectYear:function(t){this.isDisabled(t)||this.$emit(\"select\",t)}},render:function(t){var e=this,n=10*Math.floor(this.firstYear/10),r=this.value&&new Date(this.value).getFullYear(),i=Array.apply(null,{length:10}).map(function(i,o){var a=n+o;return t(\"span\",{class:{cell:!0,actived:r===a,disabled:e.isDisabled(a)},on:{click:e.selectYear.bind(e,a)}},[a])});return t(\"div\",{class:\"mx-panel mx-panel-year\"},[i])}},PanelMonth:{name:\"panelMonth\",mixins:[h],props:{value:null,calendarYear:{default:(new Date).getFullYear()},disabledMonth:Function},methods:{isDisabled:function(t){return!(\"function\"!=typeof this.disabledMonth||!this.disabledMonth(t))},selectMonth:function(t){this.isDisabled(t)||this.$emit(\"select\",t)}},render:function(t){var e=this,n=this.t(\"months\"),r=this.value&&new Date(this.value).getFullYear(),i=this.value&&new Date(this.value).getMonth();return n=n.map(function(n,o){return t(\"span\",{class:{cell:!0,actived:r===e.calendarYear&&i===o,disabled:e.isDisabled(o)},on:{click:e.selectMonth.bind(e,o)}},[n])}),t(\"div\",{class:\"mx-panel mx-panel-month\"},[n])}},PanelTime:{name:\"panelTime\",props:{timePickerOptions:{type:[Object,Function],default:function(){return null}},minuteStep:{type:Number,default:0,validator:function(t){return t>=0&&t<=60}},value:null,timeType:{type:Array,default:function(){return[\"24\",\"a\"]}},disabledTime:Function},computed:{currentHours:function(){return this.value?new Date(this.value).getHours():0},currentMinutes:function(){return this.value?new Date(this.value).getMinutes():0},currentSeconds:function(){return this.value?new Date(this.value).getSeconds():0}},methods:{stringifyText:function(t){return(\"00\"+t).slice(String(t).length)},selectTime:function(t){\"function\"==typeof this.disabledTime&&this.disabledTime(t)||this.$emit(\"select\",new Date(t))},pickTime:function(t){\"function\"==typeof this.disabledTime&&this.disabledTime(t)||this.$emit(\"pick\",new Date(t))},getTimeSelectOptions:function(){var t=[],e=this.timePickerOptions;if(!e)return[];if(\"function\"==typeof e)return e()||[];var n=c(e.start),r=c(e.end),i=c(e.step);if(n&&r&&i)for(var o=n.minutes+60*n.hours,a=r.minutes+60*r.hours,s=i.minutes+60*i.hours,u=Math.floor((a-o)/s),f=0;f<=u;f++){var p=o+f*s,d={hours:Math.floor(p/60),minutes:p%60};t.push({value:d,label:l.apply(void 0,[d].concat(y(this.timeType)))})}return t}},render:function(t){var e=this,n=new Date(this.value),r=\"function\"==typeof this.disabledTime&&this.disabledTime,i=this.getTimeSelectOptions();if(Array.isArray(i)&&i.length)return i=i.map(function(i){var o=i.value.hours,a=i.value.minutes,s=new Date(n).setHours(o,a,0);return t(\"li\",{class:{\"mx-time-picker-item\":!0,cell:!0,actived:o===e.currentHours&&a===e.currentMinutes,disabled:r&&r(s)},on:{click:e.pickTime.bind(e,s)}},[i.label])}),t(\"div\",{class:\"mx-panel mx-panel-time\"},[t(\"ul\",{class:\"mx-time-list\"},[i])]);var o=Array.apply(null,{length:24}).map(function(i,o){var a=new Date(n).setHours(o);return t(\"li\",{class:{cell:!0,actived:o===e.currentHours,disabled:r&&r(a)},on:{click:e.selectTime.bind(e,a)}},[e.stringifyText(o)])}),a=this.minuteStep||1,s=parseInt(60/a),u=Array.apply(null,{length:s}).map(function(i,o){var s=o*a,u=new Date(n).setMinutes(s);return t(\"li\",{class:{cell:!0,actived:s===e.currentMinutes,disabled:r&&r(u)},on:{click:e.selectTime.bind(e,u)}},[e.stringifyText(s)])}),c=Array.apply(null,{length:60}).map(function(i,o){var a=new Date(n).setSeconds(o);return t(\"li\",{class:{cell:!0,actived:o===e.currentSeconds,disabled:r&&r(a)},on:{click:e.selectTime.bind(e,a)}},[e.stringifyText(o)])}),l=[o,u];return 0===this.minuteStep&&l.push(c),l=l.map(function(e){return t(\"ul\",{class:\"mx-time-list\",style:{width:100/l.length+\"%\"}},[e])}),t(\"div\",{class:\"mx-panel mx-panel-time\"},[l])}}},mixins:[h,{methods:{dispatch:function(t,e,n){for(var r=this.$parent||this.$root,i=r.$options.name;r&&(!i||i!==t);)(r=r.$parent)&&(i=r.$options.name);i&&i===t&&(r=r||this).$emit.apply(r,[e].concat(n))}}}],props:{value:{default:null,validator:function(t){return null===t||s(t)}},startAt:null,endAt:null,visible:{type:Boolean,default:!1},type:{type:String,default:\"date\"},dateFormat:{type:String,default:\"YYYY-MM-DD\"},firstDayOfWeek:{default:7,type:Number,validator:function(t){return t>=1&&t<=7}},notBefore:{default:null,validator:function(t){return!t||s(t)}},notAfter:{default:null,validator:function(t){return!t||s(t)}},disabledDays:{type:[Array,Function],default:function(){return[]}},minuteStep:{type:Number,default:0,validator:function(t){return t>=0&&t<=60}},timePickerOptions:{type:[Object,Function],default:function(){return null}}},data:function(){var t=new Date,e=t.getFullYear();return{panel:\"NONE\",dates:[],calendarMonth:t.getMonth(),calendarYear:e,firstYear:10*Math.floor(e/10)}},computed:{now:{get:function(){return new Date(this.calendarYear,this.calendarMonth).getTime()},set:function(t){var e=new Date(t);this.calendarYear=e.getFullYear(),this.calendarMonth=e.getMonth()}},timeType:function(){return[/h+/.test(this.$parent.format)?\"12\":\"24\",/A/.test(this.$parent.format)?\"A\":\"a\"]},timeHeader:function(){return\"time\"===this.type?this.$parent.format:this.value&&f(this.value,this.dateFormat)},yearHeader:function(){return this.firstYear+\" ~ \"+(this.firstYear+10)},months:function(){return this.t(\"months\")},notBeforeTime:function(){return this.getCriticalTime(this.notBefore)},notAfterTime:function(){return this.getCriticalTime(this.notAfter)}},watch:{value:{immediate:!0,handler:\"updateNow\"},visible:{immediate:!0,handler:\"init\"},panel:{handler:\"handelPanelChange\"}},methods:{handelPanelChange:function(t,e){var n=this;this.dispatch(\"DatePicker\",\"panel-change\",[t,e]),\"YEAR\"===t?this.firstYear=10*Math.floor(this.calendarYear/10):\"TIME\"===t&&this.$nextTick(function(){for(var t=n.$el.querySelectorAll(\".mx-panel-time .mx-time-list\"),e=0,r=t.length;e<r;e++){var i=t[e];v(i,i.querySelector(\".actived\"))}})},init:function(t){if(t){var e=this.type;\"month\"===e?this.showPanelMonth():\"year\"===e?this.showPanelYear():\"time\"===e?this.showPanelTime():this.showPanelDate()}else this.showPanelNone(),this.updateNow(this.value)},updateNow:function(t){var e=t?new Date(t):new Date,n=new Date(this.now);this.now=e,this.visible&&this.dispatch(\"DatePicker\",\"calendar-change\",[e,n])},getCriticalTime:function(t){if(!t)return null;var e=new Date(t);return\"year\"===this.type?new Date(e.getFullYear(),0).getTime():\"month\"===this.type?new Date(e.getFullYear(),e.getMonth()).getTime():\"date\"===this.type?e.setHours(0,0,0,0):e.getTime()},inBefore:function(t,e){return e=e||this.startAt,this.notBeforeTime&&t<this.notBeforeTime||e&&t<this.getCriticalTime(e)},inAfter:function(t,e){return e=e||this.endAt,this.notAfterTime&&t>this.notAfterTime||e&&t>this.getCriticalTime(e)},inDisabledDays:function(t){var e=this;return Array.isArray(this.disabledDays)?this.disabledDays.some(function(n){return e.getCriticalTime(n)===t}):\"function\"==typeof this.disabledDays&&this.disabledDays(new Date(t))},isDisabledYear:function(t){var e=new Date(t,0).getTime(),n=new Date(t+1,0).getTime()-1;return this.inBefore(n)||this.inAfter(e)||\"year\"===this.type&&this.inDisabledDays(e)},isDisabledMonth:function(t){var e=new Date(this.calendarYear,t).getTime(),n=new Date(this.calendarYear,t+1).getTime()-1;return this.inBefore(n)||this.inAfter(e)||\"month\"===this.type&&this.inDisabledDays(e)},isDisabledDate:function(t){var e=new Date(t).getTime(),n=new Date(t).setHours(23,59,59,999);return this.inBefore(n)||this.inAfter(e)||this.inDisabledDays(e)},isDisabledTime:function(t,e,n){var r=new Date(t).getTime();return this.inBefore(r,e)||this.inAfter(r,n)||this.inDisabledDays(r)},selectDate:function(t){if(\"datetime\"===this.type){var e=new Date(t);return a(this.value)&&e.setHours(this.value.getHours(),this.value.getMinutes(),this.value.getSeconds()),this.isDisabledTime(e)&&(e.setHours(0,0,0,0),this.notBefore&&e.getTime()<new Date(this.notBefore).getTime()&&(e=new Date(this.notBefore)),this.startAt&&e.getTime()<new Date(this.startAt).getTime()&&(e=new Date(this.startAt))),this.selectTime(e),void this.showPanelTime()}this.$emit(\"select-date\",t)},selectYear:function(t){if(this.changeCalendarYear(t),\"year\"===this.type.toLowerCase())return this.selectDate(new Date(this.now));this.showPanelMonth()},selectMonth:function(t){if(this.changeCalendarMonth(t),\"month\"===this.type.toLowerCase())return this.selectDate(new Date(this.now));this.showPanelDate()},selectTime:function(t){this.$emit(\"select-time\",t,!1)},pickTime:function(t){this.$emit(\"select-time\",t,!0)},changeCalendarYear:function(t){this.updateNow(new Date(t,this.calendarMonth))},changeCalendarMonth:function(t){this.updateNow(new Date(this.calendarYear,t))},getSibling:function(){var t=this,e=this.$parent.$children.filter(function(e){return e.$options.name===t.$options.name});return e[1^e.indexOf(this)]},handleIconMonth:function(t){var e=this.calendarMonth;this.changeCalendarMonth(e+t),this.$parent.$emit(\"change-calendar-month\",{month:e,flag:t,vm:this,sibling:this.getSibling()})},handleIconYear:function(t){if(\"YEAR\"===this.panel)this.changePanelYears(t);else{var e=this.calendarYear;this.changeCalendarYear(e+t),this.$parent.$emit(\"change-calendar-year\",{year:e,flag:t,vm:this,sibling:this.getSibling()})}},handleBtnYear:function(){this.showPanelYear()},handleBtnMonth:function(){this.showPanelMonth()},handleTimeHeader:function(){\"time\"!==this.type&&this.showPanelDate()},changePanelYears:function(t){this.firstYear=this.firstYear+10*t},showPanelNone:function(){this.panel=\"NONE\"},showPanelTime:function(){this.panel=\"TIME\"},showPanelDate:function(){this.panel=\"DATE\"},showPanelYear:function(){this.panel=\"YEAR\"},showPanelMonth:function(){this.panel=\"MONTH\"}}},function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"mx-calendar\"},[n(\"div\",{staticClass:\"mx-calendar-header\"},[n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"TIME\"!==t.panel,expression:\"panel !== 'TIME'\"}],staticClass:\"mx-icon-last-year\",on:{click:function(e){t.handleIconYear(-1)}}},[t._v(\"«\")]),t._v(\" \"),n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"DATE\"===t.panel,expression:\"panel === 'DATE'\"}],staticClass:\"mx-icon-last-month\",on:{click:function(e){t.handleIconMonth(-1)}}},[t._v(\"‹\")]),t._v(\" \"),n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"TIME\"!==t.panel,expression:\"panel !== 'TIME'\"}],staticClass:\"mx-icon-next-year\",on:{click:function(e){t.handleIconYear(1)}}},[t._v(\"»\")]),t._v(\" \"),n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"DATE\"===t.panel,expression:\"panel === 'DATE'\"}],staticClass:\"mx-icon-next-month\",on:{click:function(e){t.handleIconMonth(1)}}},[t._v(\"›\")]),t._v(\" \"),n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"DATE\"===t.panel,expression:\"panel === 'DATE'\"}],staticClass:\"mx-current-month\",on:{click:t.handleBtnMonth}},[t._v(t._s(t.months[t.calendarMonth]))]),t._v(\" \"),n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"DATE\"===t.panel||\"MONTH\"===t.panel,expression:\"panel === 'DATE' || panel === 'MONTH'\"}],staticClass:\"mx-current-year\",on:{click:t.handleBtnYear}},[t._v(t._s(t.calendarYear))]),t._v(\" \"),n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"YEAR\"===t.panel,expression:\"panel === 'YEAR'\"}],staticClass:\"mx-current-year\"},[t._v(t._s(t.yearHeader))]),t._v(\" \"),n(\"a\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"TIME\"===t.panel,expression:\"panel === 'TIME'\"}],staticClass:\"mx-time-header\",on:{click:t.handleTimeHeader}},[t._v(t._s(t.timeHeader))])]),t._v(\" \"),n(\"div\",{staticClass:\"mx-calendar-content\"},[n(\"panel-date\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"DATE\"===t.panel,expression:\"panel === 'DATE'\"}],attrs:{value:t.value,\"date-format\":t.dateFormat,\"calendar-month\":t.calendarMonth,\"calendar-year\":t.calendarYear,\"start-at\":t.startAt,\"end-at\":t.endAt,\"first-day-of-week\":t.firstDayOfWeek,\"disabled-date\":t.isDisabledDate},on:{select:t.selectDate}}),t._v(\" \"),n(\"panel-year\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"YEAR\"===t.panel,expression:\"panel === 'YEAR'\"}],attrs:{value:t.value,\"disabled-year\":t.isDisabledYear,\"first-year\":t.firstYear},on:{select:t.selectYear}}),t._v(\" \"),n(\"panel-month\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"MONTH\"===t.panel,expression:\"panel === 'MONTH'\"}],attrs:{value:t.value,\"disabled-month\":t.isDisabledMonth,\"calendar-year\":t.calendarYear},on:{select:t.selectMonth}}),t._v(\" \"),n(\"panel-time\",{directives:[{name:\"show\",rawName:\"v-show\",value:\"TIME\"===t.panel,expression:\"panel === 'TIME'\"}],attrs:{\"minute-step\":t.minuteStep,\"time-picker-options\":t.timePickerOptions,value:t.value,\"disabled-time\":t.isDisabledTime,\"time-type\":t.timeType},on:{select:t.selectTime,pick:t.pickTime}})],1)])},[],!1,null,null,null).exports,x=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},w=b({fecha:i.a,name:\"DatePicker\",components:{CalendarPanel:_},mixins:[h],directives:{clickoutside:o},props:{value:null,placeholder:{type:String,default:null},lang:{type:[String,Object],default:\"zh\"},format:{type:String,default:\"YYYY-MM-DD\"},dateFormat:{type:String},type:{type:String,default:\"date\"},range:{type:Boolean,default:!1},rangeSeparator:{type:String,default:\"~\"},width:{type:[String,Number],default:null},confirmText:{type:String,default:\"OK\"},confirm:{type:Boolean,default:!1},editable:{type:Boolean,default:!0},disabled:{type:Boolean,default:!1},clearable:{type:Boolean,default:!0},shortcuts:{type:[Boolean,Array],default:!0},inputName:{type:String,default:\"date\"},inputClass:{type:[String,Array],default:\"mx-input\"},appendToBody:{type:Boolean,default:!1},popupStyle:{type:Object}},data:function(){return{currentValue:this.range?[null,null]:null,userInput:null,popupVisible:!1,position:{}}},watch:{value:{immediate:!0,handler:\"handleValueChange\"},popupVisible:function(t){t?this.initCalendar():this.userInput=null}},computed:{language:function(){return t=this.lang,\"[object Object]\"===Object.prototype.toString.call(t)?x({},p.en,this.lang):p[this.lang]||p.en;var t},innerPlaceholder:function(){return\"string\"==typeof this.placeholder?this.placeholder:this.range?this.t(\"placeholder.dateRange\"):this.t(\"placeholder.date\")},text:function(){return null!==this.userInput?this.userInput:this.range?u(this.value)?this.stringify(this.value[0])+\" \"+this.rangeSeparator+\" \"+this.stringify(this.value[1]):\"\":s(this.value)?this.stringify(this.value):\"\"},computedWidth:function(){return\"number\"==typeof this.width||\"string\"==typeof this.width&&/^\\d+$/.test(this.width)?this.width+\"px\":this.width},showClearIcon:function(){return!this.disabled&&this.clearable&&(this.range?u(this.value):s(this.value))},innerType:function(){return String(this.type).toLowerCase()},innerShortcuts:function(){if(Array.isArray(this.shortcuts))return this.shortcuts;if(!1===this.shortcuts)return[];var t=this.t(\"pickers\");return[{text:t[0],onClick:function(t){t.currentValue=[new Date,new Date(Date.now()+6048e5)],t.updateDate(!0)}},{text:t[1],onClick:function(t){t.currentValue=[new Date,new Date(Date.now()+2592e6)],t.updateDate(!0)}},{text:t[2],onClick:function(t){t.currentValue=[new Date(Date.now()-6048e5),new Date],t.updateDate(!0)}},{text:t[3],onClick:function(t){t.currentValue=[new Date(Date.now()-2592e6),new Date],t.updateDate(!0)}}]},innerDateFormat:function(){return this.dateFormat?this.dateFormat:\"date\"===this.innerType?this.format:this.format.replace(/[Hh]+.*[msSaAZ]|\\[.*?\\]/g,\"\").trim()||\"YYYY-MM-DD\"},innerPopupStyle:function(){return x({},this.position,this.popupStyle)}},mounted:function(){var t,e,n,r=this;this.appendToBody&&(this.popupElm=this.$refs.calendar,document.body.appendChild(this.popupElm)),this._displayPopup=(t=function(){r.popupVisible&&r.displayPopup()},e=0,n=null,function(){var r=this;if(!n){var i=arguments,o=function(){e=Date.now(),n=null,t.apply(r,i)};Date.now()-e>=200?o():n=setTimeout(o,200)}}),window.addEventListener(\"resize\",this._displayPopup),window.addEventListener(\"scroll\",this._displayPopup)},beforeDestroy:function(){this.popupElm&&this.popupElm.parentNode===document.body&&document.body.removeChild(this.popupElm),window.removeEventListener(\"resize\",this._displayPopup),window.removeEventListener(\"scroll\",this._displayPopup)},methods:{initCalendar:function(){this.handleValueChange(this.value),this.displayPopup()},stringify:function(t,e){return f(t,e||this.format)},parseDate:function(t,e){return function(t,e){try{return i.a.parse(t,e)}catch(t){return!1}}(t,e||this.format)},dateEqual:function(t,e){return a(t)&&a(e)&&t.getTime()===e.getTime()},rangeEqual:function(t,e){var n=this;return Array.isArray(t)&&Array.isArray(e)&&t.length===e.length&&t.every(function(t,r){return n.dateEqual(t,e[r])})},selectRange:function(t){if(\"function\"==typeof t.onClick)return t.onClick(this);this.currentValue=[new Date(t.start),new Date(t.end)],this.updateDate(!0)},clearDate:function(){var t=this.range?[null,null]:null;this.currentValue=t,this.updateDate(!0),this.$emit(\"clear\")},confirmDate:function(){(this.range?u(this.currentValue):s(this.currentValue))&&this.updateDate(!0),this.$emit(\"confirm\",this.currentValue),this.closePopup()},updateDate:function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0];return!(this.confirm&&!t||this.disabled||(this.range?this.rangeEqual(this.value,this.currentValue):this.dateEqual(this.value,this.currentValue))||(this.$emit(\"input\",this.currentValue),this.$emit(\"change\",this.currentValue),0))},handleValueChange:function(t){this.range?this.currentValue=u(t)?[new Date(t[0]),new Date(t[1])]:[null,null]:this.currentValue=s(t)?new Date(t):null},selectDate:function(t){this.currentValue=t,this.updateDate()&&this.closePopup()},selectStartDate:function(t){this.$set(this.currentValue,0,t),this.currentValue[1]&&this.updateDate()},selectEndDate:function(t){this.$set(this.currentValue,1,t),this.currentValue[0]&&this.updateDate()},selectTime:function(t,e){this.currentValue=t,this.updateDate()&&e&&this.closePopup()},selectStartTime:function(t){this.selectStartDate(t)},selectEndTime:function(t){this.selectEndDate(t)},showPopup:function(){this.disabled||(this.popupVisible=!0)},closePopup:function(){this.popupVisible=!1},getPopupSize:function(t){var e=t.style.display,n=t.style.visibility;t.style.display=\"block\",t.style.visibility=\"hidden\";var r=window.getComputedStyle(t),i={width:t.offsetWidth+parseInt(r.marginLeft)+parseInt(r.marginRight),height:t.offsetHeight+parseInt(r.marginTop)+parseInt(r.marginBottom)};return t.style.display=e,t.style.visibility=n,i},displayPopup:function(){var t=document.documentElement.clientWidth,e=document.documentElement.clientHeight,n=this.$el.getBoundingClientRect(),r=this._popupRect||(this._popupRect=this.getPopupSize(this.$refs.calendar)),i={},o=0,a=0;this.appendToBody&&(o=window.pageXOffset+n.left,a=window.pageYOffset+n.top),t-n.left<r.width&&n.right<r.width?i.left=o-n.left+1+\"px\":n.left+n.width/2<=t/2?i.left=o+\"px\":i.left=o+n.width-r.width+\"px\",n.top<=r.height&&e-n.bottom<=r.height?i.top=a+e-n.top-r.height+\"px\":n.top+n.height/2<=e/2?i.top=a+n.height+\"px\":i.top=a-r.height+\"px\",i.top===this.position.top&&i.left===this.position.left||(this.position=i)},handleInput:function(t){this.userInput=t.target.value},handleChange:function(t){var e=t.target.value;if(this.editable&&null!==this.userInput){var n=this.$children[0].isDisabledTime;if(this.range){var r=e.split(\" \"+this.rangeSeparator+\" \");if(2===r.length){var i=this.parseDate(r[0],this.format),o=this.parseDate(r[1],this.format);if(i&&o&&!n(i,null,o)&&!n(o,i,null))return this.currentValue=[i,o],this.updateDate(!0),void this.closePopup()}}else{var a=this.parseDate(e,this.format);if(a&&!n(a,null,null))return this.currentValue=a,this.updateDate(!0),void this.closePopup()}this.$emit(\"input-error\",e)}}}},function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{directives:[{name:\"clickoutside\",rawName:\"v-clickoutside\",value:t.closePopup,expression:\"closePopup\"}],staticClass:\"mx-datepicker\",class:{\"mx-datepicker-range\":t.range,disabled:t.disabled},style:{width:t.computedWidth}},[n(\"div\",{staticClass:\"mx-input-wrapper\",on:{click:t.showPopup}},[n(\"input\",{ref:\"input\",class:t.inputClass,attrs:{type:\"text\",autocomplete:\"off\",name:t.inputName,disabled:t.disabled,readonly:!t.editable,placeholder:t.innerPlaceholder},domProps:{value:t.text},on:{input:t.handleInput,change:t.handleChange}}),t._v(\" \"),n(\"span\",{staticClass:\"mx-input-append\"},[t._t(\"calendar-icon\",[n(\"svg\",{staticClass:\"mx-calendar-icon\",attrs:{xmlns:\"http://www.w3.org/2000/svg\",version:\"1.1\",viewBox:\"0 0 200 200\"}},[n(\"rect\",{attrs:{x:\"13\",y:\"29\",rx:\"14\",ry:\"14\",width:\"174\",height:\"158\",fill:\"transparent\"}}),t._v(\" \"),n(\"line\",{attrs:{x1:\"46\",x2:\"46\",y1:\"8\",y2:\"50\"}}),t._v(\" \"),n(\"line\",{attrs:{x1:\"154\",x2:\"154\",y1:\"8\",y2:\"50\"}}),t._v(\" \"),n(\"line\",{attrs:{x1:\"13\",x2:\"187\",y1:\"70\",y2:\"70\"}}),t._v(\" \"),n(\"text\",{attrs:{x:\"50%\",y:\"135\",\"font-size\":\"90\",\"stroke-width\":\"1\",\"text-anchor\":\"middle\",\"dominant-baseline\":\"middle\"}},[t._v(t._s((new Date).getDate()))])])])],2),t._v(\" \"),t.showClearIcon?n(\"span\",{staticClass:\"mx-input-append mx-clear-wrapper\",on:{click:function(e){return e.stopPropagation(),t.clearDate(e)}}},[t._t(\"mx-clear-icon\",[n(\"i\",{staticClass:\"mx-input-icon mx-clear-icon\"})])],2):t._e()]),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.popupVisible,expression:\"popupVisible\"}],ref:\"calendar\",staticClass:\"mx-datepicker-popup\",style:t.innerPopupStyle,on:{click:function(t){t.stopPropagation(),t.preventDefault()}}},[t._t(\"header\",[t.range&&t.innerShortcuts.length?n(\"div\",{staticClass:\"mx-shortcuts-wrapper\"},t._l(t.innerShortcuts,function(e,r){return n(\"button\",{key:r,staticClass:\"mx-shortcuts\",attrs:{type:\"button\"},on:{click:function(n){t.selectRange(e)}}},[t._v(t._s(e.text))])})):t._e()]),t._v(\" \"),t.range?n(\"div\",{staticClass:\"mx-range-wrapper\"},[n(\"calendar-panel\",t._b({staticStyle:{\"box-shadow\":\"1px 0 rgba(0, 0, 0, .1)\"},attrs:{type:t.innerType,\"date-format\":t.innerDateFormat,value:t.currentValue[0],\"end-at\":t.currentValue[1],\"start-at\":null,visible:t.popupVisible},on:{\"select-date\":t.selectStartDate,\"select-time\":t.selectStartTime}},\"calendar-panel\",t.$attrs,!1)),t._v(\" \"),n(\"calendar-panel\",t._b({attrs:{type:t.innerType,\"date-format\":t.innerDateFormat,value:t.currentValue[1],\"start-at\":t.currentValue[0],\"end-at\":null,visible:t.popupVisible},on:{\"select-date\":t.selectEndDate,\"select-time\":t.selectEndTime}},\"calendar-panel\",t.$attrs,!1))],1):n(\"calendar-panel\",t._b({attrs:{type:t.innerType,\"date-format\":t.innerDateFormat,value:t.currentValue,visible:t.popupVisible},on:{\"select-date\":t.selectDate,\"select-time\":t.selectTime}},\"calendar-panel\",t.$attrs,!1)),t._v(\" \"),t._t(\"footer\",[t.confirm?n(\"div\",{staticClass:\"mx-datepicker-footer\"},[n(\"button\",{staticClass:\"mx-datepicker-btn mx-datepicker-btn-confirm\",attrs:{type:\"button\"},on:{click:t.confirmDate}},[t._v(t._s(t.confirmText))])]):t._e()],{confirm:t.confirmDate})],2)])},[],!1,null,null,null).exports;n(6),w.install=function(t){t.component(w.name,w)},\"undefined\"!=typeof window&&window.Vue&&w.install(window.Vue),e.default=w},function(t,e){t.exports=function(){var t=[];return t.toString=function(){for(var t=[],e=0;e<this.length;e++){var n=this[e];n[2]?t.push(\"@media \"+n[2]+\"{\"+n[1]+\"}\"):t.push(n[1])}return t.join(\"\")},t.i=function(e,n){\"string\"==typeof e&&(e=[[null,e,\"\"]]);for(var r={},i=0;i<this.length;i++){var o=this[i][0];\"number\"==typeof o&&(r[o]=!0)}for(i=0;i<e.length;i++){var a=e[i];\"number\"==typeof a[0]&&r[a[0]]||(n&&!a[2]?a[2]=n:n&&(a[2]=\"(\"+a[2]+\") and (\"+n+\")\"),t.push(a))}},t}},function(t,e,n){(t.exports=n(4)()).push([t.i,\"@charset \\\"UTF-8\\\";\\n.mx-datepicker {\\n position: relative;\\n display: inline-block;\\n width: 210px;\\n color: #73879c;\\n font: 14px/1.5 'Helvetica Neue', Helvetica, Arial, 'Microsoft Yahei', sans-serif; }\\n .mx-datepicker * {\\n -webkit-box-sizing: border-box;\\n box-sizing: border-box; }\\n .mx-datepicker.disabled {\\n opacity: 0.7;\\n cursor: not-allowed; }\\n\\n.mx-datepicker-range {\\n width: 320px; }\\n\\n.mx-datepicker-popup {\\n position: absolute;\\n margin-top: 1px;\\n margin-bottom: 1px;\\n border: 1px solid #d9d9d9;\\n background-color: #fff;\\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\\n z-index: 1000; }\\n\\n.mx-input-wrapper {\\n position: relative; }\\n .mx-input-wrapper .mx-clear-wrapper {\\n display: none; }\\n .mx-input-wrapper:hover .mx-clear-wrapper {\\n display: block; }\\n\\n.mx-input {\\n display: inline-block;\\n width: 100%;\\n height: 34px;\\n padding: 6px 30px;\\n padding-left: 10px;\\n font-size: 14px;\\n line-height: 1.4;\\n color: #555;\\n background-color: #fff;\\n border: 1px solid #ccc;\\n border-radius: 4px;\\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }\\n .mx-input:disabled, .mx-input.disabled {\\n opacity: 0.7;\\n cursor: not-allowed; }\\n .mx-input:focus {\\n outline: none; }\\n\\n.mx-input-append {\\n position: absolute;\\n top: 0;\\n right: 0;\\n width: 30px;\\n height: 100%;\\n padding: 6px;\\n background-color: #fff;\\n background-clip: content-box; }\\n\\n.mx-input-icon {\\n display: inline-block;\\n width: 100%;\\n height: 100%;\\n font-style: normal;\\n color: #555;\\n text-align: center;\\n cursor: pointer; }\\n\\n.mx-calendar-icon {\\n width: 100%;\\n height: 100%;\\n color: #555;\\n stroke-width: 8px;\\n stroke: currentColor;\\n fill: currentColor; }\\n\\n.mx-clear-icon::before {\\n display: inline-block;\\n content: '\\\\2716';\\n vertical-align: middle; }\\n\\n.mx-clear-icon::after {\\n content: '';\\n display: inline-block;\\n width: 0;\\n height: 100%;\\n vertical-align: middle; }\\n\\n.mx-range-wrapper {\\n width: 496px;\\n overflow: hidden; }\\n\\n.mx-shortcuts-wrapper {\\n text-align: left;\\n padding: 0 12px;\\n line-height: 34px;\\n border-bottom: 1px solid rgba(0, 0, 0, 0.05); }\\n .mx-shortcuts-wrapper .mx-shortcuts {\\n background: none;\\n outline: none;\\n border: 0;\\n color: #48576a;\\n margin: 0;\\n padding: 0;\\n white-space: nowrap;\\n cursor: pointer; }\\n .mx-shortcuts-wrapper .mx-shortcuts:hover {\\n color: #419dec; }\\n .mx-shortcuts-wrapper .mx-shortcuts:after {\\n content: '|';\\n margin: 0 10px;\\n color: #48576a; }\\n\\n.mx-datepicker-footer {\\n padding: 4px;\\n clear: both;\\n text-align: right;\\n border-top: 1px solid rgba(0, 0, 0, 0.05); }\\n\\n.mx-datepicker-btn {\\n font-size: 12px;\\n line-height: 1;\\n padding: 7px 15px;\\n margin: 0 5px;\\n cursor: pointer;\\n background-color: transparent;\\n outline: none;\\n border: none;\\n border-radius: 3px; }\\n\\n.mx-datepicker-btn-confirm {\\n border: 1px solid rgba(0, 0, 0, 0.1);\\n color: #73879c; }\\n .mx-datepicker-btn-confirm:hover {\\n color: #1284e7;\\n border-color: #1284e7; }\\n\\n/* 日历组件 */\\n.mx-calendar {\\n float: left;\\n color: #73879c;\\n padding: 6px 12px;\\n font: 14px/1.5 Helvetica Neue,Helvetica,Arial,Microsoft Yahei,sans-serif; }\\n .mx-calendar * {\\n -webkit-box-sizing: border-box;\\n box-sizing: border-box; }\\n\\n.mx-calendar-header {\\n padding: 0 4px;\\n height: 34px;\\n line-height: 34px;\\n text-align: center;\\n overflow: hidden; }\\n .mx-calendar-header > a {\\n color: inherit;\\n text-decoration: none;\\n cursor: pointer; }\\n .mx-calendar-header > a:hover {\\n color: #419dec; }\\n .mx-icon-last-month, .mx-icon-last-year,\\n .mx-icon-next-month,\\n .mx-icon-next-year {\\n padding: 0 6px;\\n font-size: 20px;\\n line-height: 30px; }\\n .mx-icon-last-month, .mx-icon-last-year {\\n float: left; }\\n \\n .mx-icon-next-month,\\n .mx-icon-next-year {\\n float: right; }\\n\\n.mx-calendar-content {\\n width: 224px;\\n height: 224px; }\\n .mx-calendar-content .cell {\\n vertical-align: middle;\\n cursor: pointer; }\\n .mx-calendar-content .cell:hover {\\n background-color: #eaf8fe; }\\n .mx-calendar-content .cell.actived {\\n color: #fff;\\n background-color: #1284e7; }\\n .mx-calendar-content .cell.inrange {\\n background-color: #eaf8fe; }\\n .mx-calendar-content .cell.disabled {\\n cursor: not-allowed;\\n color: #ccc;\\n background-color: #f3f3f3; }\\n\\n.mx-panel {\\n width: 100%;\\n height: 100%;\\n text-align: center; }\\n\\n.mx-panel-date {\\n table-layout: fixed;\\n border-collapse: collapse;\\n border-spacing: 0; }\\n .mx-panel-date td, .mx-panel-date th {\\n font-size: 12px;\\n width: 32px;\\n height: 32px;\\n padding: 0;\\n overflow: hidden;\\n text-align: center; }\\n .mx-panel-date td.today {\\n color: #2a90e9; }\\n .mx-panel-date td.last-month, .mx-panel-date td.next-month {\\n color: #ddd; }\\n\\n.mx-panel-year {\\n padding: 7px 0; }\\n .mx-panel-year .cell {\\n display: inline-block;\\n width: 40%;\\n margin: 1px 5%;\\n line-height: 40px; }\\n\\n.mx-panel-month .cell {\\n display: inline-block;\\n width: 30%;\\n line-height: 40px;\\n margin: 8px 1.5%; }\\n\\n.mx-time-list {\\n position: relative;\\n float: left;\\n margin: 0;\\n padding: 0;\\n list-style: none;\\n width: 100%;\\n height: 100%;\\n border-top: 1px solid rgba(0, 0, 0, 0.05);\\n border-left: 1px solid rgba(0, 0, 0, 0.05);\\n overflow-y: auto;\\n /* 滚动条滑块 */ }\\n .mx-time-list .mx-time-picker-item {\\n display: block;\\n text-align: left;\\n padding-left: 10px; }\\n .mx-time-list:first-child {\\n border-left: 0; }\\n .mx-time-list .cell {\\n width: 100%;\\n font-size: 12px;\\n height: 30px;\\n line-height: 30px; }\\n .mx-time-list::-webkit-scrollbar {\\n width: 8px;\\n height: 8px; }\\n .mx-time-list::-webkit-scrollbar-thumb {\\n background-color: rgba(0, 0, 0, 0.05);\\n border-radius: 10px;\\n -webkit-box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1);\\n box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.1); }\\n .mx-time-list:hover::-webkit-scrollbar-thumb {\\n background-color: rgba(0, 0, 0, 0.2); }\\n\",\"\"])},function(t,e,n){var r=n(5);\"string\"==typeof r&&(r=[[t.i,r,\"\"]]),r.locals&&(t.exports=r.locals),(0,n(2).default)(\"511dbeb0\",r,!0,{})}])},function(t,e,n){var r=n(14),i=n(9),o=n(34);t.exports=function(t){return function(e,n,a){var s,u=r(e),c=i(u.length),l=o(a,c);if(t&&n!=n){for(;c>l;)if((s=u[l++])!=s)return!0}else for(;c>l;l++)if((t||l in u)&&u[l]===n)return t||l||0;return!t&&-1}}},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(23),i=n(5)(\"toStringTag\"),o=\"Arguments\"==r(function(){return arguments}());t.exports=function(t){var e,n,a;return void 0===t?\"Undefined\":null===t?\"Null\":\"string\"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:o?r(e):\"Object\"==(a=r(e))&&\"function\"==typeof e.callee?\"Arguments\":a}},function(t,e,n){var r=n(0),i=n(24),o=n(1),a=n(73),s=\"[\"+a+\"]\",u=RegExp(\"^\"+s+s+\"*\"),c=RegExp(s+s+\"*$\"),l=function(t,e,n){var i={},s=o(function(){return!!a[t]()||\"
\"!=\"
\"[t]()}),u=i[t]=s?e(f):a[t];n&&(i[n]=u),r(r.P+r.F*s,\"String\",i)},f=l.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(u,\"\")),2&e&&(t=t.replace(c,\"\")),t};t.exports=l},function(t,e,n){var r=n(5)(\"iterator\"),i=!1;try{var o=[7][r]();o.return=function(){i=!0},Array.from(o,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!i)return!1;var n=!1;try{var o=[7],a=o[r]();a.next=function(){return{done:n=!0}},o[r]=function(){return a},t(o)}catch(t){}return n}},function(t,e,n){\"use strict\";var r=n(13),i=n(10),o=n(1),a=n(24),s=n(5);t.exports=function(t,e,n){var u=s(t),c=n(a,u,\"\"[t]),l=c[0],f=c[1];o(function(){var e={};return e[u]=function(){return 7},7!=\"\"[t](e)})&&(i(String.prototype,t,l),r(RegExp.prototype,u,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){var r=n(21),i=n(107),o=n(82),a=n(4),s=n(9),u=n(84),c={},l={};(e=t.exports=function(t,e,n,f,p){var d,h,v,m,g=p?function(){return t}:u(t),y=r(n,f,e?2:1),b=0;if(\"function\"!=typeof g)throw TypeError(t+\" is not iterable!\");if(o(g)){for(d=s(t.length);d>b;b++)if((m=e?y(a(h=t[b])[0],h[1]):y(t[b]))===c||m===l)return m}else for(v=g.call(t);!(h=v.next()).done;)if((m=i(v,y,h.value,e))===c||m===l)return m}).BREAK=c,e.RETURN=l},function(t,e,n){var r=n(4),i=n(22),o=n(5)(\"species\");t.exports=function(t,e){var n,a=r(t).constructor;return void 0===a||void 0==(n=r(a)[o])?e:i(n)}},function(t,e,n){var r=n(2).navigator;t.exports=r&&r.userAgent||\"\"},function(t,e,n){\"use strict\";var r=n(2),i=n(0),o=n(10),a=n(43),s=n(28),u=n(56),c=n(42),l=n(3),f=n(1),p=n(54),d=n(38),h=n(74);t.exports=function(t,e,n,v,m,g){var y=r[t],b=y,_=m?\"set\":\"add\",x=b&&b.prototype,w={},S=function(t){var e=x[t];o(x,t,\"delete\"==t?function(t){return!(g&&!l(t))&&e.call(this,0===t?0:t)}:\"has\"==t?function(t){return!(g&&!l(t))&&e.call(this,0===t?0:t)}:\"get\"==t?function(t){return g&&!l(t)?void 0:e.call(this,0===t?0:t)}:\"add\"==t?function(t){return e.call(this,0===t?0:t),this}:function(t,n){return e.call(this,0===t?0:t,n),this})};if(\"function\"==typeof b&&(g||x.forEach&&!f(function(){(new b).entries().next()}))){var O=new b,k=O[_](g?{}:-0,1)!=O,E=f(function(){O.has(1)}),T=p(function(t){new b(t)}),D=!g&&f(function(){for(var t=new b,e=5;e--;)t[_](e,e);return!t.has(-0)});T||((b=e(function(e,n){c(e,b,t);var r=h(new y,e,b);return void 0!=n&&u(n,m,r[_],r),r})).prototype=x,x.constructor=b),(E||D)&&(S(\"delete\"),S(\"has\"),m&&S(\"get\")),(D||k)&&S(_),g&&x.clear&&delete x.clear}else b=v.getConstructor(e,t,m,_),a(b.prototype,n),s.NEED=!0;return d(b,t),w[t]=b,i(i.G+i.W+i.F*(b!=y),w),g||v.setStrong(b,t,m),b}},function(t,e,n){for(var r,i=n(2),o=n(13),a=n(31),s=a(\"typed_array\"),u=a(\"view\"),c=!(!i.ArrayBuffer||!i.DataView),l=c,f=0,p=\"Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array\".split(\",\");f<9;)(r=i[p[f++]])?(o(r.prototype,s,!0),o(r.prototype,u,!0)):l=!1;t.exports={ABV:c,CONSTR:l,TYPED:s,VIEW:u}},function(t,e,n){var r=n(320);\"string\"==typeof r&&(r=[[t.i,r,\"\"]]),r.locals&&(t.exports=r.locals);(0,n(48).default)(\"7aebefbb\",r,!1,{})},function(t,e,n){var r=n(322);\"string\"==typeof r&&(r=[[t.i,r,\"\"]]),r.locals&&(t.exports=r.locals);(0,n(48).default)(\"722cdc3c\",r,!1,{})},function(t,e,n){var r=n(326);\"string\"==typeof r&&(r=[[t.i,r,\"\"]]),r.locals&&(t.exports=r.locals);(0,n(48).default)(\"3ce5d415\",r,!1,{})},function(t,e,n){\"use strict\";(function(t){n.d(e,\"a\",function(){return Ht});for(\n/**!\n * @fileOverview Kickass library to create and place poppers near their reference elements.\n * @version 1.14.3\n * @license\n * Copyright (c) 2016 Federico Zivolo and contributors\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\nvar r=\"undefined\"!=typeof window&&\"undefined\"!=typeof document,i=[\"Edge\",\"Trident\",\"Firefox\"],o=0,a=0;a<i.length;a+=1)if(r&&navigator.userAgent.indexOf(i[a])>=0){o=1;break}var s=r&&window.Promise?function(t){var e=!1;return function(){e||(e=!0,window.Promise.resolve().then(function(){e=!1,t()}))}}:function(t){var e=!1;return function(){e||(e=!0,setTimeout(function(){e=!1,t()},o))}};function u(t){return t&&\"[object Function]\"==={}.toString.call(t)}function c(t,e){if(1!==t.nodeType)return[];var n=getComputedStyle(t,null);return e?n[e]:n}function l(t){return\"HTML\"===t.nodeName?t:t.parentNode||t.host}function f(t){if(!t)return document.body;switch(t.nodeName){case\"HTML\":case\"BODY\":return t.ownerDocument.body;case\"#document\":return t.body}var e=c(t),n=e.overflow,r=e.overflowX,i=e.overflowY;return/(auto|scroll|overlay)/.test(n+i+r)?t:f(l(t))}var p=r&&!(!window.MSInputMethodContext||!document.documentMode),d=r&&/MSIE 10/.test(navigator.userAgent);function h(t){return 11===t?p:10===t?d:p||d}function v(t){if(!t)return document.documentElement;for(var e=h(10)?document.body:null,n=t.offsetParent;n===e&&t.nextElementSibling;)n=(t=t.nextElementSibling).offsetParent;var r=n&&n.nodeName;return r&&\"BODY\"!==r&&\"HTML\"!==r?-1!==[\"TD\",\"TABLE\"].indexOf(n.nodeName)&&\"static\"===c(n,\"position\")?v(n):n:t?t.ownerDocument.documentElement:document.documentElement}function m(t){return null!==t.parentNode?m(t.parentNode):t}function g(t,e){if(!(t&&t.nodeType&&e&&e.nodeType))return document.documentElement;var n=t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING,r=n?t:e,i=n?e:t,o=document.createRange();o.setStart(r,0),o.setEnd(i,0);var a=o.commonAncestorContainer;if(t!==a&&e!==a||r.contains(i))return function(t){var e=t.nodeName;return\"BODY\"!==e&&(\"HTML\"===e||v(t.firstElementChild)===t)}(a)?a:v(a);var s=m(t);return s.host?g(s.host,e):g(t,m(e).host)}function y(t){var e=\"top\"===(arguments.length>1&&void 0!==arguments[1]?arguments[1]:\"top\")?\"scrollTop\":\"scrollLeft\",n=t.nodeName;if(\"BODY\"===n||\"HTML\"===n){var r=t.ownerDocument.documentElement;return(t.ownerDocument.scrollingElement||r)[e]}return t[e]}function b(t,e){var n=\"x\"===e?\"Left\":\"Top\",r=\"Left\"===n?\"Right\":\"Bottom\";return parseFloat(t[\"border\"+n+\"Width\"],10)+parseFloat(t[\"border\"+r+\"Width\"],10)}function _(t,e,n,r){return Math.max(e[\"offset\"+t],e[\"scroll\"+t],n[\"client\"+t],n[\"offset\"+t],n[\"scroll\"+t],h(10)?n[\"offset\"+t]+r[\"margin\"+(\"Height\"===t?\"Top\":\"Left\")]+r[\"margin\"+(\"Height\"===t?\"Bottom\":\"Right\")]:0)}function x(){var t=document.body,e=document.documentElement,n=h(10)&&getComputedStyle(e);return{height:_(\"Height\",t,e,n),width:_(\"Width\",t,e,n)}}var w=function(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")},S=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,\"value\"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),O=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t},k=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t};function E(t){return k({},t,{right:t.left+t.width,bottom:t.top+t.height})}function T(t){var e={};try{if(h(10)){e=t.getBoundingClientRect();var n=y(t,\"top\"),r=y(t,\"left\");e.top+=n,e.left+=r,e.bottom+=n,e.right+=r}else e=t.getBoundingClientRect()}catch(t){}var i={left:e.left,top:e.top,width:e.right-e.left,height:e.bottom-e.top},o=\"HTML\"===t.nodeName?x():{},a=o.width||t.clientWidth||i.right-i.left,s=o.height||t.clientHeight||i.bottom-i.top,u=t.offsetWidth-a,l=t.offsetHeight-s;if(u||l){var f=c(t);u-=b(f,\"x\"),l-=b(f,\"y\"),i.width-=u,i.height-=l}return E(i)}function D(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=h(10),i=\"HTML\"===e.nodeName,o=T(t),a=T(e),s=f(t),u=c(e),l=parseFloat(u.borderTopWidth,10),p=parseFloat(u.borderLeftWidth,10);n&&\"HTML\"===e.nodeName&&(a.top=Math.max(a.top,0),a.left=Math.max(a.left,0));var d=E({top:o.top-a.top-l,left:o.left-a.left-p,width:o.width,height:o.height});if(d.marginTop=0,d.marginLeft=0,!r&&i){var v=parseFloat(u.marginTop,10),m=parseFloat(u.marginLeft,10);d.top-=l-v,d.bottom-=l-v,d.left-=p-m,d.right-=p-m,d.marginTop=v,d.marginLeft=m}return(r&&!n?e.contains(s):e===s&&\"BODY\"!==s.nodeName)&&(d=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2],r=y(e,\"top\"),i=y(e,\"left\"),o=n?-1:1;return t.top+=r*o,t.bottom+=r*o,t.left+=i*o,t.right+=i*o,t}(d,e)),d}function A(t){if(!t||!t.parentElement||h())return document.documentElement;for(var e=t.parentElement;e&&\"none\"===c(e,\"transform\");)e=e.parentElement;return e||document.documentElement}function C(t,e,n,r){var i=arguments.length>4&&void 0!==arguments[4]&&arguments[4],o={top:0,left:0},a=i?A(t):g(t,e);if(\"viewport\"===r)o=function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=t.ownerDocument.documentElement,r=D(t,n),i=Math.max(n.clientWidth,window.innerWidth||0),o=Math.max(n.clientHeight,window.innerHeight||0),a=e?0:y(n),s=e?0:y(n,\"left\");return E({top:a-r.top+r.marginTop,left:s-r.left+r.marginLeft,width:i,height:o})}(a,i);else{var s=void 0;\"scrollParent\"===r?\"BODY\"===(s=f(l(e))).nodeName&&(s=t.ownerDocument.documentElement):s=\"window\"===r?t.ownerDocument.documentElement:r;var u=D(s,a,i);if(\"HTML\"!==s.nodeName||function t(e){var n=e.nodeName;return\"BODY\"!==n&&\"HTML\"!==n&&(\"fixed\"===c(e,\"position\")||t(l(e)))}(a))o=u;else{var p=x(),d=p.height,h=p.width;o.top+=u.top-u.marginTop,o.bottom=d+u.top,o.left+=u.left-u.marginLeft,o.right=h+u.left}}return o.left+=n,o.top+=n,o.right-=n,o.bottom-=n,o}function M(t,e,n,r,i){var o=arguments.length>5&&void 0!==arguments[5]?arguments[5]:0;if(-1===t.indexOf(\"auto\"))return t;var a=C(n,r,o,i),s={top:{width:a.width,height:e.top-a.top},right:{width:a.right-e.right,height:a.height},bottom:{width:a.width,height:a.bottom-e.bottom},left:{width:e.left-a.left,height:a.height}},u=Object.keys(s).map(function(t){return k({key:t},s[t],{area:function(t){return t.width*t.height}(s[t])})}).sort(function(t,e){return e.area-t.area}),c=u.filter(function(t){var e=t.width,r=t.height;return e>=n.clientWidth&&r>=n.clientHeight}),l=c.length>0?c[0].key:u[0].key,f=t.split(\"-\")[1];return l+(f?\"-\"+f:\"\")}function P(t,e,n){var r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null;return D(n,r?A(e):g(e,n),r)}function N(t){var e=getComputedStyle(t),n=parseFloat(e.marginTop)+parseFloat(e.marginBottom),r=parseFloat(e.marginLeft)+parseFloat(e.marginRight);return{width:t.offsetWidth+r,height:t.offsetHeight+n}}function L(t){var e={left:\"right\",right:\"left\",bottom:\"top\",top:\"bottom\"};return t.replace(/left|right|bottom|top/g,function(t){return e[t]})}function j(t,e,n){n=n.split(\"-\")[0];var r=N(t),i={width:r.width,height:r.height},o=-1!==[\"right\",\"left\"].indexOf(n),a=o?\"top\":\"left\",s=o?\"left\":\"top\",u=o?\"height\":\"width\",c=o?\"width\":\"height\";return i[a]=e[a]+e[u]/2-r[u]/2,i[s]=n===s?e[s]-r[c]:e[L(s)],i}function F(t,e){return Array.prototype.find?t.find(e):t.filter(e)[0]}function I(t,e,n){return(void 0===n?t:t.slice(0,function(t,e,n){if(Array.prototype.findIndex)return t.findIndex(function(t){return t[e]===n});var r=F(t,function(t){return t[e]===n});return t.indexOf(r)}(t,\"name\",n))).forEach(function(t){t.function&&console.warn(\"`modifier.function` is deprecated, use `modifier.fn`!\");var n=t.function||t.fn;t.enabled&&u(n)&&(e.offsets.popper=E(e.offsets.popper),e.offsets.reference=E(e.offsets.reference),e=n(e,t))}),e}function $(t,e){return t.some(function(t){var n=t.name;return t.enabled&&n===e})}function R(t){for(var e=[!1,\"ms\",\"Webkit\",\"Moz\",\"O\"],n=t.charAt(0).toUpperCase()+t.slice(1),r=0;r<e.length;r++){var i=e[r],o=i?\"\"+i+n:t;if(void 0!==document.body.style[o])return o}return null}function B(t){var e=t.ownerDocument;return e?e.defaultView:window}function V(t,e,n,r){n.updateBound=r,B(t).addEventListener(\"resize\",n.updateBound,{passive:!0});var i=f(t);return function t(e,n,r,i){var o=\"BODY\"===e.nodeName,a=o?e.ownerDocument.defaultView:e;a.addEventListener(n,r,{passive:!0}),o||t(f(a.parentNode),n,r,i),i.push(a)}(i,\"scroll\",n.updateBound,n.scrollParents),n.scrollElement=i,n.eventsEnabled=!0,n}function H(){this.state.eventsEnabled&&(cancelAnimationFrame(this.scheduleUpdate),this.state=function(t,e){return B(t).removeEventListener(\"resize\",e.updateBound),e.scrollParents.forEach(function(t){t.removeEventListener(\"scroll\",e.updateBound)}),e.updateBound=null,e.scrollParents=[],e.scrollElement=null,e.eventsEnabled=!1,e}(this.reference,this.state))}function U(t){return\"\"!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function Y(t,e){Object.keys(e).forEach(function(n){var r=\"\";-1!==[\"width\",\"height\",\"top\",\"right\",\"bottom\",\"left\"].indexOf(n)&&U(e[n])&&(r=\"px\"),t.style[n]=e[n]+r})}function z(t,e,n){var r=F(t,function(t){return t.name===e}),i=!!r&&t.some(function(t){return t.name===n&&t.enabled&&t.order<r.order});if(!i){var o=\"`\"+e+\"`\",a=\"`\"+n+\"`\";console.warn(a+\" modifier is required by \"+o+\" modifier in order to work, be sure to include it before \"+o+\"!\")}return i}var W=[\"auto-start\",\"auto\",\"auto-end\",\"top-start\",\"top\",\"top-end\",\"right-start\",\"right\",\"right-end\",\"bottom-end\",\"bottom\",\"bottom-start\",\"left-end\",\"left\",\"left-start\"],G=W.slice(3);function q(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=G.indexOf(t),r=G.slice(n+1).concat(G.slice(0,n));return e?r.reverse():r}var J={FLIP:\"flip\",CLOCKWISE:\"clockwise\",COUNTERCLOCKWISE:\"counterclockwise\"};function K(t,e,n,r){var i=[0,0],o=-1!==[\"right\",\"left\"].indexOf(r),a=t.split(/(\\+|\\-)/).map(function(t){return t.trim()}),s=a.indexOf(F(a,function(t){return-1!==t.search(/,|\\s/)}));a[s]&&-1===a[s].indexOf(\",\")&&console.warn(\"Offsets separated by white space(s) are deprecated, use a comma (,) instead.\");var u=/\\s*,\\s*|\\s+/,c=-1!==s?[a.slice(0,s).concat([a[s].split(u)[0]]),[a[s].split(u)[1]].concat(a.slice(s+1))]:[a];return(c=c.map(function(t,r){var i=(1===r?!o:o)?\"height\":\"width\",a=!1;return t.reduce(function(t,e){return\"\"===t[t.length-1]&&-1!==[\"+\",\"-\"].indexOf(e)?(t[t.length-1]=e,a=!0,t):a?(t[t.length-1]+=e,a=!1,t):t.concat(e)},[]).map(function(t){return function(t,e,n,r){var i=t.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/),o=+i[1],a=i[2];if(!o)return t;if(0===a.indexOf(\"%\")){var s=void 0;switch(a){case\"%p\":s=n;break;case\"%\":case\"%r\":default:s=r}return E(s)[e]/100*o}if(\"vh\"===a||\"vw\"===a)return(\"vh\"===a?Math.max(document.documentElement.clientHeight,window.innerHeight||0):Math.max(document.documentElement.clientWidth,window.innerWidth||0))/100*o;return o}(t,i,e,n)})})).forEach(function(t,e){t.forEach(function(n,r){U(n)&&(i[e]+=n*(\"-\"===t[r-1]?-1:1))})}),i}var X={placement:\"bottom\",positionFixed:!1,eventsEnabled:!0,removeOnDestroy:!1,onCreate:function(){},onUpdate:function(){},modifiers:{shift:{order:100,enabled:!0,fn:function(t){var e=t.placement,n=e.split(\"-\")[0],r=e.split(\"-\")[1];if(r){var i=t.offsets,o=i.reference,a=i.popper,s=-1!==[\"bottom\",\"top\"].indexOf(n),u=s?\"left\":\"top\",c=s?\"width\":\"height\",l={start:O({},u,o[u]),end:O({},u,o[u]+o[c]-a[c])};t.offsets.popper=k({},a,l[r])}return t}},offset:{order:200,enabled:!0,fn:function(t,e){var n=e.offset,r=t.placement,i=t.offsets,o=i.popper,a=i.reference,s=r.split(\"-\")[0],u=void 0;return u=U(+n)?[+n,0]:K(n,o,a,s),\"left\"===s?(o.top+=u[0],o.left-=u[1]):\"right\"===s?(o.top+=u[0],o.left+=u[1]):\"top\"===s?(o.left+=u[0],o.top-=u[1]):\"bottom\"===s&&(o.left+=u[0],o.top+=u[1]),t.popper=o,t},offset:0},preventOverflow:{order:300,enabled:!0,fn:function(t,e){var n=e.boundariesElement||v(t.instance.popper);t.instance.reference===n&&(n=v(n));var r=R(\"transform\"),i=t.instance.popper.style,o=i.top,a=i.left,s=i[r];i.top=\"\",i.left=\"\",i[r]=\"\";var u=C(t.instance.popper,t.instance.reference,e.padding,n,t.positionFixed);i.top=o,i.left=a,i[r]=s,e.boundaries=u;var c=e.priority,l=t.offsets.popper,f={primary:function(t){var n=l[t];return l[t]<u[t]&&!e.escapeWithReference&&(n=Math.max(l[t],u[t])),O({},t,n)},secondary:function(t){var n=\"right\"===t?\"left\":\"top\",r=l[n];return l[t]>u[t]&&!e.escapeWithReference&&(r=Math.min(l[n],u[t]-(\"right\"===t?l.width:l.height))),O({},n,r)}};return c.forEach(function(t){var e=-1!==[\"left\",\"top\"].indexOf(t)?\"primary\":\"secondary\";l=k({},l,f[e](t))}),t.offsets.popper=l,t},priority:[\"left\",\"right\",\"top\",\"bottom\"],padding:5,boundariesElement:\"scrollParent\"},keepTogether:{order:400,enabled:!0,fn:function(t){var e=t.offsets,n=e.popper,r=e.reference,i=t.placement.split(\"-\")[0],o=Math.floor,a=-1!==[\"top\",\"bottom\"].indexOf(i),s=a?\"right\":\"bottom\",u=a?\"left\":\"top\",c=a?\"width\":\"height\";return n[s]<o(r[u])&&(t.offsets.popper[u]=o(r[u])-n[c]),n[u]>o(r[s])&&(t.offsets.popper[u]=o(r[s])),t}},arrow:{order:500,enabled:!0,fn:function(t,e){var n;if(!z(t.instance.modifiers,\"arrow\",\"keepTogether\"))return t;var r=e.element;if(\"string\"==typeof r){if(!(r=t.instance.popper.querySelector(r)))return t}else if(!t.instance.popper.contains(r))return console.warn(\"WARNING: `arrow.element` must be child of its popper element!\"),t;var i=t.placement.split(\"-\")[0],o=t.offsets,a=o.popper,s=o.reference,u=-1!==[\"left\",\"right\"].indexOf(i),l=u?\"height\":\"width\",f=u?\"Top\":\"Left\",p=f.toLowerCase(),d=u?\"left\":\"top\",h=u?\"bottom\":\"right\",v=N(r)[l];s[h]-v<a[p]&&(t.offsets.popper[p]-=a[p]-(s[h]-v)),s[p]+v>a[h]&&(t.offsets.popper[p]+=s[p]+v-a[h]),t.offsets.popper=E(t.offsets.popper);var m=s[p]+s[l]/2-v/2,g=c(t.instance.popper),y=parseFloat(g[\"margin\"+f],10),b=parseFloat(g[\"border\"+f+\"Width\"],10),_=m-t.offsets.popper[p]-y-b;return _=Math.max(Math.min(a[l]-v,_),0),t.arrowElement=r,t.offsets.arrow=(O(n={},p,Math.round(_)),O(n,d,\"\"),n),t},element:\"[x-arrow]\"},flip:{order:600,enabled:!0,fn:function(t,e){if($(t.instance.modifiers,\"inner\"))return t;if(t.flipped&&t.placement===t.originalPlacement)return t;var n=C(t.instance.popper,t.instance.reference,e.padding,e.boundariesElement,t.positionFixed),r=t.placement.split(\"-\")[0],i=L(r),o=t.placement.split(\"-\")[1]||\"\",a=[];switch(e.behavior){case J.FLIP:a=[r,i];break;case J.CLOCKWISE:a=q(r);break;case J.COUNTERCLOCKWISE:a=q(r,!0);break;default:a=e.behavior}return a.forEach(function(s,u){if(r!==s||a.length===u+1)return t;r=t.placement.split(\"-\")[0],i=L(r);var c=t.offsets.popper,l=t.offsets.reference,f=Math.floor,p=\"left\"===r&&f(c.right)>f(l.left)||\"right\"===r&&f(c.left)<f(l.right)||\"top\"===r&&f(c.bottom)>f(l.top)||\"bottom\"===r&&f(c.top)<f(l.bottom),d=f(c.left)<f(n.left),h=f(c.right)>f(n.right),v=f(c.top)<f(n.top),m=f(c.bottom)>f(n.bottom),g=\"left\"===r&&d||\"right\"===r&&h||\"top\"===r&&v||\"bottom\"===r&&m,y=-1!==[\"top\",\"bottom\"].indexOf(r),b=!!e.flipVariations&&(y&&\"start\"===o&&d||y&&\"end\"===o&&h||!y&&\"start\"===o&&v||!y&&\"end\"===o&&m);(p||g||b)&&(t.flipped=!0,(p||g)&&(r=a[u+1]),b&&(o=function(t){return\"end\"===t?\"start\":\"start\"===t?\"end\":t}(o)),t.placement=r+(o?\"-\"+o:\"\"),t.offsets.popper=k({},t.offsets.popper,j(t.instance.popper,t.offsets.reference,t.placement)),t=I(t.instance.modifiers,t,\"flip\"))}),t},behavior:\"flip\",padding:5,boundariesElement:\"viewport\"},inner:{order:700,enabled:!1,fn:function(t){var e=t.placement,n=e.split(\"-\")[0],r=t.offsets,i=r.popper,o=r.reference,a=-1!==[\"left\",\"right\"].indexOf(n),s=-1===[\"top\",\"left\"].indexOf(n);return i[a?\"left\":\"top\"]=o[n]-(s?i[a?\"width\":\"height\"]:0),t.placement=L(e),t.offsets.popper=E(i),t}},hide:{order:800,enabled:!0,fn:function(t){if(!z(t.instance.modifiers,\"hide\",\"preventOverflow\"))return t;var e=t.offsets.reference,n=F(t.instance.modifiers,function(t){return\"preventOverflow\"===t.name}).boundaries;if(e.bottom<n.top||e.left>n.right||e.top>n.bottom||e.right<n.left){if(!0===t.hide)return t;t.hide=!0,t.attributes[\"x-out-of-boundaries\"]=\"\"}else{if(!1===t.hide)return t;t.hide=!1,t.attributes[\"x-out-of-boundaries\"]=!1}return t}},computeStyle:{order:850,enabled:!0,fn:function(t,e){var n=e.x,r=e.y,i=t.offsets.popper,o=F(t.instance.modifiers,function(t){return\"applyStyle\"===t.name}).gpuAcceleration;void 0!==o&&console.warn(\"WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!\");var a=void 0!==o?o:e.gpuAcceleration,s=T(v(t.instance.popper)),u={position:i.position},c={left:Math.floor(i.left),top:Math.round(i.top),bottom:Math.round(i.bottom),right:Math.floor(i.right)},l=\"bottom\"===n?\"top\":\"bottom\",f=\"right\"===r?\"left\":\"right\",p=R(\"transform\"),d=void 0,h=void 0;if(h=\"bottom\"===l?-s.height+c.bottom:c.top,d=\"right\"===f?-s.width+c.right:c.left,a&&p)u[p]=\"translate3d(\"+d+\"px, \"+h+\"px, 0)\",u[l]=0,u[f]=0,u.willChange=\"transform\";else{var m=\"bottom\"===l?-1:1,g=\"right\"===f?-1:1;u[l]=h*m,u[f]=d*g,u.willChange=l+\", \"+f}var y={\"x-placement\":t.placement};return t.attributes=k({},y,t.attributes),t.styles=k({},u,t.styles),t.arrowStyles=k({},t.offsets.arrow,t.arrowStyles),t},gpuAcceleration:!0,x:\"bottom\",y:\"right\"},applyStyle:{order:900,enabled:!0,fn:function(t){return Y(t.instance.popper,t.styles),function(t,e){Object.keys(e).forEach(function(n){!1!==e[n]?t.setAttribute(n,e[n]):t.removeAttribute(n)})}(t.instance.popper,t.attributes),t.arrowElement&&Object.keys(t.arrowStyles).length&&Y(t.arrowElement,t.arrowStyles),t},onLoad:function(t,e,n,r,i){var o=P(i,e,t,n.positionFixed),a=M(n.placement,o,e,t,n.modifiers.flip.boundariesElement,n.modifiers.flip.padding);return e.setAttribute(\"x-placement\",a),Y(e,{position:n.positionFixed?\"fixed\":\"absolute\"}),n},gpuAcceleration:void 0}}},Z=function(){function t(e,n){var r=this,i=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};w(this,t),this.scheduleUpdate=function(){return requestAnimationFrame(r.update)},this.update=s(this.update.bind(this)),this.options=k({},t.Defaults,i),this.state={isDestroyed:!1,isCreated:!1,scrollParents:[]},this.reference=e&&e.jquery?e[0]:e,this.popper=n&&n.jquery?n[0]:n,this.options.modifiers={},Object.keys(k({},t.Defaults.modifiers,i.modifiers)).forEach(function(e){r.options.modifiers[e]=k({},t.Defaults.modifiers[e]||{},i.modifiers?i.modifiers[e]:{})}),this.modifiers=Object.keys(this.options.modifiers).map(function(t){return k({name:t},r.options.modifiers[t])}).sort(function(t,e){return t.order-e.order}),this.modifiers.forEach(function(t){t.enabled&&u(t.onLoad)&&t.onLoad(r.reference,r.popper,r.options,t,r.state)}),this.update();var o=this.options.eventsEnabled;o&&this.enableEventListeners(),this.state.eventsEnabled=o}return S(t,[{key:\"update\",value:function(){return function(){if(!this.state.isDestroyed){var t={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};t.offsets.reference=P(this.state,this.popper,this.reference,this.options.positionFixed),t.placement=M(this.options.placement,t.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),t.originalPlacement=t.placement,t.positionFixed=this.options.positionFixed,t.offsets.popper=j(this.popper,t.offsets.reference,t.placement),t.offsets.popper.position=this.options.positionFixed?\"fixed\":\"absolute\",t=I(this.modifiers,t),this.state.isCreated?this.options.onUpdate(t):(this.state.isCreated=!0,this.options.onCreate(t))}}.call(this)}},{key:\"destroy\",value:function(){return function(){return this.state.isDestroyed=!0,$(this.modifiers,\"applyStyle\")&&(this.popper.removeAttribute(\"x-placement\"),this.popper.style.position=\"\",this.popper.style.top=\"\",this.popper.style.left=\"\",this.popper.style.right=\"\",this.popper.style.bottom=\"\",this.popper.style.willChange=\"\",this.popper.style[R(\"transform\")]=\"\"),this.disableEventListeners(),this.options.removeOnDestroy&&this.popper.parentNode.removeChild(this.popper),this}.call(this)}},{key:\"enableEventListeners\",value:function(){return function(){this.state.eventsEnabled||(this.state=V(this.reference,this.options,this.state,this.scheduleUpdate))}.call(this)}},{key:\"disableEventListeners\",value:function(){return H.call(this)}}]),t}();Z.Utils=(\"undefined\"!=typeof window?window:t).PopperUtils,Z.placements=W,Z.Defaults=X;var Q=function(){};function tt(t){return\"string\"==typeof t&&(t=t.split(\" \")),t}function et(t,e){var n=tt(e),r=void 0;r=t.className instanceof Q?tt(t.className.baseVal):tt(t.className),n.forEach(function(t){-1===r.indexOf(t)&&r.push(t)}),t instanceof SVGElement?t.setAttribute(\"class\",r.join(\" \")):t.className=r.join(\" \")}function nt(t,e){var n=tt(e),r=void 0;r=t.className instanceof Q?tt(t.className.baseVal):tt(t.className),n.forEach(function(t){var e=r.indexOf(t);-1!==e&&r.splice(e,1)}),t instanceof SVGElement?t.setAttribute(\"class\",r.join(\" \")):t.className=r.join(\" \")}\"undefined\"!=typeof window&&(Q=window.SVGAnimatedString);var rt=!1;if(\"undefined\"!=typeof window){rt=!1;try{var it=Object.defineProperty({},\"passive\",{get:function(){rt=!0}});window.addEventListener(\"test\",null,it)}catch(t){}}var ot=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t},at=function(t,e){if(!(t instanceof e))throw new TypeError(\"Cannot call a class as a function\")},st=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,\"value\"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),ut=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n=arguments[e];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(t[r]=n[r])}return t},ct={container:!1,delay:0,html:!1,placement:\"top\",title:\"\",template:'<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',trigger:\"hover focus\",offset:0},lt=[],ft=function(){function t(e,n){at(this,t),pt.call(this),n=ut({},ct,n),e.jquery&&(e=e[0]),this.reference=e,this.options=n,this._isOpen=!1,this._init()}return st(t,[{key:\"setClasses\",value:function(t){this._classes=t}},{key:\"setContent\",value:function(t){this.options.title=t,this._tooltipNode&&this._setContent(t,this.options)}},{key:\"setOptions\",value:function(t){var e=!1,n=t&&t.classes||xt.options.defaultClass;this._classes!==n&&(this.setClasses(n),e=!0),t=mt(t);var r=!1,i=!1;for(var o in this.options.offset===t.offset&&this.options.placement===t.placement||(r=!0),(this.options.template!==t.template||this.options.trigger!==t.trigger||this.options.container!==t.container||e)&&(i=!0),t)this.options[o]=t[o];if(this._tooltipNode)if(i){var a=this._isOpen;this.dispose(),this._init(),a&&this.show()}else r&&this.popperInstance.update()}},{key:\"_init\",value:function(){var t=\"string\"==typeof this.options.trigger?this.options.trigger.split(\" \").filter(function(t){return-1!==[\"click\",\"hover\",\"focus\"].indexOf(t)}):[];this._isDisposed=!1,this._enableDocumentTouch=-1===t.indexOf(\"manual\"),this._setEventListeners(this.reference,t,this.options)}},{key:\"_create\",value:function(t,e){var n=window.document.createElement(\"div\");n.innerHTML=e.trim();var r=n.childNodes[0];return r.id=\"tooltip_\"+Math.random().toString(36).substr(2,10),r.setAttribute(\"aria-hidden\",\"true\"),this.options.autoHide&&-1!==this.options.trigger.indexOf(\"hover\")&&(r.addEventListener(\"mouseenter\",this.hide),r.addEventListener(\"click\",this.hide)),r}},{key:\"_setContent\",value:function(t,e){var n=this;this.asyncContent=!1,this._applyContent(t,e).then(function(){n.popperInstance.update()})}},{key:\"_applyContent\",value:function(t,e){var n=this;return new Promise(function(r,i){var o=e.html,a=n._tooltipNode;if(a){var s=a.querySelector(n.options.innerSelector);if(1===t.nodeType){if(o){for(;s.firstChild;)s.removeChild(s.firstChild);s.appendChild(t)}}else{if(\"function\"==typeof t){var u=t();return void(u&&\"function\"==typeof u.then?(n.asyncContent=!0,e.loadingClass&&et(a,e.loadingClass),e.loadingContent&&n._applyContent(e.loadingContent,e),u.then(function(t){return e.loadingClass&&nt(a,e.loadingClass),n._applyContent(t,e)}).then(r).catch(i)):n._applyContent(u,e).then(r).catch(i))}o?s.innerHTML=t:s.innerText=t}r()}})}},{key:\"_show\",value:function(t,e){if(e&&\"string\"==typeof e.container&&!document.querySelector(e.container))return;clearTimeout(this._disposeTimer),delete(e=Object.assign({},e)).offset;var n=!0;this._tooltipNode&&(et(this._tooltipNode,this._classes),n=!1);var r=this._ensureShown(t,e);return n&&this._tooltipNode&&et(this._tooltipNode,this._classes),et(t,[\"v-tooltip-open\"]),r}},{key:\"_ensureShown\",value:function(t,e){var n=this;if(this._isOpen)return this;if(this._isOpen=!0,lt.push(this),this._tooltipNode)return this._tooltipNode.style.display=\"\",this._tooltipNode.setAttribute(\"aria-hidden\",\"false\"),this.popperInstance.enableEventListeners(),this.popperInstance.update(),this.asyncContent&&this._setContent(e.title,e),this;var r=t.getAttribute(\"title\")||e.title;if(!r)return this;var i=this._create(t,e.template);this._tooltipNode=i,this._setContent(r,e),t.setAttribute(\"aria-describedby\",i.id);var o=this._findContainer(e.container,t);this._append(i,o);var a=ut({},e.popperOptions,{placement:e.placement});return a.modifiers=ut({},a.modifiers,{arrow:{element:this.options.arrowSelector}}),e.boundariesElement&&(a.modifiers.preventOverflow={boundariesElement:e.boundariesElement}),this.popperInstance=new Z(t,i,a),requestAnimationFrame(function(){!n._isDisposed&&n.popperInstance?(n.popperInstance.update(),requestAnimationFrame(function(){n._isDisposed?n.dispose():n._isOpen&&i.setAttribute(\"aria-hidden\",\"false\")})):n.dispose()}),this}},{key:\"_noLongerOpen\",value:function(){var t=lt.indexOf(this);-1!==t&<.splice(t,1)}},{key:\"_hide\",value:function(){var t=this;if(!this._isOpen)return this;this._isOpen=!1,this._noLongerOpen(),this._tooltipNode.style.display=\"none\",this._tooltipNode.setAttribute(\"aria-hidden\",\"true\"),this.popperInstance.disableEventListeners(),clearTimeout(this._disposeTimer);var e=xt.options.disposeTimeout;return null!==e&&(this._disposeTimer=setTimeout(function(){t._tooltipNode&&(t._tooltipNode.removeEventListener(\"mouseenter\",t.hide),t._tooltipNode.removeEventListener(\"click\",t.hide),t._tooltipNode.parentNode.removeChild(t._tooltipNode),t._tooltipNode=null)},e)),nt(this.reference,[\"v-tooltip-open\"]),this}},{key:\"_dispose\",value:function(){var t=this;return this._isDisposed=!0,this._events.forEach(function(e){var n=e.func,r=e.event;t.reference.removeEventListener(r,n)}),this._events=[],this._tooltipNode?(this._hide(),this._tooltipNode.removeEventListener(\"mouseenter\",this.hide),this._tooltipNode.removeEventListener(\"click\",this.hide),this.popperInstance.destroy(),this.popperInstance.options.removeOnDestroy||(this._tooltipNode.parentNode.removeChild(this._tooltipNode),this._tooltipNode=null)):this._noLongerOpen(),this}},{key:\"_findContainer\",value:function(t,e){return\"string\"==typeof t?t=window.document.querySelector(t):!1===t&&(t=e.parentNode),t}},{key:\"_append\",value:function(t,e){e.appendChild(t)}},{key:\"_setEventListeners\",value:function(t,e,n){var r=this,i=[],o=[];e.forEach(function(t){switch(t){case\"hover\":i.push(\"mouseenter\"),o.push(\"mouseleave\"),r.options.hideOnTargetClick&&o.push(\"click\");break;case\"focus\":i.push(\"focus\"),o.push(\"blur\"),r.options.hideOnTargetClick&&o.push(\"click\");break;case\"click\":i.push(\"click\"),o.push(\"click\")}}),i.forEach(function(e){var i=function(e){!0!==r._isOpen&&(e.usedByTooltip=!0,r._scheduleShow(t,n.delay,n,e))};r._events.push({event:e,func:i}),t.addEventListener(e,i)}),o.forEach(function(e){var i=function(e){!0!==e.usedByTooltip&&r._scheduleHide(t,n.delay,n,e)};r._events.push({event:e,func:i}),t.addEventListener(e,i)})}},{key:\"_onDocumentTouch\",value:function(t){this._enableDocumentTouch&&this._scheduleHide(this.reference,this.options.delay,this.options,t)}},{key:\"_scheduleShow\",value:function(t,e,n){var r=this,i=e&&e.show||e||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout(function(){return r._show(t,n)},i)}},{key:\"_scheduleHide\",value:function(t,e,n,r){var i=this,o=e&&e.hide||e||0;clearTimeout(this._scheduleTimer),this._scheduleTimer=window.setTimeout(function(){if(!1!==i._isOpen&&document.body.contains(i._tooltipNode)){if(\"mouseleave\"===r.type)if(i._setTooltipNodeEvent(r,t,e,n))return;i._hide(t,n)}},o)}}]),t}(),pt=function(){var t=this;this.show=function(){t._show(t.reference,t.options)},this.hide=function(){t._hide()},this.dispose=function(){t._dispose()},this.toggle=function(){return t._isOpen?t.hide():t.show()},this._events=[],this._setTooltipNodeEvent=function(e,n,r,i){var o=e.relatedreference||e.toElement||e.relatedTarget;return!!t._tooltipNode.contains(o)&&(t._tooltipNode.addEventListener(e.type,function r(o){var a=o.relatedreference||o.toElement||o.relatedTarget;t._tooltipNode.removeEventListener(e.type,r),n.contains(a)||t._scheduleHide(n,i.delay,i,o)}),!0)}};\"undefined\"!=typeof document&&document.addEventListener(\"touchstart\",function(t){for(var e=0;e<lt.length;e++)lt[e]._onDocumentTouch(t)},!rt||{passive:!0,capture:!0});var dt={enabled:!0},ht=[\"top\",\"top-start\",\"top-end\",\"right\",\"right-start\",\"right-end\",\"bottom\",\"bottom-start\",\"bottom-end\",\"left\",\"left-start\",\"left-end\"],vt={defaultPlacement:\"top\",defaultClass:\"vue-tooltip-theme\",defaultTargetClass:\"has-tooltip\",defaultHtml:!0,defaultTemplate:'<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',defaultArrowSelector:\".tooltip-arrow, .tooltip__arrow\",defaultInnerSelector:\".tooltip-inner, .tooltip__inner\",defaultDelay:0,defaultTrigger:\"hover focus\",defaultOffset:0,defaultContainer:\"body\",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultLoadingClass:\"tooltip-loading\",defaultLoadingContent:\"...\",autoHide:!0,defaultHideOnTargetClick:!0,disposeTimeout:5e3,popover:{defaultPlacement:\"bottom\",defaultClass:\"vue-popover-theme\",defaultBaseClass:\"tooltip popover\",defaultWrapperClass:\"wrapper\",defaultInnerClass:\"tooltip-inner popover-inner\",defaultArrowClass:\"tooltip-arrow popover-arrow\",defaultDelay:0,defaultTrigger:\"click\",defaultOffset:0,defaultContainer:\"body\",defaultBoundariesElement:void 0,defaultPopperOptions:{},defaultAutoHide:!0,defaultHandleResize:!0}};function mt(t){var e={placement:void 0!==t.placement?t.placement:xt.options.defaultPlacement,delay:void 0!==t.delay?t.delay:xt.options.defaultDelay,html:void 0!==t.html?t.html:xt.options.defaultHtml,template:void 0!==t.template?t.template:xt.options.defaultTemplate,arrowSelector:void 0!==t.arrowSelector?t.arrowSelector:xt.options.defaultArrowSelector,innerSelector:void 0!==t.innerSelector?t.innerSelector:xt.options.defaultInnerSelector,trigger:void 0!==t.trigger?t.trigger:xt.options.defaultTrigger,offset:void 0!==t.offset?t.offset:xt.options.defaultOffset,container:void 0!==t.container?t.container:xt.options.defaultContainer,boundariesElement:void 0!==t.boundariesElement?t.boundariesElement:xt.options.defaultBoundariesElement,autoHide:void 0!==t.autoHide?t.autoHide:xt.options.autoHide,hideOnTargetClick:void 0!==t.hideOnTargetClick?t.hideOnTargetClick:xt.options.defaultHideOnTargetClick,loadingClass:void 0!==t.loadingClass?t.loadingClass:xt.options.defaultLoadingClass,loadingContent:void 0!==t.loadingContent?t.loadingContent:xt.options.defaultLoadingContent,popperOptions:ut({},void 0!==t.popperOptions?t.popperOptions:xt.options.defaultPopperOptions)};if(e.offset){var n=ot(e.offset),r=e.offset;(\"number\"===n||\"string\"===n&&-1===r.indexOf(\",\"))&&(r=\"0, \"+r),e.popperOptions.modifiers||(e.popperOptions.modifiers={}),e.popperOptions.modifiers.offset={offset:r}}return e.trigger&&-1!==e.trigger.indexOf(\"click\")&&(e.hideOnTargetClick=!1),e}function gt(t,e){for(var n=t.placement,r=0;r<ht.length;r++){var i=ht[r];e[i]&&(n=i)}return n}function yt(t){var e=void 0===t?\"undefined\":ot(t);return\"string\"===e?t:!(!t||\"object\"!==e)&&t.content}function bt(t){t._tooltip&&(t._tooltip.dispose(),delete t._tooltip,delete t._tooltipOldShow),t._tooltipTargetClasses&&(nt(t,t._tooltipTargetClasses),delete t._tooltipTargetClasses)}function _t(t,e){var n=e.value,r=(e.oldValue,e.modifiers),i=yt(n);if(i&&dt.enabled){var o=void 0;t._tooltip?((o=t._tooltip).setContent(i),o.setOptions(ut({},n,{placement:gt(n,r)}))):o=function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=yt(e),i=void 0!==e.classes?e.classes:xt.options.defaultClass,o=ut({title:r},mt(ut({},e,{placement:gt(e,n)}))),a=t._tooltip=new ft(t,o);a.setClasses(i),a._vueEl=t;var s=void 0!==e.targetClasses?e.targetClasses:xt.options.defaultTargetClass;return t._tooltipTargetClasses=s,et(t,s),a}(t,n,r),void 0!==n.show&&n.show!==t._tooltipOldShow&&(t._tooltipOldShow=n.show,n.show?o.show():o.hide())}else bt(t)}var xt={options:vt,bind:_t,update:_t,unbind:function(t){bt(t)}};function wt(t){t.addEventListener(\"click\",Ot),t.addEventListener(\"touchstart\",kt,!!rt&&{passive:!0})}function St(t){t.removeEventListener(\"click\",Ot),t.removeEventListener(\"touchstart\",kt),t.removeEventListener(\"touchend\",Et),t.removeEventListener(\"touchcancel\",Tt)}function Ot(t){var e=t.currentTarget;t.closePopover=!e.$_vclosepopover_touch,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}function kt(t){if(1===t.changedTouches.length){var e=t.currentTarget;e.$_vclosepopover_touch=!0;var n=t.changedTouches[0];e.$_vclosepopover_touchPoint=n,e.addEventListener(\"touchend\",Et),e.addEventListener(\"touchcancel\",Tt)}}function Et(t){var e=t.currentTarget;if(e.$_vclosepopover_touch=!1,1===t.changedTouches.length){var n=t.changedTouches[0],r=e.$_vclosepopover_touchPoint;t.closePopover=Math.abs(n.screenY-r.screenY)<20&&Math.abs(n.screenX-r.screenX)<20,t.closeAllPopover=e.$_closePopoverModifiers&&!!e.$_closePopoverModifiers.all}}function Tt(t){t.currentTarget.$_vclosepopover_touch=!1}var Dt={bind:function(t,e){var n=e.value,r=e.modifiers;t.$_closePopoverModifiers=r,(void 0===n||n)&&wt(t)},update:function(t,e){var n=e.value,r=e.oldValue,i=e.modifiers;t.$_closePopoverModifiers=i,n!==r&&(void 0===n||n?wt(t):St(t))},unbind:function(t){St(t)}};var At=void 0;function Ct(){Ct.init||(Ct.init=!0,At=-1!==function(){var t=window.navigator.userAgent,e=t.indexOf(\"MSIE \");if(e>0)return parseInt(t.substring(e+5,t.indexOf(\".\",e)),10);if(t.indexOf(\"Trident/\")>0){var n=t.indexOf(\"rv:\");return parseInt(t.substring(n+3,t.indexOf(\".\",n)),10)}var r=t.indexOf(\"Edge/\");return r>0?parseInt(t.substring(r+5,t.indexOf(\".\",r)),10):-1}())}var Mt={render:function(){var t=this.$createElement;return(this._self._c||t)(\"div\",{staticClass:\"resize-observer\",attrs:{tabindex:\"-1\"}})},staticRenderFns:[],_scopeId:\"data-v-b329ee4c\",name:\"resize-observer\",methods:{notify:function(){this.$emit(\"notify\")},addResizeHandlers:function(){this._resizeObject.contentDocument.defaultView.addEventListener(\"resize\",this.notify),this._w===this.$el.offsetWidth&&this._h===this.$el.offsetHeight||this.notify()},removeResizeHandlers:function(){this._resizeObject&&this._resizeObject.onload&&(!At&&this._resizeObject.contentDocument&&this._resizeObject.contentDocument.defaultView.removeEventListener(\"resize\",this.notify),delete this._resizeObject.onload)}},mounted:function(){var t=this;Ct(),this.$nextTick(function(){t._w=t.$el.offsetWidth,t._h=t.$el.offsetHeight});var e=document.createElement(\"object\");this._resizeObject=e,e.setAttribute(\"style\",\"display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1;\"),e.setAttribute(\"aria-hidden\",\"true\"),e.setAttribute(\"tabindex\",-1),e.onload=this.addResizeHandlers,e.type=\"text/html\",At&&this.$el.appendChild(e),e.data=\"about:blank\",At||this.$el.appendChild(e)},beforeDestroy:function(){this.removeResizeHandlers()}};var Pt={version:\"0.4.4\",install:function(t){t.component(\"resize-observer\",Mt)}},Nt=null;function Lt(t){var e=xt.options.popover[t];return void 0===e?xt.options[t]:e}\"undefined\"!=typeof window?Nt=window.Vue:void 0!==t&&(Nt=t.Vue),Nt&&Nt.use(Pt);var jt=!1;\"undefined\"!=typeof window&&\"undefined\"!=typeof navigator&&(jt=/iPad|iPhone|iPod/.test(navigator.userAgent)&&!window.MSStream);var Ft=[],It=function(){};\"undefined\"!=typeof window&&(It=window.Element);var $t={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"v-popover\",class:t.cssClass},[n(\"span\",{ref:\"trigger\",staticClass:\"trigger\",staticStyle:{display:\"inline-block\"},attrs:{\"aria-describedby\":t.popoverId,tabindex:-1!==t.trigger.indexOf(\"focus\")?0:-1}},[t._t(\"default\")],2),t._v(\" \"),n(\"div\",{ref:\"popover\",class:[t.popoverBaseClass,t.popoverClass,t.cssClass],style:{visibility:t.isOpen?\"visible\":\"hidden\"},attrs:{id:t.popoverId,\"aria-hidden\":t.isOpen?\"false\":\"true\"}},[n(\"div\",{class:t.popoverWrapperClass},[n(\"div\",{ref:\"inner\",class:t.popoverInnerClass,staticStyle:{position:\"relative\"}},[n(\"div\",[t._t(\"popover\")],2),t._v(\" \"),t.handleResize?n(\"ResizeObserver\",{on:{notify:t.$_handleResize}}):t._e()],1),t._v(\" \"),n(\"div\",{ref:\"arrow\",class:t.popoverArrowClass})])])])},staticRenderFns:[],name:\"VPopover\",components:{ResizeObserver:Mt},props:{open:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},placement:{type:String,default:function(){return Lt(\"defaultPlacement\")}},delay:{type:[String,Number,Object],default:function(){return Lt(\"defaultDelay\")}},offset:{type:[String,Number],default:function(){return Lt(\"defaultOffset\")}},trigger:{type:String,default:function(){return Lt(\"defaultTrigger\")}},container:{type:[String,Object,It,Boolean],default:function(){return Lt(\"defaultContainer\")}},boundariesElement:{type:[String,It],default:function(){return Lt(\"defaultBoundariesElement\")}},popperOptions:{type:Object,default:function(){return Lt(\"defaultPopperOptions\")}},popoverClass:{type:[String,Array],default:function(){return Lt(\"defaultClass\")}},popoverBaseClass:{type:[String,Array],default:function(){return xt.options.popover.defaultBaseClass}},popoverInnerClass:{type:[String,Array],default:function(){return xt.options.popover.defaultInnerClass}},popoverWrapperClass:{type:[String,Array],default:function(){return xt.options.popover.defaultWrapperClass}},popoverArrowClass:{type:[String,Array],default:function(){return xt.options.popover.defaultArrowClass}},autoHide:{type:Boolean,default:function(){return xt.options.popover.defaultAutoHide}},handleResize:{type:Boolean,default:function(){return xt.options.popover.defaultHandleResize}},openGroup:{type:String,default:null}},data:function(){return{isOpen:!1,id:Math.random().toString(36).substr(2,10)}},computed:{cssClass:function(){return{open:this.isOpen}},popoverId:function(){return\"popover_\"+this.id}},watch:{open:function(t){t?this.show():this.hide()},disabled:function(t,e){t!==e&&(t?this.hide():this.open&&this.show())},container:function(t){if(this.isOpen&&this.popperInstance){var e=this.$refs.popover,n=this.$refs.trigger,r=this.$_findContainer(this.container,n);if(!r)return void console.warn(\"No container for popover\",this);r.appendChild(e),this.popperInstance.scheduleUpdate()}},trigger:function(t){this.$_removeEventListeners(),this.$_addEventListeners()},placement:function(t){var e=this;this.$_updatePopper(function(){e.popperInstance.options.placement=t})},offset:\"$_restartPopper\",boundariesElement:\"$_restartPopper\",popperOptions:{handler:\"$_restartPopper\",deep:!0}},created:function(){this.$_isDisposed=!1,this.$_mounted=!1,this.$_events=[],this.$_preventOpen=!1},mounted:function(){var t=this.$refs.popover;t.parentNode&&t.parentNode.removeChild(t),this.$_init(),this.open&&this.show()},beforeDestroy:function(){this.dispose()},methods:{show:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=e.event,r=(e.skipDelay,e.force);!(void 0!==r&&r)&&this.disabled||(this.$_scheduleShow(n),this.$emit(\"show\")),this.$emit(\"update:open\",!0),this.$_beingShowed=!0,requestAnimationFrame(function(){t.$_beingShowed=!1})},hide:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},e=t.event;t.skipDelay;this.$_scheduleHide(e),this.$emit(\"hide\"),this.$emit(\"update:open\",!1)},dispose:function(){if(this.$_isDisposed=!0,this.$_removeEventListeners(),this.hide({skipDelay:!0}),this.popperInstance&&(this.popperInstance.destroy(),!this.popperInstance.options.removeOnDestroy)){var t=this.$refs.popover;t.parentNode&&t.parentNode.removeChild(t)}this.$_mounted=!1,this.popperInstance=null,this.isOpen=!1,this.$emit(\"dispose\")},$_init:function(){-1===this.trigger.indexOf(\"manual\")&&this.$_addEventListeners()},$_show:function(){var t=this,e=this.$refs.trigger,n=this.$refs.popover;if(clearTimeout(this.$_disposeTimer),!this.isOpen){if(this.popperInstance&&(this.isOpen=!0,this.popperInstance.enableEventListeners(),this.popperInstance.scheduleUpdate()),!this.$_mounted){var r=this.$_findContainer(this.container,e);if(!r)return void console.warn(\"No container for popover\",this);r.appendChild(n),this.$_mounted=!0}if(!this.popperInstance){var i=ut({},this.popperOptions,{placement:this.placement});if(i.modifiers=ut({},i.modifiers,{arrow:ut({},i.modifiers&&i.modifiers.arrow,{element:this.$refs.arrow})}),this.offset){var o=this.$_getOffset();i.modifiers.offset=ut({},i.modifiers&&i.modifiers.offset,{offset:o})}this.boundariesElement&&(i.modifiers.preventOverflow=ut({},i.modifiers&&i.modifiers.preventOverflow,{boundariesElement:this.boundariesElement})),this.popperInstance=new Z(e,n,i),requestAnimationFrame(function(){!t.$_isDisposed&&t.popperInstance?(t.popperInstance.scheduleUpdate(),requestAnimationFrame(function(){t.$_isDisposed?t.dispose():t.isOpen=!0})):t.dispose()})}var a=this.openGroup;if(a)for(var s=void 0,u=0;u<Ft.length;u++)(s=Ft[u]).openGroup!==a&&(s.hide(),s.$emit(\"close-group\"));Ft.push(this),this.$emit(\"apply-show\")}},$_hide:function(){var t=this;if(this.isOpen){var e=Ft.indexOf(this);-1!==e&&Ft.splice(e,1),this.isOpen=!1,this.popperInstance&&this.popperInstance.disableEventListeners(),clearTimeout(this.$_disposeTimer);var n=xt.options.popover.disposeTimeout||xt.options.disposeTimeout;null!==n&&(this.$_disposeTimer=setTimeout(function(){var e=t.$refs.popover;e&&(e.parentNode&&e.parentNode.removeChild(e),t.$_mounted=!1)},n)),this.$emit(\"apply-hide\")}},$_findContainer:function(t,e){return\"string\"==typeof t?t=window.document.querySelector(t):!1===t&&(t=e.parentNode),t},$_getOffset:function(){var t=ot(this.offset),e=this.offset;return(\"number\"===t||\"string\"===t&&-1===e.indexOf(\",\"))&&(e=\"0, \"+e),e},$_addEventListeners:function(){var t=this,e=this.$refs.trigger,n=[],r=[];(\"string\"==typeof this.trigger?this.trigger.split(\" \").filter(function(t){return-1!==[\"click\",\"hover\",\"focus\"].indexOf(t)}):[]).forEach(function(t){switch(t){case\"hover\":n.push(\"mouseenter\"),r.push(\"mouseleave\");break;case\"focus\":n.push(\"focus\"),r.push(\"blur\");break;case\"click\":n.push(\"click\"),r.push(\"click\")}}),n.forEach(function(n){var r=function(e){t.isOpen||(e.usedByTooltip=!0,!t.$_preventOpen&&t.show({event:e}))};t.$_events.push({event:n,func:r}),e.addEventListener(n,r)}),r.forEach(function(n){var r=function(e){e.usedByTooltip||t.hide({event:e})};t.$_events.push({event:n,func:r}),e.addEventListener(n,r)})},$_scheduleShow:function(){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),t)this.$_show();else{var e=parseInt(this.delay&&this.delay.show||this.delay||0);this.$_scheduleTimer=setTimeout(this.$_show.bind(this),e)}},$_scheduleHide:function(){var t=this,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:null,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];if(clearTimeout(this.$_scheduleTimer),n)this.$_hide();else{var r=parseInt(this.delay&&this.delay.hide||this.delay||0);this.$_scheduleTimer=setTimeout(function(){if(t.isOpen){if(e&&\"mouseleave\"===e.type)if(t.$_setTooltipNodeEvent(e))return;t.$_hide()}},r)}},$_setTooltipNodeEvent:function(t){var e=this,n=this.$refs.trigger,r=this.$refs.popover,i=t.relatedreference||t.toElement||t.relatedTarget;return!!r.contains(i)&&(r.addEventListener(t.type,function i(o){var a=o.relatedreference||o.toElement||o.relatedTarget;r.removeEventListener(t.type,i),n.contains(a)||e.hide({event:o})}),!0)},$_removeEventListeners:function(){var t=this.$refs.trigger;this.$_events.forEach(function(e){var n=e.func,r=e.event;t.removeEventListener(r,n)}),this.$_events=[]},$_updatePopper:function(t){this.popperInstance&&(t(),this.isOpen&&this.popperInstance.scheduleUpdate())},$_restartPopper:function(){if(this.popperInstance){var t=this.isOpen;this.dispose(),this.$_isDisposed=!1,this.$_init(),t&&this.show({skipDelay:!0,force:!0})}},$_handleGlobalClose:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];this.$_beingShowed||(this.hide({event:t}),t.closePopover?this.$emit(\"close-directive\"):this.$emit(\"auto-hide\"),n&&(this.$_preventOpen=!0,setTimeout(function(){e.$_preventOpen=!1},300)))},$_handleResize:function(){this.isOpen&&this.popperInstance&&(this.popperInstance.scheduleUpdate(),this.$emit(\"resize\"))}}};function Rt(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1];requestAnimationFrame(function(){for(var n=void 0,r=0;r<Ft.length;r++)if((n=Ft[r]).$refs.popover){var i=n.$refs.popover.contains(t.target);(t.closeAllPopover||t.closePopover&&i||n.autoHide&&!i)&&n.$_handleGlobalClose(t,e)}})}\"undefined\"!=typeof document&&\"undefined\"!=typeof window&&(jt?document.addEventListener(\"touchend\",function(t){Rt(t,!0)},!rt||{passive:!0,capture:!0}):window.addEventListener(\"click\",function(t){Rt(t)},!0));var Bt=\"undefined\"!=typeof window?window:void 0!==t?t:\"undefined\"!=typeof self?self:{};var Vt=function(t,e){return t(e={exports:{}},e.exports),e.exports}(function(t,e){var n=200,r=\"__lodash_hash_undefined__\",i=800,o=16,a=9007199254740991,s=\"[object Arguments]\",u=\"[object AsyncFunction]\",c=\"[object Function]\",l=\"[object GeneratorFunction]\",f=\"[object Null]\",p=\"[object Object]\",d=\"[object Proxy]\",h=\"[object Undefined]\",v=/^\\[object .+?Constructor\\]$/,m=/^(?:0|[1-9]\\d*)$/,g={};g[\"[object Float32Array]\"]=g[\"[object Float64Array]\"]=g[\"[object Int8Array]\"]=g[\"[object Int16Array]\"]=g[\"[object Int32Array]\"]=g[\"[object Uint8Array]\"]=g[\"[object Uint8ClampedArray]\"]=g[\"[object Uint16Array]\"]=g[\"[object Uint32Array]\"]=!0,g[s]=g[\"[object Array]\"]=g[\"[object ArrayBuffer]\"]=g[\"[object Boolean]\"]=g[\"[object DataView]\"]=g[\"[object Date]\"]=g[\"[object Error]\"]=g[c]=g[\"[object Map]\"]=g[\"[object Number]\"]=g[p]=g[\"[object RegExp]\"]=g[\"[object Set]\"]=g[\"[object String]\"]=g[\"[object WeakMap]\"]=!1;var y=\"object\"==typeof Bt&&Bt&&Bt.Object===Object&&Bt,b=\"object\"==typeof self&&self&&self.Object===Object&&self,_=y||b||Function(\"return this\")(),x=e&&!e.nodeType&&e,w=x&&t&&!t.nodeType&&t,S=w&&w.exports===x,O=S&&y.process,k=function(){try{return O&&O.binding&&O.binding(\"util\")}catch(t){}}(),E=k&&k.isTypedArray;function T(t,e){return\"__proto__\"==e?void 0:t[e]}var D=Array.prototype,A=Function.prototype,C=Object.prototype,M=_[\"__core-js_shared__\"],P=A.toString,N=C.hasOwnProperty,L=function(){var t=/[^.]+$/.exec(M&&M.keys&&M.keys.IE_PROTO||\"\");return t?\"Symbol(src)_1.\"+t:\"\"}(),j=C.toString,F=P.call(Object),I=RegExp(\"^\"+P.call(N).replace(/[\\\\^$.*+?()[\\]{}|]/g,\"\\\\$&\").replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g,\"$1.*?\")+\"$\"),$=S?_.Buffer:void 0,R=_.Symbol,B=_.Uint8Array,V=$?$.allocUnsafe:void 0,H=function(t,e){return function(n){return t(e(n))}}(Object.getPrototypeOf,Object),U=Object.create,Y=C.propertyIsEnumerable,z=D.splice,W=R?R.toStringTag:void 0,G=function(){try{var t=gt(Object,\"defineProperty\");return t({},\"\",{}),t}catch(t){}}(),q=$?$.isBuffer:void 0,J=Math.max,K=Date.now,X=gt(_,\"Map\"),Z=gt(Object,\"create\"),Q=function(){function t(){}return function(e){if(!Dt(e))return{};if(U)return U(e);t.prototype=e;var n=new t;return t.prototype=void 0,n}}();function tt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function et(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function nt(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e<n;){var r=t[e];this.set(r[0],r[1])}}function rt(t){var e=this.__data__=new et(t);this.size=e.size}function it(t,e){var n=St(t),r=!n&&wt(t),i=!n&&!r&&kt(t),o=!n&&!r&&!i&&Ct(t),a=n||r||i||o,s=a?function(t,e){for(var n=-1,r=Array(t);++n<t;)r[n]=e(n);return r}(t.length,String):[],u=s.length;for(var c in t)!e&&!N.call(t,c)||a&&(\"length\"==c||i&&(\"offset\"==c||\"parent\"==c)||o&&(\"buffer\"==c||\"byteLength\"==c||\"byteOffset\"==c)||yt(c,u))||s.push(c);return s}function ot(t,e,n){(void 0===n||xt(t[e],n))&&(void 0!==n||e in t)||ut(t,e,n)}function at(t,e,n){var r=t[e];N.call(t,e)&&xt(r,n)&&(void 0!==n||e in t)||ut(t,e,n)}function st(t,e){for(var n=t.length;n--;)if(xt(t[n][0],e))return n;return-1}function ut(t,e,n){\"__proto__\"==e&&G?G(t,e,{configurable:!0,enumerable:!0,value:n,writable:!0}):t[e]=n}tt.prototype.clear=function(){this.__data__=Z?Z(null):{},this.size=0},tt.prototype.delete=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e},tt.prototype.get=function(t){var e=this.__data__;if(Z){var n=e[t];return n===r?void 0:n}return N.call(e,t)?e[t]:void 0},tt.prototype.has=function(t){var e=this.__data__;return Z?void 0!==e[t]:N.call(e,t)},tt.prototype.set=function(t,e){var n=this.__data__;return this.size+=this.has(t)?0:1,n[t]=Z&&void 0===e?r:e,this},et.prototype.clear=function(){this.__data__=[],this.size=0},et.prototype.delete=function(t){var e=this.__data__,n=st(e,t);return!(n<0||(n==e.length-1?e.pop():z.call(e,n,1),--this.size,0))},et.prototype.get=function(t){var e=this.__data__,n=st(e,t);return n<0?void 0:e[n][1]},et.prototype.has=function(t){return st(this.__data__,t)>-1},et.prototype.set=function(t,e){var n=this.__data__,r=st(n,t);return r<0?(++this.size,n.push([t,e])):n[r][1]=e,this},nt.prototype.clear=function(){this.size=0,this.__data__={hash:new tt,map:new(X||et),string:new tt}},nt.prototype.delete=function(t){var e=mt(this,t).delete(t);return this.size-=e?1:0,e},nt.prototype.get=function(t){return mt(this,t).get(t)},nt.prototype.has=function(t){return mt(this,t).has(t)},nt.prototype.set=function(t,e){var n=mt(this,t),r=n.size;return n.set(t,e),this.size+=n.size==r?0:1,this},rt.prototype.clear=function(){this.__data__=new et,this.size=0},rt.prototype.delete=function(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n},rt.prototype.get=function(t){return this.__data__.get(t)},rt.prototype.has=function(t){return this.__data__.has(t)},rt.prototype.set=function(t,e){var r=this.__data__;if(r instanceof et){var i=r.__data__;if(!X||i.length<n-1)return i.push([t,e]),this.size=++r.size,this;r=this.__data__=new nt(i)}return r.set(t,e),this.size=r.size,this};var ct=function(t){return function(e,n,r){for(var i=-1,o=Object(e),a=r(e),s=a.length;s--;){var u=a[t?s:++i];if(!1===n(o[u],u,o))break}return e}}();function lt(t){return null==t?void 0===t?h:f:W&&W in Object(t)?function(t){var e=N.call(t,W),n=t[W];try{t[W]=void 0;var r=!0}catch(t){}var i=j.call(t);r&&(e?t[W]=n:delete t[W]);return i}(t):function(t){return j.call(t)}(t)}function ft(t){return At(t)&<(t)==s}function pt(t){return!(!Dt(t)||function(t){return!!L&&L in t}(t))&&(Et(t)?I:v).test(function(t){if(null!=t){try{return P.call(t)}catch(t){}try{return t+\"\"}catch(t){}}return\"\"}(t))}function dt(t){if(!Dt(t))return function(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e}(t);var e=bt(t),n=[];for(var r in t)(\"constructor\"!=r||!e&&N.call(t,r))&&n.push(r);return n}function ht(t,e,n,r,i){t!==e&&ct(e,function(o,a){if(Dt(o))i||(i=new rt),function(t,e,n,r,i,o,a){var s=T(t,n),u=T(e,n),c=a.get(u);if(c)return void ot(t,n,c);var l=o?o(s,u,n+\"\",t,e,a):void 0,f=void 0===l;if(f){var d=St(u),h=!d&&kt(u),v=!d&&!h&&Ct(u);l=u,d||h||v?St(s)?l=s:!function(t){return At(t)&&Ot(t)}(s)?h?(f=!1,l=function(t,e){if(e)return t.slice();var n=t.length,r=V?V(n):new t.constructor(n);return t.copy(r),r}(u,!0)):v?(f=!1,l=function(t,e){var n=e?function(t){var e=new t.constructor(t.byteLength);return new B(e).set(new B(t)),e}(t.buffer):t.buffer;return new t.constructor(n,t.byteOffset,t.length)}(u,!0)):l=[]:l=function(t,e){var n=-1,r=t.length;e||(e=Array(r));for(;++n<r;)e[n]=t[n];return e}(s):function(t){if(!At(t)||lt(t)!=p)return!1;var e=H(t);if(null===e)return!0;var n=N.call(e,\"constructor\")&&e.constructor;return\"function\"==typeof n&&n instanceof n&&P.call(n)==F}(u)||wt(u)?(l=s,wt(s)?l=function(t){return function(t,e,n,r){var i=!n;n||(n={});var o=-1,a=e.length;for(;++o<a;){var s=e[o],u=r?r(n[s],t[s],s,n,t):void 0;void 0===u&&(u=t[s]),i?ut(n,s,u):at(n,s,u)}return n}(t,Mt(t))}(s):(!Dt(s)||r&&Et(s))&&(l=function(t){return\"function\"!=typeof t.constructor||bt(t)?{}:Q(H(t))}(u))):f=!1}f&&(a.set(u,l),i(l,u,r,o,a),a.delete(u));ot(t,n,l)}(t,e,a,n,ht,r,i);else{var s=r?r(T(t,a),o,a+\"\",t,e,i):void 0;void 0===s&&(s=o),ot(t,a,s)}},Mt)}function vt(t,e){return _t(function(t,e,n){return e=J(void 0===e?t.length-1:e,0),function(){for(var r=arguments,i=-1,o=J(r.length-e,0),a=Array(o);++i<o;)a[i]=r[e+i];i=-1;for(var s=Array(e+1);++i<e;)s[i]=r[i];return s[e]=n(a),function(t,e,n){switch(n.length){case 0:return t.call(e);case 1:return t.call(e,n[0]);case 2:return t.call(e,n[0],n[1]);case 3:return t.call(e,n[0],n[1],n[2])}return t.apply(e,n)}(t,this,s)}}(t,e,Nt),t+\"\")}function mt(t,e){var n=t.__data__;return function(t){var e=typeof t;return\"string\"==e||\"number\"==e||\"symbol\"==e||\"boolean\"==e?\"__proto__\"!==t:null===t}(e)?n[\"string\"==typeof e?\"string\":\"hash\"]:n.map}function gt(t,e){var n=function(t,e){return null==t?void 0:t[e]}(t,e);return pt(n)?n:void 0}function yt(t,e){var n=typeof t;return!!(e=null==e?a:e)&&(\"number\"==n||\"symbol\"!=n&&m.test(t))&&t>-1&&t%1==0&&t<e}function bt(t){var e=t&&t.constructor;return t===(\"function\"==typeof e&&e.prototype||C)}var _t=function(t){var e=0,n=0;return function(){var r=K(),a=o-(r-n);if(n=r,a>0){if(++e>=i)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}(G?function(t,e){return G(t,\"toString\",{configurable:!0,enumerable:!1,value:function(t){return function(){return t}}(e),writable:!0})}:Nt);function xt(t,e){return t===e||t!=t&&e!=e}var wt=ft(function(){return arguments}())?ft:function(t){return At(t)&&N.call(t,\"callee\")&&!Y.call(t,\"callee\")},St=Array.isArray;function Ot(t){return null!=t&&Tt(t.length)&&!Et(t)}var kt=q||function(){return!1};function Et(t){if(!Dt(t))return!1;var e=lt(t);return e==c||e==l||e==u||e==d}function Tt(t){return\"number\"==typeof t&&t>-1&&t%1==0&&t<=a}function Dt(t){var e=typeof t;return null!=t&&(\"object\"==e||\"function\"==e)}function At(t){return null!=t&&\"object\"==typeof t}var Ct=E?function(t){return function(e){return t(e)}}(E):function(t){return At(t)&&Tt(t.length)&&!!g[lt(t)]};function Mt(t){return Ot(t)?it(t,!0):dt(t)}var Pt=function(t){return vt(function(e,n){var r=-1,i=n.length,o=i>1?n[i-1]:void 0,a=i>2?n[2]:void 0;for(o=t.length>3&&\"function\"==typeof o?(i--,o):void 0,a&&function(t,e,n){if(!Dt(n))return!1;var r=typeof e;return!!(\"number\"==r?Ot(n)&&yt(e,n.length):\"string\"==r&&e in n)&&xt(n[e],t)}(n[0],n[1],a)&&(o=i<3?void 0:o,i=1),e=Object(e);++r<i;){var s=n[r];s&&t(e,s,r,o)}return e})}(function(t,e,n){ht(t,e,n)});function Nt(t){return t}t.exports=Pt});var Ht=xt,Ut={install:function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if(!t.installed){t.installed=!0;var r={};Vt(r,vt,n),Ut.options=r,xt.options=r,e.directive(\"tooltip\",xt),e.directive(\"close-popover\",Dt),e.component(\"v-popover\",$t)}},get enabled(){return dt.enabled},set enabled(t){dt.enabled=t}},Yt=null;\"undefined\"!=typeof window?Yt=window.Vue:void 0!==t&&(Yt=t.Vue),Yt&&Yt.use(Ut)}).call(this,n(91))},function(t,e,n){var r=n(3),i=n(2).document,o=r(i)&&r(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},function(t,e,n){var r=n(8),i=n(2),o=i[\"__core-js_shared__\"]||(i[\"__core-js_shared__\"]={});(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})(\"versions\",[]).push({version:r.version,mode:n(32)?\"pure\":\"global\",copyright:\"© 2018 Denis Pushkarev (zloirock.ru)\"})},function(t,e,n){e.f=n(5)},function(t,e,n){var r=n(66)(\"keys\"),i=n(31);t.exports=function(t){return r[t]||(r[t]=i(t))}},function(t,e){t.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},function(t,e,n){var r=n(23);t.exports=Array.isArray||function(t){return\"Array\"==r(t)}},function(t,e,n){var r=n(2).document;t.exports=r&&r.documentElement},function(t,e,n){var r=n(3),i=n(4),o=function(t,e){if(i(t),!r(e)&&null!==e)throw TypeError(e+\": can't set as prototype!\")};t.exports={set:Object.setPrototypeOf||(\"__proto__\"in{}?function(t,e,r){try{(r=n(21)(Function.call,n(18).f(Object.prototype,\"__proto__\").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:r(t,n),t}}({},!1):void 0),check:o}},function(t,e){t.exports=\"\\t\\n\\v\\f\\r \\u2028\\u2029\\ufeff\"},function(t,e,n){var r=n(3),i=n(72).set;t.exports=function(t,e,n){var o,a=e.constructor;return a!==n&&\"function\"==typeof a&&(o=a.prototype)!==n.prototype&&r(o)&&i&&i(t,o),t}},function(t,e,n){\"use strict\";var r=n(25),i=n(24);t.exports=function(t){var e=String(i(this)),n=\"\",o=r(t);if(o<0||o==1/0)throw RangeError(\"Count can't be negative\");for(;o>0;(o>>>=1)&&(e+=e))1&o&&(n+=e);return n}},function(t,e){t.exports=Math.sign||function(t){return 0==(t=+t)||t!=t?t:t<0?-1:1}},function(t,e){var n=Math.expm1;t.exports=!n||n(10)>22025.465794806718||n(10)<22025.465794806718||-2e-17!=n(-2e-17)?function(t){return 0==(t=+t)?t:t>-1e-6&&t<1e-6?t+t*t/2:Math.exp(t)-1}:n},function(t,e,n){\"use strict\";var r=n(32),i=n(0),o=n(10),a=n(13),s=n(39),u=n(106),c=n(38),l=n(37),f=n(5)(\"iterator\"),p=!([].keys&&\"next\"in[].keys()),d=function(){return this};t.exports=function(t,e,n,h,v,m,g){u(n,e,h);var y,b,_,x=function(t){if(!p&&t in k)return k[t];switch(t){case\"keys\":case\"values\":return function(){return new n(this,t)}}return function(){return new n(this,t)}},w=e+\" Iterator\",S=\"values\"==v,O=!1,k=t.prototype,E=k[f]||k[\"@@iterator\"]||v&&k[v],T=E||x(v),D=v?S?x(\"entries\"):T:void 0,A=\"Array\"==e&&k.entries||E;if(A&&(_=l(A.call(new t)))!==Object.prototype&&_.next&&(c(_,w,!0),r||\"function\"==typeof _[f]||a(_,f,d)),S&&E&&\"values\"!==E.name&&(O=!0,T=function(){return E.call(this)}),r&&!g||!p&&!O&&k[f]||a(k,f,T),s[e]=T,s[w]=d,v)if(y={values:S?T:x(\"values\"),keys:m?T:x(\"keys\"),entries:D},g)for(b in y)b in k||o(k,b,y[b]);else i(i.P+i.F*(p||O),e,y);return y}},function(t,e,n){var r=n(80),i=n(24);t.exports=function(t,e,n){if(r(e))throw TypeError(\"String#\"+n+\" doesn't accept regex!\");return String(i(t))}},function(t,e,n){var r=n(3),i=n(23),o=n(5)(\"match\");t.exports=function(t){var e;return r(t)&&(void 0!==(e=t[o])?!!e:\"RegExp\"==i(t))}},function(t,e,n){var r=n(5)(\"match\");t.exports=function(t){var e=/./;try{\"/./\"[t](e)}catch(n){try{return e[r]=!1,!\"/./\"[t](e)}catch(t){}}return!0}},function(t,e,n){var r=n(39),i=n(5)(\"iterator\"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||o[i]===t)}},function(t,e,n){\"use strict\";var r=n(6),i=n(30);t.exports=function(t,e,n){e in t?r.f(t,e,i(0,n)):t[e]=n}},function(t,e,n){var r=n(52),i=n(5)(\"iterator\"),o=n(39);t.exports=n(8).getIteratorMethod=function(t){if(void 0!=t)return t[i]||t[\"@@iterator\"]||o[r(t)]}},function(t,e,n){\"use strict\";var r=n(15),i=n(34),o=n(9);t.exports=function(t){for(var e=r(this),n=o(e.length),a=arguments.length,s=i(a>1?arguments[1]:void 0,n),u=a>2?arguments[2]:void 0,c=void 0===u?n:i(u,n);c>s;)e[s++]=t;return e}},function(t,e,n){\"use strict\";var r=n(40),i=n(110),o=n(39),a=n(14);t.exports=n(78)(Array,\"Array\",function(t,e){this._t=a(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,i(1)):i(0,\"keys\"==e?n:\"values\"==e?t[n]:[n,t[n]])},\"values\"),o.Arguments=o.Array,r(\"keys\"),r(\"values\"),r(\"entries\")},function(t,e,n){\"use strict\";var r=n(4);t.exports=function(){var t=r(this),e=\"\";return t.global&&(e+=\"g\"),t.ignoreCase&&(e+=\"i\"),t.multiline&&(e+=\"m\"),t.unicode&&(e+=\"u\"),t.sticky&&(e+=\"y\"),e}},function(t,e,n){var r,i,o,a=n(21),s=n(99),u=n(71),c=n(65),l=n(2),f=l.process,p=l.setImmediate,d=l.clearImmediate,h=l.MessageChannel,v=l.Dispatch,m=0,g={},y=function(){var t=+this;if(g.hasOwnProperty(t)){var e=g[t];delete g[t],e()}},b=function(t){y.call(t.data)};p&&d||(p=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return g[++m]=function(){s(\"function\"==typeof t?t:Function(t),e)},r(m),m},d=function(t){delete g[t]},\"process\"==n(23)(f)?r=function(t){f.nextTick(a(y,t,1))}:v&&v.now?r=function(t){v.now(a(y,t,1))}:h?(o=(i=new h).port2,i.port1.onmessage=b,r=a(o.postMessage,o,1)):l.addEventListener&&\"function\"==typeof postMessage&&!l.importScripts?(r=function(t){l.postMessage(t+\"\",\"*\")},l.addEventListener(\"message\",b,!1)):r=\"onreadystatechange\"in c(\"script\")?function(t){u.appendChild(c(\"script\")).onreadystatechange=function(){u.removeChild(this),y.call(t)}}:function(t){setTimeout(a(y,t,1),0)}),t.exports={set:p,clear:d}},function(t,e,n){\"use strict\";var r=n(2),i=n(7),o=n(32),a=n(60),s=n(13),u=n(43),c=n(1),l=n(42),f=n(25),p=n(9),d=n(117),h=n(36).f,v=n(6).f,m=n(85),g=n(38),y=\"prototype\",b=\"Wrong index!\",_=r.ArrayBuffer,x=r.DataView,w=r.Math,S=r.RangeError,O=r.Infinity,k=_,E=w.abs,T=w.pow,D=w.floor,A=w.log,C=w.LN2,M=i?\"_b\":\"buffer\",P=i?\"_l\":\"byteLength\",N=i?\"_o\":\"byteOffset\";function L(t,e,n){var r,i,o,a=new Array(n),s=8*n-e-1,u=(1<<s)-1,c=u>>1,l=23===e?T(2,-24)-T(2,-77):0,f=0,p=t<0||0===t&&1/t<0?1:0;for((t=E(t))!=t||t===O?(i=t!=t?1:0,r=u):(r=D(A(t)/C),t*(o=T(2,-r))<1&&(r--,o*=2),(t+=r+c>=1?l/o:l*T(2,1-c))*o>=2&&(r++,o/=2),r+c>=u?(i=0,r=u):r+c>=1?(i=(t*o-1)*T(2,e),r+=c):(i=t*T(2,c-1)*T(2,e),r=0));e>=8;a[f++]=255&i,i/=256,e-=8);for(r=r<<e|i,s+=e;s>0;a[f++]=255&r,r/=256,s-=8);return a[--f]|=128*p,a}function j(t,e,n){var r,i=8*n-e-1,o=(1<<i)-1,a=o>>1,s=i-7,u=n-1,c=t[u--],l=127&c;for(c>>=7;s>0;l=256*l+t[u],u--,s-=8);for(r=l&(1<<-s)-1,l>>=-s,s+=e;s>0;r=256*r+t[u],u--,s-=8);if(0===l)l=1-a;else{if(l===o)return r?NaN:c?-O:O;r+=T(2,e),l-=a}return(c?-1:1)*r*T(2,l-e)}function F(t){return t[3]<<24|t[2]<<16|t[1]<<8|t[0]}function I(t){return[255&t]}function $(t){return[255&t,t>>8&255]}function R(t){return[255&t,t>>8&255,t>>16&255,t>>24&255]}function B(t){return L(t,52,8)}function V(t){return L(t,23,4)}function H(t,e,n){v(t[y],e,{get:function(){return this[n]}})}function U(t,e,n,r){var i=d(+n);if(i+e>t[P])throw S(b);var o=t[M]._b,a=i+t[N],s=o.slice(a,a+e);return r?s:s.reverse()}function Y(t,e,n,r,i,o){var a=d(+n);if(a+e>t[P])throw S(b);for(var s=t[M]._b,u=a+t[N],c=r(+i),l=0;l<e;l++)s[u+l]=c[o?l:e-l-1]}if(a.ABV){if(!c(function(){_(1)})||!c(function(){new _(-1)})||c(function(){return new _,new _(1.5),new _(NaN),\"ArrayBuffer\"!=_.name})){for(var z,W=(_=function(t){return l(this,_),new k(d(t))})[y]=k[y],G=h(k),q=0;G.length>q;)(z=G[q++])in _||s(_,z,k[z]);o||(W.constructor=_)}var J=new x(new _(2)),K=x[y].setInt8;J.setInt8(0,2147483648),J.setInt8(1,2147483649),!J.getInt8(0)&&J.getInt8(1)||u(x[y],{setInt8:function(t,e){K.call(this,t,e<<24>>24)},setUint8:function(t,e){K.call(this,t,e<<24>>24)}},!0)}else _=function(t){l(this,_,\"ArrayBuffer\");var e=d(t);this._b=m.call(new Array(e),0),this[P]=e},x=function(t,e,n){l(this,x,\"DataView\"),l(t,_,\"DataView\");var r=t[P],i=f(e);if(i<0||i>r)throw S(\"Wrong offset!\");if(i+(n=void 0===n?r-i:p(n))>r)throw S(\"Wrong length!\");this[M]=t,this[N]=i,this[P]=n},i&&(H(_,\"byteLength\",\"_l\"),H(x,\"buffer\",\"_b\"),H(x,\"byteLength\",\"_l\"),H(x,\"byteOffset\",\"_o\")),u(x[y],{getInt8:function(t){return U(this,1,t)[0]<<24>>24},getUint8:function(t){return U(this,1,t)[0]},getInt16:function(t){var e=U(this,2,t,arguments[1]);return(e[1]<<8|e[0])<<16>>16},getUint16:function(t){var e=U(this,2,t,arguments[1]);return e[1]<<8|e[0]},getInt32:function(t){return F(U(this,4,t,arguments[1]))},getUint32:function(t){return F(U(this,4,t,arguments[1]))>>>0},getFloat32:function(t){return j(U(this,4,t,arguments[1]),23,4)},getFloat64:function(t){return j(U(this,8,t,arguments[1]),52,8)},setInt8:function(t,e){Y(this,1,t,I,e)},setUint8:function(t,e){Y(this,1,t,I,e)},setInt16:function(t,e){Y(this,2,t,$,e,arguments[2])},setUint16:function(t,e){Y(this,2,t,$,e,arguments[2])},setInt32:function(t,e){Y(this,4,t,R,e,arguments[2])},setUint32:function(t,e){Y(this,4,t,R,e,arguments[2])},setFloat32:function(t,e){Y(this,4,t,V,e,arguments[2])},setFloat64:function(t,e){Y(this,8,t,B,e,arguments[2])}});g(_,\"ArrayBuffer\"),g(x,\"DataView\"),s(x[y],a.VIEW,!0),e.ArrayBuffer=_,e.DataView=x},function(t,e,n){\"use strict\";(function(e){var r=n(16),i=n(303),o={\"Content-Type\":\"application/x-www-form-urlencoded\"};function a(t,e){!r.isUndefined(t)&&r.isUndefined(t[\"Content-Type\"])&&(t[\"Content-Type\"]=e)}var s={adapter:function(){var t;return\"undefined\"!=typeof XMLHttpRequest?t=n(123):void 0!==e&&(t=n(123)),t}(),transformRequest:[function(t,e){return i(e,\"Content-Type\"),r.isFormData(t)||r.isArrayBuffer(t)||r.isBuffer(t)||r.isStream(t)||r.isFile(t)||r.isBlob(t)?t:r.isArrayBufferView(t)?t.buffer:r.isURLSearchParams(t)?(a(e,\"application/x-www-form-urlencoded;charset=utf-8\"),t.toString()):r.isObject(t)?(a(e,\"application/json;charset=utf-8\"),JSON.stringify(t)):t}],transformResponse:[function(t){if(\"string\"==typeof t)try{t=JSON.parse(t)}catch(t){}return t}],timeout:0,xsrfCookieName:\"XSRF-TOKEN\",xsrfHeaderName:\"X-XSRF-TOKEN\",maxContentLength:-1,validateStatus:function(t){return t>=200&&t<300},headers:{common:{Accept:\"application/json, text/plain, */*\"}}};r.forEach([\"delete\",\"get\",\"head\"],function(t){s.headers[t]={}}),r.forEach([\"post\",\"put\",\"patch\"],function(t){s.headers[t]=r.merge(o)}),t.exports=s}).call(this,n(302))},function(t,e){var n;n=function(){return this}();try{n=n||Function(\"return this\")()||(0,eval)(\"this\")}catch(t){\"object\"==typeof window&&(n=window)}t.exports=n},function(t,e,n){t.exports=!n(7)&&!n(1)(function(){return 7!=Object.defineProperty(n(65)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){var r=n(2),i=n(8),o=n(32),a=n(67),s=n(6).f;t.exports=function(t){var e=i.Symbol||(i.Symbol=o?{}:r.Symbol||{});\"_\"==t.charAt(0)||t in e||s(e,t,{value:a.f(t)})}},function(t,e,n){var r=n(12),i=n(14),o=n(50)(!1),a=n(68)(\"IE_PROTO\");t.exports=function(t,e){var n,s=i(t),u=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~o(c,n)||c.push(n));return c}},function(t,e,n){var r=n(6),i=n(4),o=n(33);t.exports=n(7)?Object.defineProperties:function(t,e){i(t);for(var n,a=o(e),s=a.length,u=0;s>u;)r.f(t,n=a[u++],e[n]);return t}},function(t,e,n){var r=n(14),i=n(36).f,o={}.toString,a=\"object\"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[];t.exports.f=function(t){return a&&\"[object Window]\"==o.call(t)?function(t){try{return i(t)}catch(t){return a.slice()}}(t):i(r(t))}},function(t,e,n){\"use strict\";var r=n(33),i=n(51),o=n(46),a=n(15),s=n(45),u=Object.assign;t.exports=!u||n(1)(function(){var t={},e={},n=Symbol(),r=\"abcdefghijklmnopqrst\";return t[n]=7,r.split(\"\").forEach(function(t){e[t]=t}),7!=u({},t)[n]||Object.keys(u({},e)).join(\"\")!=r})?function(t,e){for(var n=a(t),u=arguments.length,c=1,l=i.f,f=o.f;u>c;)for(var p,d=s(arguments[c++]),h=l?r(d).concat(l(d)):r(d),v=h.length,m=0;v>m;)f.call(d,p=h[m++])&&(n[p]=d[p]);return n}:u},function(t,e,n){\"use strict\";var r=n(22),i=n(3),o=n(99),a=[].slice,s={};t.exports=Function.bind||function(t){var e=r(this),n=a.call(arguments,1),u=function(){var r=n.concat(a.call(arguments));return this instanceof u?function(t,e,n){if(!(e in s)){for(var r=[],i=0;i<e;i++)r[i]=\"a[\"+i+\"]\";s[e]=Function(\"F,a\",\"return new F(\"+r.join(\",\")+\")\")}return s[e](t,n)}(e,r.length,r):o(e,r,t)};return i(e.prototype)&&(u.prototype=e.prototype),u}},function(t,e){t.exports=function(t,e,n){var r=void 0===n;switch(e.length){case 0:return r?t():t.call(n);case 1:return r?t(e[0]):t.call(n,e[0]);case 2:return r?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return r?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return r?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){var r=n(2).parseInt,i=n(53).trim,o=n(73),a=/^[-+]?0[xX]/;t.exports=8!==r(o+\"08\")||22!==r(o+\"0x16\")?function(t,e){var n=i(String(t),3);return r(n,e>>>0||(a.test(n)?16:10))}:r},function(t,e,n){var r=n(2).parseFloat,i=n(53).trim;t.exports=1/r(n(73)+\"-0\")!=-1/0?function(t){var e=i(String(t),3),n=r(e);return 0===n&&\"-\"==e.charAt(0)?-0:n}:r},function(t,e,n){var r=n(23);t.exports=function(t,e){if(\"number\"!=typeof t&&\"Number\"!=r(t))throw TypeError(e);return+t}},function(t,e,n){var r=n(3),i=Math.floor;t.exports=function(t){return!r(t)&&isFinite(t)&&i(t)===t}},function(t,e){t.exports=Math.log1p||function(t){return(t=+t)>-1e-8&&t<1e-8?t-t*t/2:Math.log(1+t)}},function(t,e,n){var r=n(25),i=n(24);t.exports=function(t){return function(e,n){var o,a,s=String(i(e)),u=r(n),c=s.length;return u<0||u>=c?t?\"\":void 0:(o=s.charCodeAt(u))<55296||o>56319||u+1===c||(a=s.charCodeAt(u+1))<56320||a>57343?t?s.charAt(u):o:t?s.slice(u,u+2):a-56320+(o-55296<<10)+65536}}},function(t,e,n){\"use strict\";var r=n(35),i=n(30),o=n(38),a={};n(13)(a,n(5)(\"iterator\"),function(){return this}),t.exports=function(t,e,n){t.prototype=r(a,{next:i(1,n)}),o(t,e+\" Iterator\")}},function(t,e,n){var r=n(4);t.exports=function(t,e,n,i){try{return i?e(r(n)[0],n[1]):e(n)}catch(e){var o=t.return;throw void 0!==o&&r(o.call(t)),e}}},function(t,e,n){var r=n(22),i=n(15),o=n(45),a=n(9);t.exports=function(t,e,n,s,u){r(e);var c=i(t),l=o(c),f=a(c.length),p=u?f-1:0,d=u?-1:1;if(n<2)for(;;){if(p in l){s=l[p],p+=d;break}if(p+=d,u?p<0:f<=p)throw TypeError(\"Reduce of empty array with no initial value\")}for(;u?p>=0:f>p;p+=d)p in l&&(s=e(s,l[p],p,c));return s}},function(t,e,n){\"use strict\";var r=n(15),i=n(34),o=n(9);t.exports=[].copyWithin||function(t,e){var n=r(this),a=o(n.length),s=i(t,a),u=i(e,a),c=arguments.length>2?arguments[2]:void 0,l=Math.min((void 0===c?a:i(c,a))-u,a-s),f=1;for(u<s&&s<u+l&&(f=-1,u+=l-1,s+=l-1);l-- >0;)u in n?n[s]=n[u]:delete n[s],s+=f,u+=f;return n}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){n(7)&&\"g\"!=/./g.flags&&n(6).f(RegExp.prototype,\"flags\",{configurable:!0,get:n(87)})},function(t,e,n){\"use strict\";var r,i,o,a,s=n(32),u=n(2),c=n(21),l=n(52),f=n(0),p=n(3),d=n(22),h=n(42),v=n(56),m=n(57),g=n(88).set,y=n(245)(),b=n(113),_=n(246),x=n(58),w=n(114),S=u.TypeError,O=u.process,k=O&&O.versions,E=k&&k.v8||\"\",T=u.Promise,D=\"process\"==l(O),A=function(){},C=i=b.f,M=!!function(){try{var t=T.resolve(1),e=(t.constructor={})[n(5)(\"species\")]=function(t){t(A,A)};return(D||\"function\"==typeof PromiseRejectionEvent)&&t.then(A)instanceof e&&0!==E.indexOf(\"6.6\")&&-1===x.indexOf(\"Chrome/66\")}catch(t){}}(),P=function(t){var e;return!(!p(t)||\"function\"!=typeof(e=t.then))&&e},N=function(t,e){if(!t._n){t._n=!0;var n=t._c;y(function(){for(var r=t._v,i=1==t._s,o=0,a=function(e){var n,o,a,s=i?e.ok:e.fail,u=e.resolve,c=e.reject,l=e.domain;try{s?(i||(2==t._h&&F(t),t._h=1),!0===s?n=r:(l&&l.enter(),n=s(r),l&&(l.exit(),a=!0)),n===e.promise?c(S(\"Promise-chain cycle\")):(o=P(n))?o.call(n,u,c):u(n)):c(r)}catch(t){l&&!a&&l.exit(),c(t)}};n.length>o;)a(n[o++]);t._c=[],t._n=!1,e&&!t._h&&L(t)})}},L=function(t){g.call(u,function(){var e,n,r,i=t._v,o=j(t);if(o&&(e=_(function(){D?O.emit(\"unhandledRejection\",i,t):(n=u.onunhandledrejection)?n({promise:t,reason:i}):(r=u.console)&&r.error&&r.error(\"Unhandled promise rejection\",i)}),t._h=D||j(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},j=function(t){return 1!==t._h&&0===(t._a||t._c).length},F=function(t){g.call(u,function(){var e;D?O.emit(\"rejectionHandled\",t):(e=u.onrejectionhandled)&&e({promise:t,reason:t._v})})},I=function(t){var e=this;e._d||(e._d=!0,(e=e._w||e)._v=t,e._s=2,e._a||(e._a=e._c.slice()),N(e,!0))},$=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw S(\"Promise can't be resolved itself\");(e=P(t))?y(function(){var r={_w:n,_d:!1};try{e.call(t,c($,r,1),c(I,r,1))}catch(t){I.call(r,t)}}):(n._v=t,n._s=1,N(n,!1))}catch(t){I.call({_w:n,_d:!1},t)}}};M||(T=function(t){h(this,T,\"Promise\",\"_h\"),d(t),r.call(this);try{t(c($,this,1),c(I,this,1))}catch(t){I.call(this,t)}},(r=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=n(43)(T.prototype,{then:function(t,e){var n=C(m(this,T));return n.ok=\"function\"!=typeof t||t,n.fail=\"function\"==typeof e&&e,n.domain=D?O.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&N(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r;this.promise=t,this.resolve=c($,t,1),this.reject=c(I,t,1)},b.f=C=function(t){return t===T||t===a?new o(t):i(t)}),f(f.G+f.W+f.F*!M,{Promise:T}),n(38)(T,\"Promise\"),n(41)(\"Promise\"),a=n(8).Promise,f(f.S+f.F*!M,\"Promise\",{reject:function(t){var e=C(this);return(0,e.reject)(t),e.promise}}),f(f.S+f.F*(s||!M),\"Promise\",{resolve:function(t){return w(s&&this===a?T:this,t)}}),f(f.S+f.F*!(M&&n(54)(function(t){T.all(t).catch(A)})),\"Promise\",{all:function(t){var e=this,n=C(e),r=n.resolve,i=n.reject,o=_(function(){var n=[],o=0,a=1;v(t,!1,function(t){var s=o++,u=!1;n.push(void 0),a++,e.resolve(t).then(function(t){u||(u=!0,n[s]=t,--a||r(n))},i)}),--a||r(n)});return o.e&&i(o.v),n.promise},race:function(t){var e=this,n=C(e),r=n.reject,i=_(function(){v(t,!1,function(t){e.resolve(t).then(n.resolve,r)})});return i.e&&r(i.v),n.promise}})},function(t,e,n){\"use strict\";var r=n(22);t.exports.f=function(t){return new function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw TypeError(\"Bad Promise constructor\");e=t,n=r}),this.resolve=r(e),this.reject=r(n)}(t)}},function(t,e,n){var r=n(4),i=n(3),o=n(113);t.exports=function(t,e){if(r(t),i(e)&&e.constructor===t)return e;var n=o.f(t);return(0,n.resolve)(e),n.promise}},function(t,e,n){\"use strict\";var r=n(6).f,i=n(35),o=n(43),a=n(21),s=n(42),u=n(56),c=n(78),l=n(110),f=n(41),p=n(7),d=n(28).fastKey,h=n(44),v=p?\"_s\":\"size\",m=function(t,e){var n,r=d(e);if(\"F\"!==r)return t._i[r];for(n=t._f;n;n=n.n)if(n.k==e)return n};t.exports={getConstructor:function(t,e,n,c){var l=t(function(t,r){s(t,l,e,\"_i\"),t._t=e,t._i=i(null),t._f=void 0,t._l=void 0,t[v]=0,void 0!=r&&u(r,n,t[c],t)});return o(l.prototype,{clear:function(){for(var t=h(this,e),n=t._i,r=t._f;r;r=r.n)r.r=!0,r.p&&(r.p=r.p.n=void 0),delete n[r.i];t._f=t._l=void 0,t[v]=0},delete:function(t){var n=h(this,e),r=m(n,t);if(r){var i=r.n,o=r.p;delete n._i[r.i],r.r=!0,o&&(o.n=i),i&&(i.p=o),n._f==r&&(n._f=i),n._l==r&&(n._l=o),n[v]--}return!!r},forEach:function(t){h(this,e);for(var n,r=a(t,arguments.length>1?arguments[1]:void 0,3);n=n?n.n:this._f;)for(r(n.v,n.k,this);n&&n.r;)n=n.p},has:function(t){return!!m(h(this,e),t)}}),p&&r(l.prototype,\"size\",{get:function(){return h(this,e)[v]}}),l},def:function(t,e,n){var r,i,o=m(t,e);return o?o.v=n:(t._l=o={i:i=d(e,!0),k:e,v:n,p:r=t._l,n:void 0,r:!1},t._f||(t._f=o),r&&(r.n=o),t[v]++,\"F\"!==i&&(t._i[i]=o)),t},getEntry:m,setStrong:function(t,e,n){c(t,e,function(t,n){this._t=h(t,e),this._k=n,this._l=void 0},function(){for(var t=this._k,e=this._l;e&&e.r;)e=e.p;return this._t&&(this._l=e=e?e.n:this._t._f)?l(0,\"keys\"==t?e.k:\"values\"==t?e.v:[e.k,e.v]):(this._t=void 0,l(1))},n?\"entries\":\"values\",!n,!0),f(e)}}},function(t,e,n){\"use strict\";var r=n(43),i=n(28).getWeak,o=n(4),a=n(3),s=n(42),u=n(56),c=n(20),l=n(12),f=n(44),p=c(5),d=c(6),h=0,v=function(t){return t._l||(t._l=new m)},m=function(){this.a=[]},g=function(t,e){return p(t.a,function(t){return t[0]===e})};m.prototype={get:function(t){var e=g(this,t);if(e)return e[1]},has:function(t){return!!g(this,t)},set:function(t,e){var n=g(this,t);n?n[1]=e:this.a.push([t,e])},delete:function(t){var e=d(this.a,function(e){return e[0]===t});return~e&&this.a.splice(e,1),!!~e}},t.exports={getConstructor:function(t,e,n,o){var c=t(function(t,r){s(t,c,e,\"_i\"),t._t=e,t._i=h++,t._l=void 0,void 0!=r&&u(r,n,t[o],t)});return r(c.prototype,{delete:function(t){if(!a(t))return!1;var n=i(t);return!0===n?v(f(this,e)).delete(t):n&&l(n,this._i)&&delete n[this._i]},has:function(t){if(!a(t))return!1;var n=i(t);return!0===n?v(f(this,e)).has(t):n&&l(n,this._i)}}),c},def:function(t,e,n){var r=i(o(e),!0);return!0===r?v(t).set(e,n):r[t._i]=n,t},ufstore:v}},function(t,e,n){var r=n(25),i=n(9);t.exports=function(t){if(void 0===t)return 0;var e=r(t),n=i(e);if(e!==n)throw RangeError(\"Wrong length!\");return n}},function(t,e,n){var r=n(36),i=n(51),o=n(4),a=n(2).Reflect;t.exports=a&&a.ownKeys||function(t){var e=r.f(o(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(9),i=n(75),o=n(24);t.exports=function(t,e,n,a){var s=String(o(t)),u=s.length,c=void 0===n?\" \":String(n),l=r(e);if(l<=u||\"\"==c)return s;var f=l-u,p=i.call(c,Math.ceil(f/c.length));return p.length>f&&(p=p.slice(0,f)),a?p+s:s+p}},function(t,e,n){var r=n(33),i=n(14),o=n(46).f;t.exports=function(t){return function(e){for(var n,a=i(e),s=r(a),u=s.length,c=0,l=[];u>c;)o.call(a,n=s[c++])&&l.push(t?[n,a[n]]:a[n]);return l}}},function(t,e,n){\"use strict\";t.exports=function(t,e){return function(){for(var n=new Array(arguments.length),r=0;r<n.length;r++)n[r]=arguments[r];return t.apply(e,n)}}},function(t,e){function n(t){return!!t.constructor&&\"function\"==typeof t.constructor.isBuffer&&t.constructor.isBuffer(t)}\n/*!\n * Determine if an object is a Buffer\n *\n * @author Feross Aboukhadijeh <https://feross.org>\n * @license MIT\n */\nt.exports=function(t){return null!=t&&(n(t)||function(t){return\"function\"==typeof t.readFloatLE&&\"function\"==typeof t.slice&&n(t.slice(0,0))}(t)||!!t._isBuffer)}},function(t,e,n){\"use strict\";var r=n(16),i=n(304),o=n(306),a=n(307),s=n(308),u=n(124),c=\"undefined\"!=typeof window&&window.btoa&&window.btoa.bind(window)||n(309);t.exports=function(t){return new Promise(function(e,l){var f=t.data,p=t.headers;r.isFormData(f)&&delete p[\"Content-Type\"];var d=new XMLHttpRequest,h=\"onreadystatechange\",v=!1;if(\"undefined\"==typeof window||!window.XDomainRequest||\"withCredentials\"in d||s(t.url)||(d=new window.XDomainRequest,h=\"onload\",v=!0,d.onprogress=function(){},d.ontimeout=function(){}),t.auth){var m=t.auth.username||\"\",g=t.auth.password||\"\";p.Authorization=\"Basic \"+c(m+\":\"+g)}if(d.open(t.method.toUpperCase(),o(t.url,t.params,t.paramsSerializer),!0),d.timeout=t.timeout,d[h]=function(){if(d&&(4===d.readyState||v)&&(0!==d.status||d.responseURL&&0===d.responseURL.indexOf(\"file:\"))){var n=\"getAllResponseHeaders\"in d?a(d.getAllResponseHeaders()):null,r={data:t.responseType&&\"text\"!==t.responseType?d.response:d.responseText,status:1223===d.status?204:d.status,statusText:1223===d.status?\"No Content\":d.statusText,headers:n,config:t,request:d};i(e,l,r),d=null}},d.onerror=function(){l(u(\"Network Error\",t,null,d)),d=null},d.ontimeout=function(){l(u(\"timeout of \"+t.timeout+\"ms exceeded\",t,\"ECONNABORTED\",d)),d=null},r.isStandardBrowserEnv()){var y=n(310),b=(t.withCredentials||s(t.url))&&t.xsrfCookieName?y.read(t.xsrfCookieName):void 0;b&&(p[t.xsrfHeaderName]=b)}if(\"setRequestHeader\"in d&&r.forEach(p,function(t,e){void 0===f&&\"content-type\"===e.toLowerCase()?delete p[e]:d.setRequestHeader(e,t)}),t.withCredentials&&(d.withCredentials=!0),t.responseType)try{d.responseType=t.responseType}catch(e){if(\"json\"!==t.responseType)throw e}\"function\"==typeof t.onDownloadProgress&&d.addEventListener(\"progress\",t.onDownloadProgress),\"function\"==typeof t.onUploadProgress&&d.upload&&d.upload.addEventListener(\"progress\",t.onUploadProgress),t.cancelToken&&t.cancelToken.promise.then(function(t){d&&(d.abort(),l(t),d=null)}),void 0===f&&(f=null),d.send(f)})}},function(t,e,n){\"use strict\";var r=n(305);t.exports=function(t,e,n,i,o){var a=new Error(t);return r(a,e,n,i,o)}},function(t,e,n){\"use strict\";t.exports=function(t){return!(!t||!t.__CANCEL__)}},function(t,e,n){\"use strict\";function r(t){this.message=t}r.prototype.toString=function(){return\"Cancel\"+(this.message?\": \"+this.message:\"\")},r.prototype.__CANCEL__=!0,t.exports=r},function(t,e){var n={utf8:{stringToBytes:function(t){return n.bin.stringToBytes(unescape(encodeURIComponent(t)))},bytesToString:function(t){return decodeURIComponent(escape(n.bin.bytesToString(t)))}},bin:{stringToBytes:function(t){for(var e=[],n=0;n<t.length;n++)e.push(255&t.charCodeAt(n));return e},bytesToString:function(t){for(var e=[],n=0;n<t.length;n++)e.push(String.fromCharCode(t[n]));return e.join(\"\")}}};t.exports=n},function(t,e,n){t.exports=function(t){function e(r){if(n[r])return n[r].exports;var i=n[r]={i:r,l:!1,exports:{}};return t[r].call(i.exports,i,i.exports,e),i.l=!0,i.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,\"a\",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p=\"/\",e(e.s=60)}([function(t,e){var n=t.exports=\"undefined\"!=typeof window&&window.Math==Math?window:\"undefined\"!=typeof self&&self.Math==Math?self:Function(\"return this\")();\"number\"==typeof __g&&(__g=n)},function(t,e,n){var r=n(49)(\"wks\"),i=n(30),o=n(0).Symbol,a=\"function\"==typeof o;(t.exports=function(t){return r[t]||(r[t]=a&&o[t]||(a?o:i)(\"Symbol.\"+t))}).store=r},function(t,e,n){var r=n(5);t.exports=function(t){if(!r(t))throw TypeError(t+\" is not an object!\");return t}},function(t,e,n){var r=n(0),i=n(10),o=n(8),a=n(6),s=n(11),u=function(t,e,n){var c,l,f,p,d=t&u.F,h=t&u.G,v=t&u.S,m=t&u.P,g=t&u.B,y=h?r:v?r[e]||(r[e]={}):(r[e]||{}).prototype,b=h?i:i[e]||(i[e]={}),_=b.prototype||(b.prototype={});for(c in h&&(n=e),n)l=!d&&y&&void 0!==y[c],f=(l?y:n)[c],p=g&&l?s(f,r):m&&\"function\"==typeof f?s(Function.call,f):f,y&&a(y,c,f,t&u.U),b[c]!=f&&o(b,c,p),m&&_[c]!=f&&(_[c]=f)};r.core=i,u.F=1,u.G=2,u.S=4,u.P=8,u.B=16,u.W=32,u.U=64,u.R=128,t.exports=u},function(t,e,n){t.exports=!n(7)(function(){return 7!=Object.defineProperty({},\"a\",{get:function(){return 7}}).a})},function(t,e){t.exports=function(t){return\"object\"==typeof t?null!==t:\"function\"==typeof t}},function(t,e,n){var r=n(0),i=n(8),o=n(12),a=n(30)(\"src\"),s=Function.toString,u=(\"\"+s).split(\"toString\");n(10).inspectSource=function(t){return s.call(t)},(t.exports=function(t,e,n,s){var c=\"function\"==typeof n;c&&(o(n,\"name\")||i(n,\"name\",e)),t[e]!==n&&(c&&(o(n,a)||i(n,a,t[e]?\"\"+t[e]:u.join(String(e)))),t===r?t[e]=n:s?t[e]?t[e]=n:i(t,e,n):(delete t[e],i(t,e,n)))})(Function.prototype,\"toString\",function(){return\"function\"==typeof this&&this[a]||s.call(this)})},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e,n){var r=n(13),i=n(25);t.exports=n(4)?function(t,e,n){return r.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e){var n=t.exports={version:\"2.5.7\"};\"number\"==typeof __e&&(__e=n)},function(t,e,n){var r=n(14);t.exports=function(t,e,n){if(r(t),void 0===e)return t;switch(n){case 1:return function(n){return t.call(e,n)};case 2:return function(n,r){return t.call(e,n,r)};case 3:return function(n,r,i){return t.call(e,n,r,i)}}return function(){return t.apply(e,arguments)}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},function(t,e,n){var r=n(2),i=n(41),o=n(29),a=Object.defineProperty;e.f=n(4)?Object.defineProperty:function(t,e,n){if(r(t),e=o(e,!0),r(n),i)try{return a(t,e,n)}catch(t){}if(\"get\"in n||\"set\"in n)throw TypeError(\"Accessors not supported!\");return\"value\"in n&&(t[e]=n.value),t}},function(t,e){t.exports=function(t){if(\"function\"!=typeof t)throw TypeError(t+\" is not a function!\");return t}},function(t,e){t.exports={}},function(t,e){t.exports=function(t){if(void 0==t)throw TypeError(\"Can't call method on \"+t);return t}},function(t,e,n){\"use strict\";var r=n(7);t.exports=function(t,e){return!!t&&r(function(){e?t.call(null,function(){},1):t.call(null)})}},function(t,e,n){var r=n(23),i=n(16);t.exports=function(t){return r(i(t))}},function(t,e,n){var r=n(53),i=Math.min;t.exports=function(t){return t>0?i(r(t),9007199254740991):0}},function(t,e,n){var r=n(11),i=n(23),o=n(28),a=n(19),s=n(64);t.exports=function(t,e){var n=1==t,u=2==t,c=3==t,l=4==t,f=6==t,p=5==t||f,d=e||s;return function(e,s,h){for(var v,m,g=o(e),y=i(g),b=r(s,h,3),_=a(y.length),x=0,w=n?d(e,_):u?d(e,0):void 0;_>x;x++)if((p||x in y)&&(v=y[x],m=b(v,x,g),t))if(n)w[x]=m;else if(m)switch(t){case 3:return!0;case 5:return v;case 6:return x;case 2:w.push(v)}else if(l)return!1;return f?-1:c||l?l:w}}},function(t,e,n){var r=n(5),i=n(0).document,o=r(i)&&r(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},function(t,e){t.exports=\"constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf\".split(\",\")},function(t,e,n){var r=n(9);t.exports=Object(\"z\").propertyIsEnumerable(0)?Object:function(t){return\"String\"==r(t)?t.split(\"\"):Object(t)}},function(t,e){t.exports=!1},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(13).f,i=n(12),o=n(1)(\"toStringTag\");t.exports=function(t,e,n){t&&!i(t=n?t:t.prototype,o)&&r(t,o,{configurable:!0,value:e})}},function(t,e,n){var r=n(49)(\"keys\"),i=n(30);t.exports=function(t){return r[t]||(r[t]=i(t))}},function(t,e,n){var r=n(16);t.exports=function(t){return Object(r(t))}},function(t,e,n){var r=n(5);t.exports=function(t,e){if(!r(t))return t;var n,i;if(e&&\"function\"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;if(\"function\"==typeof(n=t.valueOf)&&!r(i=n.call(t)))return i;if(!e&&\"function\"==typeof(n=t.toString)&&!r(i=n.call(t)))return i;throw TypeError(\"Can't convert object to primitive value\")}},function(t,e){var n=0,r=Math.random();t.exports=function(t){return\"Symbol(\".concat(void 0===t?\"\":t,\")_\",(++n+r).toString(36))}},function(t,e,n){\"use strict\";var r=n(0),i=n(12),o=n(9),a=n(67),s=n(29),u=n(7),c=n(77).f,l=n(45).f,f=n(13).f,p=n(51).trim,d=r.Number,h=d,v=d.prototype,m=\"Number\"==o(n(44)(v)),g=\"trim\"in String.prototype,y=function(t){var e=s(t,!1);if(\"string\"==typeof e&&e.length>2){var n,r,i,o=(e=g?e.trim():p(e,3)).charCodeAt(0);if(43===o||45===o){if(88===(n=e.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(e.charCodeAt(1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+e}for(var a,u=e.slice(2),c=0,l=u.length;c<l;c++)if((a=u.charCodeAt(c))<48||a>i)return NaN;return parseInt(u,r)}}return+e};if(!d(\" 0o1\")||!d(\"0b1\")||d(\"+0x1\")){d=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof d&&(m?u(function(){v.valueOf.call(n)}):\"Number\"!=o(n))?a(new h(y(e)),n,d):y(e)};for(var b,_=n(4)?c(h):\"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger\".split(\",\"),x=0;_.length>x;x++)i(h,b=_[x])&&!i(d,b)&&f(d,b,l(h,b));d.prototype=v,v.constructor=d,n(6)(r,\"Number\",d)}},function(t,e,n){\"use strict\";function r(t){return!(0===t||(!Array.isArray(t)||0!==t.length)&&t)}function i(t){return function(){return!t.apply(void 0,arguments)}}function o(t,e,n,r){return t.filter(function(t){return function(t,e){return void 0===t&&(t=\"undefined\"),null===t&&(t=\"null\"),!1===t&&(t=\"false\"),-1!==t.toString().toLowerCase().indexOf(e.trim())}(r(t,n),e)})}function a(t){return t.filter(function(t){return!t.$isLabel})}function s(t,e){return function(n){return n.reduce(function(n,r){return r[t]&&r[t].length?(n.push({$groupLabel:r[e],$isLabel:!0}),n.concat(r[t])):n},[])}}function u(t,e,r,i,a){return function(s){return s.map(function(s){var u;if(!s[r])return console.warn(\"Options passed to vue-multiselect do not contain groups, despite the config.\"),[];var c=o(s[r],t,e,a);return c.length?(u={},n.i(d.a)(u,i,s[i]),n.i(d.a)(u,r,c),u):[]})}}var c=n(59),l=n(54),f=(n.n(l),n(95)),p=(n.n(f),n(31)),d=(n.n(p),n(58)),h=n(91),v=(n.n(h),n(98)),m=(n.n(v),n(92)),g=(n.n(m),n(88)),y=(n.n(g),n(97)),b=(n.n(y),n(89)),_=(n.n(b),n(96)),x=(n.n(_),n(93)),w=(n.n(x),n(90)),S=(n.n(w),function(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return e.reduce(function(t,e){return e(t)},t)}});e.a={data:function(){return{search:\"\",isOpen:!1,prefferedOpenDirection:\"below\",optimizedHeight:this.maxHeight}},props:{internalSearch:{type:Boolean,default:!0},options:{type:Array,required:!0},multiple:{type:Boolean,default:!1},value:{type:null,default:function(){return[]}},trackBy:{type:String},label:{type:String},searchable:{type:Boolean,default:!0},clearOnSelect:{type:Boolean,default:!0},hideSelected:{type:Boolean,default:!1},placeholder:{type:String,default:\"Select option\"},allowEmpty:{type:Boolean,default:!0},resetAfter:{type:Boolean,default:!1},closeOnSelect:{type:Boolean,default:!0},customLabel:{type:Function,default:function(t,e){return r(t)?\"\":e?t[e]:t}},taggable:{type:Boolean,default:!1},tagPlaceholder:{type:String,default:\"Press enter to create a tag\"},tagPosition:{type:String,default:\"top\"},max:{type:[Number,Boolean],default:!1},id:{default:null},optionsLimit:{type:Number,default:1e3},groupValues:{type:String},groupLabel:{type:String},groupSelect:{type:Boolean,default:!1},blockKeys:{type:Array,default:function(){return[]}},preserveSearch:{type:Boolean,default:!1},preselectFirst:{type:Boolean,default:!1}},mounted:function(){this.multiple||this.clearOnSelect||console.warn(\"[Vue-Multiselect warn]: ClearOnSelect and Multiple props can’t be both set to false.\"),!this.multiple&&this.max&&console.warn(\"[Vue-Multiselect warn]: Max prop should not be used when prop Multiple equals false.\"),this.preselectFirst&&!this.internalValue.length&&this.options.length&&this.select(this.filteredOptions[0])},computed:{internalValue:function(){return this.value||0===this.value?Array.isArray(this.value)?this.value:[this.value]:[]},filteredOptions:function(){var t=this.search||\"\",e=t.toLowerCase().trim(),n=this.options.concat();return n=this.internalSearch?this.groupValues?this.filterAndFlat(n,e,this.label):o(n,e,this.label,this.customLabel):this.groupValues?s(this.groupValues,this.groupLabel)(n):n,n=this.hideSelected?n.filter(i(this.isSelected)):n,this.taggable&&e.length&&!this.isExistingOption(e)&&(\"bottom\"===this.tagPosition?n.push({isTag:!0,label:t}):n.unshift({isTag:!0,label:t})),n.slice(0,this.optionsLimit)},valueKeys:function(){var t=this;return this.trackBy?this.internalValue.map(function(e){return e[t.trackBy]}):this.internalValue},optionKeys:function(){var t=this;return(this.groupValues?this.flatAndStrip(this.options):this.options).map(function(e){return t.customLabel(e,t.label).toString().toLowerCase()})},currentOptionLabel:function(){return this.multiple?this.searchable?\"\":this.placeholder:this.internalValue.length?this.getOptionLabel(this.internalValue[0]):this.searchable?\"\":this.placeholder}},watch:{internalValue:function(){this.resetAfter&&this.internalValue.length&&(this.search=\"\",this.$emit(\"input\",this.multiple?[]:null))},search:function(){this.$emit(\"search-change\",this.search,this.id)}},methods:{getValue:function(){return this.multiple?this.internalValue:0===this.internalValue.length?null:this.internalValue[0]},filterAndFlat:function(t,e,n){return S(u(e,n,this.groupValues,this.groupLabel,this.customLabel),s(this.groupValues,this.groupLabel))(t)},flatAndStrip:function(t){return S(s(this.groupValues,this.groupLabel),a)(t)},updateSearch:function(t){this.search=t},isExistingOption:function(t){return!!this.options&&this.optionKeys.indexOf(t)>-1},isSelected:function(t){var e=this.trackBy?t[this.trackBy]:t;return this.valueKeys.indexOf(e)>-1},getOptionLabel:function(t){if(r(t))return\"\";if(t.isTag)return t.label;if(t.$isLabel)return t.$groupLabel;var e=this.customLabel(t,this.label);return r(e)?\"\":e},select:function(t,e){if(t.$isLabel&&this.groupSelect)this.selectGroup(t);else if(!(-1!==this.blockKeys.indexOf(e)||this.disabled||t.$isDisabled||t.$isLabel)&&(!this.max||!this.multiple||this.internalValue.length!==this.max)&&(\"Tab\"!==e||this.pointerDirty)){if(t.isTag)this.$emit(\"tag\",t.label,this.id),this.search=\"\",this.closeOnSelect&&!this.multiple&&this.deactivate();else{if(this.isSelected(t))return void(\"Tab\"!==e&&this.removeElement(t));this.$emit(\"select\",t,this.id),this.multiple?this.$emit(\"input\",this.internalValue.concat([t]),this.id):this.$emit(\"input\",t,this.id),this.clearOnSelect&&(this.search=\"\")}this.closeOnSelect&&this.deactivate()}},selectGroup:function(t){var e=this,n=this.options.find(function(n){return n[e.groupLabel]===t.$groupLabel});if(n)if(this.wholeGroupSelected(n)){this.$emit(\"remove\",n[this.groupValues],this.id);var r=this.internalValue.filter(function(t){return-1===n[e.groupValues].indexOf(t)});this.$emit(\"input\",r,this.id)}else{var o=n[this.groupValues].filter(i(this.isSelected));this.$emit(\"select\",o,this.id),this.$emit(\"input\",this.internalValue.concat(o),this.id)}},wholeGroupSelected:function(t){return t[this.groupValues].every(this.isSelected)},removeElement:function(t){var e=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];if(!this.disabled){if(!this.allowEmpty&&this.internalValue.length<=1)return void this.deactivate();var r=\"object\"===n.i(c.a)(t)?this.valueKeys.indexOf(t[this.trackBy]):this.valueKeys.indexOf(t);if(this.$emit(\"remove\",t,this.id),this.multiple){var i=this.internalValue.slice(0,r).concat(this.internalValue.slice(r+1));this.$emit(\"input\",i,this.id)}else this.$emit(\"input\",null,this.id);this.closeOnSelect&&e&&this.deactivate()}},removeLastElement:function(){-1===this.blockKeys.indexOf(\"Delete\")&&0===this.search.length&&Array.isArray(this.internalValue)&&this.removeElement(this.internalValue[this.internalValue.length-1],!1)},activate:function(){var t=this;this.isOpen||this.disabled||(this.adjustPosition(),this.groupValues&&0===this.pointer&&this.filteredOptions.length&&(this.pointer=1),this.isOpen=!0,this.searchable?(this.preserveSearch||(this.search=\"\"),this.$nextTick(function(){return t.$refs.search.focus()})):this.$el.focus(),this.$emit(\"open\",this.id))},deactivate:function(){this.isOpen&&(this.isOpen=!1,this.searchable?this.$refs.search.blur():this.$el.blur(),this.preserveSearch||(this.search=\"\"),this.$emit(\"close\",this.getValue(),this.id))},toggle:function(){this.isOpen?this.deactivate():this.activate()},adjustPosition:function(){if(\"undefined\"!=typeof window){var t=this.$el.getBoundingClientRect().top,e=window.innerHeight-this.$el.getBoundingClientRect().bottom;e>this.maxHeight||e>t||\"below\"===this.openDirection||\"bottom\"===this.openDirection?(this.prefferedOpenDirection=\"below\",this.optimizedHeight=Math.min(e-40,this.maxHeight)):(this.prefferedOpenDirection=\"above\",this.optimizedHeight=Math.min(t-40,this.maxHeight))}}}}},function(t,e,n){\"use strict\";var r=n(54),i=(n.n(r),n(31));n.n(i),e.a={data:function(){return{pointer:0,pointerDirty:!1}},props:{showPointer:{type:Boolean,default:!0},optionHeight:{type:Number,default:40}},computed:{pointerPosition:function(){return this.pointer*this.optionHeight},visibleElements:function(){return this.optimizedHeight/this.optionHeight}},watch:{filteredOptions:function(){this.pointerAdjust()},isOpen:function(){this.pointerDirty=!1}},methods:{optionHighlight:function(t,e){return{\"multiselect__option--highlight\":t===this.pointer&&this.showPointer,\"multiselect__option--selected\":this.isSelected(e)}},groupHighlight:function(t,e){var n=this;if(!this.groupSelect)return[\"multiselect__option--group\",\"multiselect__option--disabled\"];var r=this.options.find(function(t){return t[n.groupLabel]===e.$groupLabel});return[\"multiselect__option--group\",{\"multiselect__option--highlight\":t===this.pointer&&this.showPointer},{\"multiselect__option--group-selected\":this.wholeGroupSelected(r)}]},addPointerElement:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:\"Enter\",e=t.key;this.filteredOptions.length>0&&this.select(this.filteredOptions[this.pointer],e),this.pointerReset()},pointerForward:function(){this.pointer<this.filteredOptions.length-1&&(this.pointer++,this.$refs.list.scrollTop<=this.pointerPosition-(this.visibleElements-1)*this.optionHeight&&(this.$refs.list.scrollTop=this.pointerPosition-(this.visibleElements-1)*this.optionHeight),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()),this.pointerDirty=!0},pointerBackward:function(){this.pointer>0?(this.pointer--,this.$refs.list.scrollTop>=this.pointerPosition&&(this.$refs.list.scrollTop=this.pointerPosition),this.filteredOptions[this.pointer]&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerBackward()):this.filteredOptions[this.pointer]&&this.filteredOptions[0].$isLabel&&!this.groupSelect&&this.pointerForward(),this.pointerDirty=!0},pointerReset:function(){this.closeOnSelect&&(this.pointer=0,this.$refs.list&&(this.$refs.list.scrollTop=0))},pointerAdjust:function(){this.pointer>=this.filteredOptions.length-1&&(this.pointer=this.filteredOptions.length?this.filteredOptions.length-1:0),this.filteredOptions.length>0&&this.filteredOptions[this.pointer].$isLabel&&!this.groupSelect&&this.pointerForward()},pointerSet:function(t){this.pointer=t,this.pointerDirty=!0}}}},function(t,e,n){\"use strict\";var r=n(36),i=n(74),o=n(15),a=n(18);t.exports=n(72)(Array,\"Array\",function(t,e){this._t=a(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,i(1)):i(0,\"keys\"==e?n:\"values\"==e?t[n]:[n,t[n]])},\"values\"),o.Arguments=o.Array,r(\"keys\"),r(\"values\"),r(\"entries\")},function(t,e,n){\"use strict\";var r=n(31),i=(n.n(r),n(32)),o=n(33);e.a={name:\"vue-multiselect\",mixins:[i.a,o.a],props:{name:{type:String,default:\"\"},selectLabel:{type:String,default:\"Press enter to select\"},selectGroupLabel:{type:String,default:\"Press enter to select group\"},selectedLabel:{type:String,default:\"Selected\"},deselectLabel:{type:String,default:\"Press enter to remove\"},deselectGroupLabel:{type:String,default:\"Press enter to deselect group\"},showLabels:{type:Boolean,default:!0},limit:{type:Number,default:99999},maxHeight:{type:Number,default:300},limitText:{type:Function,default:function(t){return\"and \".concat(t,\" more\")}},loading:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},openDirection:{type:String,default:\"\"},showNoOptions:{type:Boolean,default:!0},showNoResults:{type:Boolean,default:!0},tabindex:{type:Number,default:0}},computed:{isSingleLabelVisible:function(){return this.singleValue&&(!this.isOpen||!this.searchable)&&!this.visibleValues.length},isPlaceholderVisible:function(){return!(this.internalValue.length||this.searchable&&this.isOpen)},visibleValues:function(){return this.multiple?this.internalValue.slice(0,this.limit):[]},singleValue:function(){return this.internalValue[0]},deselectLabelText:function(){return this.showLabels?this.deselectLabel:\"\"},deselectGroupLabelText:function(){return this.showLabels?this.deselectGroupLabel:\"\"},selectLabelText:function(){return this.showLabels?this.selectLabel:\"\"},selectGroupLabelText:function(){return this.showLabels?this.selectGroupLabel:\"\"},selectedLabelText:function(){return this.showLabels?this.selectedLabel:\"\"},inputStyle:function(){if(this.searchable||this.multiple&&this.value&&this.value.length)return this.isOpen?{width:\"auto\"}:{width:\"0\",position:\"absolute\",padding:\"0\"}},contentStyle:function(){return this.options.length?{display:\"inline-block\"}:{display:\"block\"}},isAbove:function(){return\"above\"===this.openDirection||\"top\"===this.openDirection||\"below\"!==this.openDirection&&\"bottom\"!==this.openDirection&&\"above\"===this.prefferedOpenDirection},showSearchInput:function(){return this.searchable&&(!this.hasSingleSelectedSlot||!this.visibleSingleValue&&0!==this.visibleSingleValue||this.isOpen)}}}},function(t,e,n){var r=n(1)(\"unscopables\"),i=Array.prototype;void 0==i[r]&&n(8)(i,r,{}),t.exports=function(t){i[r][t]=!0}},function(t,e,n){var r=n(18),i=n(19),o=n(85);t.exports=function(t){return function(e,n,a){var s,u=r(e),c=i(u.length),l=o(a,c);if(t&&n!=n){for(;c>l;)if((s=u[l++])!=s)return!0}else for(;c>l;l++)if((t||l in u)&&u[l]===n)return t||l||0;return!t&&-1}}},function(t,e,n){var r=n(9),i=n(1)(\"toStringTag\"),o=\"Arguments\"==r(function(){return arguments}());t.exports=function(t){var e,n,a;return void 0===t?\"Undefined\":null===t?\"Null\":\"string\"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:o?r(e):\"Object\"==(a=r(e))&&\"function\"==typeof e.callee?\"Arguments\":a}},function(t,e,n){\"use strict\";var r=n(2);t.exports=function(){var t=r(this),e=\"\";return t.global&&(e+=\"g\"),t.ignoreCase&&(e+=\"i\"),t.multiline&&(e+=\"m\"),t.unicode&&(e+=\"u\"),t.sticky&&(e+=\"y\"),e}},function(t,e,n){var r=n(0).document;t.exports=r&&r.documentElement},function(t,e,n){t.exports=!n(4)&&!n(7)(function(){return 7!=Object.defineProperty(n(21)(\"div\"),\"a\",{get:function(){return 7}}).a})},function(t,e,n){var r=n(9);t.exports=Array.isArray||function(t){return\"Array\"==r(t)}},function(t,e,n){\"use strict\";var r=n(14);t.exports.f=function(t){return new function(t){var e,n;this.promise=new t(function(t,r){if(void 0!==e||void 0!==n)throw TypeError(\"Bad Promise constructor\");e=t,n=r}),this.resolve=r(e),this.reject=r(n)}(t)}},function(t,e,n){var r=n(2),i=n(76),o=n(22),a=n(27)(\"IE_PROTO\"),s=function(){},u=function(){var t,e=n(21)(\"iframe\"),r=o.length;for(e.style.display=\"none\",n(40).appendChild(e),e.src=\"javascript:\",(t=e.contentWindow.document).open(),t.write(\"<script>document.F=Object<\\/script>\"),t.close(),u=t.F;r--;)delete u.prototype[o[r]];return u()};t.exports=Object.create||function(t,e){var n;return null!==t?(s.prototype=r(t),n=new s,s.prototype=null,n[a]=t):n=u(),void 0===e?n:i(n,e)}},function(t,e,n){var r=n(79),i=n(25),o=n(18),a=n(29),s=n(12),u=n(41),c=Object.getOwnPropertyDescriptor;e.f=n(4)?c:function(t,e){if(t=o(t),e=a(e,!0),u)try{return c(t,e)}catch(t){}if(s(t,e))return i(!r.f.call(t,e),t[e])}},function(t,e,n){var r=n(12),i=n(18),o=n(37)(!1),a=n(27)(\"IE_PROTO\");t.exports=function(t,e){var n,s=i(t),u=0,c=[];for(n in s)n!=a&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~o(c,n)||c.push(n));return c}},function(t,e,n){var r=n(46),i=n(22);t.exports=Object.keys||function(t){return r(t,i)}},function(t,e,n){var r=n(2),i=n(5),o=n(43);t.exports=function(t,e){if(r(t),i(e)&&e.constructor===t)return e;var n=o.f(t);return(0,n.resolve)(e),n.promise}},function(t,e,n){var r=n(10),i=n(0),o=i[\"__core-js_shared__\"]||(i[\"__core-js_shared__\"]={});(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})(\"versions\",[]).push({version:r.version,mode:n(24)?\"pure\":\"global\",copyright:\"© 2018 Denis Pushkarev (zloirock.ru)\"})},function(t,e,n){var r=n(2),i=n(14),o=n(1)(\"species\");t.exports=function(t,e){var n,a=r(t).constructor;return void 0===a||void 0==(n=r(a)[o])?e:i(n)}},function(t,e,n){var r=n(3),i=n(16),o=n(7),a=n(84),s=\"[\"+a+\"]\",u=RegExp(\"^\"+s+s+\"*\"),c=RegExp(s+s+\"*$\"),l=function(t,e,n){var i={},s=o(function(){return!!a[t]()||\"
\"!=\"
\"[t]()}),u=i[t]=s?e(f):a[t];n&&(i[n]=u),r(r.P+r.F*s,\"String\",i)},f=l.trim=function(t,e){return t=String(i(t)),1&e&&(t=t.replace(u,\"\")),2&e&&(t=t.replace(c,\"\")),t};t.exports=l},function(t,e,n){var r,i,o,a=n(11),s=n(68),u=n(40),c=n(21),l=n(0),f=l.process,p=l.setImmediate,d=l.clearImmediate,h=l.MessageChannel,v=l.Dispatch,m=0,g={},y=function(){var t=+this;if(g.hasOwnProperty(t)){var e=g[t];delete g[t],e()}},b=function(t){y.call(t.data)};p&&d||(p=function(t){for(var e=[],n=1;arguments.length>n;)e.push(arguments[n++]);return g[++m]=function(){s(\"function\"==typeof t?t:Function(t),e)},r(m),m},d=function(t){delete g[t]},\"process\"==n(9)(f)?r=function(t){f.nextTick(a(y,t,1))}:v&&v.now?r=function(t){v.now(a(y,t,1))}:h?(i=new h,o=i.port2,i.port1.onmessage=b,r=a(o.postMessage,o,1)):l.addEventListener&&\"function\"==typeof postMessage&&!l.importScripts?(r=function(t){l.postMessage(t+\"\",\"*\")},l.addEventListener(\"message\",b,!1)):r=\"onreadystatechange\"in c(\"script\")?function(t){u.appendChild(c(\"script\")).onreadystatechange=function(){u.removeChild(this),y.call(t)}}:function(t){setTimeout(a(y,t,1),0)}),t.exports={set:p,clear:d}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e,n){\"use strict\";var r=n(3),i=n(20)(5),o=!0;\"find\"in[]&&Array(1).find(function(){o=!1}),r(r.P+r.F*o,\"Array\",{find:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(36)(\"find\")},function(t,e,n){\"use strict\";var r,i,o,a,s=n(24),u=n(0),c=n(11),l=n(38),f=n(3),p=n(5),d=n(14),h=n(61),v=n(66),m=n(50),g=n(52).set,y=n(75)(),b=n(43),_=n(80),x=n(86),w=n(48),S=u.TypeError,O=u.process,k=O&&O.versions,E=k&&k.v8||\"\",T=u.Promise,D=\"process\"==l(O),A=function(){},C=i=b.f,M=!!function(){try{var t=T.resolve(1),e=(t.constructor={})[n(1)(\"species\")]=function(t){t(A,A)};return(D||\"function\"==typeof PromiseRejectionEvent)&&t.then(A)instanceof e&&0!==E.indexOf(\"6.6\")&&-1===x.indexOf(\"Chrome/66\")}catch(t){}}(),P=function(t){var e;return!(!p(t)||\"function\"!=typeof(e=t.then))&&e},N=function(t,e){if(!t._n){t._n=!0;var n=t._c;y(function(){for(var r=t._v,i=1==t._s,o=0;n.length>o;)!function(e){var n,o,a,s=i?e.ok:e.fail,u=e.resolve,c=e.reject,l=e.domain;try{s?(i||(2==t._h&&F(t),t._h=1),!0===s?n=r:(l&&l.enter(),n=s(r),l&&(l.exit(),a=!0)),n===e.promise?c(S(\"Promise-chain cycle\")):(o=P(n))?o.call(n,u,c):u(n)):c(r)}catch(t){l&&!a&&l.exit(),c(t)}}(n[o++]);t._c=[],t._n=!1,e&&!t._h&&L(t)})}},L=function(t){g.call(u,function(){var e,n,r,i=t._v,o=j(t);if(o&&(e=_(function(){D?O.emit(\"unhandledRejection\",i,t):(n=u.onunhandledrejection)?n({promise:t,reason:i}):(r=u.console)&&r.error&&r.error(\"Unhandled promise rejection\",i)}),t._h=D||j(t)?2:1),t._a=void 0,o&&e.e)throw e.v})},j=function(t){return 1!==t._h&&0===(t._a||t._c).length},F=function(t){g.call(u,function(){var e;D?O.emit(\"rejectionHandled\",t):(e=u.onrejectionhandled)&&e({promise:t,reason:t._v})})},I=function(t){var e=this;e._d||(e._d=!0,(e=e._w||e)._v=t,e._s=2,e._a||(e._a=e._c.slice()),N(e,!0))},$=function(t){var e,n=this;if(!n._d){n._d=!0,n=n._w||n;try{if(n===t)throw S(\"Promise can't be resolved itself\");(e=P(t))?y(function(){var r={_w:n,_d:!1};try{e.call(t,c($,r,1),c(I,r,1))}catch(t){I.call(r,t)}}):(n._v=t,n._s=1,N(n,!1))}catch(t){I.call({_w:n,_d:!1},t)}}};M||(T=function(t){h(this,T,\"Promise\",\"_h\"),d(t),r.call(this);try{t(c($,this,1),c(I,this,1))}catch(t){I.call(this,t)}},(r=function(t){this._c=[],this._a=void 0,this._s=0,this._d=!1,this._v=void 0,this._h=0,this._n=!1}).prototype=n(81)(T.prototype,{then:function(t,e){var n=C(m(this,T));return n.ok=\"function\"!=typeof t||t,n.fail=\"function\"==typeof e&&e,n.domain=D?O.domain:void 0,this._c.push(n),this._a&&this._a.push(n),this._s&&N(this,!1),n.promise},catch:function(t){return this.then(void 0,t)}}),o=function(){var t=new r;this.promise=t,this.resolve=c($,t,1),this.reject=c(I,t,1)},b.f=C=function(t){return t===T||t===a?new o(t):i(t)}),f(f.G+f.W+f.F*!M,{Promise:T}),n(26)(T,\"Promise\"),n(83)(\"Promise\"),a=n(10).Promise,f(f.S+f.F*!M,\"Promise\",{reject:function(t){var e=C(this);return(0,e.reject)(t),e.promise}}),f(f.S+f.F*(s||!M),\"Promise\",{resolve:function(t){return w(s&&this===a?T:this,t)}}),f(f.S+f.F*!(M&&n(73)(function(t){T.all(t).catch(A)})),\"Promise\",{all:function(t){var e=this,n=C(e),r=n.resolve,i=n.reject,o=_(function(){var n=[],o=0,a=1;v(t,!1,function(t){var s=o++,u=!1;n.push(void 0),a++,e.resolve(t).then(function(t){u||(u=!0,n[s]=t,--a||r(n))},i)}),--a||r(n)});return o.e&&i(o.v),n.promise},race:function(t){var e=this,n=C(e),r=n.reject,i=_(function(){v(t,!1,function(t){e.resolve(t).then(n.resolve,r)})});return i.e&&r(i.v),n.promise}})},function(t,e,n){\"use strict\";var r=n(3),i=n(10),o=n(0),a=n(50),s=n(48);r(r.P+r.R,\"Promise\",{finally:function(t){var e=a(this,i.Promise||o.Promise),n=\"function\"==typeof t;return this.then(n?function(n){return s(e,t()).then(function(){return n})}:t,n?function(n){return s(e,t()).then(function(){throw n})}:t)}})},function(t,e,n){\"use strict\";var r=n(35),i=n(101),o=n(100),a=function(t){n(99)},s=o(r.a,i.a,!1,a,null,null);e.a=s.exports},function(t,e,n){\"use strict\";e.a=function(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}},function(t,e,n){\"use strict\";function r(t){return(r=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t})(t)}function i(t){return(i=\"function\"==typeof Symbol&&\"symbol\"===r(Symbol.iterator)?function(t){return r(t)}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":r(t)})(t)}e.a=i},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var r=n(34),i=(n.n(r),n(55)),o=(n.n(i),n(56)),a=(n.n(o),n(57)),s=n(32),u=n(33);n.d(e,\"Multiselect\",function(){return a.a}),n.d(e,\"multiselectMixin\",function(){return s.a}),n.d(e,\"pointerMixin\",function(){return u.a}),e.default=a.a},function(t,e){t.exports=function(t,e,n,r){if(!(t instanceof e)||void 0!==r&&r in t)throw TypeError(n+\": incorrect invocation!\");return t}},function(t,e,n){var r=n(14),i=n(28),o=n(23),a=n(19);t.exports=function(t,e,n,s,u){r(e);var c=i(t),l=o(c),f=a(c.length),p=u?f-1:0,d=u?-1:1;if(n<2)for(;;){if(p in l){s=l[p],p+=d;break}if(p+=d,u?p<0:f<=p)throw TypeError(\"Reduce of empty array with no initial value\")}for(;u?p>=0:f>p;p+=d)p in l&&(s=e(s,l[p],p,c));return s}},function(t,e,n){var r=n(5),i=n(42),o=n(1)(\"species\");t.exports=function(t){var e;return i(t)&&(\"function\"!=typeof(e=t.constructor)||e!==Array&&!i(e.prototype)||(e=void 0),r(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){var r=n(63);t.exports=function(t,e){return new(r(t))(e)}},function(t,e,n){\"use strict\";var r=n(8),i=n(6),o=n(7),a=n(16),s=n(1);t.exports=function(t,e,n){var u=s(t),c=n(a,u,\"\"[t]),l=c[0],f=c[1];o(function(){var e={};return e[u]=function(){return 7},7!=\"\"[t](e)})&&(i(String.prototype,t,l),r(RegExp.prototype,u,2==e?function(t,e){return f.call(t,this,e)}:function(t){return f.call(t,this)}))}},function(t,e,n){var r=n(11),i=n(70),o=n(69),a=n(2),s=n(19),u=n(87),c={},l={},e=t.exports=function(t,e,n,f,p){var d,h,v,m,g=p?function(){return t}:u(t),y=r(n,f,e?2:1),b=0;if(\"function\"!=typeof g)throw TypeError(t+\" is not iterable!\");if(o(g)){for(d=s(t.length);d>b;b++)if((m=e?y(a(h=t[b])[0],h[1]):y(t[b]))===c||m===l)return m}else for(v=g.call(t);!(h=v.next()).done;)if((m=i(v,y,h.value,e))===c||m===l)return m};e.BREAK=c,e.RETURN=l},function(t,e,n){var r=n(5),i=n(82).set;t.exports=function(t,e,n){var o,a=e.constructor;return a!==n&&\"function\"==typeof a&&(o=a.prototype)!==n.prototype&&r(o)&&i&&i(t,o),t}},function(t,e){t.exports=function(t,e,n){var r=void 0===n;switch(e.length){case 0:return r?t():t.call(n);case 1:return r?t(e[0]):t.call(n,e[0]);case 2:return r?t(e[0],e[1]):t.call(n,e[0],e[1]);case 3:return r?t(e[0],e[1],e[2]):t.call(n,e[0],e[1],e[2]);case 4:return r?t(e[0],e[1],e[2],e[3]):t.call(n,e[0],e[1],e[2],e[3])}return t.apply(n,e)}},function(t,e,n){var r=n(15),i=n(1)(\"iterator\"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(r.Array===t||o[i]===t)}},function(t,e,n){var r=n(2);t.exports=function(t,e,n,i){try{return i?e(r(n)[0],n[1]):e(n)}catch(e){var o=t.return;throw void 0!==o&&r(o.call(t)),e}}},function(t,e,n){\"use strict\";var r=n(44),i=n(25),o=n(26),a={};n(8)(a,n(1)(\"iterator\"),function(){return this}),t.exports=function(t,e,n){t.prototype=r(a,{next:i(1,n)}),o(t,e+\" Iterator\")}},function(t,e,n){\"use strict\";var r=n(24),i=n(3),o=n(6),a=n(8),s=n(15),u=n(71),c=n(26),l=n(78),f=n(1)(\"iterator\"),p=!([].keys&&\"next\"in[].keys()),d=function(){return this};t.exports=function(t,e,n,h,v,m,g){u(n,e,h);var y,b,_,x=function(t){if(!p&&t in k)return k[t];switch(t){case\"keys\":case\"values\":return function(){return new n(this,t)}}return function(){return new n(this,t)}},w=e+\" Iterator\",S=\"values\"==v,O=!1,k=t.prototype,E=k[f]||k[\"@@iterator\"]||v&&k[v],T=E||x(v),D=v?S?x(\"entries\"):T:void 0,A=\"Array\"==e&&k.entries||E;if(A&&(_=l(A.call(new t)))!==Object.prototype&&_.next&&(c(_,w,!0),r||\"function\"==typeof _[f]||a(_,f,d)),S&&E&&\"values\"!==E.name&&(O=!0,T=function(){return E.call(this)}),r&&!g||!p&&!O&&k[f]||a(k,f,T),s[e]=T,s[w]=d,v)if(y={values:S?T:x(\"values\"),keys:m?T:x(\"keys\"),entries:D},g)for(b in y)b in k||o(k,b,y[b]);else i(i.P+i.F*(p||O),e,y);return y}},function(t,e,n){var r=n(1)(\"iterator\"),i=!1;try{var o=[7][r]();o.return=function(){i=!0},Array.from(o,function(){throw 2})}catch(t){}t.exports=function(t,e){if(!e&&!i)return!1;var n=!1;try{var o=[7],a=o[r]();a.next=function(){return{done:n=!0}},o[r]=function(){return a},t(o)}catch(t){}return n}},function(t,e){t.exports=function(t,e){return{value:e,done:!!t}}},function(t,e,n){var r=n(0),i=n(52).set,o=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,u=\"process\"==n(9)(a);t.exports=function(){var t,e,n,c=function(){var r,i;for(u&&(r=a.domain)&&r.exit();t;){i=t.fn,t=t.next;try{i()}catch(r){throw t?n():e=void 0,r}}e=void 0,r&&r.enter()};if(u)n=function(){a.nextTick(c)};else if(!o||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var l=s.resolve(void 0);n=function(){l.then(c)}}else n=function(){i.call(r,c)};else{var f=!0,p=document.createTextNode(\"\");new o(c).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(r){var i={fn:r,next:void 0};e&&(e.next=i),t||(t=i,n()),e=i}}},function(t,e,n){var r=n(13),i=n(2),o=n(47);t.exports=n(4)?Object.defineProperties:function(t,e){i(t);for(var n,a=o(e),s=a.length,u=0;s>u;)r.f(t,n=a[u++],e[n]);return t}},function(t,e,n){var r=n(46),i=n(22).concat(\"length\",\"prototype\");e.f=Object.getOwnPropertyNames||function(t){return r(t,i)}},function(t,e,n){var r=n(12),i=n(28),o=n(27)(\"IE_PROTO\"),a=Object.prototype;t.exports=Object.getPrototypeOf||function(t){return t=i(t),r(t,o)?t[o]:\"function\"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?a:null}},function(t,e){e.f={}.propertyIsEnumerable},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,n){var r=n(6);t.exports=function(t,e,n){for(var i in e)r(t,i,e[i],n);return t}},function(t,e,n){var r=n(5),i=n(2),o=function(t,e){if(i(t),!r(e)&&null!==e)throw TypeError(e+\": can't set as prototype!\")};t.exports={set:Object.setPrototypeOf||(\"__proto__\"in{}?function(t,e,r){try{(r=n(11)(Function.call,n(45).f(Object.prototype,\"__proto__\").set,2))(t,[]),e=!(t instanceof Array)}catch(t){e=!0}return function(t,n){return o(t,n),e?t.__proto__=n:r(t,n),t}}({},!1):void 0),check:o}},function(t,e,n){\"use strict\";var r=n(0),i=n(13),o=n(4),a=n(1)(\"species\");t.exports=function(t){var e=r[t];o&&e&&!e[a]&&i.f(e,a,{configurable:!0,get:function(){return this}})}},function(t,e){t.exports=\"\\t\\n\\v\\f\\r \\u2028\\u2029\\ufeff\"},function(t,e,n){var r=n(53),i=Math.max,o=Math.min;t.exports=function(t,e){return(t=r(t))<0?i(t+e,0):o(t,e)}},function(t,e,n){var r=n(0),i=r.navigator;t.exports=i&&i.userAgent||\"\"},function(t,e,n){var r=n(38),i=n(1)(\"iterator\"),o=n(15);t.exports=n(10).getIteratorMethod=function(t){if(void 0!=t)return t[i]||t[\"@@iterator\"]||o[r(t)]}},function(t,e,n){\"use strict\";var r=n(3),i=n(20)(2);r(r.P+r.F*!n(17)([].filter,!0),\"Array\",{filter:function(t){return i(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var r=n(3),i=n(37)(!1),o=[].indexOf,a=!!o&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n(17)(o)),\"Array\",{indexOf:function(t){return a?o.apply(this,arguments)||0:i(this,t,arguments[1])}})},function(t,e,n){var r=n(3);r(r.S,\"Array\",{isArray:n(42)})},function(t,e,n){\"use strict\";var r=n(3),i=n(20)(1);r(r.P+r.F*!n(17)([].map,!0),\"Array\",{map:function(t){return i(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var r=n(3),i=n(62);r(r.P+r.F*!n(17)([].reduce,!0),\"Array\",{reduce:function(t){return i(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){var r=Date.prototype,i=r.toString,o=r.getTime;new Date(NaN)+\"\"!=\"Invalid Date\"&&n(6)(r,\"toString\",function(){var t=o.call(this);return t==t?i.call(this):\"Invalid Date\"})},function(t,e,n){n(4)&&\"g\"!=/./g.flags&&n(13).f(RegExp.prototype,\"flags\",{configurable:!0,get:n(39)})},function(t,e,n){n(65)(\"search\",1,function(t,e,n){return[function(n){\"use strict\";var r=t(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,r):new RegExp(n)[e](String(r))},n]})},function(t,e,n){\"use strict\";n(94);var r=n(2),i=n(39),o=n(4),a=/./.toString,s=function(t){n(6)(RegExp.prototype,\"toString\",t,!0)};n(7)(function(){return\"/a/b\"!=a.call({source:\"a\",flags:\"b\"})})?s(function(){var t=r(this);return\"/\".concat(t.source,\"/\",\"flags\"in t?t.flags:!o&&t instanceof RegExp?i.call(t):void 0)}):\"toString\"!=a.name&&s(function(){return a.call(this)})},function(t,e,n){\"use strict\";n(51)(\"trim\",function(t){return function(){return t(this,3)}})},function(t,e,n){for(var r=n(34),i=n(47),o=n(6),a=n(0),s=n(8),u=n(15),c=n(1),l=c(\"iterator\"),f=c(\"toStringTag\"),p=u.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=i(d),v=0;v<h.length;v++){var m,g=h[v],y=d[g],b=a[g],_=b&&b.prototype;if(_&&(_[l]||s(_,l,p),_[f]||s(_,f,g),u[g]=p,y))for(m in r)_[m]||o(_,m,r[m],!0)}},function(t,e){},function(t,e){t.exports=function(t,e,n,r,i,o){var a,s=t=t||{},u=typeof t.default;\"object\"!==u&&\"function\"!==u||(a=t,s=t.default);var c,l=\"function\"==typeof s?s.options:s;if(e&&(l.render=e.render,l.staticRenderFns=e.staticRenderFns,l._compiled=!0),n&&(l.functional=!0),i&&(l._scopeId=i),o?(c=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),r&&r.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},l._ssrRegister=c):r&&(c=r),c){var f=l.functional,p=f?l.render:l.beforeCreate;f?(l._injectStyles=c,l.render=function(t,e){return c.call(e),p(t,e)}):l.beforeCreate=p?[].concat(p,c):[c]}return{esModule:a,exports:s,options:l}}},function(t,e,n){\"use strict\";var r={render:function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"multiselect\",class:{\"multiselect--active\":t.isOpen,\"multiselect--disabled\":t.disabled,\"multiselect--above\":t.isAbove},attrs:{tabindex:t.searchable?-1:t.tabindex},on:{focus:function(e){t.activate()},blur:function(e){!t.searchable&&t.deactivate()},keydown:[function(e){return\"button\"in e||!t._k(e.keyCode,\"down\",40,e.key,[\"Down\",\"ArrowDown\"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerForward()):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"up\",38,e.key,[\"Up\",\"ArrowUp\"])?e.target!==e.currentTarget?null:(e.preventDefault(),void t.pointerBackward()):null},function(e){return\"button\"in e||!t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")||!t._k(e.keyCode,\"tab\",9,e.key,\"Tab\")?(e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null}],keyup:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"esc\",27,e.key,\"Escape\"))return null;t.deactivate()}}},[t._t(\"caret\",[n(\"div\",{staticClass:\"multiselect__select\",on:{mousedown:function(e){e.preventDefault(),e.stopPropagation(),t.toggle()}}})],{toggle:t.toggle}),t._v(\" \"),t._t(\"clear\",null,{search:t.search}),t._v(\" \"),n(\"div\",{ref:\"tags\",staticClass:\"multiselect__tags\"},[t._t(\"selection\",[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.visibleValues.length>0,expression:\"visibleValues.length > 0\"}],staticClass:\"multiselect__tags-wrap\"},[t._l(t.visibleValues,function(e,r){return[t._t(\"tag\",[n(\"span\",{key:r,staticClass:\"multiselect__tag\"},[n(\"span\",{domProps:{textContent:t._s(t.getOptionLabel(e))}}),t._v(\" \"),n(\"i\",{staticClass:\"multiselect__tag-icon\",attrs:{\"aria-hidden\":\"true\",tabindex:\"1\"},on:{keydown:function(n){if(!(\"button\"in n)&&t._k(n.keyCode,\"enter\",13,n.key,\"Enter\"))return null;n.preventDefault(),t.removeElement(e)},mousedown:function(n){n.preventDefault(),t.removeElement(e)}}})])],{option:e,search:t.search,remove:t.removeElement})]})],2),t._v(\" \"),t.internalValue&&t.internalValue.length>t.limit?[t._t(\"limit\",[n(\"strong\",{staticClass:\"multiselect__strong\",domProps:{textContent:t._s(t.limitText(t.internalValue.length-t.limit))}})])]:t._e()],{search:t.search,remove:t.removeElement,values:t.visibleValues,isOpen:t.isOpen}),t._v(\" \"),n(\"transition\",{attrs:{name:\"multiselect__loading\"}},[t._t(\"loading\",[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.loading,expression:\"loading\"}],staticClass:\"multiselect__spinner\"})])],2),t._v(\" \"),t.searchable?n(\"input\",{ref:\"search\",staticClass:\"multiselect__input\",style:t.inputStyle,attrs:{name:t.name,id:t.id,type:\"text\",autocomplete:\"off\",placeholder:t.placeholder,disabled:t.disabled,tabindex:t.tabindex},domProps:{value:t.search},on:{input:function(e){t.updateSearch(e.target.value)},focus:function(e){e.preventDefault(),t.activate()},blur:function(e){e.preventDefault(),t.deactivate()},keyup:function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"esc\",27,e.key,\"Escape\"))return null;t.deactivate()},keydown:[function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"down\",40,e.key,[\"Down\",\"ArrowDown\"]))return null;e.preventDefault(),t.pointerForward()},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"up\",38,e.key,[\"Up\",\"ArrowUp\"]))return null;e.preventDefault(),t.pointerBackward()},function(e){return\"button\"in e||!t._k(e.keyCode,\"enter\",13,e.key,\"Enter\")?(e.preventDefault(),e.stopPropagation(),e.target!==e.currentTarget?null:void t.addPointerElement(e)):null},function(e){if(!(\"button\"in e)&&t._k(e.keyCode,\"delete\",[8,46],e.key,[\"Backspace\",\"Delete\"]))return null;e.stopPropagation(),t.removeLastElement()}]}}):t._e(),t._v(\" \"),t.isSingleLabelVisible?n(\"span\",{staticClass:\"multiselect__single\",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t(\"singleLabel\",[[t._v(t._s(t.currentOptionLabel))]],{option:t.singleValue})],2):t._e(),t._v(\" \"),t.isPlaceholderVisible?n(\"span\",{staticClass:\"multiselect__placeholder\",on:{mousedown:function(e){return e.preventDefault(),t.toggle(e)}}},[t._t(\"placeholder\",[t._v(\"\\n \"+t._s(t.placeholder)+\"\\n \")])],2):t._e()],2),t._v(\" \"),n(\"transition\",{attrs:{name:\"multiselect\"}},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isOpen,expression:\"isOpen\"}],ref:\"list\",staticClass:\"multiselect__content-wrapper\",style:{maxHeight:t.optimizedHeight+\"px\"},attrs:{tabindex:\"-1\"},on:{focus:t.activate,mousedown:function(t){t.preventDefault()}}},[n(\"ul\",{staticClass:\"multiselect__content\",style:t.contentStyle},[t._t(\"beforeList\"),t._v(\" \"),t.multiple&&t.max===t.internalValue.length?n(\"li\",[n(\"span\",{staticClass:\"multiselect__option\"},[t._t(\"maxElements\",[t._v(\"Maximum of \"+t._s(t.max)+\" options selected. First remove a selected option to select another.\")])],2)]):t._e(),t._v(\" \"),!t.max||t.internalValue.length<t.max?t._l(t.filteredOptions,function(e,r){return n(\"li\",{key:r,staticClass:\"multiselect__element\"},[e&&(e.$isLabel||e.$isDisabled)?t._e():n(\"span\",{staticClass:\"multiselect__option\",class:t.optionHighlight(r,e),attrs:{\"data-select\":e&&e.isTag?t.tagPlaceholder:t.selectLabelText,\"data-selected\":t.selectedLabelText,\"data-deselect\":t.deselectLabelText},on:{click:function(n){n.stopPropagation(),t.select(e)},mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.pointerSet(r)}}},[t._t(\"option\",[n(\"span\",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2),t._v(\" \"),e&&(e.$isLabel||e.$isDisabled)?n(\"span\",{staticClass:\"multiselect__option\",class:t.groupHighlight(r,e),attrs:{\"data-select\":t.groupSelect&&t.selectGroupLabelText,\"data-deselect\":t.groupSelect&&t.deselectGroupLabelText},on:{mouseenter:function(e){if(e.target!==e.currentTarget)return null;t.groupSelect&&t.pointerSet(r)},mousedown:function(n){n.preventDefault(),t.selectGroup(e)}}},[t._t(\"option\",[n(\"span\",[t._v(t._s(t.getOptionLabel(e)))])],{option:e,search:t.search})],2):t._e()])}):t._e(),t._v(\" \"),n(\"li\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.showNoResults&&0===t.filteredOptions.length&&t.search&&!t.loading,expression:\"showNoResults && (filteredOptions.length === 0 && search && !loading)\"}]},[n(\"span\",{staticClass:\"multiselect__option\"},[t._t(\"noResult\",[t._v(\"No elements found. Consider changing the search query.\")])],2)]),t._v(\" \"),n(\"li\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.showNoOptions&&0===t.options.length&&!t.search&&!t.loading,expression:\"showNoOptions && (options.length === 0 && !search && !loading)\"}]},[n(\"span\",{staticClass:\"multiselect__option\"},[t._t(\"noOptions\",[t._v(\"List is empty.\")])],2)]),t._v(\" \"),t._t(\"afterList\")],2)])])],2)},staticRenderFns:[]};e.a=r}])},function(t,e,n){\"use strict\";Object.defineProperty(e,\"__esModule\",{value:!0});var r=n(299).default.create({headers:{requesttoken:OC.requestToken}});e.default=r},function(t,e,n){!function(){var e=n(318),r=n(127).utf8,i=n(122),o=n(127).bin,a=function(t,n){t.constructor==String?t=n&&\"binary\"===n.encoding?o.stringToBytes(t):r.stringToBytes(t):i(t)?t=Array.prototype.slice.call(t,0):Array.isArray(t)||(t=t.toString());for(var s=e.bytesToWords(t),u=8*t.length,c=1732584193,l=-271733879,f=-1732584194,p=271733878,d=0;d<s.length;d++)s[d]=16711935&(s[d]<<8|s[d]>>>24)|4278255360&(s[d]<<24|s[d]>>>8);s[u>>>5]|=128<<u%32,s[14+(u+64>>>9<<4)]=u;var h=a._ff,v=a._gg,m=a._hh,g=a._ii;for(d=0;d<s.length;d+=16){var y=c,b=l,_=f,x=p;l=g(l=g(l=g(l=g(l=m(l=m(l=m(l=m(l=v(l=v(l=v(l=v(l=h(l=h(l=h(l=h(l,f=h(f,p=h(p,c=h(c,l,f,p,s[d+0],7,-680876936),l,f,s[d+1],12,-389564586),c,l,s[d+2],17,606105819),p,c,s[d+3],22,-1044525330),f=h(f,p=h(p,c=h(c,l,f,p,s[d+4],7,-176418897),l,f,s[d+5],12,1200080426),c,l,s[d+6],17,-1473231341),p,c,s[d+7],22,-45705983),f=h(f,p=h(p,c=h(c,l,f,p,s[d+8],7,1770035416),l,f,s[d+9],12,-1958414417),c,l,s[d+10],17,-42063),p,c,s[d+11],22,-1990404162),f=h(f,p=h(p,c=h(c,l,f,p,s[d+12],7,1804603682),l,f,s[d+13],12,-40341101),c,l,s[d+14],17,-1502002290),p,c,s[d+15],22,1236535329),f=v(f,p=v(p,c=v(c,l,f,p,s[d+1],5,-165796510),l,f,s[d+6],9,-1069501632),c,l,s[d+11],14,643717713),p,c,s[d+0],20,-373897302),f=v(f,p=v(p,c=v(c,l,f,p,s[d+5],5,-701558691),l,f,s[d+10],9,38016083),c,l,s[d+15],14,-660478335),p,c,s[d+4],20,-405537848),f=v(f,p=v(p,c=v(c,l,f,p,s[d+9],5,568446438),l,f,s[d+14],9,-1019803690),c,l,s[d+3],14,-187363961),p,c,s[d+8],20,1163531501),f=v(f,p=v(p,c=v(c,l,f,p,s[d+13],5,-1444681467),l,f,s[d+2],9,-51403784),c,l,s[d+7],14,1735328473),p,c,s[d+12],20,-1926607734),f=m(f,p=m(p,c=m(c,l,f,p,s[d+5],4,-378558),l,f,s[d+8],11,-2022574463),c,l,s[d+11],16,1839030562),p,c,s[d+14],23,-35309556),f=m(f,p=m(p,c=m(c,l,f,p,s[d+1],4,-1530992060),l,f,s[d+4],11,1272893353),c,l,s[d+7],16,-155497632),p,c,s[d+10],23,-1094730640),f=m(f,p=m(p,c=m(c,l,f,p,s[d+13],4,681279174),l,f,s[d+0],11,-358537222),c,l,s[d+3],16,-722521979),p,c,s[d+6],23,76029189),f=m(f,p=m(p,c=m(c,l,f,p,s[d+9],4,-640364487),l,f,s[d+12],11,-421815835),c,l,s[d+15],16,530742520),p,c,s[d+2],23,-995338651),f=g(f,p=g(p,c=g(c,l,f,p,s[d+0],6,-198630844),l,f,s[d+7],10,1126891415),c,l,s[d+14],15,-1416354905),p,c,s[d+5],21,-57434055),f=g(f,p=g(p,c=g(c,l,f,p,s[d+12],6,1700485571),l,f,s[d+3],10,-1894986606),c,l,s[d+10],15,-1051523),p,c,s[d+1],21,-2054922799),f=g(f,p=g(p,c=g(c,l,f,p,s[d+8],6,1873313359),l,f,s[d+15],10,-30611744),c,l,s[d+6],15,-1560198380),p,c,s[d+13],21,1309151649),f=g(f,p=g(p,c=g(c,l,f,p,s[d+4],6,-145523070),l,f,s[d+11],10,-1120210379),c,l,s[d+2],15,718787259),p,c,s[d+9],21,-343485551),c=c+y>>>0,l=l+b>>>0,f=f+_>>>0,p=p+x>>>0}return e.endian([c,l,f,p])};a._ff=function(t,e,n,r,i,o,a){var s=t+(e&n|~e&r)+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._gg=function(t,e,n,r,i,o,a){var s=t+(e&r|n&~r)+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._hh=function(t,e,n,r,i,o,a){var s=t+(e^n^r)+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._ii=function(t,e,n,r,i,o,a){var s=t+(n^(e|~r))+(i>>>0)+a;return(s<<o|s>>>32-o)+e},a._blocksize=16,a._digestsize=16,t.exports=function(t,n){if(void 0===t||null===t)throw new Error(\"Illegal argument \"+t);var r=e.wordsToBytes(a(t,n));return n&&n.asBytes?r:n&&n.asString?o.bytesToString(r):e.bytesToHex(r)}}()},function(t,e,n){\"use strict\";(function(t){n(132),n(276),n(278),n(280),n(282),n(284),n(286),n(288),n(290),n(292),n(296),t._babelPolyfill&&\"undefined\"!=typeof console&&console.warn&&console.warn(\"@babel/polyfill is loaded more than once on this page. This is probably not desirable/intended and may have consequences if different versions of the polyfills are applied sequentially. If you do need to load the polyfill more than once, use @babel/polyfill/noConflict instead to bypass the warning.\"),t._babelPolyfill=!0}).call(this,n(91))},function(t,e,n){n(133),n(135),n(136),n(137),n(138),n(139),n(140),n(141),n(142),n(143),n(144),n(145),n(146),n(147),n(148),n(149),n(151),n(152),n(153),n(154),n(155),n(156),n(157),n(158),n(159),n(160),n(161),n(162),n(163),n(164),n(165),n(166),n(167),n(168),n(169),n(170),n(171),n(172),n(173),n(174),n(175),n(176),n(177),n(179),n(180),n(181),n(182),n(183),n(184),n(185),n(186),n(187),n(188),n(189),n(190),n(191),n(192),n(193),n(194),n(195),n(196),n(197),n(198),n(199),n(200),n(201),n(202),n(203),n(204),n(205),n(206),n(207),n(208),n(209),n(210),n(211),n(212),n(214),n(215),n(217),n(218),n(219),n(220),n(221),n(222),n(223),n(226),n(227),n(228),n(229),n(230),n(231),n(232),n(233),n(234),n(235),n(236),n(237),n(238),n(86),n(239),n(240),n(111),n(241),n(242),n(243),n(244),n(112),n(247),n(248),n(249),n(250),n(251),n(252),n(253),n(254),n(255),n(256),n(257),n(258),n(259),n(260),n(261),n(262),n(263),n(264),n(265),n(266),n(267),n(268),n(269),n(270),n(271),n(272),n(273),n(274),n(275),t.exports=n(8)},function(t,e,n){\"use strict\";var r=n(2),i=n(12),o=n(7),a=n(0),s=n(10),u=n(28).KEY,c=n(1),l=n(66),f=n(38),p=n(31),d=n(5),h=n(67),v=n(93),m=n(134),g=n(70),y=n(4),b=n(3),_=n(14),x=n(27),w=n(30),S=n(35),O=n(96),k=n(18),E=n(6),T=n(33),D=k.f,A=E.f,C=O.f,M=r.Symbol,P=r.JSON,N=P&&P.stringify,L=d(\"_hidden\"),j=d(\"toPrimitive\"),F={}.propertyIsEnumerable,I=l(\"symbol-registry\"),$=l(\"symbols\"),R=l(\"op-symbols\"),B=Object.prototype,V=\"function\"==typeof M,H=r.QObject,U=!H||!H.prototype||!H.prototype.findChild,Y=o&&c(function(){return 7!=S(A({},\"a\",{get:function(){return A(this,\"a\",{value:7}).a}})).a})?function(t,e,n){var r=D(B,e);r&&delete B[e],A(t,e,n),r&&t!==B&&A(B,e,r)}:A,z=function(t){var e=$[t]=S(M.prototype);return e._k=t,e},W=V&&\"symbol\"==typeof M.iterator?function(t){return\"symbol\"==typeof t}:function(t){return t instanceof M},G=function(t,e,n){return t===B&&G(R,e,n),y(t),e=x(e,!0),y(n),i($,e)?(n.enumerable?(i(t,L)&&t[L][e]&&(t[L][e]=!1),n=S(n,{enumerable:w(0,!1)})):(i(t,L)||A(t,L,w(1,{})),t[L][e]=!0),Y(t,e,n)):A(t,e,n)},q=function(t,e){y(t);for(var n,r=m(e=_(e)),i=0,o=r.length;o>i;)G(t,n=r[i++],e[n]);return t},J=function(t){var e=F.call(this,t=x(t,!0));return!(this===B&&i($,t)&&!i(R,t))&&(!(e||!i(this,t)||!i($,t)||i(this,L)&&this[L][t])||e)},K=function(t,e){if(t=_(t),e=x(e,!0),t!==B||!i($,e)||i(R,e)){var n=D(t,e);return!n||!i($,e)||i(t,L)&&t[L][e]||(n.enumerable=!0),n}},X=function(t){for(var e,n=C(_(t)),r=[],o=0;n.length>o;)i($,e=n[o++])||e==L||e==u||r.push(e);return r},Z=function(t){for(var e,n=t===B,r=C(n?R:_(t)),o=[],a=0;r.length>a;)!i($,e=r[a++])||n&&!i(B,e)||o.push($[e]);return o};V||(s((M=function(){if(this instanceof M)throw TypeError(\"Symbol is not a constructor!\");var t=p(arguments.length>0?arguments[0]:void 0),e=function(n){this===B&&e.call(R,n),i(this,L)&&i(this[L],t)&&(this[L][t]=!1),Y(this,t,w(1,n))};return o&&U&&Y(B,t,{configurable:!0,set:e}),z(t)}).prototype,\"toString\",function(){return this._k}),k.f=K,E.f=G,n(36).f=O.f=X,n(46).f=J,n(51).f=Z,o&&!n(32)&&s(B,\"propertyIsEnumerable\",J,!0),h.f=function(t){return z(d(t))}),a(a.G+a.W+a.F*!V,{Symbol:M});for(var Q=\"hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables\".split(\",\"),tt=0;Q.length>tt;)d(Q[tt++]);for(var et=T(d.store),nt=0;et.length>nt;)v(et[nt++]);a(a.S+a.F*!V,\"Symbol\",{for:function(t){return i(I,t+=\"\")?I[t]:I[t]=M(t)},keyFor:function(t){if(!W(t))throw TypeError(t+\" is not a symbol!\");for(var e in I)if(I[e]===t)return e},useSetter:function(){U=!0},useSimple:function(){U=!1}}),a(a.S+a.F*!V,\"Object\",{create:function(t,e){return void 0===e?S(t):q(S(t),e)},defineProperty:G,defineProperties:q,getOwnPropertyDescriptor:K,getOwnPropertyNames:X,getOwnPropertySymbols:Z}),P&&a(a.S+a.F*(!V||c(function(){var t=M();return\"[null]\"!=N([t])||\"{}\"!=N({a:t})||\"{}\"!=N(Object(t))})),\"JSON\",{stringify:function(t){for(var e,n,r=[t],i=1;arguments.length>i;)r.push(arguments[i++]);if(n=e=r[1],(b(e)||void 0!==t)&&!W(t))return g(e)||(e=function(t,e){if(\"function\"==typeof n&&(e=n.call(this,t,e)),!W(e))return e}),r[1]=e,N.apply(P,r)}}),M.prototype[j]||n(13)(M.prototype,j,M.prototype.valueOf),f(M,\"Symbol\"),f(Math,\"Math\",!0),f(r.JSON,\"JSON\",!0)},function(t,e,n){var r=n(33),i=n(51),o=n(46);t.exports=function(t){var e=r(t),n=i.f;if(n)for(var a,s=n(t),u=o.f,c=0;s.length>c;)u.call(t,a=s[c++])&&e.push(a);return e}},function(t,e,n){var r=n(0);r(r.S,\"Object\",{create:n(35)})},function(t,e,n){var r=n(0);r(r.S+r.F*!n(7),\"Object\",{defineProperty:n(6).f})},function(t,e,n){var r=n(0);r(r.S+r.F*!n(7),\"Object\",{defineProperties:n(95)})},function(t,e,n){var r=n(14),i=n(18).f;n(19)(\"getOwnPropertyDescriptor\",function(){return function(t,e){return i(r(t),e)}})},function(t,e,n){var r=n(15),i=n(37);n(19)(\"getPrototypeOf\",function(){return function(t){return i(r(t))}})},function(t,e,n){var r=n(15),i=n(33);n(19)(\"keys\",function(){return function(t){return i(r(t))}})},function(t,e,n){n(19)(\"getOwnPropertyNames\",function(){return n(96).f})},function(t,e,n){var r=n(3),i=n(28).onFreeze;n(19)(\"freeze\",function(t){return function(e){return t&&r(e)?t(i(e)):e}})},function(t,e,n){var r=n(3),i=n(28).onFreeze;n(19)(\"seal\",function(t){return function(e){return t&&r(e)?t(i(e)):e}})},function(t,e,n){var r=n(3),i=n(28).onFreeze;n(19)(\"preventExtensions\",function(t){return function(e){return t&&r(e)?t(i(e)):e}})},function(t,e,n){var r=n(3);n(19)(\"isFrozen\",function(t){return function(e){return!r(e)||!!t&&t(e)}})},function(t,e,n){var r=n(3);n(19)(\"isSealed\",function(t){return function(e){return!r(e)||!!t&&t(e)}})},function(t,e,n){var r=n(3);n(19)(\"isExtensible\",function(t){return function(e){return!!r(e)&&(!t||t(e))}})},function(t,e,n){var r=n(0);r(r.S+r.F,\"Object\",{assign:n(97)})},function(t,e,n){var r=n(0);r(r.S,\"Object\",{is:n(150)})},function(t,e){t.exports=Object.is||function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}},function(t,e,n){var r=n(0);r(r.S,\"Object\",{setPrototypeOf:n(72).set})},function(t,e,n){\"use strict\";var r=n(52),i={};i[n(5)(\"toStringTag\")]=\"z\",i+\"\"!=\"[object z]\"&&n(10)(Object.prototype,\"toString\",function(){return\"[object \"+r(this)+\"]\"},!0)},function(t,e,n){var r=n(0);r(r.P,\"Function\",{bind:n(98)})},function(t,e,n){var r=n(6).f,i=Function.prototype,o=/^\\s*function ([^ (]*)/;\"name\"in i||n(7)&&r(i,\"name\",{configurable:!0,get:function(){try{return(\"\"+this).match(o)[1]}catch(t){return\"\"}}})},function(t,e,n){\"use strict\";var r=n(3),i=n(37),o=n(5)(\"hasInstance\"),a=Function.prototype;o in a||n(6).f(a,o,{value:function(t){if(\"function\"!=typeof this||!r(t))return!1;if(!r(this.prototype))return t instanceof this;for(;t=i(t);)if(this.prototype===t)return!0;return!1}})},function(t,e,n){var r=n(0),i=n(100);r(r.G+r.F*(parseInt!=i),{parseInt:i})},function(t,e,n){var r=n(0),i=n(101);r(r.G+r.F*(parseFloat!=i),{parseFloat:i})},function(t,e,n){\"use strict\";var r=n(2),i=n(12),o=n(23),a=n(74),s=n(27),u=n(1),c=n(36).f,l=n(18).f,f=n(6).f,p=n(53).trim,d=r.Number,h=d,v=d.prototype,m=\"Number\"==o(n(35)(v)),g=\"trim\"in String.prototype,y=function(t){var e=s(t,!1);if(\"string\"==typeof e&&e.length>2){var n,r,i,o=(e=g?e.trim():p(e,3)).charCodeAt(0);if(43===o||45===o){if(88===(n=e.charCodeAt(2))||120===n)return NaN}else if(48===o){switch(e.charCodeAt(1)){case 66:case 98:r=2,i=49;break;case 79:case 111:r=8,i=55;break;default:return+e}for(var a,u=e.slice(2),c=0,l=u.length;c<l;c++)if((a=u.charCodeAt(c))<48||a>i)return NaN;return parseInt(u,r)}}return+e};if(!d(\" 0o1\")||!d(\"0b1\")||d(\"+0x1\")){d=function(t){var e=arguments.length<1?0:t,n=this;return n instanceof d&&(m?u(function(){v.valueOf.call(n)}):\"Number\"!=o(n))?a(new h(y(e)),n,d):y(e)};for(var b,_=n(7)?c(h):\"MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger\".split(\",\"),x=0;_.length>x;x++)i(h,b=_[x])&&!i(d,b)&&f(d,b,l(h,b));d.prototype=v,v.constructor=d,n(10)(r,\"Number\",d)}},function(t,e,n){\"use strict\";var r=n(0),i=n(25),o=n(102),a=n(75),s=1..toFixed,u=Math.floor,c=[0,0,0,0,0,0],l=\"Number.toFixed: incorrect invocation!\",f=function(t,e){for(var n=-1,r=e;++n<6;)r+=t*c[n],c[n]=r%1e7,r=u(r/1e7)},p=function(t){for(var e=6,n=0;--e>=0;)n+=c[e],c[e]=u(n/t),n=n%t*1e7},d=function(){for(var t=6,e=\"\";--t>=0;)if(\"\"!==e||0===t||0!==c[t]){var n=String(c[t]);e=\"\"===e?n:e+a.call(\"0\",7-n.length)+n}return e},h=function(t,e,n){return 0===e?n:e%2==1?h(t,e-1,n*t):h(t*t,e/2,n)};r(r.P+r.F*(!!s&&(\"0.000\"!==8e-5.toFixed(3)||\"1\"!==.9.toFixed(0)||\"1.25\"!==1.255.toFixed(2)||\"1000000000000000128\"!==(0xde0b6b3a7640080).toFixed(0))||!n(1)(function(){s.call({})})),\"Number\",{toFixed:function(t){var e,n,r,s,u=o(this,l),c=i(t),v=\"\",m=\"0\";if(c<0||c>20)throw RangeError(l);if(u!=u)return\"NaN\";if(u<=-1e21||u>=1e21)return String(u);if(u<0&&(v=\"-\",u=-u),u>1e-21)if(n=(e=function(t){for(var e=0,n=t;n>=4096;)e+=12,n/=4096;for(;n>=2;)e+=1,n/=2;return e}(u*h(2,69,1))-69)<0?u*h(2,-e,1):u/h(2,e,1),n*=4503599627370496,(e=52-e)>0){for(f(0,n),r=c;r>=7;)f(1e7,0),r-=7;for(f(h(10,r,1),0),r=e-1;r>=23;)p(1<<23),r-=23;p(1<<r),f(1,1),p(2),m=d()}else f(0,n),f(1<<-e,0),m=d()+a.call(\"0\",c);return m=c>0?v+((s=m.length)<=c?\"0.\"+a.call(\"0\",c-s)+m:m.slice(0,s-c)+\".\"+m.slice(s-c)):v+m}})},function(t,e,n){\"use strict\";var r=n(0),i=n(1),o=n(102),a=1..toPrecision;r(r.P+r.F*(i(function(){return\"1\"!==a.call(1,void 0)})||!i(function(){a.call({})})),\"Number\",{toPrecision:function(t){var e=o(this,\"Number#toPrecision: incorrect invocation!\");return void 0===t?a.call(e):a.call(e,t)}})},function(t,e,n){var r=n(0);r(r.S,\"Number\",{EPSILON:Math.pow(2,-52)})},function(t,e,n){var r=n(0),i=n(2).isFinite;r(r.S,\"Number\",{isFinite:function(t){return\"number\"==typeof t&&i(t)}})},function(t,e,n){var r=n(0);r(r.S,\"Number\",{isInteger:n(103)})},function(t,e,n){var r=n(0);r(r.S,\"Number\",{isNaN:function(t){return t!=t}})},function(t,e,n){var r=n(0),i=n(103),o=Math.abs;r(r.S,\"Number\",{isSafeInteger:function(t){return i(t)&&o(t)<=9007199254740991}})},function(t,e,n){var r=n(0);r(r.S,\"Number\",{MAX_SAFE_INTEGER:9007199254740991})},function(t,e,n){var r=n(0);r(r.S,\"Number\",{MIN_SAFE_INTEGER:-9007199254740991})},function(t,e,n){var r=n(0),i=n(101);r(r.S+r.F*(Number.parseFloat!=i),\"Number\",{parseFloat:i})},function(t,e,n){var r=n(0),i=n(100);r(r.S+r.F*(Number.parseInt!=i),\"Number\",{parseInt:i})},function(t,e,n){var r=n(0),i=n(104),o=Math.sqrt,a=Math.acosh;r(r.S+r.F*!(a&&710==Math.floor(a(Number.MAX_VALUE))&&a(1/0)==1/0),\"Math\",{acosh:function(t){return(t=+t)<1?NaN:t>94906265.62425156?Math.log(t)+Math.LN2:i(t-1+o(t-1)*o(t+1))}})},function(t,e,n){var r=n(0),i=Math.asinh;r(r.S+r.F*!(i&&1/i(0)>0),\"Math\",{asinh:function t(e){return isFinite(e=+e)&&0!=e?e<0?-t(-e):Math.log(e+Math.sqrt(e*e+1)):e}})},function(t,e,n){var r=n(0),i=Math.atanh;r(r.S+r.F*!(i&&1/i(-0)<0),\"Math\",{atanh:function(t){return 0==(t=+t)?t:Math.log((1+t)/(1-t))/2}})},function(t,e,n){var r=n(0),i=n(76);r(r.S,\"Math\",{cbrt:function(t){return i(t=+t)*Math.pow(Math.abs(t),1/3)}})},function(t,e,n){var r=n(0);r(r.S,\"Math\",{clz32:function(t){return(t>>>=0)?31-Math.floor(Math.log(t+.5)*Math.LOG2E):32}})},function(t,e,n){var r=n(0),i=Math.exp;r(r.S,\"Math\",{cosh:function(t){return(i(t=+t)+i(-t))/2}})},function(t,e,n){var r=n(0),i=n(77);r(r.S+r.F*(i!=Math.expm1),\"Math\",{expm1:i})},function(t,e,n){var r=n(0);r(r.S,\"Math\",{fround:n(178)})},function(t,e,n){var r=n(76),i=Math.pow,o=i(2,-52),a=i(2,-23),s=i(2,127)*(2-a),u=i(2,-126);t.exports=Math.fround||function(t){var e,n,i=Math.abs(t),c=r(t);return i<u?c*function(t){return t+1/o-1/o}(i/u/a)*u*a:(n=(e=(1+a/o)*i)-(e-i))>s||n!=n?c*(1/0):c*n}},function(t,e,n){var r=n(0),i=Math.abs;r(r.S,\"Math\",{hypot:function(t,e){for(var n,r,o=0,a=0,s=arguments.length,u=0;a<s;)u<(n=i(arguments[a++]))?(o=o*(r=u/n)*r+1,u=n):o+=n>0?(r=n/u)*r:n;return u===1/0?1/0:u*Math.sqrt(o)}})},function(t,e,n){var r=n(0),i=Math.imul;r(r.S+r.F*n(1)(function(){return-5!=i(4294967295,5)||2!=i.length}),\"Math\",{imul:function(t,e){var n=+t,r=+e,i=65535&n,o=65535&r;return 0|i*o+((65535&n>>>16)*o+i*(65535&r>>>16)<<16>>>0)}})},function(t,e,n){var r=n(0);r(r.S,\"Math\",{log10:function(t){return Math.log(t)*Math.LOG10E}})},function(t,e,n){var r=n(0);r(r.S,\"Math\",{log1p:n(104)})},function(t,e,n){var r=n(0);r(r.S,\"Math\",{log2:function(t){return Math.log(t)/Math.LN2}})},function(t,e,n){var r=n(0);r(r.S,\"Math\",{sign:n(76)})},function(t,e,n){var r=n(0),i=n(77),o=Math.exp;r(r.S+r.F*n(1)(function(){return-2e-17!=!Math.sinh(-2e-17)}),\"Math\",{sinh:function(t){return Math.abs(t=+t)<1?(i(t)-i(-t))/2:(o(t-1)-o(-t-1))*(Math.E/2)}})},function(t,e,n){var r=n(0),i=n(77),o=Math.exp;r(r.S,\"Math\",{tanh:function(t){var e=i(t=+t),n=i(-t);return e==1/0?1:n==1/0?-1:(e-n)/(o(t)+o(-t))}})},function(t,e,n){var r=n(0);r(r.S,\"Math\",{trunc:function(t){return(t>0?Math.floor:Math.ceil)(t)}})},function(t,e,n){var r=n(0),i=n(34),o=String.fromCharCode,a=String.fromCodePoint;r(r.S+r.F*(!!a&&1!=a.length),\"String\",{fromCodePoint:function(t){for(var e,n=[],r=arguments.length,a=0;r>a;){if(e=+arguments[a++],i(e,1114111)!==e)throw RangeError(e+\" is not a valid code point\");n.push(e<65536?o(e):o(55296+((e-=65536)>>10),e%1024+56320))}return n.join(\"\")}})},function(t,e,n){var r=n(0),i=n(14),o=n(9);r(r.S,\"String\",{raw:function(t){for(var e=i(t.raw),n=o(e.length),r=arguments.length,a=[],s=0;n>s;)a.push(String(e[s++])),s<r&&a.push(String(arguments[s]));return a.join(\"\")}})},function(t,e,n){\"use strict\";n(53)(\"trim\",function(t){return function(){return t(this,3)}})},function(t,e,n){\"use strict\";var r=n(105)(!0);n(78)(String,\"String\",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=r(e,n),this._i+=t.length,{value:t,done:!1})})},function(t,e,n){\"use strict\";var r=n(0),i=n(105)(!1);r(r.P,\"String\",{codePointAt:function(t){return i(this,t)}})},function(t,e,n){\"use strict\";var r=n(0),i=n(9),o=n(79),a=\"\".endsWith;r(r.P+r.F*n(81)(\"endsWith\"),\"String\",{endsWith:function(t){var e=o(this,t,\"endsWith\"),n=arguments.length>1?arguments[1]:void 0,r=i(e.length),s=void 0===n?r:Math.min(i(n),r),u=String(t);return a?a.call(e,u,s):e.slice(s-u.length,s)===u}})},function(t,e,n){\"use strict\";var r=n(0),i=n(79);r(r.P+r.F*n(81)(\"includes\"),\"String\",{includes:function(t){return!!~i(this,t,\"includes\").indexOf(t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){var r=n(0);r(r.P,\"String\",{repeat:n(75)})},function(t,e,n){\"use strict\";var r=n(0),i=n(9),o=n(79),a=\"\".startsWith;r(r.P+r.F*n(81)(\"startsWith\"),\"String\",{startsWith:function(t){var e=o(this,t,\"startsWith\"),n=i(Math.min(arguments.length>1?arguments[1]:void 0,e.length)),r=String(t);return a?a.call(e,r,n):e.slice(n,n+r.length)===r}})},function(t,e,n){\"use strict\";n(11)(\"anchor\",function(t){return function(e){return t(this,\"a\",\"name\",e)}})},function(t,e,n){\"use strict\";n(11)(\"big\",function(t){return function(){return t(this,\"big\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"blink\",function(t){return function(){return t(this,\"blink\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"bold\",function(t){return function(){return t(this,\"b\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"fixed\",function(t){return function(){return t(this,\"tt\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"fontcolor\",function(t){return function(e){return t(this,\"font\",\"color\",e)}})},function(t,e,n){\"use strict\";n(11)(\"fontsize\",function(t){return function(e){return t(this,\"font\",\"size\",e)}})},function(t,e,n){\"use strict\";n(11)(\"italics\",function(t){return function(){return t(this,\"i\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"link\",function(t){return function(e){return t(this,\"a\",\"href\",e)}})},function(t,e,n){\"use strict\";n(11)(\"small\",function(t){return function(){return t(this,\"small\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"strike\",function(t){return function(){return t(this,\"strike\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"sub\",function(t){return function(){return t(this,\"sub\",\"\",\"\")}})},function(t,e,n){\"use strict\";n(11)(\"sup\",function(t){return function(){return t(this,\"sup\",\"\",\"\")}})},function(t,e,n){var r=n(0);r(r.S,\"Date\",{now:function(){return(new Date).getTime()}})},function(t,e,n){\"use strict\";var r=n(0),i=n(15),o=n(27);r(r.P+r.F*n(1)(function(){return null!==new Date(NaN).toJSON()||1!==Date.prototype.toJSON.call({toISOString:function(){return 1}})}),\"Date\",{toJSON:function(t){var e=i(this),n=o(e);return\"number\"!=typeof n||isFinite(n)?e.toISOString():null}})},function(t,e,n){var r=n(0),i=n(213);r(r.P+r.F*(Date.prototype.toISOString!==i),\"Date\",{toISOString:i})},function(t,e,n){\"use strict\";var r=n(1),i=Date.prototype.getTime,o=Date.prototype.toISOString,a=function(t){return t>9?t:\"0\"+t};t.exports=r(function(){return\"0385-07-25T07:06:39.999Z\"!=o.call(new Date(-5e13-1))})||!r(function(){o.call(new Date(NaN))})?function(){if(!isFinite(i.call(this)))throw RangeError(\"Invalid time value\");var t=this,e=t.getUTCFullYear(),n=t.getUTCMilliseconds(),r=e<0?\"-\":e>9999?\"+\":\"\";return r+(\"00000\"+Math.abs(e)).slice(r?-6:-4)+\"-\"+a(t.getUTCMonth()+1)+\"-\"+a(t.getUTCDate())+\"T\"+a(t.getUTCHours())+\":\"+a(t.getUTCMinutes())+\":\"+a(t.getUTCSeconds())+\".\"+(n>99?n:\"0\"+a(n))+\"Z\"}:o},function(t,e,n){var r=Date.prototype,i=r.toString,o=r.getTime;new Date(NaN)+\"\"!=\"Invalid Date\"&&n(10)(r,\"toString\",function(){var t=o.call(this);return t==t?i.call(this):\"Invalid Date\"})},function(t,e,n){var r=n(5)(\"toPrimitive\"),i=Date.prototype;r in i||n(13)(i,r,n(216))},function(t,e,n){\"use strict\";var r=n(4),i=n(27);t.exports=function(t){if(\"string\"!==t&&\"number\"!==t&&\"default\"!==t)throw TypeError(\"Incorrect hint\");return i(r(this),\"number\"!=t)}},function(t,e,n){var r=n(0);r(r.S,\"Array\",{isArray:n(70)})},function(t,e,n){\"use strict\";var r=n(21),i=n(0),o=n(15),a=n(107),s=n(82),u=n(9),c=n(83),l=n(84);i(i.S+i.F*!n(54)(function(t){Array.from(t)}),\"Array\",{from:function(t){var e,n,i,f,p=o(t),d=\"function\"==typeof this?this:Array,h=arguments.length,v=h>1?arguments[1]:void 0,m=void 0!==v,g=0,y=l(p);if(m&&(v=r(v,h>2?arguments[2]:void 0,2)),void 0==y||d==Array&&s(y))for(n=new d(e=u(p.length));e>g;g++)c(n,g,m?v(p[g],g):p[g]);else for(f=y.call(p),n=new d;!(i=f.next()).done;g++)c(n,g,m?a(f,v,[i.value,g],!0):i.value);return n.length=g,n}})},function(t,e,n){\"use strict\";var r=n(0),i=n(83);r(r.S+r.F*n(1)(function(){function t(){}return!(Array.of.call(t)instanceof t)}),\"Array\",{of:function(){for(var t=0,e=arguments.length,n=new(\"function\"==typeof this?this:Array)(e);e>t;)i(n,t,arguments[t++]);return n.length=e,n}})},function(t,e,n){\"use strict\";var r=n(0),i=n(14),o=[].join;r(r.P+r.F*(n(45)!=Object||!n(17)(o)),\"Array\",{join:function(t){return o.call(i(this),void 0===t?\",\":t)}})},function(t,e,n){\"use strict\";var r=n(0),i=n(71),o=n(23),a=n(34),s=n(9),u=[].slice;r(r.P+r.F*n(1)(function(){i&&u.call(i)}),\"Array\",{slice:function(t,e){var n=s(this.length),r=o(this);if(e=void 0===e?n:e,\"Array\"==r)return u.call(this,t,e);for(var i=a(t,n),c=a(e,n),l=s(c-i),f=new Array(l),p=0;p<l;p++)f[p]=\"String\"==r?this.charAt(i+p):this[i+p];return f}})},function(t,e,n){\"use strict\";var r=n(0),i=n(22),o=n(15),a=n(1),s=[].sort,u=[1,2,3];r(r.P+r.F*(a(function(){u.sort(void 0)})||!a(function(){u.sort(null)})||!n(17)(s)),\"Array\",{sort:function(t){return void 0===t?s.call(o(this)):s.call(o(this),i(t))}})},function(t,e,n){\"use strict\";var r=n(0),i=n(20)(0),o=n(17)([].forEach,!0);r(r.P+r.F*!o,\"Array\",{forEach:function(t){return i(this,t,arguments[1])}})},function(t,e,n){var r=n(225);t.exports=function(t,e){return new(r(t))(e)}},function(t,e,n){var r=n(3),i=n(70),o=n(5)(\"species\");t.exports=function(t){var e;return i(t)&&(\"function\"!=typeof(e=t.constructor)||e!==Array&&!i(e.prototype)||(e=void 0),r(e)&&null===(e=e[o])&&(e=void 0)),void 0===e?Array:e}},function(t,e,n){\"use strict\";var r=n(0),i=n(20)(1);r(r.P+r.F*!n(17)([].map,!0),\"Array\",{map:function(t){return i(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var r=n(0),i=n(20)(2);r(r.P+r.F*!n(17)([].filter,!0),\"Array\",{filter:function(t){return i(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var r=n(0),i=n(20)(3);r(r.P+r.F*!n(17)([].some,!0),\"Array\",{some:function(t){return i(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var r=n(0),i=n(20)(4);r(r.P+r.F*!n(17)([].every,!0),\"Array\",{every:function(t){return i(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var r=n(0),i=n(108);r(r.P+r.F*!n(17)([].reduce,!0),\"Array\",{reduce:function(t){return i(this,t,arguments.length,arguments[1],!1)}})},function(t,e,n){\"use strict\";var r=n(0),i=n(108);r(r.P+r.F*!n(17)([].reduceRight,!0),\"Array\",{reduceRight:function(t){return i(this,t,arguments.length,arguments[1],!0)}})},function(t,e,n){\"use strict\";var r=n(0),i=n(50)(!1),o=[].indexOf,a=!!o&&1/[1].indexOf(1,-0)<0;r(r.P+r.F*(a||!n(17)(o)),\"Array\",{indexOf:function(t){return a?o.apply(this,arguments)||0:i(this,t,arguments[1])}})},function(t,e,n){\"use strict\";var r=n(0),i=n(14),o=n(25),a=n(9),s=[].lastIndexOf,u=!!s&&1/[1].lastIndexOf(1,-0)<0;r(r.P+r.F*(u||!n(17)(s)),\"Array\",{lastIndexOf:function(t){if(u)return s.apply(this,arguments)||0;var e=i(this),n=a(e.length),r=n-1;for(arguments.length>1&&(r=Math.min(r,o(arguments[1]))),r<0&&(r=n+r);r>=0;r--)if(r in e&&e[r]===t)return r||0;return-1}})},function(t,e,n){var r=n(0);r(r.P,\"Array\",{copyWithin:n(109)}),n(40)(\"copyWithin\")},function(t,e,n){var r=n(0);r(r.P,\"Array\",{fill:n(85)}),n(40)(\"fill\")},function(t,e,n){\"use strict\";var r=n(0),i=n(20)(5),o=!0;\"find\"in[]&&Array(1).find(function(){o=!1}),r(r.P+r.F*o,\"Array\",{find:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(40)(\"find\")},function(t,e,n){\"use strict\";var r=n(0),i=n(20)(6),o=\"findIndex\",a=!0;o in[]&&Array(1)[o](function(){a=!1}),r(r.P+r.F*a,\"Array\",{findIndex:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(40)(o)},function(t,e,n){n(41)(\"Array\")},function(t,e,n){var r=n(2),i=n(74),o=n(6).f,a=n(36).f,s=n(80),u=n(87),c=r.RegExp,l=c,f=c.prototype,p=/a/g,d=/a/g,h=new c(p)!==p;if(n(7)&&(!h||n(1)(function(){return d[n(5)(\"match\")]=!1,c(p)!=p||c(d)==d||\"/a/i\"!=c(p,\"i\")}))){c=function(t,e){var n=this instanceof c,r=s(t),o=void 0===e;return!n&&r&&t.constructor===c&&o?t:i(h?new l(r&&!o?t.source:t,e):l((r=t instanceof c)?t.source:t,r&&o?u.call(t):e),n?this:f,c)};for(var v=function(t){t in c||o(c,t,{configurable:!0,get:function(){return l[t]},set:function(e){l[t]=e}})},m=a(l),g=0;m.length>g;)v(m[g++]);f.constructor=c,c.prototype=f,n(10)(r,\"RegExp\",c)}n(41)(\"RegExp\")},function(t,e,n){\"use strict\";n(111);var r=n(4),i=n(87),o=n(7),a=/./.toString,s=function(t){n(10)(RegExp.prototype,\"toString\",t,!0)};n(1)(function(){return\"/a/b\"!=a.call({source:\"a\",flags:\"b\"})})?s(function(){var t=r(this);return\"/\".concat(t.source,\"/\",\"flags\"in t?t.flags:!o&&t instanceof RegExp?i.call(t):void 0)}):\"toString\"!=a.name&&s(function(){return a.call(this)})},function(t,e,n){n(55)(\"match\",1,function(t,e,n){return[function(n){\"use strict\";var r=t(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,r):new RegExp(n)[e](String(r))},n]})},function(t,e,n){n(55)(\"replace\",2,function(t,e,n){return[function(r,i){\"use strict\";var o=t(this),a=void 0==r?void 0:r[e];return void 0!==a?a.call(r,o,i):n.call(String(o),r,i)},n]})},function(t,e,n){n(55)(\"search\",1,function(t,e,n){return[function(n){\"use strict\";var r=t(this),i=void 0==n?void 0:n[e];return void 0!==i?i.call(n,r):new RegExp(n)[e](String(r))},n]})},function(t,e,n){n(55)(\"split\",2,function(t,e,r){\"use strict\";var i=n(80),o=r,a=[].push;if(\"c\"==\"abbc\".split(/(b)*/)[1]||4!=\"test\".split(/(?:)/,-1).length||2!=\"ab\".split(/(?:ab)*/).length||4!=\".\".split(/(.?)(.?)/).length||\".\".split(/()()/).length>1||\"\".split(/.?/).length){var s=void 0===/()??/.exec(\"\")[1];r=function(t,e){var n=String(this);if(void 0===t&&0===e)return[];if(!i(t))return o.call(n,t,e);var r,u,c,l,f,p=[],d=(t.ignoreCase?\"i\":\"\")+(t.multiline?\"m\":\"\")+(t.unicode?\"u\":\"\")+(t.sticky?\"y\":\"\"),h=0,v=void 0===e?4294967295:e>>>0,m=new RegExp(t.source,d+\"g\");for(s||(r=new RegExp(\"^\"+m.source+\"$(?!\\\\s)\",d));(u=m.exec(n))&&!((c=u.index+u[0].length)>h&&(p.push(n.slice(h,u.index)),!s&&u.length>1&&u[0].replace(r,function(){for(f=1;f<arguments.length-2;f++)void 0===arguments[f]&&(u[f]=void 0)}),u.length>1&&u.index<n.length&&a.apply(p,u.slice(1)),l=u[0].length,h=c,p.length>=v));)m.lastIndex===u.index&&m.lastIndex++;return h===n.length?!l&&m.test(\"\")||p.push(\"\"):p.push(n.slice(h)),p.length>v?p.slice(0,v):p}}else\"0\".split(void 0,0).length&&(r=function(t,e){return void 0===t&&0===e?[]:o.call(this,t,e)});return[function(n,i){var o=t(this),a=void 0==n?void 0:n[e];return void 0!==a?a.call(n,o,i):r.call(String(o),n,i)},r]})},function(t,e,n){var r=n(2),i=n(88).set,o=r.MutationObserver||r.WebKitMutationObserver,a=r.process,s=r.Promise,u=\"process\"==n(23)(a);t.exports=function(){var t,e,n,c=function(){var r,i;for(u&&(r=a.domain)&&r.exit();t;){i=t.fn,t=t.next;try{i()}catch(r){throw t?n():e=void 0,r}}e=void 0,r&&r.enter()};if(u)n=function(){a.nextTick(c)};else if(!o||r.navigator&&r.navigator.standalone)if(s&&s.resolve){var l=s.resolve(void 0);n=function(){l.then(c)}}else n=function(){i.call(r,c)};else{var f=!0,p=document.createTextNode(\"\");new o(c).observe(p,{characterData:!0}),n=function(){p.data=f=!f}}return function(r){var i={fn:r,next:void 0};e&&(e.next=i),t||(t=i,n()),e=i}}},function(t,e){t.exports=function(t){try{return{e:!1,v:t()}}catch(t){return{e:!0,v:t}}}},function(t,e,n){\"use strict\";var r=n(115),i=n(44);t.exports=n(59)(\"Map\",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{get:function(t){var e=r.getEntry(i(this,\"Map\"),t);return e&&e.v},set:function(t,e){return r.def(i(this,\"Map\"),0===t?0:t,e)}},r,!0)},function(t,e,n){\"use strict\";var r=n(115),i=n(44);t.exports=n(59)(\"Set\",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return r.def(i(this,\"Set\"),t=0===t?0:t,t)}},r)},function(t,e,n){\"use strict\";var r,i=n(20)(0),o=n(10),a=n(28),s=n(97),u=n(116),c=n(3),l=n(1),f=n(44),p=a.getWeak,d=Object.isExtensible,h=u.ufstore,v={},m=function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},g={get:function(t){if(c(t)){var e=p(t);return!0===e?h(f(this,\"WeakMap\")).get(t):e?e[this._i]:void 0}},set:function(t,e){return u.def(f(this,\"WeakMap\"),t,e)}},y=t.exports=n(59)(\"WeakMap\",m,g,u,!0,!0);l(function(){return 7!=(new y).set((Object.freeze||Object)(v),7).get(v)})&&(s((r=u.getConstructor(m,\"WeakMap\")).prototype,g),a.NEED=!0,i([\"delete\",\"has\",\"get\",\"set\"],function(t){var e=y.prototype,n=e[t];o(e,t,function(e,i){if(c(e)&&!d(e)){this._f||(this._f=new r);var o=this._f[t](e,i);return\"set\"==t?this:o}return n.call(this,e,i)})}))},function(t,e,n){\"use strict\";var r=n(116),i=n(44);n(59)(\"WeakSet\",function(t){return function(){return t(this,arguments.length>0?arguments[0]:void 0)}},{add:function(t){return r.def(i(this,\"WeakSet\"),t,!0)}},r,!1,!0)},function(t,e,n){\"use strict\";var r=n(0),i=n(60),o=n(89),a=n(4),s=n(34),u=n(9),c=n(3),l=n(2).ArrayBuffer,f=n(57),p=o.ArrayBuffer,d=o.DataView,h=i.ABV&&l.isView,v=p.prototype.slice,m=i.VIEW;r(r.G+r.W+r.F*(l!==p),{ArrayBuffer:p}),r(r.S+r.F*!i.CONSTR,\"ArrayBuffer\",{isView:function(t){return h&&h(t)||c(t)&&m in t}}),r(r.P+r.U+r.F*n(1)(function(){return!new p(2).slice(1,void 0).byteLength}),\"ArrayBuffer\",{slice:function(t,e){if(void 0!==v&&void 0===e)return v.call(a(this),t);for(var n=a(this).byteLength,r=s(t,n),i=s(void 0===e?n:e,n),o=new(f(this,p))(u(i-r)),c=new d(this),l=new d(o),h=0;r<i;)l.setUint8(h++,c.getUint8(r++));return o}}),n(41)(\"ArrayBuffer\")},function(t,e,n){var r=n(0);r(r.G+r.W+r.F*!n(60).ABV,{DataView:n(89).DataView})},function(t,e,n){n(26)(\"Int8\",1,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)(\"Uint8\",1,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)(\"Uint8\",1,function(t){return function(e,n,r){return t(this,e,n,r)}},!0)},function(t,e,n){n(26)(\"Int16\",2,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)(\"Uint16\",2,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)(\"Int32\",4,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)(\"Uint32\",4,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)(\"Float32\",4,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){n(26)(\"Float64\",8,function(t){return function(e,n,r){return t(this,e,n,r)}})},function(t,e,n){var r=n(0),i=n(22),o=n(4),a=(n(2).Reflect||{}).apply,s=Function.apply;r(r.S+r.F*!n(1)(function(){a(function(){})}),\"Reflect\",{apply:function(t,e,n){var r=i(t),u=o(n);return a?a(r,e,u):s.call(r,e,u)}})},function(t,e,n){var r=n(0),i=n(35),o=n(22),a=n(4),s=n(3),u=n(1),c=n(98),l=(n(2).Reflect||{}).construct,f=u(function(){function t(){}return!(l(function(){},[],t)instanceof t)}),p=!u(function(){l(function(){})});r(r.S+r.F*(f||p),\"Reflect\",{construct:function(t,e){o(t),a(e);var n=arguments.length<3?t:o(arguments[2]);if(p&&!f)return l(t,e,n);if(t==n){switch(e.length){case 0:return new t;case 1:return new t(e[0]);case 2:return new t(e[0],e[1]);case 3:return new t(e[0],e[1],e[2]);case 4:return new t(e[0],e[1],e[2],e[3])}var r=[null];return r.push.apply(r,e),new(c.apply(t,r))}var u=n.prototype,d=i(s(u)?u:Object.prototype),h=Function.apply.call(t,d,e);return s(h)?h:d}})},function(t,e,n){var r=n(6),i=n(0),o=n(4),a=n(27);i(i.S+i.F*n(1)(function(){Reflect.defineProperty(r.f({},1,{value:1}),1,{value:2})}),\"Reflect\",{defineProperty:function(t,e,n){o(t),e=a(e,!0),o(n);try{return r.f(t,e,n),!0}catch(t){return!1}}})},function(t,e,n){var r=n(0),i=n(18).f,o=n(4);r(r.S,\"Reflect\",{deleteProperty:function(t,e){var n=i(o(t),e);return!(n&&!n.configurable)&&delete t[e]}})},function(t,e,n){\"use strict\";var r=n(0),i=n(4),o=function(t){this._t=i(t),this._i=0;var e,n=this._k=[];for(e in t)n.push(e)};n(106)(o,\"Object\",function(){var t,e=this._k;do{if(this._i>=e.length)return{value:void 0,done:!0}}while(!((t=e[this._i++])in this._t));return{value:t,done:!1}}),r(r.S,\"Reflect\",{enumerate:function(t){return new o(t)}})},function(t,e,n){var r=n(18),i=n(37),o=n(12),a=n(0),s=n(3),u=n(4);a(a.S,\"Reflect\",{get:function t(e,n){var a,c,l=arguments.length<3?e:arguments[2];return u(e)===l?e[n]:(a=r.f(e,n))?o(a,\"value\")?a.value:void 0!==a.get?a.get.call(l):void 0:s(c=i(e))?t(c,n,l):void 0}})},function(t,e,n){var r=n(18),i=n(0),o=n(4);i(i.S,\"Reflect\",{getOwnPropertyDescriptor:function(t,e){return r.f(o(t),e)}})},function(t,e,n){var r=n(0),i=n(37),o=n(4);r(r.S,\"Reflect\",{getPrototypeOf:function(t){return i(o(t))}})},function(t,e,n){var r=n(0);r(r.S,\"Reflect\",{has:function(t,e){return e in t}})},function(t,e,n){var r=n(0),i=n(4),o=Object.isExtensible;r(r.S,\"Reflect\",{isExtensible:function(t){return i(t),!o||o(t)}})},function(t,e,n){var r=n(0);r(r.S,\"Reflect\",{ownKeys:n(118)})},function(t,e,n){var r=n(0),i=n(4),o=Object.preventExtensions;r(r.S,\"Reflect\",{preventExtensions:function(t){i(t);try{return o&&o(t),!0}catch(t){return!1}}})},function(t,e,n){var r=n(6),i=n(18),o=n(37),a=n(12),s=n(0),u=n(30),c=n(4),l=n(3);s(s.S,\"Reflect\",{set:function t(e,n,s){var f,p,d=arguments.length<4?e:arguments[3],h=i.f(c(e),n);if(!h){if(l(p=o(e)))return t(p,n,s,d);h=u(0)}if(a(h,\"value\")){if(!1===h.writable||!l(d))return!1;if(f=i.f(d,n)){if(f.get||f.set||!1===f.writable)return!1;f.value=s,r.f(d,n,f)}else r.f(d,n,u(0,s));return!0}return void 0!==h.set&&(h.set.call(d,s),!0)}})},function(t,e,n){var r=n(0),i=n(72);i&&r(r.S,\"Reflect\",{setPrototypeOf:function(t,e){i.check(t,e);try{return i.set(t,e),!0}catch(t){return!1}}})},function(t,e,n){n(277),t.exports=n(8).Array.includes},function(t,e,n){\"use strict\";var r=n(0),i=n(50)(!0);r(r.P,\"Array\",{includes:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0)}}),n(40)(\"includes\")},function(t,e,n){n(279),t.exports=n(8).String.padStart},function(t,e,n){\"use strict\";var r=n(0),i=n(119),o=n(58);r(r.P+r.F*/Version\\/10\\.\\d+(\\.\\d+)? Safari\\//.test(o),\"String\",{padStart:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!0)}})},function(t,e,n){n(281),t.exports=n(8).String.padEnd},function(t,e,n){\"use strict\";var r=n(0),i=n(119),o=n(58);r(r.P+r.F*/Version\\/10\\.\\d+(\\.\\d+)? Safari\\//.test(o),\"String\",{padEnd:function(t){return i(this,t,arguments.length>1?arguments[1]:void 0,!1)}})},function(t,e,n){n(283),t.exports=n(67).f(\"asyncIterator\")},function(t,e,n){n(93)(\"asyncIterator\")},function(t,e,n){n(285),t.exports=n(8).Object.getOwnPropertyDescriptors},function(t,e,n){var r=n(0),i=n(118),o=n(14),a=n(18),s=n(83);r(r.S,\"Object\",{getOwnPropertyDescriptors:function(t){for(var e,n,r=o(t),u=a.f,c=i(r),l={},f=0;c.length>f;)void 0!==(n=u(r,e=c[f++]))&&s(l,e,n);return l}})},function(t,e,n){n(287),t.exports=n(8).Object.values},function(t,e,n){var r=n(0),i=n(120)(!1);r(r.S,\"Object\",{values:function(t){return i(t)}})},function(t,e,n){n(289),t.exports=n(8).Object.entries},function(t,e,n){var r=n(0),i=n(120)(!0);r(r.S,\"Object\",{entries:function(t){return i(t)}})},function(t,e,n){\"use strict\";n(112),n(291),t.exports=n(8).Promise.finally},function(t,e,n){\"use strict\";var r=n(0),i=n(8),o=n(2),a=n(57),s=n(114);r(r.P+r.R,\"Promise\",{finally:function(t){var e=a(this,i.Promise||o.Promise),n=\"function\"==typeof t;return this.then(n?function(n){return s(e,t()).then(function(){return n})}:t,n?function(n){return s(e,t()).then(function(){throw n})}:t)}})},function(t,e,n){n(293),n(294),n(295),t.exports=n(8)},function(t,e,n){var r=n(2),i=n(0),o=n(58),a=[].slice,s=/MSIE .\\./.test(o),u=function(t){return function(e,n){var r=arguments.length>2,i=!!r&&a.call(arguments,2);return t(r?function(){(\"function\"==typeof e?e:Function(e)).apply(this,i)}:e,n)}};i(i.G+i.B+i.F*s,{setTimeout:u(r.setTimeout),setInterval:u(r.setInterval)})},function(t,e,n){var r=n(0),i=n(88);r(r.G+r.B,{setImmediate:i.set,clearImmediate:i.clear})},function(t,e,n){for(var r=n(86),i=n(33),o=n(10),a=n(2),s=n(13),u=n(39),c=n(5),l=c(\"iterator\"),f=c(\"toStringTag\"),p=u.Array,d={CSSRuleList:!0,CSSStyleDeclaration:!1,CSSValueList:!1,ClientRectList:!1,DOMRectList:!1,DOMStringList:!1,DOMTokenList:!0,DataTransferItemList:!1,FileList:!1,HTMLAllCollection:!1,HTMLCollection:!1,HTMLFormElement:!1,HTMLSelectElement:!1,MediaList:!0,MimeTypeArray:!1,NamedNodeMap:!1,NodeList:!0,PaintRequestList:!1,Plugin:!1,PluginArray:!1,SVGLengthList:!1,SVGNumberList:!1,SVGPathSegList:!1,SVGPointList:!1,SVGStringList:!1,SVGTransformList:!1,SourceBufferList:!1,StyleSheetList:!0,TextTrackCueList:!1,TextTrackList:!1,TouchList:!1},h=i(d),v=0;v<h.length;v++){var m,g=h[v],y=d[g],b=a[g],_=b&&b.prototype;if(_&&(_[l]||s(_,l,p),_[f]||s(_,f,g),u[g]=p,y))for(m in r)_[m]||o(_,m,r[m],!0)}},function(t,e){!function(e){\"use strict\";var n,r=Object.prototype,i=r.hasOwnProperty,o=\"function\"==typeof Symbol?Symbol:{},a=o.iterator||\"@@iterator\",s=o.asyncIterator||\"@@asyncIterator\",u=o.toStringTag||\"@@toStringTag\",c=\"object\"==typeof t,l=e.regeneratorRuntime;if(l)c&&(t.exports=l);else{(l=e.regeneratorRuntime=c?t.exports:{}).wrap=_;var f=\"suspendedStart\",p=\"suspendedYield\",d=\"executing\",h=\"completed\",v={},m={};m[a]=function(){return this};var g=Object.getPrototypeOf,y=g&&g(g(M([])));y&&y!==r&&i.call(y,a)&&(m=y);var b=O.prototype=w.prototype=Object.create(m);S.prototype=b.constructor=O,O.constructor=S,O[u]=S.displayName=\"GeneratorFunction\",l.isGeneratorFunction=function(t){var e=\"function\"==typeof t&&t.constructor;return!!e&&(e===S||\"GeneratorFunction\"===(e.displayName||e.name))},l.mark=function(t){return Object.setPrototypeOf?Object.setPrototypeOf(t,O):(t.__proto__=O,u in t||(t[u]=\"GeneratorFunction\")),t.prototype=Object.create(b),t},l.awrap=function(t){return{__await:t}},k(E.prototype),E.prototype[s]=function(){return this},l.AsyncIterator=E,l.async=function(t,e,n,r){var i=new E(_(t,e,n,r));return l.isGeneratorFunction(e)?i:i.next().then(function(t){return t.done?t.value:i.next()})},k(b),b[u]=\"Generator\",b[a]=function(){return this},b.toString=function(){return\"[object Generator]\"},l.keys=function(t){var e=[];for(var n in t)e.push(n);return e.reverse(),function n(){for(;e.length;){var r=e.pop();if(r in t)return n.value=r,n.done=!1,n}return n.done=!0,n}},l.values=M,C.prototype={constructor:C,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=n,this.done=!1,this.delegate=null,this.method=\"next\",this.arg=n,this.tryEntries.forEach(A),!t)for(var e in this)\"t\"===e.charAt(0)&&i.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=n)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if(\"throw\"===t.type)throw t.arg;return this.rval},dispatchException:function(t){if(this.done)throw t;var e=this;function r(r,i){return s.type=\"throw\",s.arg=t,e.next=r,i&&(e.method=\"next\",e.arg=n),!!i}for(var o=this.tryEntries.length-1;o>=0;--o){var a=this.tryEntries[o],s=a.completion;if(\"root\"===a.tryLoc)return r(\"end\");if(a.tryLoc<=this.prev){var u=i.call(a,\"catchLoc\"),c=i.call(a,\"finallyLoc\");if(u&&c){if(this.prev<a.catchLoc)return r(a.catchLoc,!0);if(this.prev<a.finallyLoc)return r(a.finallyLoc)}else if(u){if(this.prev<a.catchLoc)return r(a.catchLoc,!0)}else{if(!c)throw new Error(\"try statement without catch or finally\");if(this.prev<a.finallyLoc)return r(a.finallyLoc)}}}},abrupt:function(t,e){for(var n=this.tryEntries.length-1;n>=0;--n){var r=this.tryEntries[n];if(r.tryLoc<=this.prev&&i.call(r,\"finallyLoc\")&&this.prev<r.finallyLoc){var o=r;break}}o&&(\"break\"===t||\"continue\"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var a=o?o.completion:{};return a.type=t,a.arg=e,o?(this.method=\"next\",this.next=o.finallyLoc,v):this.complete(a)},complete:function(t,e){if(\"throw\"===t.type)throw t.arg;return\"break\"===t.type||\"continue\"===t.type?this.next=t.arg:\"return\"===t.type?(this.rval=this.arg=t.arg,this.method=\"return\",this.next=\"end\"):\"normal\"===t.type&&e&&(this.next=e),v},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.finallyLoc===t)return this.complete(n.completion,n.afterLoc),A(n),v}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var n=this.tryEntries[e];if(n.tryLoc===t){var r=n.completion;if(\"throw\"===r.type){var i=r.arg;A(n)}return i}}throw new Error(\"illegal catch attempt\")},delegateYield:function(t,e,r){return this.delegate={iterator:M(t),resultName:e,nextLoc:r},\"next\"===this.method&&(this.arg=n),v}}}function _(t,e,n,r){var i=e&&e.prototype instanceof w?e:w,o=Object.create(i.prototype),a=new C(r||[]);return o._invoke=function(t,e,n){var r=f;return function(i,o){if(r===d)throw new Error(\"Generator is already running\");if(r===h){if(\"throw\"===i)throw o;return P()}for(n.method=i,n.arg=o;;){var a=n.delegate;if(a){var s=T(a,n);if(s){if(s===v)continue;return s}}if(\"next\"===n.method)n.sent=n._sent=n.arg;else if(\"throw\"===n.method){if(r===f)throw r=h,n.arg;n.dispatchException(n.arg)}else\"return\"===n.method&&n.abrupt(\"return\",n.arg);r=d;var u=x(t,e,n);if(\"normal\"===u.type){if(r=n.done?h:p,u.arg===v)continue;return{value:u.arg,done:n.done}}\"throw\"===u.type&&(r=h,n.method=\"throw\",n.arg=u.arg)}}}(t,n,a),o}function x(t,e,n){try{return{type:\"normal\",arg:t.call(e,n)}}catch(t){return{type:\"throw\",arg:t}}}function w(){}function S(){}function O(){}function k(t){[\"next\",\"throw\",\"return\"].forEach(function(e){t[e]=function(t){return this._invoke(e,t)}})}function E(t){var e;this._invoke=function(n,r){function o(){return new Promise(function(e,o){!function e(n,r,o,a){var s=x(t[n],t,r);if(\"throw\"!==s.type){var u=s.arg,c=u.value;return c&&\"object\"==typeof c&&i.call(c,\"__await\")?Promise.resolve(c.__await).then(function(t){e(\"next\",t,o,a)},function(t){e(\"throw\",t,o,a)}):Promise.resolve(c).then(function(t){u.value=t,o(u)},a)}a(s.arg)}(n,r,e,o)})}return e=e?e.then(o,o):o()}}function T(t,e){var r=t.iterator[e.method];if(r===n){if(e.delegate=null,\"throw\"===e.method){if(t.iterator.return&&(e.method=\"return\",e.arg=n,T(t,e),\"throw\"===e.method))return v;e.method=\"throw\",e.arg=new TypeError(\"The iterator does not provide a 'throw' method\")}return v}var i=x(r,t.iterator,e.arg);if(\"throw\"===i.type)return e.method=\"throw\",e.arg=i.arg,e.delegate=null,v;var o=i.arg;return o?o.done?(e[t.resultName]=o.value,e.next=t.nextLoc,\"return\"!==e.method&&(e.method=\"next\",e.arg=n),e.delegate=null,v):o:(e.method=\"throw\",e.arg=new TypeError(\"iterator result is not an object\"),e.delegate=null,v)}function D(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function A(t){var e=t.completion||{};e.type=\"normal\",delete e.arg,t.completion=e}function C(t){this.tryEntries=[{tryLoc:\"root\"}],t.forEach(D,this),this.reset(!0)}function M(t){if(t){var e=t[a];if(e)return e.call(t);if(\"function\"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,o=function e(){for(;++r<t.length;)if(i.call(t,r))return e.value=t[r],e.done=!1,e;return e.value=n,e.done=!0,e};return o.next=o}}return{next:P}}function P(){return{value:n,done:!0}}}(function(){return this}()||Function(\"return this\")())},function(t,e,n){var r=n(298);\"string\"==typeof r&&(r=[[t.i,r,\"\"]]),r.locals&&(t.exports=r.locals);(0,n(48).default)(\"d087ca94\",r,!1,{})},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,\".mx-datepicker[data-v-d01dd49] {\\n width: 210px;\\n color: inherit;\\n font: inherit;\\n user-select: none; }\\n .mx-datepicker[data-v-d01dd49] .mx-datepicker-popup {\\n box-shadow: none; }\\n .mx-datepicker[data-v-d01dd49] .mx-shortcuts-wrapper .mx-shortcuts {\\n font-weight: normal;\\n color: var(--color-text-lighter); }\\n .mx-datepicker[data-v-d01dd49] .mx-shortcuts-wrapper .mx-shortcuts:hover {\\n color: var(--color-text-light); }\\n .mx-datepicker[data-v-d01dd49] .mx-shortcuts-wrapper .mx-shortcuts:after {\\n color: var(--color-text-lighter);\\n opacity: 0.7; }\\n .mx-datepicker[data-v-d01dd49] .mx-datepicker-btn-confirm {\\n background-color: var(--color-primary-element);\\n color: var(--color-primary-text); }\\n .mx-datepicker[data-v-d01dd49] .mx-datepicker-btn-confirm:hover {\\n color: var(--color-primary-text);\\n border-color: var(--color-primary-element); }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar {\\n font: inherit;\\n color: var(--color-main-text); }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header {\\n display: flex;\\n align-items: center;\\n justify-content: space-between; }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a {\\n color: var(--color-text-lighter); }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a:hover {\\n color: var(--color-main-text);\\n background-color: var(--color-background-darker); }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-current-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-current-year {\\n padding: 5px;\\n border-radius: 30px;\\n height: 30px;\\n line-height: 20px; }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-last-year, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-last-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-year {\\n min-width: 22px;\\n height: 22px;\\n border-radius: 50%;\\n line-height: 22px; }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-month, .mx-datepicker[data-v-d01dd49] .mx-calendar-header > a.mx-icon-next-year {\\n order: 3; }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell {\\n opacity: 0.7;\\n border-radius: 50px;\\n transition: all 100ms ease-in-out; }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell:hover, .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell:focus, .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell.actived {\\n font-weight: bold;\\n opacity: 1;\\n color: var(--color-primary-text);\\n background-color: var(--color-primary-element); }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell.inrange {\\n background-color: transparent; }\\n .mx-datepicker[data-v-d01dd49] .mx-calendar-content .cell.disabled {\\n color: var(--color-text-lighter);\\n background-color: var(--color-background-darker);\\n opacity: 0.5;\\n border-radius: 0;\\n font-weight: normal; }\\n .mx-datepicker[data-v-d01dd49] .mx-panel-date tr:hover,\\n .mx-datepicker[data-v-d01dd49] .mx-panel-date tr:focus,\\n .mx-datepicker[data-v-d01dd49] .mx-panel-date tr:active {\\n background: none; }\\n .mx-datepicker[data-v-d01dd49] .mx-panel-date th {\\n color: var(--color-primary-element);\\n background-color: var(--color-main-background); }\\n .mx-datepicker[data-v-d01dd49] .mx-panel-date td.today {\\n color: var(--color-primary);\\n opacity: 1;\\n font-weight: bold; }\\n .mx-datepicker[data-v-d01dd49] .mx-panel-date td.last-month, .mx-datepicker[data-v-d01dd49] .mx-panel-date td.next-month {\\n color: var(--color-text-lighter);\\n opacity: 0.5; }\\n .mx-datepicker[data-v-d01dd49] .mx-time-list {\\n padding: 5px; }\\n .mx-datepicker[data-v-d01dd49] .mx-time-list li {\\n display: flex;\\n justify-content: center; }\\n .mx-datepicker[data-v-d01dd49] .mx-time-list::-webkit-scrollbar {\\n width: 5px;\\n height: 5px; }\\n .mx-datepicker[data-v-d01dd49] .mx-time-list::-webkit-scrollbar-thumb {\\n background-color: var(--color-background-darker);\\n border-radius: var(--border-radius);\\n box-shadow: none; }\\n .mx-datepicker[data-v-d01dd49] .mx-time-list:hover::-webkit-scrollbar-thumb {\\n background-color: var(--color-background-darker); }\\n\",\"\"])},function(t,e,n){t.exports=n(300)},function(t,e,n){\"use strict\";var r=n(16),i=n(121),o=n(301),a=n(90);function s(t){var e=new o(t),n=i(o.prototype.request,e);return r.extend(n,o.prototype,e),r.extend(n,e),n}var u=s(a);u.Axios=o,u.create=function(t){return s(r.merge(a,t))},u.Cancel=n(126),u.CancelToken=n(316),u.isCancel=n(125),u.all=function(t){return Promise.all(t)},u.spread=n(317),t.exports=u,t.exports.default=u},function(t,e,n){\"use strict\";var r=n(90),i=n(16),o=n(311),a=n(312);function s(t){this.defaults=t,this.interceptors={request:new o,response:new o}}s.prototype.request=function(t){\"string\"==typeof t&&(t=i.merge({url:arguments[0]},arguments[1])),(t=i.merge(r,{method:\"get\"},this.defaults,t)).method=t.method.toLowerCase();var e=[a,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach(function(t){e.unshift(t.fulfilled,t.rejected)}),this.interceptors.response.forEach(function(t){e.push(t.fulfilled,t.rejected)});e.length;)n=n.then(e.shift(),e.shift());return n},i.forEach([\"delete\",\"get\",\"head\",\"options\"],function(t){s.prototype[t]=function(e,n){return this.request(i.merge(n||{},{method:t,url:e}))}}),i.forEach([\"post\",\"put\",\"patch\"],function(t){s.prototype[t]=function(e,n,r){return this.request(i.merge(r||{},{method:t,url:e,data:n}))}}),t.exports=s},function(t,e){var n,r,i=t.exports={};function o(){throw new Error(\"setTimeout has not been defined\")}function a(){throw new Error(\"clearTimeout has not been defined\")}function s(t){if(n===setTimeout)return setTimeout(t,0);if((n===o||!n)&&setTimeout)return n=setTimeout,setTimeout(t,0);try{return n(t,0)}catch(e){try{return n.call(null,t,0)}catch(e){return n.call(this,t,0)}}}!function(){try{n=\"function\"==typeof setTimeout?setTimeout:o}catch(t){n=o}try{r=\"function\"==typeof clearTimeout?clearTimeout:a}catch(t){r=a}}();var u,c=[],l=!1,f=-1;function p(){l&&u&&(l=!1,u.length?c=u.concat(c):f=-1,c.length&&d())}function d(){if(!l){var t=s(p);l=!0;for(var e=c.length;e;){for(u=c,c=[];++f<e;)u&&u[f].run();f=-1,e=c.length}u=null,l=!1,function(t){if(r===clearTimeout)return clearTimeout(t);if((r===a||!r)&&clearTimeout)return r=clearTimeout,clearTimeout(t);try{r(t)}catch(e){try{return r.call(null,t)}catch(e){return r.call(this,t)}}}(t)}}function h(t,e){this.fun=t,this.array=e}function v(){}i.nextTick=function(t){var e=new Array(arguments.length-1);if(arguments.length>1)for(var n=1;n<arguments.length;n++)e[n-1]=arguments[n];c.push(new h(t,e)),1!==c.length||l||s(d)},h.prototype.run=function(){this.fun.apply(null,this.array)},i.title=\"browser\",i.browser=!0,i.env={},i.argv=[],i.version=\"\",i.versions={},i.on=v,i.addListener=v,i.once=v,i.off=v,i.removeListener=v,i.removeAllListeners=v,i.emit=v,i.prependListener=v,i.prependOnceListener=v,i.listeners=function(t){return[]},i.binding=function(t){throw new Error(\"process.binding is not supported\")},i.cwd=function(){return\"/\"},i.chdir=function(t){throw new Error(\"process.chdir is not supported\")},i.umask=function(){return 0}},function(t,e,n){\"use strict\";var r=n(16);t.exports=function(t,e){r.forEach(t,function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])})}},function(t,e,n){\"use strict\";var r=n(124);t.exports=function(t,e,n){var i=n.config.validateStatus;n.status&&i&&!i(n.status)?e(r(\"Request failed with status code \"+n.status,n.config,null,n.request,n)):t(n)}},function(t,e,n){\"use strict\";t.exports=function(t,e,n,r,i){return t.config=e,n&&(t.code=n),t.request=r,t.response=i,t}},function(t,e,n){\"use strict\";var r=n(16);function i(t){return encodeURIComponent(t).replace(/%40/gi,\"@\").replace(/%3A/gi,\":\").replace(/%24/g,\"$\").replace(/%2C/gi,\",\").replace(/%20/g,\"+\").replace(/%5B/gi,\"[\").replace(/%5D/gi,\"]\")}t.exports=function(t,e,n){if(!e)return t;var o;if(n)o=n(e);else if(r.isURLSearchParams(e))o=e.toString();else{var a=[];r.forEach(e,function(t,e){null!==t&&void 0!==t&&(r.isArray(t)?e+=\"[]\":t=[t],r.forEach(t,function(t){r.isDate(t)?t=t.toISOString():r.isObject(t)&&(t=JSON.stringify(t)),a.push(i(e)+\"=\"+i(t))}))}),o=a.join(\"&\")}return o&&(t+=(-1===t.indexOf(\"?\")?\"?\":\"&\")+o),t}},function(t,e,n){\"use strict\";var r=n(16),i=[\"age\",\"authorization\",\"content-length\",\"content-type\",\"etag\",\"expires\",\"from\",\"host\",\"if-modified-since\",\"if-unmodified-since\",\"last-modified\",\"location\",\"max-forwards\",\"proxy-authorization\",\"referer\",\"retry-after\",\"user-agent\"];t.exports=function(t){var e,n,o,a={};return t?(r.forEach(t.split(\"\\n\"),function(t){if(o=t.indexOf(\":\"),e=r.trim(t.substr(0,o)).toLowerCase(),n=r.trim(t.substr(o+1)),e){if(a[e]&&i.indexOf(e)>=0)return;a[e]=\"set-cookie\"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+\", \"+n:n}}),a):a}},function(t,e,n){\"use strict\";var r=n(16);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement(\"a\");function i(t){var r=t;return e&&(n.setAttribute(\"href\",r),r=n.href),n.setAttribute(\"href\",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,\"\"):\"\",host:n.host,search:n.search?n.search.replace(/^\\?/,\"\"):\"\",hash:n.hash?n.hash.replace(/^#/,\"\"):\"\",hostname:n.hostname,port:n.port,pathname:\"/\"===n.pathname.charAt(0)?n.pathname:\"/\"+n.pathname}}return t=i(window.location.href),function(e){var n=r.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},function(t,e,n){\"use strict\";var r=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\";function i(){this.message=\"String contains an invalid character\"}i.prototype=new Error,i.prototype.code=5,i.prototype.name=\"InvalidCharacterError\",t.exports=function(t){for(var e,n,o=String(t),a=\"\",s=0,u=r;o.charAt(0|s)||(u=\"=\",s%1);a+=u.charAt(63&e>>8-s%1*8)){if((n=o.charCodeAt(s+=.75))>255)throw new i;e=e<<8|n}return a}},function(t,e,n){\"use strict\";var r=n(16);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,i,o,a){var s=[];s.push(t+\"=\"+encodeURIComponent(e)),r.isNumber(n)&&s.push(\"expires=\"+new Date(n).toGMTString()),r.isString(i)&&s.push(\"path=\"+i),r.isString(o)&&s.push(\"domain=\"+o),!0===a&&s.push(\"secure\"),document.cookie=s.join(\"; \")},read:function(t){var e=document.cookie.match(new RegExp(\"(^|;\\\\s*)(\"+t+\")=([^;]*)\"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,\"\",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){\"use strict\";var r=n(16);function i(){this.handlers=[]}i.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},i.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},i.prototype.forEach=function(t){r.forEach(this.handlers,function(e){null!==e&&t(e)})},t.exports=i},function(t,e,n){\"use strict\";var r=n(16),i=n(313),o=n(125),a=n(90),s=n(314),u=n(315);function c(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return c(t),t.baseURL&&!s(t.url)&&(t.url=u(t.baseURL,t.url)),t.headers=t.headers||{},t.data=i(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers||{}),r.forEach([\"delete\",\"get\",\"head\",\"post\",\"put\",\"patch\",\"common\"],function(e){delete t.headers[e]}),(t.adapter||a.adapter)(t).then(function(e){return c(t),e.data=i(e.data,e.headers,t.transformResponse),e},function(e){return o(e)||(c(t),e&&e.response&&(e.response.data=i(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)})}},function(t,e,n){\"use strict\";var r=n(16);t.exports=function(t,e,n){return r.forEach(n,function(n){t=n(t,e)}),t}},function(t,e,n){\"use strict\";t.exports=function(t){return/^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(t)}},function(t,e,n){\"use strict\";t.exports=function(t,e){return e?t.replace(/\\/+$/,\"\")+\"/\"+e.replace(/^\\/+/,\"\"):t}},function(t,e,n){\"use strict\";var r=n(126);function i(t){if(\"function\"!=typeof t)throw new TypeError(\"executor must be a function.\");var e;this.promise=new Promise(function(t){e=t});var n=this;t(function(t){n.reason||(n.reason=new r(t),e(n.reason))})}i.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},i.source=function(){var t;return{token:new i(function(e){t=e}),cancel:t}},t.exports=i},function(t,e,n){\"use strict\";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e){!function(){var e=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/\",n={rotl:function(t,e){return t<<e|t>>>32-e},rotr:function(t,e){return t<<32-e|t>>>e},endian:function(t){if(t.constructor==Number)return 16711935&n.rotl(t,8)|4278255360&n.rotl(t,24);for(var e=0;e<t.length;e++)t[e]=n.endian(t[e]);return t},randomBytes:function(t){for(var e=[];t>0;t--)e.push(Math.floor(256*Math.random()));return e},bytesToWords:function(t){for(var e=[],n=0,r=0;n<t.length;n++,r+=8)e[r>>>5]|=t[n]<<24-r%32;return e},wordsToBytes:function(t){for(var e=[],n=0;n<32*t.length;n+=8)e.push(t[n>>>5]>>>24-n%32&255);return e},bytesToHex:function(t){for(var e=[],n=0;n<t.length;n++)e.push((t[n]>>>4).toString(16)),e.push((15&t[n]).toString(16));return e.join(\"\")},hexToBytes:function(t){for(var e=[],n=0;n<t.length;n+=2)e.push(parseInt(t.substr(n,2),16));return e},bytesToBase64:function(t){for(var n=[],r=0;r<t.length;r+=3)for(var i=t[r]<<16|t[r+1]<<8|t[r+2],o=0;o<4;o++)8*r+6*o<=8*t.length?n.push(e.charAt(i>>>6*(3-o)&63)):n.push(\"=\");return n.join(\"\")},base64ToBytes:function(t){t=t.replace(/[^A-Z0-9+\\/]/gi,\"\");for(var n=[],r=0,i=0;r<t.length;i=++r%4)0!=i&&n.push((e.indexOf(t.charAt(r-1))&Math.pow(2,-2*i+8)-1)<<2*i|e.indexOf(t.charAt(r))>>>6-2*i);return n}};t.exports=n}()},function(t,e,n){\"use strict\";var r=n(61);n.n(r).a},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,\"\\n.avatardiv[data-v-100e3b6f] {\\n\\tdisplay: inline-block;\\n}\\n.avatardiv.unknown[data-v-100e3b6f] {\\n\\tbackground-color: var(--color-text-maxcontrast);\\n\\tposition: relative;\\n}\\n.avatardiv > .unknown[data-v-100e3b6f] {\\n\\tposition: absolute;\\n\\tcolor: var(--color-main-background);\\n\\twidth: 100%;\\n\\ttext-align: center;\\n\\tdisplay: block;\\n\\tleft: 0;\\n\\ttop: 0;\\n}\\n.avatardiv img[data-v-100e3b6f] {\\n\\twidth: 100%;\\n\\theight: 100%;\\n}\\n.popovermenu-wrapper[data-v-100e3b6f] {\\n\\tposition: relative;\\n\\tdisplay: inline-block;\\n}\\n.popovermenu[data-v-100e3b6f] {\\n\\tdisplay: block;\\n\\tmargin: 0;\\n\\tfont-size: initial;\\n}\\n\",\"\"])},function(t,e,n){\"use strict\";var r=n(62);n.n(r).a},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,\"\\n.option[data-v-72601db4] {\\n display: flex;\\n align-items: center;\\n height: 32px;\\n width: 100%;\\n}\\n.option__avatar[data-v-72601db4] {\\n flex: 0 0 32px;\\n width: 32px;\\n height: 32px;\\n margin-right: 6px;\\n}\\n.option__desc[data-v-72601db4] {\\n display: flex;\\n flex-direction: column;\\n justify-content: center;\\n flex: 1 1;\\n}\\n.option__desc--lineone[data-v-72601db4] {\\n color: var(--color-text-light);\\n}\\n.option__desc--lineone--highlight[data-v-72601db4] {\\n font-weight: 600;\\n}\\n.option__desc--linetwo[data-v-72601db4] {\\n opacity: .7;\\n}\\n.option__icon[data-v-72601db4] {\\n width: 44px;\\n height: 44px;\\n flex: 0 0 44px;\\n margin: -6px;\\n opacity: .5;\\n}\\n\",\"\"])},function(t,e,n){var r=n(324);\"string\"==typeof r&&(r=[[t.i,r,\"\"]]),r.locals&&(t.exports=r.locals);(0,n(48).default)(\"20d0f5bc\",r,!1,{})},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,\".multiselect[data-v-d01dd49] {\\n margin: 1px 2px;\\n padding: 0 !important;\\n display: inline-block;\\n width: 160px;\\n position: relative;\\n background-color: var(--color-main-background);\\n /* results wrapper */ }\\n .multiselect[data-v-d01dd49].multiselect--active {\\n /* Opened: force display the input */ }\\n .multiselect[data-v-d01dd49].multiselect--active input.multiselect__input {\\n opacity: 1 !important;\\n cursor: text !important; }\\n .multiselect[data-v-d01dd49].multiselect--disabled,\\n .multiselect[data-v-d01dd49].multiselect--disabled .multiselect__single {\\n background-color: var(--color-background-dark) !important; }\\n .multiselect[data-v-d01dd49] .multiselect__tags {\\n /* space between tags and limit tag */\\n display: flex;\\n flex-wrap: nowrap;\\n overflow: hidden;\\n border: 1px solid var(--color-border-dark);\\n cursor: pointer;\\n position: relative;\\n border-radius: 3px;\\n height: 34px;\\n /* tag wrapper */\\n /* Single select default value */\\n /* displayed text if tag limit reached */\\n /* default multiselect input for search and placeholder */ }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap {\\n align-items: center;\\n display: inline-flex;\\n overflow: hidden;\\n max-width: 100%;\\n position: relative;\\n padding: 3px 5px;\\n flex-grow: 1;\\n /* no tags or simple select? Show input directly\\n\\t\\t\\tinput is used to display single value */\\n /* selected tag */ }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap:empty ~ input.multiselect__input {\\n opacity: 1 !important;\\n /* hide default empty text, show input instead */ }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap:empty ~ input.multiselect__input + span:not(.multiselect__single) {\\n display: none; }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag {\\n flex: 1 0 0;\\n line-height: 20px;\\n padding: 1px 5px;\\n background-image: none;\\n color: var(--color-text-lighter);\\n border: 1px solid var(--color-border-dark);\\n display: inline-flex;\\n align-items: center;\\n border-radius: 3px;\\n /* require to override the default width\\n\\t\\t\\t\\tand force the tag to shring properly */\\n min-width: 0;\\n max-width: 50%;\\n max-width: fit-content;\\n max-width: -moz-fit-content;\\n /* css hack, detect if more than two tags\\n\\t\\t\\t\\tif so, flex-basis is set to half */\\n /* ellipsis the groups to be sure\\n\\t\\t\\t\\twe display at least two of them */ }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag:only-child {\\n flex: 0 1 auto; }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag:not(:last-child) {\\n margin-right: 5px; }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__tags-wrap .multiselect__tag > span {\\n white-space: nowrap;\\n text-overflow: ellipsis;\\n overflow: hidden; }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__single {\\n padding: 8px 10px;\\n flex: 0 0 100%;\\n z-index: 1;\\n /* above input */\\n background-color: var(--color-main-background);\\n cursor: pointer;\\n line-height: 17px; }\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__strong,\\n .multiselect[data-v-d01dd49] .multiselect__tags .multiselect__limit {\\n flex: 0 0 auto;\\n line-height: 20px;\\n color: var(--color-text-lighter);\\n display: inline-flex;\\n align-items: center;\\n opacity: .7;\\n margin-right: 5px;\\n /* above the input */\\n z-index: 5; }\\n .multiselect[data-v-d01dd49] .multiselect__tags input.multiselect__input {\\n width: 100% !important;\\n position: absolute !important;\\n margin: 0;\\n opacity: 0;\\n /* let's leave it on top of tags but hide it */\\n height: 100%;\\n border: none;\\n /* override hide to force show the placeholder */\\n display: block !important;\\n /* only when not active */\\n cursor: pointer; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper {\\n position: absolute;\\n width: 100%;\\n margin-top: -1px;\\n border: 1px solid var(--color-border-dark);\\n background: var(--color-main-background);\\n z-index: 50;\\n max-height: 250px;\\n overflow-y: auto; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper .multiselect__content {\\n width: 100%;\\n padding: 5px 0; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li {\\n position: relative;\\n display: flex;\\n align-items: center;\\n background-color: transparent; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li,\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li span {\\n cursor: pointer; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span {\\n padding: 5px;\\n white-space: nowrap;\\n overflow: hidden;\\n text-overflow: ellipsis;\\n margin: 0;\\n height: auto;\\n min-height: 1em;\\n -webkit-touch-callout: none;\\n -webkit-user-select: none;\\n -moz-user-select: none;\\n -ms-user-select: none;\\n user-select: none;\\n display: inline-flex;\\n align-items: center;\\n background-color: transparent;\\n color: var(--color-text-lighter);\\n width: 100%;\\n /* selected checkmark icon */\\n /* add the prop tag-placeholder=\\\"create\\\" to add the +\\n\\t\\t\\t\\ticon on top of an unknown-and-ready-to-be-created entry */ }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span::before {\\n content: ' ';\\n background-image: var(--icon-checkmark-000);\\n background-repeat: no-repeat;\\n background-position: center;\\n min-width: 16px;\\n min-height: 16px;\\n display: block;\\n opacity: .5;\\n margin-right: 5px;\\n visibility: hidden; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span.multiselect__option--disabled {\\n background-color: var(--color-background-dark);\\n opacity: .5; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span[data-select='create']::before {\\n background-image: var(--icon-add-000);\\n visibility: visible; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span.multiselect__option--highlight {\\n color: var(--color-main-text);\\n background-color: var(--color-background-dark); }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span:not(.multiselect__option--disabled):hover::before {\\n opacity: .3; }\\n .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span.multiselect__option--selected::before, .multiselect[data-v-d01dd49] .multiselect__content-wrapper li > span:not(.multiselect__option--disabled):hover::before {\\n visibility: visible; }\\n\",\"\"])},function(t,e,n){\"use strict\";var r=n(63);n.n(r).a},function(t,e,n){(t.exports=n(47)(!1)).push([t.i,\"\\n.action-item[data-v-886e6e62] {\\n display: inline-block;\\n}\\n.action-item--single[data-v-886e6e62], .action-item__menutoggle[data-v-886e6e62] {\\n padding: 14px;\\n height: 44px;\\n width: 44px;\\n cursor: pointer;\\n}\\n.action-item__menutoggle[data-v-886e6e62] {\\n display: inline-block;\\n}\\n.action-item--multiple[data-v-886e6e62] {\\n position: relative;\\n}\\n\",\"\"])},function(t,e,n){\"use strict\";n.r(e);var r={};n.r(r),n.d(r,\"AppNavigation\",function(){return g}),n.d(r,\"PopoverMenu\",function(){return p}),n.d(r,\"DatetimePicker\",function(){return x}),n.d(r,\"Multiselect\",function(){return H}),n.d(r,\"Avatar\",function(){return j}),n.d(r,\"Action\",function(){return W});n(131);var i=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{class:{\"icon-loading\":t.menu.loading},attrs:{id:\"app-navigation\"}},[t.menu.new?n(\"div\",{staticClass:\"app-navigation-new\"},[n(\"button\",{class:t.menu.new.icon,attrs:{id:t.menu.new.id,type:\"button\",disabled:t.menu.new.disabled},on:{click:t.menu.new.action}},[t._v(\"\\n\\t\\t\\t\"+t._s(t.menu.new.text)+\"\\n\\t\\t\")])]):t._e(),t._v(\" \"),n(\"ul\",{attrs:{id:t.menu.id}},t._l(t.menu.items,function(t){return n(\"app-navigation-item\",{key:t.key,attrs:{item:t}})})),t._v(\" \"),t.$slots[\"settings-content\"]?n(\"div\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:t.closeMenu,expression:\"closeMenu\"}],class:{open:t.opened},attrs:{id:\"app-settings\"}},[n(\"div\",{attrs:{id:\"app-settings-header\"}},[n(\"button\",{staticClass:\"settings-button\",attrs:{\"data-apps-slide-toggle\":\"#app-settings-content\"},on:{click:t.toggleMenu}},[t._v(t._s(t.t(\"contacts\",\"Settings\")))])]),t._v(\" \"),n(\"div\",{attrs:{id:\"app-settings-content\"}},[t._t(\"settings-content\")],2)]):t._e()])};i._withStripped=!0;var o=function(){var t=this,e=t.$createElement,n=t._self._c||e;return t.item.caption?n(\"li\",{staticClass:\"app-navigation-caption\"},[t._v(t._s(t.item.text))]):n(\"nav-element\",t._b({class:[{\"icon-loading-small\":t.item.loading,open:t.opened,collapsible:t.collapsible},t.item.classes],attrs:{id:t.item.id,title:t.item.title}},\"nav-element\",t.navElement(t.item),!1),[t.item.bullet?n(\"div\",{staticClass:\"app-navigation-entry-bullet\",style:{backgroundColor:t.item.bullet}}):t._e(),t._v(\" \"),t.collapsible?n(\"button\",{staticClass:\"collapse\",on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.toggleCollapse(e)}}}):t._e(),t._v(\" \"),t.item.action?n(\"a\",{class:t.item.icon,attrs:{href:\"#\"},on:{click:function(e){return e.preventDefault(),e.stopPropagation(),t.item.action(e)}}},[t.item.iconUrl?n(\"img\",{attrs:{alt:t.item.text,src:t.item.iconUrl}}):t._e(),t._v(\"\\n\\t\\t\"+t._s(t.item.text)+\"\\n\\t\")]):n(\"a\",{class:t.item.icon,attrs:{href:t.item.href?t.item.href:\"#\"}},[t.item.iconUrl?n(\"img\",{attrs:{alt:t.item.text,src:t.item.iconUrl}}):t._e(),t._v(\"\\n\\t\\t\"+t._s(t.item.text)+\"\\n\\t\")]),t._v(\" \"),t.item.utils?n(\"div\",{staticClass:\"app-navigation-entry-utils\"},[n(\"ul\",[Number.isInteger(t.item.utils.counter)&&t.item.utils.counter>0?n(\"li\",{staticClass:\"app-navigation-entry-utils-counter\"},[t._v(\"\\n\\t\\t\\t\\t\"+t._s(t.item.utils.counter)+\"\\n\\t\\t\\t\")]):t._e(),t._v(\" \"),t.item.utils.actions&&1===t.item.utils.actions.length?n(\"li\",{staticClass:\"app-navigation-entry-utils-menu-button\"},[n(\"button\",{class:t.item.utils.actions[0].icon,attrs:{title:t.item.utils.actions[0].text},on:{click:t.item.utils.actions[0].action}})]):t.item.utils.actions&&2===t.item.utils.actions.length&&!Number.isInteger(t.item.utils.counter)?t._l(t.item.utils.actions,function(t){return n(\"li\",{key:t.action,staticClass:\"app-navigation-entry-utils-menu-button\"},[n(\"button\",{class:t.icon,attrs:{title:t.text},on:{click:t.action}})])}):t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n(\"li\",{staticClass:\"app-navigation-entry-utils-menu-button\"},[n(\"button\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:t.hideMenu,expression:\"hideMenu\"}],on:{click:t.showMenu}})]):t._e()],2)]):t._e(),t._v(\" \"),t.item.utils&&t.item.utils.actions&&t.item.utils.actions.length>1&&(Number.isInteger(t.item.utils.counter)||t.item.utils.actions.length>2)?n(\"div\",{staticClass:\"app-navigation-entry-menu\",class:{open:t.openedMenu}},[n(\"popover-menu\",{attrs:{menu:t.item.utils.actions}})],1):t._e(),t._v(\" \"),t.item.undo?n(\"div\",{staticClass:\"app-navigation-entry-deleted\"},[n(\"div\",{staticClass:\"app-navigation-entry-deleted-description\"},[t._v(t._s(t.item.undo.text))]),t._v(\" \"),n(\"button\",{staticClass:\"app-navigation-entry-deleted-button icon-history\",attrs:{title:t.t(\"settings\",\"Undo\")}})]):t._e(),t._v(\" \"),t.item.edit?n(\"div\",{staticClass:\"app-navigation-entry-edit\"},[n(\"form\",{on:{submit:function(e){return e.preventDefault(),e.stopPropagation(),t.item.edit.action(e)}}},[n(\"input\",{attrs:{placeholder:t.item.edit.text,type:\"text\"}}),t._v(\" \"),n(\"input\",{staticClass:\"icon-confirm\",attrs:{type:\"submit\",value:\"\"}}),t._v(\" \"),n(\"input\",{staticClass:\"icon-close\",attrs:{type:\"submit\",value:\"\"},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.cancelEdit(e)}}})])]):t._e(),t._v(\" \"),t.item.children?n(\"ul\",t._l(t.item.children,function(t,e){return n(\"app-navigation-item\",{key:e,attrs:{item:t}})})):t._e()])};o._withStripped=!0;var a=function(){var t=this.$createElement,e=this._self._c||t;return e(\"ul\",this._l(this.menu,function(t,n){return e(\"popover-menu-item\",{key:n,attrs:{item:t}})}))};a._withStripped=!0;var s=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"li\",[t.item.href?n(\"a\",{attrs:{href:t.item.href?t.item.href:\"#\",target:t.item.target?t.item.target:\"\",rel:\"noreferrer noopener\"},on:{click:t.action}},[t.iconIsUrl?n(\"img\",{attrs:{src:t.item.icon}}):n(\"span\",{class:t.item.icon}),t._v(\" \"),t.item.text?n(\"span\",[t._v(t._s(t.item.text))]):t.item.longtext?n(\"p\",[t._v(t._s(t.item.longtext))]):t._e()]):t.item.input?n(\"span\",{staticClass:\"menuitem\"},[\"checkbox\"!==t.item.input?n(\"span\",{class:t.item.icon}):t._e(),t._v(\" \"),\"text\"===t.item.input?n(\"form\",{class:t.item.input,on:{submit:function(e){return e.preventDefault(),t.item.action(e)}}},[n(\"input\",{attrs:{type:t.item.input,placeholder:t.item.text,required:\"\"},domProps:{value:t.item.value}}),t._v(\" \"),n(\"input\",{staticClass:\"icon-confirm\",attrs:{type:\"submit\",value:\"\"}})]):[\"checkbox\"===t.item.input?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:t.item.model,expression:\"item.model\"}],class:t.item.input,attrs:{id:t.key,type:\"checkbox\"},domProps:{checked:Array.isArray(t.item.model)?t._i(t.item.model,null)>-1:t.item.model},on:{change:[function(e){var n=t.item.model,r=e.target,i=!!r.checked;if(Array.isArray(n)){var o=t._i(n,null);r.checked?o<0&&t.$set(t.item,\"model\",n.concat([null])):o>-1&&t.$set(t.item,\"model\",n.slice(0,o).concat(n.slice(o+1)))}else t.$set(t.item,\"model\",i)},t.item.action]}}):\"radio\"===t.item.input?n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:t.item.model,expression:\"item.model\"}],class:t.item.input,attrs:{id:t.key,type:\"radio\"},domProps:{checked:t._q(t.item.model,null)},on:{change:[function(e){t.$set(t.item,\"model\",null)},t.item.action]}}):n(\"input\",{directives:[{name:\"model\",rawName:\"v-model\",value:t.item.model,expression:\"item.model\"}],class:t.item.input,attrs:{id:t.key,type:t.item.input},domProps:{value:t.item.model},on:{change:t.item.action,input:function(e){e.target.composing||t.$set(t.item,\"model\",e.target.value)}}}),t._v(\" \"),n(\"label\",{attrs:{for:t.key},on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.item.action(e)}}},[t._v(t._s(t.item.text))])]],2):t.item.action?n(\"button\",{on:{click:function(e){return e.stopPropagation(),e.preventDefault(),t.item.action(e)}}},[n(\"span\",{class:t.item.icon}),t._v(\" \"),t.item.text?n(\"span\",[t._v(t._s(t.item.text))]):t.item.longtext?n(\"p\",[t._v(t._s(t.item.longtext))]):t._e()]):n(\"span\",{staticClass:\"menuitem\"},[n(\"span\",{class:t.item.icon}),t._v(\" \"),t.item.text?n(\"span\",[t._v(t._s(t.item.text))]):t.item.longtext?n(\"p\",[t._v(t._s(t.item.longtext))]):t._e()])])};function u(t,e,n,r,i,o,a,s){var u,c=\"function\"==typeof t?t.options:t;if(e&&(c.render=e,c.staticRenderFns=n,c._compiled=!0),r&&(c.functional=!0),o&&(c._scopeId=\"data-v-\"+o),a?(u=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),i&&i.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(a)},c._ssrRegister=u):i&&(u=s?function(){i.call(this,this.$root.$options.shadowRoot)}:i),u)if(c.functional){c._injectStyles=u;var l=c.render;c.render=function(t,e){return u.call(e),l(t,e)}}else{var f=c.beforeCreate;c.beforeCreate=f?[].concat(f,u):[u]}return{exports:t,options:c}}s._withStripped=!0;var c=u({name:\"PopoverMenuItem\",props:{item:{type:Object,required:!0,default:function(){return{key:\"nextcloud-link\",href:\"https://nextcloud.com\",icon:\"icon-links\",text:\"Nextcloud\"}},validator:function(t){return!t.input||-1!==[\"text\",\"checkbox\"].indexOf(t.input)}}},computed:{key:function(){return this.item.key?this.item.key:Math.round(16*Math.random()*1e6).toString(16)},iconIsUrl:function(){try{return new URL(this.item.icon),!0}catch(t){return!1}}},methods:{action:function(t){this.item.action&&this.item.action(t)}}},s,[],!1,null,null,null);c.options.__file=\"src/components/PopoverMenu/PopoverMenuItem.vue\";var l=u({name:\"PopoverMenu\",components:{PopoverMenuItem:c.exports},props:{menu:{type:Array,default:function(){return[{href:\"https://nextcloud.com\",icon:\"icon-links\",text:\"Nextcloud\"}]},required:!0}}},a,[],!1,null,null,null);l.options.__file=\"src/components/PopoverMenu/PopoverMenu.vue\";var f=l.exports,p=f,d=n(29),h=n.n(d),v=u({name:\"AppNavigationItem\",components:{PopoverMenu:f},directives:{ClickOutside:h.a},props:{item:{type:Object,required:!0}},data:function(){return{openedMenu:!1,opened:!!this.item.opened}},computed:{collapsible:function(){return this.item.collapsible&&this.item.children&&this.item.children.length>0}},watch:{item:function(t,e){this.opened=!!e.opened}},mounted:function(){this.popupItem=this.$el},methods:{showMenu:function(){this.openedMenu=!0},hideMenu:function(){this.openedMenu=!1},toggleCollapse:function(){this.opened=!this.opened},cancelEdit:function(t){Array.isArray(this.item.classes)&&(this.item.classes=this.item.classes.filter(function(t){return\"editing\"!==t})),this.item.edit.reset(t)},navElement:function(t){if(t.router){var e=t.router.exact;return void 0===t.router.exact&&(e=!0),{is:\"router-link\",tag:\"li\",to:t.router,exact:e}}return{is:\"li\"}}}},o,[],!1,null,null,null);\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */v.options.__file=\"src/components/AppNavigation/AppNavigationItem.vue\";var m=u({name:\"AppNavigation\",components:{AppNavigationItem:v.exports},directives:{ClickOutside:h.a},props:{menu:{type:Object,required:!0,default:function(){return{new:{id:\"new-item\",action:function(){return alert(\"Success!\")},icon:\"icon-add\",text:\"New item\"},items:[]}}}},data:function(){return{opened:!1}},methods:{toggleMenu:function(){this.opened=!this.opened},closeMenu:function(){this.opened=!1}}},i,[],!1,null,null,null);m.options.__file=\"src/components/AppNavigation/AppNavigation.vue\";var g=m.exports,y=function(t){t.mounted?Array.isArray(t.mounted)||(t.mounted=[t.mounted]):t.mounted=[],t.mounted.push(function(){this.$el.setAttribute(\"data-v-\".concat(\"d01dd49\"),\"\")})},b=n(49),_=n.n(b);\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */n(297);\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\ny(_.a),_.a.methods.displayPopup=function(){var t=this.$el.querySelector(\".mx-datepicker-popup\");t&&!t.classList.contains(\"popovermenu\")&&(t.className+=\" popovermenu menu-center open\")};var x=_.a,w=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"vue-multiselect\",t._g(t._b({attrs:{value:t.value,limit:t.maxOptions,\"close-on-select\":!t.multiple,multiple:t.multiple,label:t.label,\"track-by\":t.trackBy,\"tag-placeholder\":\"create\"},on:{\"update:value\":function(e){t.$emit(\"update:value\",t.value)}},scopedSlots:t._u([{key:\"option\",fn:function(e){var r=e.option;return t.userSelect?[n(\"avatar-select-option\",{attrs:{option:r}})]:void 0}}])},\"vue-multiselect\",t.$attrs,!1),t.$listeners),[t.multiple?n(\"span\",{directives:[{name:\"tooltip\",rawName:\"v-tooltip.auto\",value:t.formatLimitTitle(t.value),expression:\"formatLimitTitle(value)\",modifiers:{auto:!0}}],staticClass:\"multiselect__limit\",attrs:{slot:\"limit\"},slot:\"limit\"},[t._v(\"\\n\\t\\t\"+t._s(t.limitString)+\"\\n\\t\")]):t._e()])};w._withStripped=!0;var S=n(128),O=n.n(S),k=n(64),E=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"span\",{staticClass:\"option\"},[n(\"avatar\",{staticClass:\"option__avatar\",attrs:{\"display-name\":t.option.displayName,user:t.option.user,\"disable-tooltip\":!0}}),t._v(\" \"),n(\"div\",{staticClass:\"option__desc\"},[n(\"span\",{staticClass:\"option__desc--lineone\"},[t._v(t._s(t.option.displayName))]),t._v(\" \"),t.option.desc?n(\"span\",{staticClass:\"option__desc--linetwo\"},[t._v(t._s(t.option.desc))]):t._e()]),t._v(\" \"),t.option.icon?n(\"span\",{staticClass:\"icon option__icon\",class:t.option.icon}):t._e()],1)};E._withStripped=!0;var T=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{directives:[{name:\"tooltip\",rawName:\"v-tooltip\",value:t.tooltip,expression:\"tooltip\"},{name:\"click-outside\",rawName:\"v-click-outside\",value:t.closeMenu,expression:\"closeMenu\"}],staticClass:\"avatardiv popovermenu-wrapper\",class:{\"icon-loading\":t.loadingState,unknown:t.userDoesNotExist},style:t.avatarStyle,on:{click:t.toggleMenu}},[t.loadingState||t.userDoesNotExist?t._e():n(\"img\",{attrs:{src:t.avatarUrlLoaded}}),t._v(\" \"),t.userDoesNotExist?n(\"div\",{staticClass:\"unknown\"},[t._v(t._s(t.initials))]):t._e(),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.contactsMenuOpenState,expression:\"contactsMenuOpenState\"}],staticClass:\"popovermenu\"},[n(\"popover-menu\",{attrs:{\"is-open\":t.contactsMenuOpenState,menu:t.menu}})],1)])};T._withStripped=!0;var D=n(129),A=n.n(D),C=n(130),M=n.n(C),P=function(t){var e=t.toLowerCase();function n(t,e,n){this.r=t,this.g=e,this.b=n}function r(t,e,r){var i=[];i.push(e);for(var o=function(t,e){var n=new Array(3);return n[0]=(e[1].r-e[0].r)/t,n[1]=(e[1].g-e[0].g)/t,n[2]=(e[1].b-e[0].b)/t,n}(t,[e,r]),a=1;a<t;a++){var s=parseInt(e.r+o[0]*a),u=parseInt(e.g+o[1]*a),c=parseInt(e.b+o[2]*a);i.push(new n(s,u,c))}return i}null===e.match(/^([0-9a-f]{4}-?){8}$/)&&(e=M()(e)),e=e.replace(/[^0-9a-f]/g,\"\");var i=new n(182,70,157),o=new n(221,203,85),a=new n(0,130,201),s=r(6,i,o),u=r(6,o,a),c=r(6,a,i);return s.concat(u).concat(c)[function(t,e){for(var n=0,r=[],i=0;i<t.length;i++)r.push(parseInt(t.charAt(i),16)%16);for(var o in r)n+=r[o];return parseInt(parseInt(n)%e)}(e,18)]},N={name:\"Avatar\",directives:{tooltip:k.a,ClickOutside:h.a},components:{PopoverMenu:f},props:{url:{type:String,default:void 0},user:{type:String,default:void 0},displayName:{type:String,default:void 0},size:{type:Number,default:32},allowPlaceholder:{type:Boolean,default:!0},disableTooltip:{type:Boolean,default:!1},isNoUser:{type:Boolean,default:!1}},data:function(){return{avatarUrlLoaded:null,userDoesNotExist:!1,loadingState:!0,contactsMenuActions:[],contactsMenuOpenState:!1}},computed:{getUserIdentifier:function(){return this.isDisplayNameDefined?this.displayName:this.isUserDefined?this.user:\"\"},isUserDefined:function(){return void 0!==this.user},isDisplayNameDefined:function(){return void 0!==this.displayName},isUrlDefined:function(){return void 0!==this.url},shouldShowPlaceholder:function(){return this.allowPlaceholder&&this.userDoesNotExist},avatarStyle:function(){var t={width:this.size+\"px\",height:this.size+\"px\",lineHeight:this.size+\"px\",fontSize:Math.round(.55*this.size)+\"px\"};if(!this.shouldShowPlaceholder)return t;var e=P(this.getUserIdentifier);return t.backgroundColor=\"rgb(\"+e.r+\", \"+e.g+\", \"+e.b+\")\",t},tooltip:function(){return!this.disableTooltip&&this.displayName},initials:function(){return this.shouldShowPlaceholder?this.getUserIdentifier.charAt(0).toUpperCase():\"?\"},menu:function(){return this.contactsMenuActions.map(function(t){return{href:t.hyperlink,icon:t.icon,text:t.title}})}},watch:{url:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()},user:function(){this.userDoesNotExist=!1,this.loadAvatarUrl()}},mounted:function(){this.loadAvatarUrl()},methods:{toggleMenu:function(){this.user===OC.getCurrentUser().uid||this.userDoesNotExist||this.url||(this.contactsMenuOpenState=!this.contactsMenuOpenState,this.contactsMenuOpenState&&this.fetchContactsMenu())},closeMenu:function(){this.contactsMenuOpenState=!1},fetchContactsMenu:function(){var t=this;A.a.post(OC.generateUrl(\"contactsmenu/findOne\"),\"shareType=0&shareWith=\"+encodeURIComponent(this.user)).then(function(e){t.contactsMenuActions=[e.data.topAction].concat(e.data.actions)}).catch(function(){t.contactsMenuOpenState=!1})},loadAvatarUrl:function(){var t=this;if(this.loadingState=!0,!this.isUrlDefined&&(!this.isUserDefined||this.isNoUser))return this.loadingState=!1,void(this.userDoesNotExist=!0);var e=OC.generateUrl(\"/avatar/{user}/{size}\",{user:this.user,size:Math.ceil(this.size*window.devicePixelRatio)});this.user===OC.getCurrentUser().uid&&\"undefined\"!=typeof oc_userconfig&&(e+=\"?v=\"+oc_userconfig.avatar.version),this.isUrlDefined&&(e=this.url);var n=new Image;n.onload=function(){t.avatarUrlLoaded=e,t.loadingState=!1},n.onerror=function(){t.userDoesNotExist=!0,t.loadingState=!1},n.src=e}}},L=(n(319),u(N,T,[],!1,null,\"100e3b6f\",null));L.options.__file=\"src/components/Avatar/Avatar.vue\";var j=L.exports,F={name:\"AvatarSelectOption\",components:{Avatar:j},props:{option:{type:Object,default:function(){return{desc:\"\",displayName:\"Admin\",icon:\"icon-user\",user:\"admin\"}},validator:function(t){return\"displayName\"in t}}}},I=(n(321),u(F,E,[],!1,null,\"72601db4\",null));\n/**\n * @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>\n *\n * @author Julius Härtl <jus@bitgrid.net>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */I.options.__file=\"src/components/Multiselect/AvatarSelectOption.vue\";var $=I.exports;function R(t){return(R=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t})(t)}var B=u({name:\"Multiselect\",components:{VueMultiselect:O.a,AvatarSelectOption:$},directives:{tooltip:k.a},inheritAttrs:!1,props:{value:{default:function(){return[]}},multiple:{type:Boolean,default:!1},limit:{type:Number,default:99999},label:{type:String},trackBy:{type:String},userSelect:{type:Boolean,default:!1},autoLimit:{type:Boolean,default:!0},tagWidth:{type:Number,default:150,validator:function(t){return t>0}}},data:function(){return{elWidth:0}},computed:{maxOptions:function(){if(this.autoLimit&&this.elWidth>0&&0!==this.tagWidth){var t=Math.floor(this.elWidth/this.tagWidth);return t>0?t:1}return this.limit?this.limit:9999},limitString:function(){return\"+\".concat(this.value.length-this.maxOptions)}},watch:{value:function(){this.updateWidth()}},mounted:function(){this.updateWidth(),window.addEventListener(\"resize\",this.updateWidth)},beforeDestroy:function(){window.removeEventListener(\"resize\",this.updateWidth)},methods:{formatLimitTitle:function(t){var e=this;if(Array.isArray(t)&&t.length>0){var n=t;return\"object\"===R(t[0])&&(n=t.map(function(t){return t[e.label]})),n.slice(this.maxOptions).join(\", \")}return\"\"},updateWidth:function(){this.elWidth=this.$el.querySelector(\".multiselect__tags-wrap\").offsetWidth-10}}},w,[],!1,null,null,null);B.options.__file=\"src/components/Multiselect/Multiselect.vue\";var V=B.exports;n(323);\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\ny(V);var H=V,U=function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"action\",t._g(t._b({staticClass:\"action-item\",class:[t.isSingleAction?t.firstAction.icon+\" action-item--single\":\"action-item--multiple\"],attrs:{href:t.isSingleAction&&t.firstAction.href?t.firstAction.href:\"#\"}},\"action\",t.mainActionElement(),!1),t.isSingleAction&&t.firstAction.action?{click:t.firstAction.action}:{}),[t.isSingleAction?t._e():[n(\"div\",{directives:[{name:\"click-outside\",rawName:\"v-click-outside\",value:t.closeMenu,expression:\"closeMenu\"}],staticClass:\"action-item__menutoggle icon-more\",attrs:{tabindex:\"1\"},on:{click:function(e){return e.preventDefault(),t.toggleMenu(e)}}}),t._v(\" \"),n(\"div\",{staticClass:\"action-item__menu popovermenu\",class:{open:t.opened}},[n(\"popover-menu\",{attrs:{menu:t.actions}})],1)]],2)};U._withStripped=!0;var Y={name:\"Action\",components:{PopoverMenu:f},directives:{ClickOutside:h.a},props:{actions:{type:Array,required:!0,default:function(){return[{href:\"https://nextcloud.com\",icon:\"icon-links\",text:\"Nextcloud\"},{action:function(){alert(\"Deleted !\")},icon:\"icon-delete\",text:\"Delete\"}]}}},data:function(){return{opened:!1}},computed:{isSingleAction:function(){return 1===this.actions.length},firstAction:function(){return this.actions[0]}},mounted:function(){this.popupItem=this.$el},methods:{toggleMenu:function(){this.opened=!this.opened},closeMenu:function(){this.opened=!1},mainActionElement:function(){return{is:this.isSingleAction?\"a\":\"div\"}}}},z=(n(325),u(Y,U,[],!1,null,\"886e6e62\",null));z.options.__file=\"src/components/Action/Action.vue\";var W=z.exports;\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */function G(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */function q(t){Object.values(r).forEach(function(e){t.component(e.name,e)})}\n/**\n * @copyright Copyright (c) 2018 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */n.d(e,\"AppNavigation\",function(){return g}),n.d(e,\"PopoverMenu\",function(){return p}),n.d(e,\"DatetimePicker\",function(){return x}),n.d(e,\"Multiselect\",function(){return H}),n.d(e,\"Avatar\",function(){return j}),n.d(e,\"Action\",function(){return W}),\"undefined\"!=typeof window&&window.Vue&&q(window.Vue);e.default=function(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{},r=Object.keys(n);\"function\"==typeof Object.getOwnPropertySymbols&&(r=r.concat(Object.getOwnPropertySymbols(n).filter(function(t){return Object.getOwnPropertyDescriptor(n,t).enumerable}))),r.forEach(function(e){G(t,e,n[e])})}return t}({install:q},r)}])});\n//# sourceMappingURL=ncvuecomponents.js.map","/**!\n * @fileOverview Kickass library to create and place poppers near their reference elements.\n * @version 1.14.3\n * @license\n * Copyright (c) 2016 Federico Zivolo and contributors\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\nvar isBrowser = typeof window !== 'undefined' && typeof document !== 'undefined';\n\nvar longerTimeoutBrowsers = ['Edge', 'Trident', 'Firefox'];\nvar timeoutDuration = 0;\nfor (var i = 0; i < longerTimeoutBrowsers.length; i += 1) {\n if (isBrowser && navigator.userAgent.indexOf(longerTimeoutBrowsers[i]) >= 0) {\n timeoutDuration = 1;\n break;\n }\n}\n\nfunction microtaskDebounce(fn) {\n var called = false;\n return function () {\n if (called) {\n return;\n }\n called = true;\n window.Promise.resolve().then(function () {\n called = false;\n fn();\n });\n };\n}\n\nfunction taskDebounce(fn) {\n var scheduled = false;\n return function () {\n if (!scheduled) {\n scheduled = true;\n setTimeout(function () {\n scheduled = false;\n fn();\n }, timeoutDuration);\n }\n };\n}\n\nvar supportsMicroTasks = isBrowser && window.Promise;\n\n/**\n* Create a debounced version of a method, that's asynchronously deferred\n* but called in the minimum time possible.\n*\n* @method\n* @memberof Popper.Utils\n* @argument {Function} fn\n* @returns {Function}\n*/\nvar debounce = supportsMicroTasks ? microtaskDebounce : taskDebounce;\n\n/**\n * Check if the given variable is a function\n * @method\n * @memberof Popper.Utils\n * @argument {Any} functionToCheck - variable to check\n * @returns {Boolean} answer to: is a function?\n */\nfunction isFunction(functionToCheck) {\n var getType = {};\n return functionToCheck && getType.toString.call(functionToCheck) === '[object Function]';\n}\n\n/**\n * Get CSS computed property of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Eement} element\n * @argument {String} property\n */\nfunction getStyleComputedProperty(element, property) {\n if (element.nodeType !== 1) {\n return [];\n }\n // NOTE: 1 DOM access here\n var css = getComputedStyle(element, null);\n return property ? css[property] : css;\n}\n\n/**\n * Returns the parentNode or the host of the element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} parent\n */\nfunction getParentNode(element) {\n if (element.nodeName === 'HTML') {\n return element;\n }\n return element.parentNode || element.host;\n}\n\n/**\n * Returns the scrolling parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} scroll parent\n */\nfunction getScrollParent(element) {\n // Return body, `getScroll` will take care to get the correct `scrollTop` from it\n if (!element) {\n return document.body;\n }\n\n switch (element.nodeName) {\n case 'HTML':\n case 'BODY':\n return element.ownerDocument.body;\n case '#document':\n return element.body;\n }\n\n // Firefox want us to check `-x` and `-y` variations as well\n\n var _getStyleComputedProp = getStyleComputedProperty(element),\n overflow = _getStyleComputedProp.overflow,\n overflowX = _getStyleComputedProp.overflowX,\n overflowY = _getStyleComputedProp.overflowY;\n\n if (/(auto|scroll|overlay)/.test(overflow + overflowY + overflowX)) {\n return element;\n }\n\n return getScrollParent(getParentNode(element));\n}\n\nvar isIE11 = isBrowser && !!(window.MSInputMethodContext && document.documentMode);\nvar isIE10 = isBrowser && /MSIE 10/.test(navigator.userAgent);\n\n/**\n * Determines if the browser is Internet Explorer\n * @method\n * @memberof Popper.Utils\n * @param {Number} version to check\n * @returns {Boolean} isIE\n */\nfunction isIE(version) {\n if (version === 11) {\n return isIE11;\n }\n if (version === 10) {\n return isIE10;\n }\n return isIE11 || isIE10;\n}\n\n/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} offset parent\n */\nfunction getOffsetParent(element) {\n if (!element) {\n return document.documentElement;\n }\n\n var noOffsetParent = isIE(10) ? document.body : null;\n\n // NOTE: 1 DOM access here\n var offsetParent = element.offsetParent;\n // Skip hidden elements which don't have an offsetParent\n while (offsetParent === noOffsetParent && element.nextElementSibling) {\n offsetParent = (element = element.nextElementSibling).offsetParent;\n }\n\n var nodeName = offsetParent && offsetParent.nodeName;\n\n if (!nodeName || nodeName === 'BODY' || nodeName === 'HTML') {\n return element ? element.ownerDocument.documentElement : document.documentElement;\n }\n\n // .offsetParent will return the closest TD or TABLE in case\n // no offsetParent is present, I hate this job...\n if (['TD', 'TABLE'].indexOf(offsetParent.nodeName) !== -1 && getStyleComputedProperty(offsetParent, 'position') === 'static') {\n return getOffsetParent(offsetParent);\n }\n\n return offsetParent;\n}\n\nfunction isOffsetContainer(element) {\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY') {\n return false;\n }\n return nodeName === 'HTML' || getOffsetParent(element.firstElementChild) === element;\n}\n\n/**\n * Finds the root node (document, shadowDOM root) of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element} node\n * @returns {Element} root node\n */\nfunction getRoot(node) {\n if (node.parentNode !== null) {\n return getRoot(node.parentNode);\n }\n\n return node;\n}\n\n/**\n * Finds the offset parent common to the two provided nodes\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element1\n * @argument {Element} element2\n * @returns {Element} common offset parent\n */\nfunction findCommonOffsetParent(element1, element2) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element1 || !element1.nodeType || !element2 || !element2.nodeType) {\n return document.documentElement;\n }\n\n // Here we make sure to give as \"start\" the element that comes first in the DOM\n var order = element1.compareDocumentPosition(element2) & Node.DOCUMENT_POSITION_FOLLOWING;\n var start = order ? element1 : element2;\n var end = order ? element2 : element1;\n\n // Get common ancestor container\n var range = document.createRange();\n range.setStart(start, 0);\n range.setEnd(end, 0);\n var commonAncestorContainer = range.commonAncestorContainer;\n\n // Both nodes are inside #document\n\n if (element1 !== commonAncestorContainer && element2 !== commonAncestorContainer || start.contains(end)) {\n if (isOffsetContainer(commonAncestorContainer)) {\n return commonAncestorContainer;\n }\n\n return getOffsetParent(commonAncestorContainer);\n }\n\n // one of the nodes is inside shadowDOM, find which one\n var element1root = getRoot(element1);\n if (element1root.host) {\n return findCommonOffsetParent(element1root.host, element2);\n } else {\n return findCommonOffsetParent(element1, getRoot(element2).host);\n }\n}\n\n/**\n * Gets the scroll value of the given element in the given side (top and left)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {String} side `top` or `left`\n * @returns {number} amount of scrolled pixels\n */\nfunction getScroll(element) {\n var side = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'top';\n\n var upperSide = side === 'top' ? 'scrollTop' : 'scrollLeft';\n var nodeName = element.nodeName;\n\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n var html = element.ownerDocument.documentElement;\n var scrollingElement = element.ownerDocument.scrollingElement || html;\n return scrollingElement[upperSide];\n }\n\n return element[upperSide];\n}\n\n/*\n * Sum or subtract the element scroll values (left and top) from a given rect object\n * @method\n * @memberof Popper.Utils\n * @param {Object} rect - Rect object you want to change\n * @param {HTMLElement} element - The element from the function reads the scroll values\n * @param {Boolean} subtract - set to true if you want to subtract the scroll values\n * @return {Object} rect - The modifier rect object\n */\nfunction includeScroll(rect, element) {\n var subtract = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n var modifier = subtract ? -1 : 1;\n rect.top += scrollTop * modifier;\n rect.bottom += scrollTop * modifier;\n rect.left += scrollLeft * modifier;\n rect.right += scrollLeft * modifier;\n return rect;\n}\n\n/*\n * Helper to detect borders of a given element\n * @method\n * @memberof Popper.Utils\n * @param {CSSStyleDeclaration} styles\n * Result of `getStyleComputedProperty` on the given element\n * @param {String} axis - `x` or `y`\n * @return {number} borders - The borders size of the given axis\n */\n\nfunction getBordersSize(styles, axis) {\n var sideA = axis === 'x' ? 'Left' : 'Top';\n var sideB = sideA === 'Left' ? 'Right' : 'Bottom';\n\n return parseFloat(styles['border' + sideA + 'Width'], 10) + parseFloat(styles['border' + sideB + 'Width'], 10);\n}\n\nfunction getSize(axis, body, html, computedStyle) {\n return Math.max(body['offset' + axis], body['scroll' + axis], html['client' + axis], html['offset' + axis], html['scroll' + axis], isIE(10) ? html['offset' + axis] + computedStyle['margin' + (axis === 'Height' ? 'Top' : 'Left')] + computedStyle['margin' + (axis === 'Height' ? 'Bottom' : 'Right')] : 0);\n}\n\nfunction getWindowSizes() {\n var body = document.body;\n var html = document.documentElement;\n var computedStyle = isIE(10) && getComputedStyle(html);\n\n return {\n height: getSize('Height', body, html, computedStyle),\n width: getSize('Width', body, html, computedStyle)\n };\n}\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\nvar defineProperty = function (obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n};\n\nvar _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/**\n * Given element offsets, generate an output similar to getBoundingClientRect\n * @method\n * @memberof Popper.Utils\n * @argument {Object} offsets\n * @returns {Object} ClientRect like output\n */\nfunction getClientRect(offsets) {\n return _extends({}, offsets, {\n right: offsets.left + offsets.width,\n bottom: offsets.top + offsets.height\n });\n}\n\n/**\n * Get bounding client rect of given element\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} element\n * @return {Object} client rect\n */\nfunction getBoundingClientRect(element) {\n var rect = {};\n\n // IE10 10 FIX: Please, don't ask, the element isn't\n // considered in DOM in some circumstances...\n // This isn't reproducible in IE10 compatibility mode of IE11\n try {\n if (isIE(10)) {\n rect = element.getBoundingClientRect();\n var scrollTop = getScroll(element, 'top');\n var scrollLeft = getScroll(element, 'left');\n rect.top += scrollTop;\n rect.left += scrollLeft;\n rect.bottom += scrollTop;\n rect.right += scrollLeft;\n } else {\n rect = element.getBoundingClientRect();\n }\n } catch (e) {}\n\n var result = {\n left: rect.left,\n top: rect.top,\n width: rect.right - rect.left,\n height: rect.bottom - rect.top\n };\n\n // subtract scrollbar size from sizes\n var sizes = element.nodeName === 'HTML' ? getWindowSizes() : {};\n var width = sizes.width || element.clientWidth || result.right - result.left;\n var height = sizes.height || element.clientHeight || result.bottom - result.top;\n\n var horizScrollbar = element.offsetWidth - width;\n var vertScrollbar = element.offsetHeight - height;\n\n // if an hypothetical scrollbar is detected, we must be sure it's not a `border`\n // we make this check conditional for performance reasons\n if (horizScrollbar || vertScrollbar) {\n var styles = getStyleComputedProperty(element);\n horizScrollbar -= getBordersSize(styles, 'x');\n vertScrollbar -= getBordersSize(styles, 'y');\n\n result.width -= horizScrollbar;\n result.height -= vertScrollbar;\n }\n\n return getClientRect(result);\n}\n\nfunction getOffsetRectRelativeToArbitraryNode(children, parent) {\n var fixedPosition = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;\n\n var isIE10 = isIE(10);\n var isHTML = parent.nodeName === 'HTML';\n var childrenRect = getBoundingClientRect(children);\n var parentRect = getBoundingClientRect(parent);\n var scrollParent = getScrollParent(children);\n\n var styles = getStyleComputedProperty(parent);\n var borderTopWidth = parseFloat(styles.borderTopWidth, 10);\n var borderLeftWidth = parseFloat(styles.borderLeftWidth, 10);\n\n // In cases where the parent is fixed, we must ignore negative scroll in offset calc\n if (fixedPosition && parent.nodeName === 'HTML') {\n parentRect.top = Math.max(parentRect.top, 0);\n parentRect.left = Math.max(parentRect.left, 0);\n }\n var offsets = getClientRect({\n top: childrenRect.top - parentRect.top - borderTopWidth,\n left: childrenRect.left - parentRect.left - borderLeftWidth,\n width: childrenRect.width,\n height: childrenRect.height\n });\n offsets.marginTop = 0;\n offsets.marginLeft = 0;\n\n // Subtract margins of documentElement in case it's being used as parent\n // we do this only on HTML because it's the only element that behaves\n // differently when margins are applied to it. The margins are included in\n // the box of the documentElement, in the other cases not.\n if (!isIE10 && isHTML) {\n var marginTop = parseFloat(styles.marginTop, 10);\n var marginLeft = parseFloat(styles.marginLeft, 10);\n\n offsets.top -= borderTopWidth - marginTop;\n offsets.bottom -= borderTopWidth - marginTop;\n offsets.left -= borderLeftWidth - marginLeft;\n offsets.right -= borderLeftWidth - marginLeft;\n\n // Attach marginTop and marginLeft because in some circumstances we may need them\n offsets.marginTop = marginTop;\n offsets.marginLeft = marginLeft;\n }\n\n if (isIE10 && !fixedPosition ? parent.contains(scrollParent) : parent === scrollParent && scrollParent.nodeName !== 'BODY') {\n offsets = includeScroll(offsets, parent);\n }\n\n return offsets;\n}\n\nfunction getViewportOffsetRectRelativeToArtbitraryNode(element) {\n var excludeScroll = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var html = element.ownerDocument.documentElement;\n var relativeOffset = getOffsetRectRelativeToArbitraryNode(element, html);\n var width = Math.max(html.clientWidth, window.innerWidth || 0);\n var height = Math.max(html.clientHeight, window.innerHeight || 0);\n\n var scrollTop = !excludeScroll ? getScroll(html) : 0;\n var scrollLeft = !excludeScroll ? getScroll(html, 'left') : 0;\n\n var offset = {\n top: scrollTop - relativeOffset.top + relativeOffset.marginTop,\n left: scrollLeft - relativeOffset.left + relativeOffset.marginLeft,\n width: width,\n height: height\n };\n\n return getClientRect(offset);\n}\n\n/**\n * Check if the given element is fixed or is inside a fixed parent\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @argument {Element} customContainer\n * @returns {Boolean} answer to \"isFixed?\"\n */\nfunction isFixed(element) {\n var nodeName = element.nodeName;\n if (nodeName === 'BODY' || nodeName === 'HTML') {\n return false;\n }\n if (getStyleComputedProperty(element, 'position') === 'fixed') {\n return true;\n }\n return isFixed(getParentNode(element));\n}\n\n/**\n * Finds the first parent of an element that has a transformed property defined\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Element} first transformed parent or documentElement\n */\n\nfunction getFixedPositionOffsetParent(element) {\n // This check is needed to avoid errors in case one of the elements isn't defined for any reason\n if (!element || !element.parentElement || isIE()) {\n return document.documentElement;\n }\n var el = element.parentElement;\n while (el && getStyleComputedProperty(el, 'transform') === 'none') {\n el = el.parentElement;\n }\n return el || document.documentElement;\n}\n\n/**\n * Computed the boundaries limits and return them\n * @method\n * @memberof Popper.Utils\n * @param {HTMLElement} popper\n * @param {HTMLElement} reference\n * @param {number} padding\n * @param {HTMLElement} boundariesElement - Element used to define the boundaries\n * @param {Boolean} fixedPosition - Is in fixed position mode\n * @returns {Object} Coordinates of the boundaries\n */\nfunction getBoundaries(popper, reference, padding, boundariesElement) {\n var fixedPosition = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;\n\n // NOTE: 1 DOM access here\n\n var boundaries = { top: 0, left: 0 };\n var offsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference);\n\n // Handle viewport case\n if (boundariesElement === 'viewport') {\n boundaries = getViewportOffsetRectRelativeToArtbitraryNode(offsetParent, fixedPosition);\n } else {\n // Handle other cases based on DOM element used as boundaries\n var boundariesNode = void 0;\n if (boundariesElement === 'scrollParent') {\n boundariesNode = getScrollParent(getParentNode(reference));\n if (boundariesNode.nodeName === 'BODY') {\n boundariesNode = popper.ownerDocument.documentElement;\n }\n } else if (boundariesElement === 'window') {\n boundariesNode = popper.ownerDocument.documentElement;\n } else {\n boundariesNode = boundariesElement;\n }\n\n var offsets = getOffsetRectRelativeToArbitraryNode(boundariesNode, offsetParent, fixedPosition);\n\n // In case of HTML, we need a different computation\n if (boundariesNode.nodeName === 'HTML' && !isFixed(offsetParent)) {\n var _getWindowSizes = getWindowSizes(),\n height = _getWindowSizes.height,\n width = _getWindowSizes.width;\n\n boundaries.top += offsets.top - offsets.marginTop;\n boundaries.bottom = height + offsets.top;\n boundaries.left += offsets.left - offsets.marginLeft;\n boundaries.right = width + offsets.left;\n } else {\n // for all the other DOM elements, this one is good\n boundaries = offsets;\n }\n }\n\n // Add paddings\n boundaries.left += padding;\n boundaries.top += padding;\n boundaries.right -= padding;\n boundaries.bottom -= padding;\n\n return boundaries;\n}\n\nfunction getArea(_ref) {\n var width = _ref.width,\n height = _ref.height;\n\n return width * height;\n}\n\n/**\n * Utility used to transform the `auto` placement to the placement with more\n * available space.\n * @method\n * @memberof Popper.Utils\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeAutoPlacement(placement, refRect, popper, reference, boundariesElement) {\n var padding = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : 0;\n\n if (placement.indexOf('auto') === -1) {\n return placement;\n }\n\n var boundaries = getBoundaries(popper, reference, padding, boundariesElement);\n\n var rects = {\n top: {\n width: boundaries.width,\n height: refRect.top - boundaries.top\n },\n right: {\n width: boundaries.right - refRect.right,\n height: boundaries.height\n },\n bottom: {\n width: boundaries.width,\n height: boundaries.bottom - refRect.bottom\n },\n left: {\n width: refRect.left - boundaries.left,\n height: boundaries.height\n }\n };\n\n var sortedAreas = Object.keys(rects).map(function (key) {\n return _extends({\n key: key\n }, rects[key], {\n area: getArea(rects[key])\n });\n }).sort(function (a, b) {\n return b.area - a.area;\n });\n\n var filteredAreas = sortedAreas.filter(function (_ref2) {\n var width = _ref2.width,\n height = _ref2.height;\n return width >= popper.clientWidth && height >= popper.clientHeight;\n });\n\n var computedPlacement = filteredAreas.length > 0 ? filteredAreas[0].key : sortedAreas[0].key;\n\n var variation = placement.split('-')[1];\n\n return computedPlacement + (variation ? '-' + variation : '');\n}\n\n/**\n * Get offsets to the reference element\n * @method\n * @memberof Popper.Utils\n * @param {Object} state\n * @param {Element} popper - the popper element\n * @param {Element} reference - the reference element (the popper will be relative to this)\n * @param {Element} fixedPosition - is in fixed position mode\n * @returns {Object} An object containing the offsets which will be applied to the popper\n */\nfunction getReferenceOffsets(state, popper, reference) {\n var fixedPosition = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : null;\n\n var commonOffsetParent = fixedPosition ? getFixedPositionOffsetParent(popper) : findCommonOffsetParent(popper, reference);\n return getOffsetRectRelativeToArbitraryNode(reference, commonOffsetParent, fixedPosition);\n}\n\n/**\n * Get the outer sizes of the given element (offset size + margins)\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element\n * @returns {Object} object containing width and height properties\n */\nfunction getOuterSizes(element) {\n var styles = getComputedStyle(element);\n var x = parseFloat(styles.marginTop) + parseFloat(styles.marginBottom);\n var y = parseFloat(styles.marginLeft) + parseFloat(styles.marginRight);\n var result = {\n width: element.offsetWidth + y,\n height: element.offsetHeight + x\n };\n return result;\n}\n\n/**\n * Get the opposite placement of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement\n * @returns {String} flipped placement\n */\nfunction getOppositePlacement(placement) {\n var hash = { left: 'right', right: 'left', bottom: 'top', top: 'bottom' };\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}\n\n/**\n * Get offsets to the popper\n * @method\n * @memberof Popper.Utils\n * @param {Object} position - CSS position the Popper will get applied\n * @param {HTMLElement} popper - the popper element\n * @param {Object} referenceOffsets - the reference offsets (the popper will be relative to this)\n * @param {String} placement - one of the valid placement options\n * @returns {Object} popperOffsets - An object containing the offsets which will be applied to the popper\n */\nfunction getPopperOffsets(popper, referenceOffsets, placement) {\n placement = placement.split('-')[0];\n\n // Get popper node sizes\n var popperRect = getOuterSizes(popper);\n\n // Add position, width and height to our offsets object\n var popperOffsets = {\n width: popperRect.width,\n height: popperRect.height\n };\n\n // depending by the popper placement we have to compute its offsets slightly differently\n var isHoriz = ['right', 'left'].indexOf(placement) !== -1;\n var mainSide = isHoriz ? 'top' : 'left';\n var secondarySide = isHoriz ? 'left' : 'top';\n var measurement = isHoriz ? 'height' : 'width';\n var secondaryMeasurement = !isHoriz ? 'height' : 'width';\n\n popperOffsets[mainSide] = referenceOffsets[mainSide] + referenceOffsets[measurement] / 2 - popperRect[measurement] / 2;\n if (placement === secondarySide) {\n popperOffsets[secondarySide] = referenceOffsets[secondarySide] - popperRect[secondaryMeasurement];\n } else {\n popperOffsets[secondarySide] = referenceOffsets[getOppositePlacement(secondarySide)];\n }\n\n return popperOffsets;\n}\n\n/**\n * Mimics the `find` method of Array\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction find(arr, check) {\n // use native find if supported\n if (Array.prototype.find) {\n return arr.find(check);\n }\n\n // use `filter` to obtain the same behavior of `find`\n return arr.filter(check)[0];\n}\n\n/**\n * Return the index of the matching object\n * @method\n * @memberof Popper.Utils\n * @argument {Array} arr\n * @argument prop\n * @argument value\n * @returns index or -1\n */\nfunction findIndex(arr, prop, value) {\n // use native findIndex if supported\n if (Array.prototype.findIndex) {\n return arr.findIndex(function (cur) {\n return cur[prop] === value;\n });\n }\n\n // use `find` + `indexOf` if `findIndex` isn't supported\n var match = find(arr, function (obj) {\n return obj[prop] === value;\n });\n return arr.indexOf(match);\n}\n\n/**\n * Loop trough the list of modifiers and run them in order,\n * each of them will then edit the data object.\n * @method\n * @memberof Popper.Utils\n * @param {dataObject} data\n * @param {Array} modifiers\n * @param {String} ends - Optional modifier name used as stopper\n * @returns {dataObject}\n */\nfunction runModifiers(modifiers, data, ends) {\n var modifiersToRun = ends === undefined ? modifiers : modifiers.slice(0, findIndex(modifiers, 'name', ends));\n\n modifiersToRun.forEach(function (modifier) {\n if (modifier['function']) {\n // eslint-disable-line dot-notation\n console.warn('`modifier.function` is deprecated, use `modifier.fn`!');\n }\n var fn = modifier['function'] || modifier.fn; // eslint-disable-line dot-notation\n if (modifier.enabled && isFunction(fn)) {\n // Add properties to offsets to make them a complete clientRect object\n // we do this before each modifier to make sure the previous one doesn't\n // mess with these values\n data.offsets.popper = getClientRect(data.offsets.popper);\n data.offsets.reference = getClientRect(data.offsets.reference);\n\n data = fn(data, modifier);\n }\n });\n\n return data;\n}\n\n/**\n * Updates the position of the popper, computing the new offsets and applying\n * the new style.<br />\n * Prefer `scheduleUpdate` over `update` because of performance reasons.\n * @method\n * @memberof Popper\n */\nfunction update() {\n // if popper is destroyed, don't perform any further update\n if (this.state.isDestroyed) {\n return;\n }\n\n var data = {\n instance: this,\n styles: {},\n arrowStyles: {},\n attributes: {},\n flipped: false,\n offsets: {}\n };\n\n // compute reference element offsets\n data.offsets.reference = getReferenceOffsets(this.state, this.popper, this.reference, this.options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n data.placement = computeAutoPlacement(this.options.placement, data.offsets.reference, this.popper, this.reference, this.options.modifiers.flip.boundariesElement, this.options.modifiers.flip.padding);\n\n // store the computed placement inside `originalPlacement`\n data.originalPlacement = data.placement;\n\n data.positionFixed = this.options.positionFixed;\n\n // compute the popper offsets\n data.offsets.popper = getPopperOffsets(this.popper, data.offsets.reference, data.placement);\n\n data.offsets.popper.position = this.options.positionFixed ? 'fixed' : 'absolute';\n\n // run the modifiers\n data = runModifiers(this.modifiers, data);\n\n // the first `update` will call `onCreate` callback\n // the other ones will call `onUpdate` callback\n if (!this.state.isCreated) {\n this.state.isCreated = true;\n this.options.onCreate(data);\n } else {\n this.options.onUpdate(data);\n }\n}\n\n/**\n * Helper used to know if the given modifier is enabled.\n * @method\n * @memberof Popper.Utils\n * @returns {Boolean}\n */\nfunction isModifierEnabled(modifiers, modifierName) {\n return modifiers.some(function (_ref) {\n var name = _ref.name,\n enabled = _ref.enabled;\n return enabled && name === modifierName;\n });\n}\n\n/**\n * Get the prefixed supported property name\n * @method\n * @memberof Popper.Utils\n * @argument {String} property (camelCase)\n * @returns {String} prefixed property (camelCase or PascalCase, depending on the vendor prefix)\n */\nfunction getSupportedPropertyName(property) {\n var prefixes = [false, 'ms', 'Webkit', 'Moz', 'O'];\n var upperProp = property.charAt(0).toUpperCase() + property.slice(1);\n\n for (var i = 0; i < prefixes.length; i++) {\n var prefix = prefixes[i];\n var toCheck = prefix ? '' + prefix + upperProp : property;\n if (typeof document.body.style[toCheck] !== 'undefined') {\n return toCheck;\n }\n }\n return null;\n}\n\n/**\n * Destroy the popper\n * @method\n * @memberof Popper\n */\nfunction destroy() {\n this.state.isDestroyed = true;\n\n // touch DOM only if `applyStyle` modifier is enabled\n if (isModifierEnabled(this.modifiers, 'applyStyle')) {\n this.popper.removeAttribute('x-placement');\n this.popper.style.position = '';\n this.popper.style.top = '';\n this.popper.style.left = '';\n this.popper.style.right = '';\n this.popper.style.bottom = '';\n this.popper.style.willChange = '';\n this.popper.style[getSupportedPropertyName('transform')] = '';\n }\n\n this.disableEventListeners();\n\n // remove the popper if user explicity asked for the deletion on destroy\n // do not use `remove` because IE11 doesn't support it\n if (this.options.removeOnDestroy) {\n this.popper.parentNode.removeChild(this.popper);\n }\n return this;\n}\n\n/**\n * Get the window associated with the element\n * @argument {Element} element\n * @returns {Window}\n */\nfunction getWindow(element) {\n var ownerDocument = element.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView : window;\n}\n\nfunction attachToScrollParents(scrollParent, event, callback, scrollParents) {\n var isBody = scrollParent.nodeName === 'BODY';\n var target = isBody ? scrollParent.ownerDocument.defaultView : scrollParent;\n target.addEventListener(event, callback, { passive: true });\n\n if (!isBody) {\n attachToScrollParents(getScrollParent(target.parentNode), event, callback, scrollParents);\n }\n scrollParents.push(target);\n}\n\n/**\n * Setup needed event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction setupEventListeners(reference, options, state, updateBound) {\n // Resize event listener on window\n state.updateBound = updateBound;\n getWindow(reference).addEventListener('resize', state.updateBound, { passive: true });\n\n // Scroll event listener on scroll parents\n var scrollElement = getScrollParent(reference);\n attachToScrollParents(scrollElement, 'scroll', state.updateBound, state.scrollParents);\n state.scrollElement = scrollElement;\n state.eventsEnabled = true;\n\n return state;\n}\n\n/**\n * It will add resize/scroll events and start recalculating\n * position of the popper element when they are triggered.\n * @method\n * @memberof Popper\n */\nfunction enableEventListeners() {\n if (!this.state.eventsEnabled) {\n this.state = setupEventListeners(this.reference, this.options, this.state, this.scheduleUpdate);\n }\n}\n\n/**\n * Remove event listeners used to update the popper position\n * @method\n * @memberof Popper.Utils\n * @private\n */\nfunction removeEventListeners(reference, state) {\n // Remove resize event listener on window\n getWindow(reference).removeEventListener('resize', state.updateBound);\n\n // Remove scroll event listener on scroll parents\n state.scrollParents.forEach(function (target) {\n target.removeEventListener('scroll', state.updateBound);\n });\n\n // Reset state\n state.updateBound = null;\n state.scrollParents = [];\n state.scrollElement = null;\n state.eventsEnabled = false;\n return state;\n}\n\n/**\n * It will remove resize/scroll events and won't recalculate popper position\n * when they are triggered. It also won't trigger onUpdate callback anymore,\n * unless you call `update` method manually.\n * @method\n * @memberof Popper\n */\nfunction disableEventListeners() {\n if (this.state.eventsEnabled) {\n cancelAnimationFrame(this.scheduleUpdate);\n this.state = removeEventListeners(this.reference, this.state);\n }\n}\n\n/**\n * Tells if a given input is a number\n * @method\n * @memberof Popper.Utils\n * @param {*} input to check\n * @return {Boolean}\n */\nfunction isNumeric(n) {\n return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);\n}\n\n/**\n * Set the style to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the style to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setStyles(element, styles) {\n Object.keys(styles).forEach(function (prop) {\n var unit = '';\n // add unit if the value is numeric and is one of the following\n if (['width', 'height', 'top', 'right', 'bottom', 'left'].indexOf(prop) !== -1 && isNumeric(styles[prop])) {\n unit = 'px';\n }\n element.style[prop] = styles[prop] + unit;\n });\n}\n\n/**\n * Set the attributes to the given popper\n * @method\n * @memberof Popper.Utils\n * @argument {Element} element - Element to apply the attributes to\n * @argument {Object} styles\n * Object with a list of properties and values which will be applied to the element\n */\nfunction setAttributes(element, attributes) {\n Object.keys(attributes).forEach(function (prop) {\n var value = attributes[prop];\n if (value !== false) {\n element.setAttribute(prop, attributes[prop]);\n } else {\n element.removeAttribute(prop);\n }\n });\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} data.styles - List of style properties - values to apply to popper element\n * @argument {Object} data.attributes - List of attribute properties - values to apply to popper element\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The same data object\n */\nfunction applyStyle(data) {\n // any property present in `data.styles` will be applied to the popper,\n // in this way we can make the 3rd party modifiers add custom styles to it\n // Be aware, modifiers could override the properties defined in the previous\n // lines of this modifier!\n setStyles(data.instance.popper, data.styles);\n\n // any property present in `data.attributes` will be applied to the popper,\n // they will be set as HTML attributes of the element\n setAttributes(data.instance.popper, data.attributes);\n\n // if arrowElement is defined and arrowStyles has some properties\n if (data.arrowElement && Object.keys(data.arrowStyles).length) {\n setStyles(data.arrowElement, data.arrowStyles);\n }\n\n return data;\n}\n\n/**\n * Set the x-placement attribute before everything else because it could be used\n * to add margins to the popper margins needs to be calculated to get the\n * correct popper offsets.\n * @method\n * @memberof Popper.modifiers\n * @param {HTMLElement} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper\n * @param {Object} options - Popper.js options\n */\nfunction applyStyleOnLoad(reference, popper, options, modifierOptions, state) {\n // compute reference element offsets\n var referenceOffsets = getReferenceOffsets(state, popper, reference, options.positionFixed);\n\n // compute auto placement, store placement inside the data object,\n // modifiers will be able to edit `placement` if needed\n // and refer to originalPlacement to know the original value\n var placement = computeAutoPlacement(options.placement, referenceOffsets, popper, reference, options.modifiers.flip.boundariesElement, options.modifiers.flip.padding);\n\n popper.setAttribute('x-placement', placement);\n\n // Apply `position` to popper before anything else because\n // without the position applied we can't guarantee correct computations\n setStyles(popper, { position: options.positionFixed ? 'fixed' : 'absolute' });\n\n return options;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction computeStyle(data, options) {\n var x = options.x,\n y = options.y;\n var popper = data.offsets.popper;\n\n // Remove this legacy support in Popper.js v2\n\n var legacyGpuAccelerationOption = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'applyStyle';\n }).gpuAcceleration;\n if (legacyGpuAccelerationOption !== undefined) {\n console.warn('WARNING: `gpuAcceleration` option moved to `computeStyle` modifier and will not be supported in future versions of Popper.js!');\n }\n var gpuAcceleration = legacyGpuAccelerationOption !== undefined ? legacyGpuAccelerationOption : options.gpuAcceleration;\n\n var offsetParent = getOffsetParent(data.instance.popper);\n var offsetParentRect = getBoundingClientRect(offsetParent);\n\n // Styles\n var styles = {\n position: popper.position\n };\n\n // Avoid blurry text by using full pixel integers.\n // For pixel-perfect positioning, top/bottom prefers rounded\n // values, while left/right prefers floored values.\n var offsets = {\n left: Math.floor(popper.left),\n top: Math.round(popper.top),\n bottom: Math.round(popper.bottom),\n right: Math.floor(popper.right)\n };\n\n var sideA = x === 'bottom' ? 'top' : 'bottom';\n var sideB = y === 'right' ? 'left' : 'right';\n\n // if gpuAcceleration is set to `true` and transform is supported,\n // we use `translate3d` to apply the position to the popper we\n // automatically use the supported prefixed version if needed\n var prefixedProperty = getSupportedPropertyName('transform');\n\n // now, let's make a step back and look at this code closely (wtf?)\n // If the content of the popper grows once it's been positioned, it\n // may happen that the popper gets misplaced because of the new content\n // overflowing its reference element\n // To avoid this problem, we provide two options (x and y), which allow\n // the consumer to define the offset origin.\n // If we position a popper on top of a reference element, we can set\n // `x` to `top` to make the popper grow towards its top instead of\n // its bottom.\n var left = void 0,\n top = void 0;\n if (sideA === 'bottom') {\n top = -offsetParentRect.height + offsets.bottom;\n } else {\n top = offsets.top;\n }\n if (sideB === 'right') {\n left = -offsetParentRect.width + offsets.right;\n } else {\n left = offsets.left;\n }\n if (gpuAcceleration && prefixedProperty) {\n styles[prefixedProperty] = 'translate3d(' + left + 'px, ' + top + 'px, 0)';\n styles[sideA] = 0;\n styles[sideB] = 0;\n styles.willChange = 'transform';\n } else {\n // othwerise, we use the standard `top`, `left`, `bottom` and `right` properties\n var invertTop = sideA === 'bottom' ? -1 : 1;\n var invertLeft = sideB === 'right' ? -1 : 1;\n styles[sideA] = top * invertTop;\n styles[sideB] = left * invertLeft;\n styles.willChange = sideA + ', ' + sideB;\n }\n\n // Attributes\n var attributes = {\n 'x-placement': data.placement\n };\n\n // Update `data` attributes, styles and arrowStyles\n data.attributes = _extends({}, attributes, data.attributes);\n data.styles = _extends({}, styles, data.styles);\n data.arrowStyles = _extends({}, data.offsets.arrow, data.arrowStyles);\n\n return data;\n}\n\n/**\n * Helper used to know if the given modifier depends from another one.<br />\n * It checks if the needed modifier is listed and enabled.\n * @method\n * @memberof Popper.Utils\n * @param {Array} modifiers - list of modifiers\n * @param {String} requestingName - name of requesting modifier\n * @param {String} requestedName - name of requested modifier\n * @returns {Boolean}\n */\nfunction isModifierRequired(modifiers, requestingName, requestedName) {\n var requesting = find(modifiers, function (_ref) {\n var name = _ref.name;\n return name === requestingName;\n });\n\n var isRequired = !!requesting && modifiers.some(function (modifier) {\n return modifier.name === requestedName && modifier.enabled && modifier.order < requesting.order;\n });\n\n if (!isRequired) {\n var _requesting = '`' + requestingName + '`';\n var requested = '`' + requestedName + '`';\n console.warn(requested + ' modifier is required by ' + _requesting + ' modifier in order to work, be sure to include it before ' + _requesting + '!');\n }\n return isRequired;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction arrow(data, options) {\n var _data$offsets$arrow;\n\n // arrow depends on keepTogether in order to work\n if (!isModifierRequired(data.instance.modifiers, 'arrow', 'keepTogether')) {\n return data;\n }\n\n var arrowElement = options.element;\n\n // if arrowElement is a string, suppose it's a CSS selector\n if (typeof arrowElement === 'string') {\n arrowElement = data.instance.popper.querySelector(arrowElement);\n\n // if arrowElement is not found, don't run the modifier\n if (!arrowElement) {\n return data;\n }\n } else {\n // if the arrowElement isn't a query selector we must check that the\n // provided DOM node is child of its popper node\n if (!data.instance.popper.contains(arrowElement)) {\n console.warn('WARNING: `arrow.element` must be child of its popper element!');\n return data;\n }\n }\n\n var placement = data.placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isVertical = ['left', 'right'].indexOf(placement) !== -1;\n\n var len = isVertical ? 'height' : 'width';\n var sideCapitalized = isVertical ? 'Top' : 'Left';\n var side = sideCapitalized.toLowerCase();\n var altSide = isVertical ? 'left' : 'top';\n var opSide = isVertical ? 'bottom' : 'right';\n var arrowElementSize = getOuterSizes(arrowElement)[len];\n\n //\n // extends keepTogether behavior making sure the popper and its\n // reference have enough pixels in conjuction\n //\n\n // top/left side\n if (reference[opSide] - arrowElementSize < popper[side]) {\n data.offsets.popper[side] -= popper[side] - (reference[opSide] - arrowElementSize);\n }\n // bottom/right side\n if (reference[side] + arrowElementSize > popper[opSide]) {\n data.offsets.popper[side] += reference[side] + arrowElementSize - popper[opSide];\n }\n data.offsets.popper = getClientRect(data.offsets.popper);\n\n // compute center of the popper\n var center = reference[side] + reference[len] / 2 - arrowElementSize / 2;\n\n // Compute the sideValue using the updated popper offsets\n // take popper margin in account because we don't have this info available\n var css = getStyleComputedProperty(data.instance.popper);\n var popperMarginSide = parseFloat(css['margin' + sideCapitalized], 10);\n var popperBorderSide = parseFloat(css['border' + sideCapitalized + 'Width'], 10);\n var sideValue = center - data.offsets.popper[side] - popperMarginSide - popperBorderSide;\n\n // prevent arrowElement from being placed not contiguously to its popper\n sideValue = Math.max(Math.min(popper[len] - arrowElementSize, sideValue), 0);\n\n data.arrowElement = arrowElement;\n data.offsets.arrow = (_data$offsets$arrow = {}, defineProperty(_data$offsets$arrow, side, Math.round(sideValue)), defineProperty(_data$offsets$arrow, altSide, ''), _data$offsets$arrow);\n\n return data;\n}\n\n/**\n * Get the opposite placement variation of the given one\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement variation\n * @returns {String} flipped placement variation\n */\nfunction getOppositeVariation(variation) {\n if (variation === 'end') {\n return 'start';\n } else if (variation === 'start') {\n return 'end';\n }\n return variation;\n}\n\n/**\n * List of accepted placements to use as values of the `placement` option.<br />\n * Valid placements are:\n * - `auto`\n * - `top`\n * - `right`\n * - `bottom`\n * - `left`\n *\n * Each placement can have a variation from this list:\n * - `-start`\n * - `-end`\n *\n * Variations are interpreted easily if you think of them as the left to right\n * written languages. Horizontally (`top` and `bottom`), `start` is left and `end`\n * is right.<br />\n * Vertically (`left` and `right`), `start` is top and `end` is bottom.\n *\n * Some valid examples are:\n * - `top-end` (on top of reference, right aligned)\n * - `right-start` (on right of reference, top aligned)\n * - `bottom` (on bottom, centered)\n * - `auto-right` (on the side with more space available, alignment depends by placement)\n *\n * @static\n * @type {Array}\n * @enum {String}\n * @readonly\n * @method placements\n * @memberof Popper\n */\nvar placements = ['auto-start', 'auto', 'auto-end', 'top-start', 'top', 'top-end', 'right-start', 'right', 'right-end', 'bottom-end', 'bottom', 'bottom-start', 'left-end', 'left', 'left-start'];\n\n// Get rid of `auto` `auto-start` and `auto-end`\nvar validPlacements = placements.slice(3);\n\n/**\n * Given an initial placement, returns all the subsequent placements\n * clockwise (or counter-clockwise).\n *\n * @method\n * @memberof Popper.Utils\n * @argument {String} placement - A valid placement (it accepts variations)\n * @argument {Boolean} counter - Set to true to walk the placements counterclockwise\n * @returns {Array} placements including their variations\n */\nfunction clockwise(placement) {\n var counter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n var index = validPlacements.indexOf(placement);\n var arr = validPlacements.slice(index + 1).concat(validPlacements.slice(0, index));\n return counter ? arr.reverse() : arr;\n}\n\nvar BEHAVIORS = {\n FLIP: 'flip',\n CLOCKWISE: 'clockwise',\n COUNTERCLOCKWISE: 'counterclockwise'\n};\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction flip(data, options) {\n // if `inner` modifier is enabled, we can't use the `flip` modifier\n if (isModifierEnabled(data.instance.modifiers, 'inner')) {\n return data;\n }\n\n if (data.flipped && data.placement === data.originalPlacement) {\n // seems like flip is trying to loop, probably there's not enough space on any of the flippable sides\n return data;\n }\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, options.boundariesElement, data.positionFixed);\n\n var placement = data.placement.split('-')[0];\n var placementOpposite = getOppositePlacement(placement);\n var variation = data.placement.split('-')[1] || '';\n\n var flipOrder = [];\n\n switch (options.behavior) {\n case BEHAVIORS.FLIP:\n flipOrder = [placement, placementOpposite];\n break;\n case BEHAVIORS.CLOCKWISE:\n flipOrder = clockwise(placement);\n break;\n case BEHAVIORS.COUNTERCLOCKWISE:\n flipOrder = clockwise(placement, true);\n break;\n default:\n flipOrder = options.behavior;\n }\n\n flipOrder.forEach(function (step, index) {\n if (placement !== step || flipOrder.length === index + 1) {\n return data;\n }\n\n placement = data.placement.split('-')[0];\n placementOpposite = getOppositePlacement(placement);\n\n var popperOffsets = data.offsets.popper;\n var refOffsets = data.offsets.reference;\n\n // using floor because the reference offsets may contain decimals we are not going to consider here\n var floor = Math.floor;\n var overlapsRef = placement === 'left' && floor(popperOffsets.right) > floor(refOffsets.left) || placement === 'right' && floor(popperOffsets.left) < floor(refOffsets.right) || placement === 'top' && floor(popperOffsets.bottom) > floor(refOffsets.top) || placement === 'bottom' && floor(popperOffsets.top) < floor(refOffsets.bottom);\n\n var overflowsLeft = floor(popperOffsets.left) < floor(boundaries.left);\n var overflowsRight = floor(popperOffsets.right) > floor(boundaries.right);\n var overflowsTop = floor(popperOffsets.top) < floor(boundaries.top);\n var overflowsBottom = floor(popperOffsets.bottom) > floor(boundaries.bottom);\n\n var overflowsBoundaries = placement === 'left' && overflowsLeft || placement === 'right' && overflowsRight || placement === 'top' && overflowsTop || placement === 'bottom' && overflowsBottom;\n\n // flip the variation if required\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var flippedVariation = !!options.flipVariations && (isVertical && variation === 'start' && overflowsLeft || isVertical && variation === 'end' && overflowsRight || !isVertical && variation === 'start' && overflowsTop || !isVertical && variation === 'end' && overflowsBottom);\n\n if (overlapsRef || overflowsBoundaries || flippedVariation) {\n // this boolean to detect any flip loop\n data.flipped = true;\n\n if (overlapsRef || overflowsBoundaries) {\n placement = flipOrder[index + 1];\n }\n\n if (flippedVariation) {\n variation = getOppositeVariation(variation);\n }\n\n data.placement = placement + (variation ? '-' + variation : '');\n\n // this object contains `position`, we want to preserve it along with\n // any additional property we may add in the future\n data.offsets.popper = _extends({}, data.offsets.popper, getPopperOffsets(data.instance.popper, data.offsets.reference, data.placement));\n\n data = runModifiers(data.instance.modifiers, data, 'flip');\n }\n });\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction keepTogether(data) {\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var placement = data.placement.split('-')[0];\n var floor = Math.floor;\n var isVertical = ['top', 'bottom'].indexOf(placement) !== -1;\n var side = isVertical ? 'right' : 'bottom';\n var opSide = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n if (popper[side] < floor(reference[opSide])) {\n data.offsets.popper[opSide] = floor(reference[opSide]) - popper[measurement];\n }\n if (popper[opSide] > floor(reference[side])) {\n data.offsets.popper[opSide] = floor(reference[side]);\n }\n\n return data;\n}\n\n/**\n * Converts a string containing value + unit into a px value number\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} str - Value + unit string\n * @argument {String} measurement - `height` or `width`\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @returns {Number|String}\n * Value in pixels, or original string if no values were extracted\n */\nfunction toValue(str, measurement, popperOffsets, referenceOffsets) {\n // separate value from unit\n var split = str.match(/((?:\\-|\\+)?\\d*\\.?\\d*)(.*)/);\n var value = +split[1];\n var unit = split[2];\n\n // If it's not a number it's an operator, I guess\n if (!value) {\n return str;\n }\n\n if (unit.indexOf('%') === 0) {\n var element = void 0;\n switch (unit) {\n case '%p':\n element = popperOffsets;\n break;\n case '%':\n case '%r':\n default:\n element = referenceOffsets;\n }\n\n var rect = getClientRect(element);\n return rect[measurement] / 100 * value;\n } else if (unit === 'vh' || unit === 'vw') {\n // if is a vh or vw, we calculate the size based on the viewport\n var size = void 0;\n if (unit === 'vh') {\n size = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);\n } else {\n size = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);\n }\n return size / 100 * value;\n } else {\n // if is an explicit pixel unit, we get rid of the unit and keep the value\n // if is an implicit unit, it's px, and we return just the value\n return value;\n }\n}\n\n/**\n * Parse an `offset` string to extrapolate `x` and `y` numeric offsets.\n * @function\n * @memberof {modifiers~offset}\n * @private\n * @argument {String} offset\n * @argument {Object} popperOffsets\n * @argument {Object} referenceOffsets\n * @argument {String} basePlacement\n * @returns {Array} a two cells array with x and y offsets in numbers\n */\nfunction parseOffset(offset, popperOffsets, referenceOffsets, basePlacement) {\n var offsets = [0, 0];\n\n // Use height if placement is left or right and index is 0 otherwise use width\n // in this way the first offset will use an axis and the second one\n // will use the other one\n var useHeight = ['right', 'left'].indexOf(basePlacement) !== -1;\n\n // Split the offset string to obtain a list of values and operands\n // The regex addresses values with the plus or minus sign in front (+10, -20, etc)\n var fragments = offset.split(/(\\+|\\-)/).map(function (frag) {\n return frag.trim();\n });\n\n // Detect if the offset string contains a pair of values or a single one\n // they could be separated by comma or space\n var divider = fragments.indexOf(find(fragments, function (frag) {\n return frag.search(/,|\\s/) !== -1;\n }));\n\n if (fragments[divider] && fragments[divider].indexOf(',') === -1) {\n console.warn('Offsets separated by white space(s) are deprecated, use a comma (,) instead.');\n }\n\n // If divider is found, we divide the list of values and operands to divide\n // them by ofset X and Y.\n var splitRegex = /\\s*,\\s*|\\s+/;\n var ops = divider !== -1 ? [fragments.slice(0, divider).concat([fragments[divider].split(splitRegex)[0]]), [fragments[divider].split(splitRegex)[1]].concat(fragments.slice(divider + 1))] : [fragments];\n\n // Convert the values with units to absolute pixels to allow our computations\n ops = ops.map(function (op, index) {\n // Most of the units rely on the orientation of the popper\n var measurement = (index === 1 ? !useHeight : useHeight) ? 'height' : 'width';\n var mergeWithPrevious = false;\n return op\n // This aggregates any `+` or `-` sign that aren't considered operators\n // e.g.: 10 + +5 => [10, +, +5]\n .reduce(function (a, b) {\n if (a[a.length - 1] === '' && ['+', '-'].indexOf(b) !== -1) {\n a[a.length - 1] = b;\n mergeWithPrevious = true;\n return a;\n } else if (mergeWithPrevious) {\n a[a.length - 1] += b;\n mergeWithPrevious = false;\n return a;\n } else {\n return a.concat(b);\n }\n }, [])\n // Here we convert the string values into number values (in px)\n .map(function (str) {\n return toValue(str, measurement, popperOffsets, referenceOffsets);\n });\n });\n\n // Loop trough the offsets arrays and execute the operations\n ops.forEach(function (op, index) {\n op.forEach(function (frag, index2) {\n if (isNumeric(frag)) {\n offsets[index] += frag * (op[index2 - 1] === '-' ? -1 : 1);\n }\n });\n });\n return offsets;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @argument {Number|String} options.offset=0\n * The offset value as described in the modifier description\n * @returns {Object} The data object, properly modified\n */\nfunction offset(data, _ref) {\n var offset = _ref.offset;\n var placement = data.placement,\n _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var basePlacement = placement.split('-')[0];\n\n var offsets = void 0;\n if (isNumeric(+offset)) {\n offsets = [+offset, 0];\n } else {\n offsets = parseOffset(offset, popper, reference, basePlacement);\n }\n\n if (basePlacement === 'left') {\n popper.top += offsets[0];\n popper.left -= offsets[1];\n } else if (basePlacement === 'right') {\n popper.top += offsets[0];\n popper.left += offsets[1];\n } else if (basePlacement === 'top') {\n popper.left += offsets[0];\n popper.top -= offsets[1];\n } else if (basePlacement === 'bottom') {\n popper.left += offsets[0];\n popper.top += offsets[1];\n }\n\n data.popper = popper;\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction preventOverflow(data, options) {\n var boundariesElement = options.boundariesElement || getOffsetParent(data.instance.popper);\n\n // If offsetParent is the reference element, we really want to\n // go one step up and use the next offsetParent as reference to\n // avoid to make this modifier completely useless and look like broken\n if (data.instance.reference === boundariesElement) {\n boundariesElement = getOffsetParent(boundariesElement);\n }\n\n // NOTE: DOM access here\n // resets the popper's position so that the document size can be calculated excluding\n // the size of the popper element itself\n var transformProp = getSupportedPropertyName('transform');\n var popperStyles = data.instance.popper.style; // assignment to help minification\n var top = popperStyles.top,\n left = popperStyles.left,\n transform = popperStyles[transformProp];\n\n popperStyles.top = '';\n popperStyles.left = '';\n popperStyles[transformProp] = '';\n\n var boundaries = getBoundaries(data.instance.popper, data.instance.reference, options.padding, boundariesElement, data.positionFixed);\n\n // NOTE: DOM access here\n // restores the original style properties after the offsets have been computed\n popperStyles.top = top;\n popperStyles.left = left;\n popperStyles[transformProp] = transform;\n\n options.boundaries = boundaries;\n\n var order = options.priority;\n var popper = data.offsets.popper;\n\n var check = {\n primary: function primary(placement) {\n var value = popper[placement];\n if (popper[placement] < boundaries[placement] && !options.escapeWithReference) {\n value = Math.max(popper[placement], boundaries[placement]);\n }\n return defineProperty({}, placement, value);\n },\n secondary: function secondary(placement) {\n var mainSide = placement === 'right' ? 'left' : 'top';\n var value = popper[mainSide];\n if (popper[placement] > boundaries[placement] && !options.escapeWithReference) {\n value = Math.min(popper[mainSide], boundaries[placement] - (placement === 'right' ? popper.width : popper.height));\n }\n return defineProperty({}, mainSide, value);\n }\n };\n\n order.forEach(function (placement) {\n var side = ['left', 'top'].indexOf(placement) !== -1 ? 'primary' : 'secondary';\n popper = _extends({}, popper, check[side](placement));\n });\n\n data.offsets.popper = popper;\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction shift(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var shiftvariation = placement.split('-')[1];\n\n // if shift shiftvariation is specified, run the modifier\n if (shiftvariation) {\n var _data$offsets = data.offsets,\n reference = _data$offsets.reference,\n popper = _data$offsets.popper;\n\n var isVertical = ['bottom', 'top'].indexOf(basePlacement) !== -1;\n var side = isVertical ? 'left' : 'top';\n var measurement = isVertical ? 'width' : 'height';\n\n var shiftOffsets = {\n start: defineProperty({}, side, reference[side]),\n end: defineProperty({}, side, reference[side] + reference[measurement] - popper[measurement])\n };\n\n data.offsets.popper = _extends({}, popper, shiftOffsets[shiftvariation]);\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by update method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction hide(data) {\n if (!isModifierRequired(data.instance.modifiers, 'hide', 'preventOverflow')) {\n return data;\n }\n\n var refRect = data.offsets.reference;\n var bound = find(data.instance.modifiers, function (modifier) {\n return modifier.name === 'preventOverflow';\n }).boundaries;\n\n if (refRect.bottom < bound.top || refRect.left > bound.right || refRect.top > bound.bottom || refRect.right < bound.left) {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === true) {\n return data;\n }\n\n data.hide = true;\n data.attributes['x-out-of-boundaries'] = '';\n } else {\n // Avoid unnecessary DOM access if visibility hasn't changed\n if (data.hide === false) {\n return data;\n }\n\n data.hide = false;\n data.attributes['x-out-of-boundaries'] = false;\n }\n\n return data;\n}\n\n/**\n * @function\n * @memberof Modifiers\n * @argument {Object} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {Object} The data object, properly modified\n */\nfunction inner(data) {\n var placement = data.placement;\n var basePlacement = placement.split('-')[0];\n var _data$offsets = data.offsets,\n popper = _data$offsets.popper,\n reference = _data$offsets.reference;\n\n var isHoriz = ['left', 'right'].indexOf(basePlacement) !== -1;\n\n var subtractLength = ['top', 'left'].indexOf(basePlacement) === -1;\n\n popper[isHoriz ? 'left' : 'top'] = reference[basePlacement] - (subtractLength ? popper[isHoriz ? 'width' : 'height'] : 0);\n\n data.placement = getOppositePlacement(placement);\n data.offsets.popper = getClientRect(popper);\n\n return data;\n}\n\n/**\n * Modifier function, each modifier can have a function of this type assigned\n * to its `fn` property.<br />\n * These functions will be called on each update, this means that you must\n * make sure they are performant enough to avoid performance bottlenecks.\n *\n * @function ModifierFn\n * @argument {dataObject} data - The data object generated by `update` method\n * @argument {Object} options - Modifiers configuration and options\n * @returns {dataObject} The data object, properly modified\n */\n\n/**\n * Modifiers are plugins used to alter the behavior of your poppers.<br />\n * Popper.js uses a set of 9 modifiers to provide all the basic functionalities\n * needed by the library.\n *\n * Usually you don't want to override the `order`, `fn` and `onLoad` props.\n * All the other properties are configurations that could be tweaked.\n * @namespace modifiers\n */\nvar modifiers = {\n /**\n * Modifier used to shift the popper on the start or end of its reference\n * element.<br />\n * It will read the variation of the `placement` property.<br />\n * It can be one either `-end` or `-start`.\n * @memberof modifiers\n * @inner\n */\n shift: {\n /** @prop {number} order=100 - Index used to define the order of execution */\n order: 100,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: shift\n },\n\n /**\n * The `offset` modifier can shift your popper on both its axis.\n *\n * It accepts the following units:\n * - `px` or unitless, interpreted as pixels\n * - `%` or `%r`, percentage relative to the length of the reference element\n * - `%p`, percentage relative to the length of the popper element\n * - `vw`, CSS viewport width unit\n * - `vh`, CSS viewport height unit\n *\n * For length is intended the main axis relative to the placement of the popper.<br />\n * This means that if the placement is `top` or `bottom`, the length will be the\n * `width`. In case of `left` or `right`, it will be the height.\n *\n * You can provide a single value (as `Number` or `String`), or a pair of values\n * as `String` divided by a comma or one (or more) white spaces.<br />\n * The latter is a deprecated method because it leads to confusion and will be\n * removed in v2.<br />\n * Additionally, it accepts additions and subtractions between different units.\n * Note that multiplications and divisions aren't supported.\n *\n * Valid examples are:\n * ```\n * 10\n * '10%'\n * '10, 10'\n * '10%, 10'\n * '10 + 10%'\n * '10 - 5vh + 3%'\n * '-10px + 5vh, 5px - 6%'\n * ```\n * > **NB**: If you desire to apply offsets to your poppers in a way that may make them overlap\n * > with their reference element, unfortunately, you will have to disable the `flip` modifier.\n * > More on this [reading this issue](https://github.com/FezVrasta/popper.js/issues/373)\n *\n * @memberof modifiers\n * @inner\n */\n offset: {\n /** @prop {number} order=200 - Index used to define the order of execution */\n order: 200,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: offset,\n /** @prop {Number|String} offset=0\n * The offset value as described in the modifier description\n */\n offset: 0\n },\n\n /**\n * Modifier used to prevent the popper from being positioned outside the boundary.\n *\n * An scenario exists where the reference itself is not within the boundaries.<br />\n * We can say it has \"escaped the boundaries\" — or just \"escaped\".<br />\n * In this case we need to decide whether the popper should either:\n *\n * - detach from the reference and remain \"trapped\" in the boundaries, or\n * - if it should ignore the boundary and \"escape with its reference\"\n *\n * When `escapeWithReference` is set to`true` and reference is completely\n * outside its boundaries, the popper will overflow (or completely leave)\n * the boundaries in order to remain attached to the edge of the reference.\n *\n * @memberof modifiers\n * @inner\n */\n preventOverflow: {\n /** @prop {number} order=300 - Index used to define the order of execution */\n order: 300,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: preventOverflow,\n /**\n * @prop {Array} [priority=['left','right','top','bottom']]\n * Popper will try to prevent overflow following these priorities by default,\n * then, it could overflow on the left and on top of the `boundariesElement`\n */\n priority: ['left', 'right', 'top', 'bottom'],\n /**\n * @prop {number} padding=5\n * Amount of pixel used to define a minimum distance between the boundaries\n * and the popper this makes sure the popper has always a little padding\n * between the edges of its container\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='scrollParent'\n * Boundaries used by the modifier, can be `scrollParent`, `window`,\n * `viewport` or any DOM element.\n */\n boundariesElement: 'scrollParent'\n },\n\n /**\n * Modifier used to make sure the reference and its popper stay near eachothers\n * without leaving any gap between the two. Expecially useful when the arrow is\n * enabled and you want to assure it to point to its reference element.\n * It cares only about the first axis, you can still have poppers with margin\n * between the popper and its reference element.\n * @memberof modifiers\n * @inner\n */\n keepTogether: {\n /** @prop {number} order=400 - Index used to define the order of execution */\n order: 400,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: keepTogether\n },\n\n /**\n * This modifier is used to move the `arrowElement` of the popper to make\n * sure it is positioned between the reference element and its popper element.\n * It will read the outer size of the `arrowElement` node to detect how many\n * pixels of conjuction are needed.\n *\n * It has no effect if no `arrowElement` is provided.\n * @memberof modifiers\n * @inner\n */\n arrow: {\n /** @prop {number} order=500 - Index used to define the order of execution */\n order: 500,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: arrow,\n /** @prop {String|HTMLElement} element='[x-arrow]' - Selector or node used as arrow */\n element: '[x-arrow]'\n },\n\n /**\n * Modifier used to flip the popper's placement when it starts to overlap its\n * reference element.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n *\n * **NOTE:** this modifier will interrupt the current update cycle and will\n * restart it if it detects the need to flip the placement.\n * @memberof modifiers\n * @inner\n */\n flip: {\n /** @prop {number} order=600 - Index used to define the order of execution */\n order: 600,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: flip,\n /**\n * @prop {String|Array} behavior='flip'\n * The behavior used to change the popper's placement. It can be one of\n * `flip`, `clockwise`, `counterclockwise` or an array with a list of valid\n * placements (with optional variations).\n */\n behavior: 'flip',\n /**\n * @prop {number} padding=5\n * The popper will flip if it hits the edges of the `boundariesElement`\n */\n padding: 5,\n /**\n * @prop {String|HTMLElement} boundariesElement='viewport'\n * The element which will define the boundaries of the popper position,\n * the popper will never be placed outside of the defined boundaries\n * (except if keepTogether is enabled)\n */\n boundariesElement: 'viewport'\n },\n\n /**\n * Modifier used to make the popper flow toward the inner of the reference element.\n * By default, when this modifier is disabled, the popper will be placed outside\n * the reference element.\n * @memberof modifiers\n * @inner\n */\n inner: {\n /** @prop {number} order=700 - Index used to define the order of execution */\n order: 700,\n /** @prop {Boolean} enabled=false - Whether the modifier is enabled or not */\n enabled: false,\n /** @prop {ModifierFn} */\n fn: inner\n },\n\n /**\n * Modifier used to hide the popper when its reference element is outside of the\n * popper boundaries. It will set a `x-out-of-boundaries` attribute which can\n * be used to hide with a CSS selector the popper when its reference is\n * out of boundaries.\n *\n * Requires the `preventOverflow` modifier before it in order to work.\n * @memberof modifiers\n * @inner\n */\n hide: {\n /** @prop {number} order=800 - Index used to define the order of execution */\n order: 800,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: hide\n },\n\n /**\n * Computes the style that will be applied to the popper element to gets\n * properly positioned.\n *\n * Note that this modifier will not touch the DOM, it just prepares the styles\n * so that `applyStyle` modifier can apply it. This separation is useful\n * in case you need to replace `applyStyle` with a custom implementation.\n *\n * This modifier has `850` as `order` value to maintain backward compatibility\n * with previous versions of Popper.js. Expect the modifiers ordering method\n * to change in future major versions of the library.\n *\n * @memberof modifiers\n * @inner\n */\n computeStyle: {\n /** @prop {number} order=850 - Index used to define the order of execution */\n order: 850,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: computeStyle,\n /**\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n */\n gpuAcceleration: true,\n /**\n * @prop {string} [x='bottom']\n * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n * Change this if your popper should grow in a direction different from `bottom`\n */\n x: 'bottom',\n /**\n * @prop {string} [x='left']\n * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n * Change this if your popper should grow in a direction different from `right`\n */\n y: 'right'\n },\n\n /**\n * Applies the computed styles to the popper element.\n *\n * All the DOM manipulations are limited to this modifier. This is useful in case\n * you want to integrate Popper.js inside a framework or view library and you\n * want to delegate all the DOM manipulations to it.\n *\n * Note that if you disable this modifier, you must make sure the popper element\n * has its position set to `absolute` before Popper.js can do its work!\n *\n * Just disable this modifier and define you own to achieve the desired effect.\n *\n * @memberof modifiers\n * @inner\n */\n applyStyle: {\n /** @prop {number} order=900 - Index used to define the order of execution */\n order: 900,\n /** @prop {Boolean} enabled=true - Whether the modifier is enabled or not */\n enabled: true,\n /** @prop {ModifierFn} */\n fn: applyStyle,\n /** @prop {Function} */\n onLoad: applyStyleOnLoad,\n /**\n * @deprecated since version 1.10.0, the property moved to `computeStyle` modifier\n * @prop {Boolean} gpuAcceleration=true\n * If true, it uses the CSS 3d transformation to position the popper.\n * Otherwise, it will use the `top` and `left` properties.\n */\n gpuAcceleration: undefined\n }\n};\n\n/**\n * The `dataObject` is an object containing all the informations used by Popper.js\n * this object get passed to modifiers and to the `onCreate` and `onUpdate` callbacks.\n * @name dataObject\n * @property {Object} data.instance The Popper.js instance\n * @property {String} data.placement Placement applied to popper\n * @property {String} data.originalPlacement Placement originally defined on init\n * @property {Boolean} data.flipped True if popper has been flipped by flip modifier\n * @property {Boolean} data.hide True if the reference element is out of boundaries, useful to know when to hide the popper.\n * @property {HTMLElement} data.arrowElement Node used as arrow by arrow modifier\n * @property {Object} data.styles Any CSS property defined here will be applied to the popper, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.arrowStyles Any CSS property defined here will be applied to the popper arrow, it expects the JavaScript nomenclature (eg. `marginBottom`)\n * @property {Object} data.boundaries Offsets of the popper boundaries\n * @property {Object} data.offsets The measurements of popper, reference and arrow elements.\n * @property {Object} data.offsets.popper `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.reference `top`, `left`, `width`, `height` values\n * @property {Object} data.offsets.arrow] `top` and `left` offsets, only one of them will be different from 0\n */\n\n/**\n * Default options provided to Popper.js constructor.<br />\n * These can be overriden using the `options` argument of Popper.js.<br />\n * To override an option, simply pass as 3rd argument an object with the same\n * structure of this object, example:\n * ```\n * new Popper(ref, pop, {\n * modifiers: {\n * preventOverflow: { enabled: false }\n * }\n * })\n * ```\n * @type {Object}\n * @static\n * @memberof Popper\n */\nvar Defaults = {\n /**\n * Popper's placement\n * @prop {Popper.placements} placement='bottom'\n */\n placement: 'bottom',\n\n /**\n * Set this to true if you want popper to position it self in 'fixed' mode\n * @prop {Boolean} positionFixed=false\n */\n positionFixed: false,\n\n /**\n * Whether events (resize, scroll) are initially enabled\n * @prop {Boolean} eventsEnabled=true\n */\n eventsEnabled: true,\n\n /**\n * Set to true if you want to automatically remove the popper when\n * you call the `destroy` method.\n * @prop {Boolean} removeOnDestroy=false\n */\n removeOnDestroy: false,\n\n /**\n * Callback called when the popper is created.<br />\n * By default, is set to no-op.<br />\n * Access Popper.js instance with `data.instance`.\n * @prop {onCreate}\n */\n onCreate: function onCreate() {},\n\n /**\n * Callback called when the popper is updated, this callback is not called\n * on the initialization/creation of the popper, but only on subsequent\n * updates.<br />\n * By default, is set to no-op.<br />\n * Access Popper.js instance with `data.instance`.\n * @prop {onUpdate}\n */\n onUpdate: function onUpdate() {},\n\n /**\n * List of modifiers used to modify the offsets before they are applied to the popper.\n * They provide most of the functionalities of Popper.js\n * @prop {modifiers}\n */\n modifiers: modifiers\n};\n\n/**\n * @callback onCreate\n * @param {dataObject} data\n */\n\n/**\n * @callback onUpdate\n * @param {dataObject} data\n */\n\n// Utils\n// Methods\nvar Popper = function () {\n /**\n * Create a new Popper.js instance\n * @class Popper\n * @param {HTMLElement|referenceObject} reference - The reference element used to position the popper\n * @param {HTMLElement} popper - The HTML element used as popper.\n * @param {Object} options - Your custom options to override the ones defined in [Defaults](#defaults)\n * @return {Object} instance - The generated Popper.js instance\n */\n function Popper(reference, popper) {\n var _this = this;\n\n var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n classCallCheck(this, Popper);\n\n this.scheduleUpdate = function () {\n return requestAnimationFrame(_this.update);\n };\n\n // make update() debounced, so that it only runs at most once-per-tick\n this.update = debounce(this.update.bind(this));\n\n // with {} we create a new object with the options inside it\n this.options = _extends({}, Popper.Defaults, options);\n\n // init state\n this.state = {\n isDestroyed: false,\n isCreated: false,\n scrollParents: []\n };\n\n // get reference and popper elements (allow jQuery wrappers)\n this.reference = reference && reference.jquery ? reference[0] : reference;\n this.popper = popper && popper.jquery ? popper[0] : popper;\n\n // Deep merge modifiers options\n this.options.modifiers = {};\n Object.keys(_extends({}, Popper.Defaults.modifiers, options.modifiers)).forEach(function (name) {\n _this.options.modifiers[name] = _extends({}, Popper.Defaults.modifiers[name] || {}, options.modifiers ? options.modifiers[name] : {});\n });\n\n // Refactoring modifiers' list (Object => Array)\n this.modifiers = Object.keys(this.options.modifiers).map(function (name) {\n return _extends({\n name: name\n }, _this.options.modifiers[name]);\n })\n // sort the modifiers by order\n .sort(function (a, b) {\n return a.order - b.order;\n });\n\n // modifiers have the ability to execute arbitrary code when Popper.js get inited\n // such code is executed in the same order of its modifier\n // they could add new properties to their options configuration\n // BE AWARE: don't add options to `options.modifiers.name` but to `modifierOptions`!\n this.modifiers.forEach(function (modifierOptions) {\n if (modifierOptions.enabled && isFunction(modifierOptions.onLoad)) {\n modifierOptions.onLoad(_this.reference, _this.popper, _this.options, modifierOptions, _this.state);\n }\n });\n\n // fire the first update to position the popper in the right place\n this.update();\n\n var eventsEnabled = this.options.eventsEnabled;\n if (eventsEnabled) {\n // setup event listeners, they will take care of update the position in specific situations\n this.enableEventListeners();\n }\n\n this.state.eventsEnabled = eventsEnabled;\n }\n\n // We can't use class properties because they don't get listed in the\n // class prototype and break stuff like Sinon stubs\n\n\n createClass(Popper, [{\n key: 'update',\n value: function update$$1() {\n return update.call(this);\n }\n }, {\n key: 'destroy',\n value: function destroy$$1() {\n return destroy.call(this);\n }\n }, {\n key: 'enableEventListeners',\n value: function enableEventListeners$$1() {\n return enableEventListeners.call(this);\n }\n }, {\n key: 'disableEventListeners',\n value: function disableEventListeners$$1() {\n return disableEventListeners.call(this);\n }\n\n /**\n * Schedule an update, it will run on the next UI update available\n * @method scheduleUpdate\n * @memberof Popper\n */\n\n\n /**\n * Collection of utilities useful when writing custom modifiers.\n * Starting from version 1.7, this method is available only if you\n * include `popper-utils.js` before `popper.js`.\n *\n * **DEPRECATION**: This way to access PopperUtils is deprecated\n * and will be removed in v2! Use the PopperUtils module directly instead.\n * Due to the high instability of the methods contained in Utils, we can't\n * guarantee them to follow semver. Use them at your own risk!\n * @static\n * @private\n * @type {Object}\n * @deprecated since version 1.8\n * @member Utils\n * @memberof Popper\n */\n\n }]);\n return Popper;\n}();\n\n/**\n * The `referenceObject` is an object that provides an interface compatible with Popper.js\n * and lets you use it as replacement of a real DOM node.<br />\n * You can use this method to position a popper relatively to a set of coordinates\n * in case you don't have a DOM node to use as reference.\n *\n * ```\n * new Popper(referenceObject, popperNode);\n * ```\n *\n * NB: This feature isn't supported in Internet Explorer 10\n * @name referenceObject\n * @property {Function} data.getBoundingClientRect\n * A function that returns a set of coordinates compatible with the native `getBoundingClientRect` method.\n * @property {number} data.clientWidth\n * An ES6 getter that will return the width of the virtual reference element.\n * @property {number} data.clientHeight\n * An ES6 getter that will return the height of the virtual reference element.\n */\n\n\nPopper.Utils = (typeof window !== 'undefined' ? window : global).PopperUtils;\nPopper.placements = placements;\nPopper.Defaults = Defaults;\n\nvar SVGAnimatedString = function SVGAnimatedString() {};\nif (typeof window !== 'undefined') {\n\tSVGAnimatedString = window.SVGAnimatedString;\n}\n\nfunction convertToArray(value) {\n\tif (typeof value === 'string') {\n\t\tvalue = value.split(' ');\n\t}\n\treturn value;\n}\n\n/**\n * Add classes to an element.\n * This method checks to ensure that the classes don't already exist before adding them.\n * It uses el.className rather than classList in order to be IE friendly.\n * @param {object} el - The element to add the classes to.\n * @param {classes} string - List of space separated classes to be added to the element.\n */\nfunction addClasses(el, classes) {\n\tvar newClasses = convertToArray(classes);\n\tvar classList = void 0;\n\tif (el.className instanceof SVGAnimatedString) {\n\t\tclassList = convertToArray(el.className.baseVal);\n\t} else {\n\t\tclassList = convertToArray(el.className);\n\t}\n\tnewClasses.forEach(function (newClass) {\n\t\tif (classList.indexOf(newClass) === -1) {\n\t\t\tclassList.push(newClass);\n\t\t}\n\t});\n\tif (el instanceof SVGElement) {\n\t\tel.setAttribute('class', classList.join(' '));\n\t} else {\n\t\tel.className = classList.join(' ');\n\t}\n}\n\n/**\n * Remove classes from an element.\n * It uses el.className rather than classList in order to be IE friendly.\n * @export\n * @param {any} el The element to remove the classes from.\n * @param {any} classes List of space separated classes to be removed from the element.\n */\nfunction removeClasses(el, classes) {\n\tvar newClasses = convertToArray(classes);\n\tvar classList = void 0;\n\tif (el.className instanceof SVGAnimatedString) {\n\t\tclassList = convertToArray(el.className.baseVal);\n\t} else {\n\t\tclassList = convertToArray(el.className);\n\t}\n\tnewClasses.forEach(function (newClass) {\n\t\tvar index = classList.indexOf(newClass);\n\t\tif (index !== -1) {\n\t\t\tclassList.splice(index, 1);\n\t\t}\n\t});\n\tif (el instanceof SVGElement) {\n\t\tel.setAttribute('class', classList.join(' '));\n\t} else {\n\t\tel.className = classList.join(' ');\n\t}\n}\n\nvar supportsPassive = false;\n\nif (typeof window !== 'undefined') {\n\tsupportsPassive = false;\n\ttry {\n\t\tvar opts = Object.defineProperty({}, 'passive', {\n\t\t\tget: function get() {\n\t\t\t\tsupportsPassive = true;\n\t\t\t}\n\t\t});\n\t\twindow.addEventListener('test', null, opts);\n\t} catch (e) {}\n}\n\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) {\n return typeof obj;\n} : function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar classCallCheck$1 = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass$1 = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\n\n\nvar _extends$1 = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n};\n\n/* Forked from https://github.com/FezVrasta/popper.js/blob/master/packages/tooltip/src/index.js */\n\nvar DEFAULT_OPTIONS = {\n\tcontainer: false,\n\tdelay: 0,\n\thtml: false,\n\tplacement: 'top',\n\ttitle: '',\n\ttemplate: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n\ttrigger: 'hover focus',\n\toffset: 0\n};\n\nvar openTooltips = [];\n\nvar Tooltip = function () {\n\t/**\n * Create a new Tooltip.js instance\n * @class Tooltip\n * @param {HTMLElement} reference - The DOM node used as reference of the tooltip (it can be a jQuery element).\n * @param {Object} options\n * @param {String} options.placement=bottom\n *\t\t\tPlacement of the popper accepted values: `top(-start, -end), right(-start, -end), bottom(-start, -end),\n *\t\t\tleft(-start, -end)`\n * @param {HTMLElement|String|false} options.container=false - Append the tooltip to a specific element.\n * @param {Number|Object} options.delay=0\n *\t\t\tDelay showing and hiding the tooltip (ms) - does not apply to manual trigger type.\n *\t\t\tIf a number is supplied, delay is applied to both hide/show.\n *\t\t\tObject structure is: `{ show: 500, hide: 100 }`\n * @param {Boolean} options.html=false - Insert HTML into the tooltip. If false, the content will inserted with `innerText`.\n * @param {String|PlacementFunction} options.placement='top' - One of the allowed placements, or a function returning one of them.\n * @param {String} [options.template='<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>']\n *\t\t\tBase HTML to used when creating the tooltip.\n *\t\t\tThe tooltip's `title` will be injected into the `.tooltip-inner` or `.tooltip__inner`.\n *\t\t\t`.tooltip-arrow` or `.tooltip__arrow` will become the tooltip's arrow.\n *\t\t\tThe outermost wrapper element should have the `.tooltip` class.\n * @param {String|HTMLElement|TitleFunction} options.title='' - Default title value if `title` attribute isn't present.\n * @param {String} [options.trigger='hover focus']\n *\t\t\tHow tooltip is triggered - click, hover, focus, manual.\n *\t\t\tYou may pass multiple triggers; separate them with a space. `manual` cannot be combined with any other trigger.\n * @param {HTMLElement} options.boundariesElement\n *\t\t\tThe element used as boundaries for the tooltip. For more information refer to Popper.js'\n *\t\t\t[boundariesElement docs](https://popper.js.org/popper-documentation.html)\n * @param {Number|String} options.offset=0 - Offset of the tooltip relative to its reference. For more information refer to Popper.js'\n *\t\t\t[offset docs](https://popper.js.org/popper-documentation.html)\n * @param {Object} options.popperOptions={} - Popper options, will be passed directly to popper instance. For more information refer to Popper.js'\n *\t\t\t[options docs](https://popper.js.org/popper-documentation.html)\n * @return {Object} instance - The generated tooltip instance\n */\n\tfunction Tooltip(reference, options) {\n\t\tclassCallCheck$1(this, Tooltip);\n\n\t\t_initialiseProps.call(this);\n\n\t\t// apply user options over default ones\n\t\toptions = _extends$1({}, DEFAULT_OPTIONS, options);\n\n\t\treference.jquery && (reference = reference[0]);\n\n\t\t// cache reference and options\n\t\tthis.reference = reference;\n\t\tthis.options = options;\n\n\t\t// set initial state\n\t\tthis._isOpen = false;\n\n\t\tthis._init();\n\t}\n\n\t//\n\t// Public methods\n\t//\n\n\t/**\n * Reveals an element's tooltip. This is considered a \"manual\" triggering of the tooltip.\n * Tooltips with zero-length titles are never displayed.\n * @method Tooltip#show\n * @memberof Tooltip\n */\n\n\n\t/**\n * Hides an element’s tooltip. This is considered a “manual” triggering of the tooltip.\n * @method Tooltip#hide\n * @memberof Tooltip\n */\n\n\n\t/**\n * Hides and destroys an element’s tooltip.\n * @method Tooltip#dispose\n * @memberof Tooltip\n */\n\n\n\t/**\n * Toggles an element’s tooltip. This is considered a “manual” triggering of the tooltip.\n * @method Tooltip#toggle\n * @memberof Tooltip\n */\n\n\n\tcreateClass$1(Tooltip, [{\n\t\tkey: 'setClasses',\n\t\tvalue: function setClasses(classes) {\n\t\t\tthis._classes = classes;\n\t\t}\n\t}, {\n\t\tkey: 'setContent',\n\t\tvalue: function setContent(content) {\n\t\t\tthis.options.title = content;\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._setContent(content, this.options);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: 'setOptions',\n\t\tvalue: function setOptions(options) {\n\t\t\tvar classesUpdated = false;\n\t\t\tvar classes = options && options.classes || directive.options.defaultClass;\n\t\t\tif (this._classes !== classes) {\n\t\t\t\tthis.setClasses(classes);\n\t\t\t\tclassesUpdated = true;\n\t\t\t}\n\n\t\t\toptions = getOptions(options);\n\n\t\t\tvar needPopperUpdate = false;\n\t\t\tvar needRestart = false;\n\n\t\t\tif (this.options.offset !== options.offset || this.options.placement !== options.placement) {\n\t\t\t\tneedPopperUpdate = true;\n\t\t\t}\n\n\t\t\tif (this.options.template !== options.template || this.options.trigger !== options.trigger || this.options.container !== options.container || classesUpdated) {\n\t\t\t\tneedRestart = true;\n\t\t\t}\n\n\t\t\tfor (var key in options) {\n\t\t\t\tthis.options[key] = options[key];\n\t\t\t}\n\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tif (needRestart) {\n\t\t\t\t\tvar isOpen = this._isOpen;\n\n\t\t\t\t\tthis.dispose();\n\t\t\t\t\tthis._init();\n\n\t\t\t\t\tif (isOpen) {\n\t\t\t\t\t\tthis.show();\n\t\t\t\t\t}\n\t\t\t\t} else if (needPopperUpdate) {\n\t\t\t\t\tthis.popperInstance.update();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t//\n\t\t// Private methods\n\t\t//\n\n\t}, {\n\t\tkey: '_init',\n\t\tvalue: function _init() {\n\t\t\t// get events list\n\t\t\tvar events = typeof this.options.trigger === 'string' ? this.options.trigger.split(' ').filter(function (trigger) {\n\t\t\t\treturn ['click', 'hover', 'focus'].indexOf(trigger) !== -1;\n\t\t\t}) : [];\n\t\t\tthis._isDisposed = false;\n\t\t\tthis._enableDocumentTouch = events.indexOf('manual') === -1;\n\n\t\t\t// set event listeners\n\t\t\tthis._setEventListeners(this.reference, events, this.options);\n\t\t}\n\n\t\t/**\n * Creates a new tooltip node\n * @memberof Tooltip\n * @private\n * @param {HTMLElement} reference\n * @param {String} template\n * @param {String|HTMLElement|TitleFunction} title\n * @param {Boolean} allowHtml\n * @return {HTMLelement} tooltipNode\n */\n\n\t}, {\n\t\tkey: '_create',\n\t\tvalue: function _create(reference, template) {\n\t\t\t// create tooltip element\n\t\t\tvar tooltipGenerator = window.document.createElement('div');\n\t\t\ttooltipGenerator.innerHTML = template.trim();\n\t\t\tvar tooltipNode = tooltipGenerator.childNodes[0];\n\n\t\t\t// add unique ID to our tooltip (needed for accessibility reasons)\n\t\t\ttooltipNode.id = 'tooltip_' + Math.random().toString(36).substr(2, 10);\n\n\t\t\t// Initially hide the tooltip\n\t\t\t// The attribute will be switched in a next frame so\n\t\t\t// CSS transitions can play\n\t\t\ttooltipNode.setAttribute('aria-hidden', 'true');\n\n\t\t\tif (this.options.autoHide && this.options.trigger.indexOf('hover') !== -1) {\n\t\t\t\ttooltipNode.addEventListener('mouseenter', this.hide);\n\t\t\t\ttooltipNode.addEventListener('click', this.hide);\n\t\t\t}\n\n\t\t\t// return the generated tooltip node\n\t\t\treturn tooltipNode;\n\t\t}\n\t}, {\n\t\tkey: '_setContent',\n\t\tvalue: function _setContent(content, options) {\n\t\t\tvar _this = this;\n\n\t\t\tthis.asyncContent = false;\n\t\t\tthis._applyContent(content, options).then(function () {\n\t\t\t\t_this.popperInstance.update();\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_applyContent',\n\t\tvalue: function _applyContent(title, options) {\n\t\t\tvar _this2 = this;\n\n\t\t\treturn new Promise(function (resolve, reject) {\n\t\t\t\tvar allowHtml = options.html;\n\t\t\t\tvar rootNode = _this2._tooltipNode;\n\t\t\t\tif (!rootNode) return;\n\t\t\t\tvar titleNode = rootNode.querySelector(_this2.options.innerSelector);\n\t\t\t\tif (title.nodeType === 1) {\n\t\t\t\t\t// if title is a node, append it only if allowHtml is true\n\t\t\t\t\tif (allowHtml) {\n\t\t\t\t\t\twhile (titleNode.firstChild) {\n\t\t\t\t\t\t\ttitleNode.removeChild(titleNode.firstChild);\n\t\t\t\t\t\t}\n\t\t\t\t\t\ttitleNode.appendChild(title);\n\t\t\t\t\t}\n\t\t\t\t} else if (typeof title === 'function') {\n\t\t\t\t\t// if title is a function, call it and set innerText or innerHtml depending by `allowHtml` value\n\t\t\t\t\tvar result = title();\n\t\t\t\t\tif (result && typeof result.then === 'function') {\n\t\t\t\t\t\t_this2.asyncContent = true;\n\t\t\t\t\t\toptions.loadingClass && addClasses(rootNode, options.loadingClass);\n\t\t\t\t\t\tif (options.loadingContent) {\n\t\t\t\t\t\t\t_this2._applyContent(options.loadingContent, options);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tresult.then(function (asyncResult) {\n\t\t\t\t\t\t\toptions.loadingClass && removeClasses(rootNode, options.loadingClass);\n\t\t\t\t\t\t\treturn _this2._applyContent(asyncResult, options);\n\t\t\t\t\t\t}).then(resolve).catch(reject);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_this2._applyContent(result, options).then(resolve).catch(reject);\n\t\t\t\t\t}\n\t\t\t\t\treturn;\n\t\t\t\t} else {\n\t\t\t\t\t// if it's just a simple text, set innerText or innerHtml depending by `allowHtml` value\n\t\t\t\t\tallowHtml ? titleNode.innerHTML = title : titleNode.innerText = title;\n\t\t\t\t}\n\t\t\t\tresolve();\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_show',\n\t\tvalue: function _show(reference, options) {\n\t\t\tif (options && typeof options.container === 'string') {\n\t\t\t\tvar container = document.querySelector(options.container);\n\t\t\t\tif (!container) return;\n\t\t\t}\n\n\t\t\tclearTimeout(this._disposeTimer);\n\n\t\t\toptions = Object.assign({}, options);\n\t\t\tdelete options.offset;\n\n\t\t\tvar updateClasses = true;\n\t\t\tif (this._tooltipNode) {\n\t\t\t\taddClasses(this._tooltipNode, this._classes);\n\t\t\t\tupdateClasses = false;\n\t\t\t}\n\n\t\t\tvar result = this._ensureShown(reference, options);\n\n\t\t\tif (updateClasses && this._tooltipNode) {\n\t\t\t\taddClasses(this._tooltipNode, this._classes);\n\t\t\t}\n\n\t\t\taddClasses(reference, ['v-tooltip-open']);\n\n\t\t\treturn result;\n\t\t}\n\t}, {\n\t\tkey: '_ensureShown',\n\t\tvalue: function _ensureShown(reference, options) {\n\t\t\tvar _this3 = this;\n\n\t\t\t// don't show if it's already visible\n\t\t\tif (this._isOpen) {\n\t\t\t\treturn this;\n\t\t\t}\n\t\t\tthis._isOpen = true;\n\n\t\t\topenTooltips.push(this);\n\n\t\t\t// if the tooltipNode already exists, just show it\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._tooltipNode.style.display = '';\n\t\t\t\tthis._tooltipNode.setAttribute('aria-hidden', 'false');\n\t\t\t\tthis.popperInstance.enableEventListeners();\n\t\t\t\tthis.popperInstance.update();\n\t\t\t\tif (this.asyncContent) {\n\t\t\t\t\tthis._setContent(options.title, options);\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// get title\n\t\t\tvar title = reference.getAttribute('title') || options.title;\n\n\t\t\t// don't show tooltip if no title is defined\n\t\t\tif (!title) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\t// create tooltip node\n\t\t\tvar tooltipNode = this._create(reference, options.template);\n\t\t\tthis._tooltipNode = tooltipNode;\n\n\t\t\tthis._setContent(title, options);\n\n\t\t\t// Add `aria-describedby` to our reference element for accessibility reasons\n\t\t\treference.setAttribute('aria-describedby', tooltipNode.id);\n\n\t\t\t// append tooltip to container\n\t\t\tvar container = this._findContainer(options.container, reference);\n\n\t\t\tthis._append(tooltipNode, container);\n\n\t\t\tvar popperOptions = _extends$1({}, options.popperOptions, {\n\t\t\t\tplacement: options.placement\n\t\t\t});\n\n\t\t\tpopperOptions.modifiers = _extends$1({}, popperOptions.modifiers, {\n\t\t\t\tarrow: {\n\t\t\t\t\telement: this.options.arrowSelector\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tif (options.boundariesElement) {\n\t\t\t\tpopperOptions.modifiers.preventOverflow = {\n\t\t\t\t\tboundariesElement: options.boundariesElement\n\t\t\t\t};\n\t\t\t}\n\n\t\t\tthis.popperInstance = new Popper(reference, tooltipNode, popperOptions);\n\n\t\t\t// Fix position\n\t\t\trequestAnimationFrame(function () {\n\t\t\t\tif (!_this3._isDisposed && _this3.popperInstance) {\n\t\t\t\t\t_this3.popperInstance.update();\n\n\t\t\t\t\t// Show the tooltip\n\t\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\t\tif (!_this3._isDisposed) {\n\t\t\t\t\t\t\t_this3._isOpen && tooltipNode.setAttribute('aria-hidden', 'false');\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t} else {\n\t\t\t\t\t_this3.dispose();\n\t\t\t\t}\n\t\t\t});\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_noLongerOpen',\n\t\tvalue: function _noLongerOpen() {\n\t\t\tvar index = openTooltips.indexOf(this);\n\t\t\tif (index !== -1) {\n\t\t\t\topenTooltips.splice(index, 1);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_hide',\n\t\tvalue: function _hide() /* reference, options */{\n\t\t\tvar _this4 = this;\n\n\t\t\t// don't hide if it's already hidden\n\t\t\tif (!this._isOpen) {\n\t\t\t\treturn this;\n\t\t\t}\n\n\t\t\tthis._isOpen = false;\n\t\t\tthis._noLongerOpen();\n\n\t\t\t// hide tooltipNode\n\t\t\tthis._tooltipNode.style.display = 'none';\n\t\t\tthis._tooltipNode.setAttribute('aria-hidden', 'true');\n\n\t\t\tthis.popperInstance.disableEventListeners();\n\n\t\t\tclearTimeout(this._disposeTimer);\n\t\t\tvar disposeTime = directive.options.disposeTimeout;\n\t\t\tif (disposeTime !== null) {\n\t\t\t\tthis._disposeTimer = setTimeout(function () {\n\t\t\t\t\tif (_this4._tooltipNode) {\n\t\t\t\t\t\t_this4._tooltipNode.removeEventListener('mouseenter', _this4.hide);\n\t\t\t\t\t\t_this4._tooltipNode.removeEventListener('click', _this4.hide);\n\t\t\t\t\t\t// Don't remove popper instance, just the HTML element\n\t\t\t\t\t\t_this4._tooltipNode.parentNode.removeChild(_this4._tooltipNode);\n\t\t\t\t\t\t_this4._tooltipNode = null;\n\t\t\t\t\t}\n\t\t\t\t}, disposeTime);\n\t\t\t}\n\n\t\t\tremoveClasses(this.reference, ['v-tooltip-open']);\n\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_dispose',\n\t\tvalue: function _dispose() {\n\t\t\tvar _this5 = this;\n\n\t\t\tthis._isDisposed = true;\n\n\t\t\t// remove event listeners first to prevent any unexpected behaviour\n\t\t\tthis._events.forEach(function (_ref) {\n\t\t\t\tvar func = _ref.func,\n\t\t\t\t event = _ref.event;\n\n\t\t\t\t_this5.reference.removeEventListener(event, func);\n\t\t\t});\n\t\t\tthis._events = [];\n\n\t\t\tif (this._tooltipNode) {\n\t\t\t\tthis._hide();\n\n\t\t\t\tthis._tooltipNode.removeEventListener('mouseenter', this.hide);\n\t\t\t\tthis._tooltipNode.removeEventListener('click', this.hide);\n\n\t\t\t\t// destroy instance\n\t\t\t\tthis.popperInstance.destroy();\n\n\t\t\t\t// destroy tooltipNode if removeOnDestroy is not set, as popperInstance.destroy() already removes the element\n\t\t\t\tif (!this.popperInstance.options.removeOnDestroy) {\n\t\t\t\t\tthis._tooltipNode.parentNode.removeChild(this._tooltipNode);\n\t\t\t\t\tthis._tooltipNode = null;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tthis._noLongerOpen();\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t}, {\n\t\tkey: '_findContainer',\n\t\tvalue: function _findContainer(container, reference) {\n\t\t\t// if container is a query, get the relative element\n\t\t\tif (typeof container === 'string') {\n\t\t\t\tcontainer = window.document.querySelector(container);\n\t\t\t} else if (container === false) {\n\t\t\t\t// if container is `false`, set it to reference parent\n\t\t\t\tcontainer = reference.parentNode;\n\t\t\t}\n\t\t\treturn container;\n\t\t}\n\n\t\t/**\n * Append tooltip to container\n * @memberof Tooltip\n * @private\n * @param {HTMLElement} tooltip\n * @param {HTMLElement|String|false} container\n */\n\n\t}, {\n\t\tkey: '_append',\n\t\tvalue: function _append(tooltipNode, container) {\n\t\t\tcontainer.appendChild(tooltipNode);\n\t\t}\n\t}, {\n\t\tkey: '_setEventListeners',\n\t\tvalue: function _setEventListeners(reference, events, options) {\n\t\t\tvar _this6 = this;\n\n\t\t\tvar directEvents = [];\n\t\t\tvar oppositeEvents = [];\n\n\t\t\tevents.forEach(function (event) {\n\t\t\t\tswitch (event) {\n\t\t\t\t\tcase 'hover':\n\t\t\t\t\t\tdirectEvents.push('mouseenter');\n\t\t\t\t\t\toppositeEvents.push('mouseleave');\n\t\t\t\t\t\tif (_this6.options.hideOnTargetClick) oppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'focus':\n\t\t\t\t\t\tdirectEvents.push('focus');\n\t\t\t\t\t\toppositeEvents.push('blur');\n\t\t\t\t\t\tif (_this6.options.hideOnTargetClick) oppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'click':\n\t\t\t\t\t\tdirectEvents.push('click');\n\t\t\t\t\t\toppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// schedule show tooltip\n\t\t\tdirectEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(evt) {\n\t\t\t\t\tif (_this6._isOpen === true) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tevt.usedByTooltip = true;\n\t\t\t\t\t_this6._scheduleShow(reference, options.delay, options, evt);\n\t\t\t\t};\n\t\t\t\t_this6._events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\n\t\t\t// schedule hide tooltip\n\t\t\toppositeEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(evt) {\n\t\t\t\t\tif (evt.usedByTooltip === true) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t_this6._scheduleHide(reference, options.delay, options, evt);\n\t\t\t\t};\n\t\t\t\t_this6._events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\t\t}\n\t}, {\n\t\tkey: '_onDocumentTouch',\n\t\tvalue: function _onDocumentTouch(event) {\n\t\t\tif (this._enableDocumentTouch) {\n\t\t\t\tthis._scheduleHide(this.reference, this.options.delay, this.options, event);\n\t\t\t}\n\t\t}\n\t}, {\n\t\tkey: '_scheduleShow',\n\t\tvalue: function _scheduleShow(reference, delay, options /*, evt */) {\n\t\t\tvar _this7 = this;\n\n\t\t\t// defaults to 0\n\t\t\tvar computedDelay = delay && delay.show || delay || 0;\n\t\t\tclearTimeout(this._scheduleTimer);\n\t\t\tthis._scheduleTimer = window.setTimeout(function () {\n\t\t\t\treturn _this7._show(reference, options);\n\t\t\t}, computedDelay);\n\t\t}\n\t}, {\n\t\tkey: '_scheduleHide',\n\t\tvalue: function _scheduleHide(reference, delay, options, evt) {\n\t\t\tvar _this8 = this;\n\n\t\t\t// defaults to 0\n\t\t\tvar computedDelay = delay && delay.hide || delay || 0;\n\t\t\tclearTimeout(this._scheduleTimer);\n\t\t\tthis._scheduleTimer = window.setTimeout(function () {\n\t\t\t\tif (_this8._isOpen === false) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif (!document.body.contains(_this8._tooltipNode)) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\t// if we are hiding because of a mouseleave, we must check that the new\n\t\t\t\t// reference isn't the tooltip, because in this case we don't want to hide it\n\t\t\t\tif (evt.type === 'mouseleave') {\n\t\t\t\t\tvar isSet = _this8._setTooltipNodeEvent(evt, reference, delay, options);\n\n\t\t\t\t\t// if we set the new event, don't hide the tooltip yet\n\t\t\t\t\t// the new event will take care to hide it if necessary\n\t\t\t\t\tif (isSet) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t_this8._hide(reference, options);\n\t\t\t}, computedDelay);\n\t\t}\n\t}]);\n\treturn Tooltip;\n}();\n\n// Hide tooltips on touch devices\n\n\nvar _initialiseProps = function _initialiseProps() {\n\tvar _this9 = this;\n\n\tthis.show = function () {\n\t\t_this9._show(_this9.reference, _this9.options);\n\t};\n\n\tthis.hide = function () {\n\t\t_this9._hide();\n\t};\n\n\tthis.dispose = function () {\n\t\t_this9._dispose();\n\t};\n\n\tthis.toggle = function () {\n\t\tif (_this9._isOpen) {\n\t\t\treturn _this9.hide();\n\t\t} else {\n\t\t\treturn _this9.show();\n\t\t}\n\t};\n\n\tthis._events = [];\n\n\tthis._setTooltipNodeEvent = function (evt, reference, delay, options) {\n\t\tvar relatedreference = evt.relatedreference || evt.toElement || evt.relatedTarget;\n\n\t\tvar callback = function callback(evt2) {\n\t\t\tvar relatedreference2 = evt2.relatedreference || evt2.toElement || evt2.relatedTarget;\n\n\t\t\t// Remove event listener after call\n\t\t\t_this9._tooltipNode.removeEventListener(evt.type, callback);\n\n\t\t\t// If the new reference is not the reference element\n\t\t\tif (!reference.contains(relatedreference2)) {\n\t\t\t\t// Schedule to hide tooltip\n\t\t\t\t_this9._scheduleHide(reference, options.delay, options, evt2);\n\t\t\t}\n\t\t};\n\n\t\tif (_this9._tooltipNode.contains(relatedreference)) {\n\t\t\t// listen to mouseleave on the tooltip element to be able to hide the tooltip\n\t\t\t_this9._tooltipNode.addEventListener(evt.type, callback);\n\t\t\treturn true;\n\t\t}\n\n\t\treturn false;\n\t};\n};\n\nif (typeof document !== 'undefined') {\n\tdocument.addEventListener('touchstart', function (event) {\n\t\tfor (var i = 0; i < openTooltips.length; i++) {\n\t\t\topenTooltips[i]._onDocumentTouch(event);\n\t\t}\n\t}, supportsPassive ? {\n\t\tpassive: true,\n\t\tcapture: true\n\t} : true);\n}\n\n/**\n * Placement function, its context is the Tooltip instance.\n * @memberof Tooltip\n * @callback PlacementFunction\n * @param {HTMLElement} tooltip - tooltip DOM node.\n * @param {HTMLElement} reference - reference DOM node.\n * @return {String} placement - One of the allowed placement options.\n */\n\n/**\n * Title function, its context is the Tooltip instance.\n * @memberof Tooltip\n * @callback TitleFunction\n * @return {String} placement - The desired title.\n */\n\nvar state = {\n\tenabled: true\n};\n\nvar positions = ['top', 'top-start', 'top-end', 'right', 'right-start', 'right-end', 'bottom', 'bottom-start', 'bottom-end', 'left', 'left-start', 'left-end'];\n\nvar defaultOptions = {\n\t// Default tooltip placement relative to target element\n\tdefaultPlacement: 'top',\n\t// Default CSS classes applied to the tooltip element\n\tdefaultClass: 'vue-tooltip-theme',\n\t// Default CSS classes applied to the target element of the tooltip\n\tdefaultTargetClass: 'has-tooltip',\n\t// Is the content HTML by default?\n\tdefaultHtml: true,\n\t// Default HTML template of the tooltip element\n\t// It must include `tooltip-arrow` & `tooltip-inner` CSS classes (can be configured, see below)\n\t// Change if the classes conflict with other libraries (for example bootstrap)\n\tdefaultTemplate: '<div class=\"tooltip\" role=\"tooltip\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\"></div></div>',\n\t// Selector used to get the arrow element in the tooltip template\n\tdefaultArrowSelector: '.tooltip-arrow, .tooltip__arrow',\n\t// Selector used to get the inner content element in the tooltip template\n\tdefaultInnerSelector: '.tooltip-inner, .tooltip__inner',\n\t// Delay (ms)\n\tdefaultDelay: 0,\n\t// Default events that trigger the tooltip\n\tdefaultTrigger: 'hover focus',\n\t// Default position offset (px)\n\tdefaultOffset: 0,\n\t// Default container where the tooltip will be appended\n\tdefaultContainer: 'body',\n\tdefaultBoundariesElement: undefined,\n\tdefaultPopperOptions: {},\n\t// Class added when content is loading\n\tdefaultLoadingClass: 'tooltip-loading',\n\t// Displayed when tooltip content is loading\n\tdefaultLoadingContent: '...',\n\t// Hide on mouseover tooltip\n\tautoHide: true,\n\t// Close tooltip on click on tooltip target?\n\tdefaultHideOnTargetClick: true,\n\t// Auto destroy tooltip DOM nodes (ms)\n\tdisposeTimeout: 5000,\n\t// Options for popover\n\tpopover: {\n\t\tdefaultPlacement: 'bottom',\n\t\t// Use the `popoverClass` prop for theming\n\t\tdefaultClass: 'vue-popover-theme',\n\t\t// Base class (change if conflicts with other libraries)\n\t\tdefaultBaseClass: 'tooltip popover',\n\t\t// Wrapper class (contains arrow and inner)\n\t\tdefaultWrapperClass: 'wrapper',\n\t\t// Inner content class\n\t\tdefaultInnerClass: 'tooltip-inner popover-inner',\n\t\t// Arrow class\n\t\tdefaultArrowClass: 'tooltip-arrow popover-arrow',\n\t\tdefaultDelay: 0,\n\t\tdefaultTrigger: 'click',\n\t\tdefaultOffset: 0,\n\t\tdefaultContainer: 'body',\n\t\tdefaultBoundariesElement: undefined,\n\t\tdefaultPopperOptions: {},\n\t\t// Hides if clicked outside of popover\n\t\tdefaultAutoHide: true,\n\t\t// Update popper on content resize\n\t\tdefaultHandleResize: true\n\t}\n};\n\nfunction getOptions(options) {\n\tvar result = {\n\t\tplacement: typeof options.placement !== 'undefined' ? options.placement : directive.options.defaultPlacement,\n\t\tdelay: typeof options.delay !== 'undefined' ? options.delay : directive.options.defaultDelay,\n\t\thtml: typeof options.html !== 'undefined' ? options.html : directive.options.defaultHtml,\n\t\ttemplate: typeof options.template !== 'undefined' ? options.template : directive.options.defaultTemplate,\n\t\tarrowSelector: typeof options.arrowSelector !== 'undefined' ? options.arrowSelector : directive.options.defaultArrowSelector,\n\t\tinnerSelector: typeof options.innerSelector !== 'undefined' ? options.innerSelector : directive.options.defaultInnerSelector,\n\t\ttrigger: typeof options.trigger !== 'undefined' ? options.trigger : directive.options.defaultTrigger,\n\t\toffset: typeof options.offset !== 'undefined' ? options.offset : directive.options.defaultOffset,\n\t\tcontainer: typeof options.container !== 'undefined' ? options.container : directive.options.defaultContainer,\n\t\tboundariesElement: typeof options.boundariesElement !== 'undefined' ? options.boundariesElement : directive.options.defaultBoundariesElement,\n\t\tautoHide: typeof options.autoHide !== 'undefined' ? options.autoHide : directive.options.autoHide,\n\t\thideOnTargetClick: typeof options.hideOnTargetClick !== 'undefined' ? options.hideOnTargetClick : directive.options.defaultHideOnTargetClick,\n\t\tloadingClass: typeof options.loadingClass !== 'undefined' ? options.loadingClass : directive.options.defaultLoadingClass,\n\t\tloadingContent: typeof options.loadingContent !== 'undefined' ? options.loadingContent : directive.options.defaultLoadingContent,\n\t\tpopperOptions: _extends$1({}, typeof options.popperOptions !== 'undefined' ? options.popperOptions : directive.options.defaultPopperOptions)\n\t};\n\n\tif (result.offset) {\n\t\tvar typeofOffset = _typeof(result.offset);\n\t\tvar offset = result.offset;\n\n\t\t// One value -> switch\n\t\tif (typeofOffset === 'number' || typeofOffset === 'string' && offset.indexOf(',') === -1) {\n\t\t\toffset = '0, ' + offset;\n\t\t}\n\n\t\tif (!result.popperOptions.modifiers) {\n\t\t\tresult.popperOptions.modifiers = {};\n\t\t}\n\t\tresult.popperOptions.modifiers.offset = {\n\t\t\toffset: offset\n\t\t};\n\t}\n\n\tif (result.trigger && result.trigger.indexOf('click') !== -1) {\n\t\tresult.hideOnTargetClick = false;\n\t}\n\n\treturn result;\n}\n\nfunction getPlacement(value, modifiers) {\n\tvar placement = value.placement;\n\tfor (var i = 0; i < positions.length; i++) {\n\t\tvar pos = positions[i];\n\t\tif (modifiers[pos]) {\n\t\t\tplacement = pos;\n\t\t}\n\t}\n\treturn placement;\n}\n\nfunction getContent(value) {\n\tvar type = typeof value === 'undefined' ? 'undefined' : _typeof(value);\n\tif (type === 'string') {\n\t\treturn value;\n\t} else if (value && type === 'object') {\n\t\treturn value.content;\n\t} else {\n\t\treturn false;\n\t}\n}\n\nfunction createTooltip(el, value) {\n\tvar modifiers = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};\n\n\tvar content = getContent(value);\n\tvar classes = typeof value.classes !== 'undefined' ? value.classes : directive.options.defaultClass;\n\tvar opts = _extends$1({\n\t\ttitle: content\n\t}, getOptions(_extends$1({}, value, {\n\t\tplacement: getPlacement(value, modifiers)\n\t})));\n\tvar tooltip = el._tooltip = new Tooltip(el, opts);\n\ttooltip.setClasses(classes);\n\ttooltip._vueEl = el;\n\n\t// Class on target\n\tvar targetClasses = typeof value.targetClasses !== 'undefined' ? value.targetClasses : directive.options.defaultTargetClass;\n\tel._tooltipTargetClasses = targetClasses;\n\taddClasses(el, targetClasses);\n\n\treturn tooltip;\n}\n\nfunction destroyTooltip(el) {\n\tif (el._tooltip) {\n\t\tel._tooltip.dispose();\n\t\tdelete el._tooltip;\n\t\tdelete el._tooltipOldShow;\n\t}\n\n\tif (el._tooltipTargetClasses) {\n\t\tremoveClasses(el, el._tooltipTargetClasses);\n\t\tdelete el._tooltipTargetClasses;\n\t}\n}\n\nfunction bind(el, _ref) {\n\tvar value = _ref.value,\n\t oldValue = _ref.oldValue,\n\t modifiers = _ref.modifiers;\n\n\tvar content = getContent(value);\n\tif (!content || !state.enabled) {\n\t\tdestroyTooltip(el);\n\t} else {\n\t\tvar tooltip = void 0;\n\t\tif (el._tooltip) {\n\t\t\ttooltip = el._tooltip;\n\t\t\t// Content\n\t\t\ttooltip.setContent(content);\n\t\t\t// Options\n\t\t\ttooltip.setOptions(_extends$1({}, value, {\n\t\t\t\tplacement: getPlacement(value, modifiers)\n\t\t\t}));\n\t\t} else {\n\t\t\ttooltip = createTooltip(el, value, modifiers);\n\t\t}\n\n\t\t// Manual show\n\t\tif (typeof value.show !== 'undefined' && value.show !== el._tooltipOldShow) {\n\t\t\tel._tooltipOldShow = value.show;\n\t\t\tvalue.show ? tooltip.show() : tooltip.hide();\n\t\t}\n\t}\n}\n\nvar directive = {\n\toptions: defaultOptions,\n\tbind: bind,\n\tupdate: bind,\n\tunbind: function unbind(el) {\n\t\tdestroyTooltip(el);\n\t}\n};\n\nfunction addListeners(el) {\n\tel.addEventListener('click', onClick);\n\tel.addEventListener('touchstart', onTouchStart, supportsPassive ? {\n\t\tpassive: true\n\t} : false);\n}\n\nfunction removeListeners(el) {\n\tel.removeEventListener('click', onClick);\n\tel.removeEventListener('touchstart', onTouchStart);\n\tel.removeEventListener('touchend', onTouchEnd);\n\tel.removeEventListener('touchcancel', onTouchCancel);\n}\n\nfunction onClick(event) {\n\tvar el = event.currentTarget;\n\tevent.closePopover = !el.$_vclosepopover_touch;\n\tevent.closeAllPopover = el.$_closePopoverModifiers && !!el.$_closePopoverModifiers.all;\n}\n\nfunction onTouchStart(event) {\n\tif (event.changedTouches.length === 1) {\n\t\tvar el = event.currentTarget;\n\t\tel.$_vclosepopover_touch = true;\n\t\tvar touch = event.changedTouches[0];\n\t\tel.$_vclosepopover_touchPoint = touch;\n\t\tel.addEventListener('touchend', onTouchEnd);\n\t\tel.addEventListener('touchcancel', onTouchCancel);\n\t}\n}\n\nfunction onTouchEnd(event) {\n\tvar el = event.currentTarget;\n\tel.$_vclosepopover_touch = false;\n\tif (event.changedTouches.length === 1) {\n\t\tvar touch = event.changedTouches[0];\n\t\tvar firstTouch = el.$_vclosepopover_touchPoint;\n\t\tevent.closePopover = Math.abs(touch.screenY - firstTouch.screenY) < 20 && Math.abs(touch.screenX - firstTouch.screenX) < 20;\n\t\tevent.closeAllPopover = el.$_closePopoverModifiers && !!el.$_closePopoverModifiers.all;\n\t}\n}\n\nfunction onTouchCancel(event) {\n\tvar el = event.currentTarget;\n\tel.$_vclosepopover_touch = false;\n}\n\nvar vclosepopover = {\n\tbind: function bind(el, _ref) {\n\t\tvar value = _ref.value,\n\t\t modifiers = _ref.modifiers;\n\n\t\tel.$_closePopoverModifiers = modifiers;\n\t\tif (typeof value === 'undefined' || value) {\n\t\t\taddListeners(el);\n\t\t}\n\t},\n\tupdate: function update(el, _ref2) {\n\t\tvar value = _ref2.value,\n\t\t oldValue = _ref2.oldValue,\n\t\t modifiers = _ref2.modifiers;\n\n\t\tel.$_closePopoverModifiers = modifiers;\n\t\tif (value !== oldValue) {\n\t\t\tif (typeof value === 'undefined' || value) {\n\t\t\t\taddListeners(el);\n\t\t\t} else {\n\t\t\t\tremoveListeners(el);\n\t\t\t}\n\t\t}\n\t},\n\tunbind: function unbind(el) {\n\t\tremoveListeners(el);\n\t}\n};\n\nfunction getInternetExplorerVersion() {\n\tvar ua = window.navigator.userAgent;\n\n\tvar msie = ua.indexOf('MSIE ');\n\tif (msie > 0) {\n\t\t// IE 10 or older => return version number\n\t\treturn parseInt(ua.substring(msie + 5, ua.indexOf('.', msie)), 10);\n\t}\n\n\tvar trident = ua.indexOf('Trident/');\n\tif (trident > 0) {\n\t\t// IE 11 => return version number\n\t\tvar rv = ua.indexOf('rv:');\n\t\treturn parseInt(ua.substring(rv + 3, ua.indexOf('.', rv)), 10);\n\t}\n\n\tvar edge = ua.indexOf('Edge/');\n\tif (edge > 0) {\n\t\t// Edge (IE 12+) => return version number\n\t\treturn parseInt(ua.substring(edge + 5, ua.indexOf('.', edge)), 10);\n\t}\n\n\t// other browser\n\treturn -1;\n}\n\nvar isIE$1 = void 0;\n\nfunction initCompat() {\n\tif (!initCompat.init) {\n\t\tinitCompat.init = true;\n\t\tisIE$1 = getInternetExplorerVersion() !== -1;\n\t}\n}\n\nvar ResizeObserver = { render: function render() {\n\t\tvar _vm = this;var _h = _vm.$createElement;var _c = _vm._self._c || _h;return _c('div', { staticClass: \"resize-observer\", attrs: { \"tabindex\": \"-1\" } });\n\t}, staticRenderFns: [], _scopeId: 'data-v-b329ee4c',\n\tname: 'resize-observer',\n\n\tmethods: {\n\t\tnotify: function notify() {\n\t\t\tthis.$emit('notify');\n\t\t},\n\t\taddResizeHandlers: function addResizeHandlers() {\n\t\t\tthis._resizeObject.contentDocument.defaultView.addEventListener('resize', this.notify);\n\t\t\tif (this._w !== this.$el.offsetWidth || this._h !== this.$el.offsetHeight) {\n\t\t\t\tthis.notify();\n\t\t\t}\n\t\t},\n\t\tremoveResizeHandlers: function removeResizeHandlers() {\n\t\t\tif (this._resizeObject && this._resizeObject.onload) {\n\t\t\t\tif (!isIE$1 && this._resizeObject.contentDocument) {\n\t\t\t\t\tthis._resizeObject.contentDocument.defaultView.removeEventListener('resize', this.notify);\n\t\t\t\t}\n\t\t\t\tdelete this._resizeObject.onload;\n\t\t\t}\n\t\t}\n\t},\n\n\tmounted: function mounted() {\n\t\tvar _this = this;\n\n\t\tinitCompat();\n\t\tthis.$nextTick(function () {\n\t\t\t_this._w = _this.$el.offsetWidth;\n\t\t\t_this._h = _this.$el.offsetHeight;\n\t\t});\n\t\tvar object = document.createElement('object');\n\t\tthis._resizeObject = object;\n\t\tobject.setAttribute('style', 'display: block; position: absolute; top: 0; left: 0; height: 100%; width: 100%; overflow: hidden; pointer-events: none; z-index: -1;');\n\t\tobject.setAttribute('aria-hidden', 'true');\n\t\tobject.setAttribute('tabindex', -1);\n\t\tobject.onload = this.addResizeHandlers;\n\t\tobject.type = 'text/html';\n\t\tif (isIE$1) {\n\t\t\tthis.$el.appendChild(object);\n\t\t}\n\t\tobject.data = 'about:blank';\n\t\tif (!isIE$1) {\n\t\t\tthis.$el.appendChild(object);\n\t\t}\n\t},\n\tbeforeDestroy: function beforeDestroy() {\n\t\tthis.removeResizeHandlers();\n\t}\n};\n\n// Install the components\nfunction install$1(Vue) {\n\tVue.component('resize-observer', ResizeObserver);\n\t/* -- Add more components here -- */\n}\n\n/* -- Plugin definition & Auto-install -- */\n/* You shouldn't have to modify the code below */\n\n// Plugin\nvar plugin$2 = {\n\t// eslint-disable-next-line no-undef\n\tversion: \"0.4.4\",\n\tinstall: install$1\n};\n\n// Auto-install\nvar GlobalVue$1 = null;\nif (typeof window !== 'undefined') {\n\tGlobalVue$1 = window.Vue;\n} else if (typeof global !== 'undefined') {\n\tGlobalVue$1 = global.Vue;\n}\nif (GlobalVue$1) {\n\tGlobalVue$1.use(plugin$2);\n}\n\nfunction getDefault(key) {\n\tvar value = directive.options.popover[key];\n\tif (typeof value === 'undefined') {\n\t\treturn directive.options[key];\n\t}\n\treturn value;\n}\n\nvar isIOS = false;\nif (typeof window !== 'undefined' && typeof navigator !== 'undefined') {\n\tisIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;\n}\n\nvar openPopovers = [];\n\nvar Element = function Element() {};\nif (typeof window !== 'undefined') {\n\tElement = window.Element;\n}\n\nvar Popover = { render: function render() {\n\t\tvar _vm = this;var _h = _vm.$createElement;var _c = _vm._self._c || _h;return _c('div', { staticClass: \"v-popover\", class: _vm.cssClass }, [_c('span', { ref: \"trigger\", staticClass: \"trigger\", staticStyle: { \"display\": \"inline-block\" }, attrs: { \"aria-describedby\": _vm.popoverId, \"tabindex\": _vm.trigger.indexOf('focus') !== -1 ? 0 : -1 } }, [_vm._t(\"default\")], 2), _vm._v(\" \"), _c('div', { ref: \"popover\", class: [_vm.popoverBaseClass, _vm.popoverClass, _vm.cssClass], style: {\n\t\t\t\tvisibility: _vm.isOpen ? 'visible' : 'hidden'\n\t\t\t}, attrs: { \"id\": _vm.popoverId, \"aria-hidden\": _vm.isOpen ? 'false' : 'true' } }, [_c('div', { class: _vm.popoverWrapperClass }, [_c('div', { ref: \"inner\", class: _vm.popoverInnerClass, staticStyle: { \"position\": \"relative\" } }, [_c('div', [_vm._t(\"popover\")], 2), _vm._v(\" \"), _vm.handleResize ? _c('ResizeObserver', { on: { \"notify\": _vm.$_handleResize } }) : _vm._e()], 1), _vm._v(\" \"), _c('div', { ref: \"arrow\", class: _vm.popoverArrowClass })])])]);\n\t}, staticRenderFns: [],\n\tname: 'VPopover',\n\n\tcomponents: {\n\t\tResizeObserver: ResizeObserver\n\t},\n\n\tprops: {\n\t\topen: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false\n\t\t},\n\t\tdisabled: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: false\n\t\t},\n\t\tplacement: {\n\t\t\ttype: String,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultPlacement');\n\t\t\t}\n\t\t},\n\t\tdelay: {\n\t\t\ttype: [String, Number, Object],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultDelay');\n\t\t\t}\n\t\t},\n\t\toffset: {\n\t\t\ttype: [String, Number],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultOffset');\n\t\t\t}\n\t\t},\n\t\ttrigger: {\n\t\t\ttype: String,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultTrigger');\n\t\t\t}\n\t\t},\n\t\tcontainer: {\n\t\t\ttype: [String, Object, Element, Boolean],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultContainer');\n\t\t\t}\n\t\t},\n\t\tboundariesElement: {\n\t\t\ttype: [String, Element],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultBoundariesElement');\n\t\t\t}\n\t\t},\n\t\tpopperOptions: {\n\t\t\ttype: Object,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultPopperOptions');\n\t\t\t}\n\t\t},\n\t\tpopoverClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn getDefault('defaultClass');\n\t\t\t}\n\t\t},\n\t\tpopoverBaseClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultBaseClass;\n\t\t\t}\n\t\t},\n\t\tpopoverInnerClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultInnerClass;\n\t\t\t}\n\t\t},\n\t\tpopoverWrapperClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultWrapperClass;\n\t\t\t}\n\t\t},\n\t\tpopoverArrowClass: {\n\t\t\ttype: [String, Array],\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultArrowClass;\n\t\t\t}\n\t\t},\n\t\tautoHide: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultAutoHide;\n\t\t\t}\n\t\t},\n\t\thandleResize: {\n\t\t\ttype: Boolean,\n\t\t\tdefault: function _default() {\n\t\t\t\treturn directive.options.popover.defaultHandleResize;\n\t\t\t}\n\t\t},\n\t\topenGroup: {\n\t\t\ttype: String,\n\t\t\tdefault: null\n\t\t}\n\t},\n\n\tdata: function data() {\n\t\treturn {\n\t\t\tisOpen: false,\n\t\t\tid: Math.random().toString(36).substr(2, 10)\n\t\t};\n\t},\n\n\n\tcomputed: {\n\t\tcssClass: function cssClass() {\n\t\t\treturn {\n\t\t\t\t'open': this.isOpen\n\t\t\t};\n\t\t},\n\t\tpopoverId: function popoverId() {\n\t\t\treturn 'popover_' + this.id;\n\t\t}\n\t},\n\n\twatch: {\n\t\topen: function open(val) {\n\t\t\tif (val) {\n\t\t\t\tthis.show();\n\t\t\t} else {\n\t\t\t\tthis.hide();\n\t\t\t}\n\t\t},\n\t\tdisabled: function disabled(val, oldVal) {\n\t\t\tif (val !== oldVal) {\n\t\t\t\tif (val) {\n\t\t\t\t\tthis.hide();\n\t\t\t\t} else if (this.open) {\n\t\t\t\t\tthis.show();\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\tcontainer: function container(val) {\n\t\t\tif (this.isOpen && this.popperInstance) {\n\t\t\t\tvar popoverNode = this.$refs.popover;\n\t\t\t\tvar reference = this.$refs.trigger;\n\n\t\t\t\tvar container = this.$_findContainer(this.container, reference);\n\t\t\t\tif (!container) {\n\t\t\t\t\tconsole.warn('No container for popover', this);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\n\t\t\t\tcontainer.appendChild(popoverNode);\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t}\n\t\t},\n\t\ttrigger: function trigger(val) {\n\t\t\tthis.$_removeEventListeners();\n\t\t\tthis.$_addEventListeners();\n\t\t},\n\t\tplacement: function placement(val) {\n\t\t\tvar _this = this;\n\n\t\t\tthis.$_updatePopper(function () {\n\t\t\t\t_this.popperInstance.options.placement = val;\n\t\t\t});\n\t\t},\n\n\n\t\toffset: '$_restartPopper',\n\n\t\tboundariesElement: '$_restartPopper',\n\n\t\tpopperOptions: {\n\t\t\thandler: '$_restartPopper',\n\t\t\tdeep: true\n\t\t}\n\t},\n\n\tcreated: function created() {\n\t\tthis.$_isDisposed = false;\n\t\tthis.$_mounted = false;\n\t\tthis.$_events = [];\n\t\tthis.$_preventOpen = false;\n\t},\n\tmounted: function mounted() {\n\t\tvar popoverNode = this.$refs.popover;\n\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\n\t\tthis.$_init();\n\n\t\tif (this.open) {\n\t\t\tthis.show();\n\t\t}\n\t},\n\tbeforeDestroy: function beforeDestroy() {\n\t\tthis.dispose();\n\t},\n\n\n\tmethods: {\n\t\tshow: function show() {\n\t\t\tvar _this2 = this;\n\n\t\t\tvar _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},\n\t\t\t event = _ref.event,\n\t\t\t _ref$skipDelay = _ref.skipDelay,\n\t\t\t skipDelay = _ref$skipDelay === undefined ? false : _ref$skipDelay,\n\t\t\t _ref$force = _ref.force,\n\t\t\t force = _ref$force === undefined ? false : _ref$force;\n\n\t\t\tif (force || !this.disabled) {\n\t\t\t\tthis.$_scheduleShow(event);\n\t\t\t\tthis.$emit('show');\n\t\t\t}\n\t\t\tthis.$emit('update:open', true);\n\t\t\tthis.$_beingShowed = true;\n\t\t\trequestAnimationFrame(function () {\n\t\t\t\t_this2.$_beingShowed = false;\n\t\t\t});\n\t\t},\n\t\thide: function hide() {\n\t\t\tvar _ref2 = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},\n\t\t\t event = _ref2.event,\n\t\t\t _ref2$skipDelay = _ref2.skipDelay;\n\n\t\t\tthis.$_scheduleHide(event);\n\n\t\t\tthis.$emit('hide');\n\t\t\tthis.$emit('update:open', false);\n\t\t},\n\t\tdispose: function dispose() {\n\t\t\tthis.$_isDisposed = true;\n\t\t\tthis.$_removeEventListeners();\n\t\t\tthis.hide({ skipDelay: true });\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.popperInstance.destroy();\n\n\t\t\t\t// destroy tooltipNode if removeOnDestroy is not set, as popperInstance.destroy() already removes the element\n\t\t\t\tif (!this.popperInstance.options.removeOnDestroy) {\n\t\t\t\t\tvar popoverNode = this.$refs.popover;\n\t\t\t\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\t\t\t\t}\n\t\t\t}\n\t\t\tthis.$_mounted = false;\n\t\t\tthis.popperInstance = null;\n\t\t\tthis.isOpen = false;\n\n\t\t\tthis.$emit('dispose');\n\t\t},\n\t\t$_init: function $_init() {\n\t\t\tif (this.trigger.indexOf('manual') === -1) {\n\t\t\t\tthis.$_addEventListeners();\n\t\t\t}\n\t\t},\n\t\t$_show: function $_show() {\n\t\t\tvar _this3 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar popoverNode = this.$refs.popover;\n\n\t\t\tclearTimeout(this.$_disposeTimer);\n\n\t\t\t// Already open\n\t\t\tif (this.isOpen) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Popper is already initialized\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.isOpen = true;\n\t\t\t\tthis.popperInstance.enableEventListeners();\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t}\n\n\t\t\tif (!this.$_mounted) {\n\t\t\t\tvar container = this.$_findContainer(this.container, reference);\n\t\t\t\tif (!container) {\n\t\t\t\t\tconsole.warn('No container for popover', this);\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tcontainer.appendChild(popoverNode);\n\t\t\t\tthis.$_mounted = true;\n\t\t\t}\n\n\t\t\tif (!this.popperInstance) {\n\t\t\t\tvar popperOptions = _extends$1({}, this.popperOptions, {\n\t\t\t\t\tplacement: this.placement\n\t\t\t\t});\n\n\t\t\t\tpopperOptions.modifiers = _extends$1({}, popperOptions.modifiers, {\n\t\t\t\t\tarrow: _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.arrow, {\n\t\t\t\t\t\telement: this.$refs.arrow\n\t\t\t\t\t})\n\t\t\t\t});\n\n\t\t\t\tif (this.offset) {\n\t\t\t\t\tvar offset = this.$_getOffset();\n\n\t\t\t\t\tpopperOptions.modifiers.offset = _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.offset, {\n\t\t\t\t\t\toffset: offset\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tif (this.boundariesElement) {\n\t\t\t\t\tpopperOptions.modifiers.preventOverflow = _extends$1({}, popperOptions.modifiers && popperOptions.modifiers.preventOverflow, {\n\t\t\t\t\t\tboundariesElement: this.boundariesElement\n\t\t\t\t\t});\n\t\t\t\t}\n\n\t\t\t\tthis.popperInstance = new Popper(reference, popoverNode, popperOptions);\n\n\t\t\t\t// Fix position\n\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\tif (!_this3.$_isDisposed && _this3.popperInstance) {\n\t\t\t\t\t\t_this3.popperInstance.scheduleUpdate();\n\n\t\t\t\t\t\t// Show the tooltip\n\t\t\t\t\t\trequestAnimationFrame(function () {\n\t\t\t\t\t\t\tif (!_this3.$_isDisposed) {\n\t\t\t\t\t\t\t\t_this3.isOpen = true;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\t_this3.dispose();\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\tvar openGroup = this.openGroup;\n\t\t\tif (openGroup) {\n\t\t\t\tvar popover = void 0;\n\t\t\t\tfor (var i = 0; i < openPopovers.length; i++) {\n\t\t\t\t\tpopover = openPopovers[i];\n\t\t\t\t\tif (popover.openGroup !== openGroup) {\n\t\t\t\t\t\tpopover.hide();\n\t\t\t\t\t\tpopover.$emit('close-group');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\topenPopovers.push(this);\n\n\t\t\tthis.$emit('apply-show');\n\t\t},\n\t\t$_hide: function $_hide() {\n\t\t\tvar _this4 = this;\n\n\t\t\t// Already hidden\n\t\t\tif (!this.isOpen) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tvar index = openPopovers.indexOf(this);\n\t\t\tif (index !== -1) {\n\t\t\t\topenPopovers.splice(index, 1);\n\t\t\t}\n\n\t\t\tthis.isOpen = false;\n\t\t\tif (this.popperInstance) {\n\t\t\t\tthis.popperInstance.disableEventListeners();\n\t\t\t}\n\n\t\t\tclearTimeout(this.$_disposeTimer);\n\t\t\tvar disposeTime = directive.options.popover.disposeTimeout || directive.options.disposeTimeout;\n\t\t\tif (disposeTime !== null) {\n\t\t\t\tthis.$_disposeTimer = setTimeout(function () {\n\t\t\t\t\tvar popoverNode = _this4.$refs.popover;\n\t\t\t\t\tif (popoverNode) {\n\t\t\t\t\t\t// Don't remove popper instance, just the HTML element\n\t\t\t\t\t\tpopoverNode.parentNode && popoverNode.parentNode.removeChild(popoverNode);\n\t\t\t\t\t\t_this4.$_mounted = false;\n\t\t\t\t\t}\n\t\t\t\t}, disposeTime);\n\t\t\t}\n\n\t\t\tthis.$emit('apply-hide');\n\t\t},\n\t\t$_findContainer: function $_findContainer(container, reference) {\n\t\t\t// if container is a query, get the relative element\n\t\t\tif (typeof container === 'string') {\n\t\t\t\tcontainer = window.document.querySelector(container);\n\t\t\t} else if (container === false) {\n\t\t\t\t// if container is `false`, set it to reference parent\n\t\t\t\tcontainer = reference.parentNode;\n\t\t\t}\n\t\t\treturn container;\n\t\t},\n\t\t$_getOffset: function $_getOffset() {\n\t\t\tvar typeofOffset = _typeof(this.offset);\n\t\t\tvar offset = this.offset;\n\n\t\t\t// One value -> switch\n\t\t\tif (typeofOffset === 'number' || typeofOffset === 'string' && offset.indexOf(',') === -1) {\n\t\t\t\toffset = '0, ' + offset;\n\t\t\t}\n\n\t\t\treturn offset;\n\t\t},\n\t\t$_addEventListeners: function $_addEventListeners() {\n\t\t\tvar _this5 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar directEvents = [];\n\t\t\tvar oppositeEvents = [];\n\n\t\t\tvar events = typeof this.trigger === 'string' ? this.trigger.split(' ').filter(function (trigger) {\n\t\t\t\treturn ['click', 'hover', 'focus'].indexOf(trigger) !== -1;\n\t\t\t}) : [];\n\n\t\t\tevents.forEach(function (event) {\n\t\t\t\tswitch (event) {\n\t\t\t\t\tcase 'hover':\n\t\t\t\t\t\tdirectEvents.push('mouseenter');\n\t\t\t\t\t\toppositeEvents.push('mouseleave');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'focus':\n\t\t\t\t\t\tdirectEvents.push('focus');\n\t\t\t\t\t\toppositeEvents.push('blur');\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'click':\n\t\t\t\t\t\tdirectEvents.push('click');\n\t\t\t\t\t\toppositeEvents.push('click');\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// schedule show tooltip\n\t\t\tdirectEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(event) {\n\t\t\t\t\tif (_this5.isOpen) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\tevent.usedByTooltip = true;\n\t\t\t\t\t!_this5.$_preventOpen && _this5.show({ event: event });\n\t\t\t\t};\n\t\t\t\t_this5.$_events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\n\t\t\t// schedule hide tooltip\n\t\t\toppositeEvents.forEach(function (event) {\n\t\t\t\tvar func = function func(event) {\n\t\t\t\t\tif (event.usedByTooltip) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t\t_this5.hide({ event: event });\n\t\t\t\t};\n\t\t\t\t_this5.$_events.push({ event: event, func: func });\n\t\t\t\treference.addEventListener(event, func);\n\t\t\t});\n\t\t},\n\t\t$_scheduleShow: function $_scheduleShow() {\n\t\t\tvar skipDelay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tclearTimeout(this.$_scheduleTimer);\n\t\t\tif (skipDelay) {\n\t\t\t\tthis.$_show();\n\t\t\t} else {\n\t\t\t\t// defaults to 0\n\t\t\t\tvar computedDelay = parseInt(this.delay && this.delay.show || this.delay || 0);\n\t\t\t\tthis.$_scheduleTimer = setTimeout(this.$_show.bind(this), computedDelay);\n\t\t\t}\n\t\t},\n\t\t$_scheduleHide: function $_scheduleHide() {\n\t\t\tvar _this6 = this;\n\n\t\t\tvar event = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;\n\t\t\tvar skipDelay = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tclearTimeout(this.$_scheduleTimer);\n\t\t\tif (skipDelay) {\n\t\t\t\tthis.$_hide();\n\t\t\t} else {\n\t\t\t\t// defaults to 0\n\t\t\t\tvar computedDelay = parseInt(this.delay && this.delay.hide || this.delay || 0);\n\t\t\t\tthis.$_scheduleTimer = setTimeout(function () {\n\t\t\t\t\tif (!_this6.isOpen) {\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\n\t\t\t\t\t// if we are hiding because of a mouseleave, we must check that the new\n\t\t\t\t\t// reference isn't the tooltip, because in this case we don't want to hide it\n\t\t\t\t\tif (event && event.type === 'mouseleave') {\n\t\t\t\t\t\tvar isSet = _this6.$_setTooltipNodeEvent(event);\n\n\t\t\t\t\t\t// if we set the new event, don't hide the tooltip yet\n\t\t\t\t\t\t// the new event will take care to hide it if necessary\n\t\t\t\t\t\tif (isSet) {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t_this6.$_hide();\n\t\t\t\t}, computedDelay);\n\t\t\t}\n\t\t},\n\t\t$_setTooltipNodeEvent: function $_setTooltipNodeEvent(event) {\n\t\t\tvar _this7 = this;\n\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tvar popoverNode = this.$refs.popover;\n\n\t\t\tvar relatedreference = event.relatedreference || event.toElement || event.relatedTarget;\n\n\t\t\tvar callback = function callback(event2) {\n\t\t\t\tvar relatedreference2 = event2.relatedreference || event2.toElement || event2.relatedTarget;\n\n\t\t\t\t// Remove event listener after call\n\t\t\t\tpopoverNode.removeEventListener(event.type, callback);\n\n\t\t\t\t// If the new reference is not the reference element\n\t\t\t\tif (!reference.contains(relatedreference2)) {\n\t\t\t\t\t// Schedule to hide tooltip\n\t\t\t\t\t_this7.hide({ event: event2 });\n\t\t\t\t}\n\t\t\t};\n\n\t\t\tif (popoverNode.contains(relatedreference)) {\n\t\t\t\t// listen to mouseleave on the tooltip element to be able to hide the tooltip\n\t\t\t\tpopoverNode.addEventListener(event.type, callback);\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\t\t$_removeEventListeners: function $_removeEventListeners() {\n\t\t\tvar reference = this.$refs.trigger;\n\t\t\tthis.$_events.forEach(function (_ref3) {\n\t\t\t\tvar func = _ref3.func,\n\t\t\t\t event = _ref3.event;\n\n\t\t\t\treference.removeEventListener(event, func);\n\t\t\t});\n\t\t\tthis.$_events = [];\n\t\t},\n\t\t$_updatePopper: function $_updatePopper(cb) {\n\t\t\tif (this.popperInstance) {\n\t\t\t\tcb();\n\t\t\t\tif (this.isOpen) this.popperInstance.scheduleUpdate();\n\t\t\t}\n\t\t},\n\t\t$_restartPopper: function $_restartPopper() {\n\t\t\tif (this.popperInstance) {\n\t\t\t\tvar isOpen = this.isOpen;\n\t\t\t\tthis.dispose();\n\t\t\t\tthis.$_isDisposed = false;\n\t\t\t\tthis.$_init();\n\t\t\t\tif (isOpen) {\n\t\t\t\t\tthis.show({ skipDelay: true, force: true });\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\t\t$_handleGlobalClose: function $_handleGlobalClose(event) {\n\t\t\tvar _this8 = this;\n\n\t\t\tvar touch = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t\t\tif (this.$_beingShowed) return;\n\n\t\t\tthis.hide({ event: event });\n\n\t\t\tif (event.closePopover) {\n\t\t\t\tthis.$emit('close-directive');\n\t\t\t} else {\n\t\t\t\tthis.$emit('auto-hide');\n\t\t\t}\n\n\t\t\tif (touch) {\n\t\t\t\tthis.$_preventOpen = true;\n\t\t\t\tsetTimeout(function () {\n\t\t\t\t\t_this8.$_preventOpen = false;\n\t\t\t\t}, 300);\n\t\t\t}\n\t\t},\n\t\t$_handleResize: function $_handleResize() {\n\t\t\tif (this.isOpen && this.popperInstance) {\n\t\t\t\tthis.popperInstance.scheduleUpdate();\n\t\t\t\tthis.$emit('resize');\n\t\t\t}\n\t\t}\n\t}\n};\n\nif (typeof document !== 'undefined' && typeof window !== 'undefined') {\n\tif (isIOS) {\n\t\tdocument.addEventListener('touchend', handleGlobalTouchend, supportsPassive ? {\n\t\t\tpassive: true,\n\t\t\tcapture: true\n\t\t} : true);\n\t} else {\n\t\twindow.addEventListener('click', handleGlobalClick, true);\n\t}\n}\n\nfunction handleGlobalClick(event) {\n\thandleGlobalClose(event);\n}\n\nfunction handleGlobalTouchend(event) {\n\thandleGlobalClose(event, true);\n}\n\nfunction handleGlobalClose(event) {\n\tvar touch = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n\t// Delay so that close directive has time to set values\n\trequestAnimationFrame(function () {\n\t\tvar popover = void 0;\n\t\tfor (var i = 0; i < openPopovers.length; i++) {\n\t\t\tpopover = openPopovers[i];\n\t\t\tif (popover.$refs.popover) {\n\t\t\t\tvar contains = popover.$refs.popover.contains(event.target);\n\t\t\t\tif (event.closeAllPopover || event.closePopover && contains || popover.autoHide && !contains) {\n\t\t\t\t\tpopover.$_handleGlobalClose(event, touch);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n}\n\nvar commonjsGlobal = typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};\n\n\n\n\n\nfunction createCommonjsModule(fn, module) {\n\treturn module = { exports: {} }, fn(module, module.exports), module.exports;\n}\n\nvar lodash_merge = createCommonjsModule(function (module, exports) {\n/**\n * Lodash (Custom Build) <https://lodash.com/>\n * Build: `lodash modularize exports=\"npm\" -o ./`\n * Copyright JS Foundation and other contributors <https://js.foundation/>\n * Released under MIT license <https://lodash.com/license>\n * Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>\n * Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors\n */\n\n/** Used as the size to enable large array optimizations. */\nvar LARGE_ARRAY_SIZE = 200;\n\n/** Used to stand-in for `undefined` hash values. */\nvar HASH_UNDEFINED = '__lodash_hash_undefined__';\n\n/** Used to detect hot functions by number of calls within a span of milliseconds. */\nvar HOT_COUNT = 800,\n HOT_SPAN = 16;\n\n/** Used as references for various `Number` constants. */\nvar MAX_SAFE_INTEGER = 9007199254740991;\n\n/** `Object#toString` result references. */\nvar argsTag = '[object Arguments]',\n arrayTag = '[object Array]',\n asyncTag = '[object AsyncFunction]',\n boolTag = '[object Boolean]',\n dateTag = '[object Date]',\n errorTag = '[object Error]',\n funcTag = '[object Function]',\n genTag = '[object GeneratorFunction]',\n mapTag = '[object Map]',\n numberTag = '[object Number]',\n nullTag = '[object Null]',\n objectTag = '[object Object]',\n proxyTag = '[object Proxy]',\n regexpTag = '[object RegExp]',\n setTag = '[object Set]',\n stringTag = '[object String]',\n undefinedTag = '[object Undefined]',\n weakMapTag = '[object WeakMap]';\n\nvar arrayBufferTag = '[object ArrayBuffer]',\n dataViewTag = '[object DataView]',\n float32Tag = '[object Float32Array]',\n float64Tag = '[object Float64Array]',\n int8Tag = '[object Int8Array]',\n int16Tag = '[object Int16Array]',\n int32Tag = '[object Int32Array]',\n uint8Tag = '[object Uint8Array]',\n uint8ClampedTag = '[object Uint8ClampedArray]',\n uint16Tag = '[object Uint16Array]',\n uint32Tag = '[object Uint32Array]';\n\n/**\n * Used to match `RegExp`\n * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).\n */\nvar reRegExpChar = /[\\\\^$.*+?()[\\]{}|]/g;\n\n/** Used to detect host constructors (Safari). */\nvar reIsHostCtor = /^\\[object .+?Constructor\\]$/;\n\n/** Used to detect unsigned integer values. */\nvar reIsUint = /^(?:0|[1-9]\\d*)$/;\n\n/** Used to identify `toStringTag` values of typed arrays. */\nvar typedArrayTags = {};\ntypedArrayTags[float32Tag] = typedArrayTags[float64Tag] =\ntypedArrayTags[int8Tag] = typedArrayTags[int16Tag] =\ntypedArrayTags[int32Tag] = typedArrayTags[uint8Tag] =\ntypedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] =\ntypedArrayTags[uint32Tag] = true;\ntypedArrayTags[argsTag] = typedArrayTags[arrayTag] =\ntypedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] =\ntypedArrayTags[dataViewTag] = typedArrayTags[dateTag] =\ntypedArrayTags[errorTag] = typedArrayTags[funcTag] =\ntypedArrayTags[mapTag] = typedArrayTags[numberTag] =\ntypedArrayTags[objectTag] = typedArrayTags[regexpTag] =\ntypedArrayTags[setTag] = typedArrayTags[stringTag] =\ntypedArrayTags[weakMapTag] = false;\n\n/** Detect free variable `global` from Node.js. */\nvar freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;\n\n/** Detect free variable `self`. */\nvar freeSelf = typeof self == 'object' && self && self.Object === Object && self;\n\n/** Used as a reference to the global object. */\nvar root = freeGlobal || freeSelf || Function('return this')();\n\n/** Detect free variable `exports`. */\nvar freeExports = 'object' == 'object' && exports && !exports.nodeType && exports;\n\n/** Detect free variable `module`. */\nvar freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;\n\n/** Detect the popular CommonJS extension `module.exports`. */\nvar moduleExports = freeModule && freeModule.exports === freeExports;\n\n/** Detect free variable `process` from Node.js. */\nvar freeProcess = moduleExports && freeGlobal.process;\n\n/** Used to access faster Node.js helpers. */\nvar nodeUtil = (function() {\n try {\n return freeProcess && freeProcess.binding && freeProcess.binding('util');\n } catch (e) {}\n}());\n\n/* Node.js helper references. */\nvar nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;\n\n/**\n * A faster alternative to `Function#apply`, this function invokes `func`\n * with the `this` binding of `thisArg` and the arguments of `args`.\n *\n * @private\n * @param {Function} func The function to invoke.\n * @param {*} thisArg The `this` binding of `func`.\n * @param {Array} args The arguments to invoke `func` with.\n * @returns {*} Returns the result of `func`.\n */\nfunction apply(func, thisArg, args) {\n switch (args.length) {\n case 0: return func.call(thisArg);\n case 1: return func.call(thisArg, args[0]);\n case 2: return func.call(thisArg, args[0], args[1]);\n case 3: return func.call(thisArg, args[0], args[1], args[2]);\n }\n return func.apply(thisArg, args);\n}\n\n/**\n * The base implementation of `_.times` without support for iteratee shorthands\n * or max array length checks.\n *\n * @private\n * @param {number} n The number of times to invoke `iteratee`.\n * @param {Function} iteratee The function invoked per iteration.\n * @returns {Array} Returns the array of results.\n */\nfunction baseTimes(n, iteratee) {\n var index = -1,\n result = Array(n);\n\n while (++index < n) {\n result[index] = iteratee(index);\n }\n return result;\n}\n\n/**\n * The base implementation of `_.unary` without support for storing metadata.\n *\n * @private\n * @param {Function} func The function to cap arguments for.\n * @returns {Function} Returns the new capped function.\n */\nfunction baseUnary(func) {\n return function(value) {\n return func(value);\n };\n}\n\n/**\n * Gets the value at `key` of `object`.\n *\n * @private\n * @param {Object} [object] The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction getValue(object, key) {\n return object == null ? undefined : object[key];\n}\n\n/**\n * Creates a unary function that invokes `func` with its argument transformed.\n *\n * @private\n * @param {Function} func The function to wrap.\n * @param {Function} transform The argument transform.\n * @returns {Function} Returns the new function.\n */\nfunction overArg(func, transform) {\n return function(arg) {\n return func(transform(arg));\n };\n}\n\n/**\n * Gets the value at `key`, unless `key` is \"__proto__\".\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the property to get.\n * @returns {*} Returns the property value.\n */\nfunction safeGet(object, key) {\n return key == '__proto__'\n ? undefined\n : object[key];\n}\n\n/** Used for built-in method references. */\nvar arrayProto = Array.prototype,\n funcProto = Function.prototype,\n objectProto = Object.prototype;\n\n/** Used to detect overreaching core-js shims. */\nvar coreJsData = root['__core-js_shared__'];\n\n/** Used to resolve the decompiled source of functions. */\nvar funcToString = funcProto.toString;\n\n/** Used to check objects for own properties. */\nvar hasOwnProperty = objectProto.hasOwnProperty;\n\n/** Used to detect methods masquerading as native. */\nvar maskSrcKey = (function() {\n var uid = /[^.]+$/.exec(coreJsData && coreJsData.keys && coreJsData.keys.IE_PROTO || '');\n return uid ? ('Symbol(src)_1.' + uid) : '';\n}());\n\n/**\n * Used to resolve the\n * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)\n * of values.\n */\nvar nativeObjectToString = objectProto.toString;\n\n/** Used to infer the `Object` constructor. */\nvar objectCtorString = funcToString.call(Object);\n\n/** Used to detect if a method is native. */\nvar reIsNative = RegExp('^' +\n funcToString.call(hasOwnProperty).replace(reRegExpChar, '\\\\$&')\n .replace(/hasOwnProperty|(function).*?(?=\\\\\\()| for .+?(?=\\\\\\])/g, '$1.*?') + '$'\n);\n\n/** Built-in value references. */\nvar Buffer = moduleExports ? root.Buffer : undefined,\n Symbol = root.Symbol,\n Uint8Array = root.Uint8Array,\n allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined,\n getPrototype = overArg(Object.getPrototypeOf, Object),\n objectCreate = Object.create,\n propertyIsEnumerable = objectProto.propertyIsEnumerable,\n splice = arrayProto.splice,\n symToStringTag = Symbol ? Symbol.toStringTag : undefined;\n\nvar defineProperty = (function() {\n try {\n var func = getNative(Object, 'defineProperty');\n func({}, '', {});\n return func;\n } catch (e) {}\n}());\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined,\n nativeMax = Math.max,\n nativeNow = Date.now;\n\n/* Built-in method references that are verified to be native. */\nvar Map = getNative(root, 'Map'),\n nativeCreate = getNative(Object, 'create');\n\n/**\n * The base implementation of `_.create` without support for assigning\n * properties to the created object.\n *\n * @private\n * @param {Object} proto The object to inherit from.\n * @returns {Object} Returns the new object.\n */\nvar baseCreate = (function() {\n function object() {}\n return function(proto) {\n if (!isObject(proto)) {\n return {};\n }\n if (objectCreate) {\n return objectCreate(proto);\n }\n object.prototype = proto;\n var result = new object;\n object.prototype = undefined;\n return result;\n };\n}());\n\n/**\n * Creates a hash object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Hash(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the hash.\n *\n * @private\n * @name clear\n * @memberOf Hash\n */\nfunction hashClear() {\n this.__data__ = nativeCreate ? nativeCreate(null) : {};\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the hash.\n *\n * @private\n * @name delete\n * @memberOf Hash\n * @param {Object} hash The hash to modify.\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction hashDelete(key) {\n var result = this.has(key) && delete this.__data__[key];\n this.size -= result ? 1 : 0;\n return result;\n}\n\n/**\n * Gets the hash value for `key`.\n *\n * @private\n * @name get\n * @memberOf Hash\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction hashGet(key) {\n var data = this.__data__;\n if (nativeCreate) {\n var result = data[key];\n return result === HASH_UNDEFINED ? undefined : result;\n }\n return hasOwnProperty.call(data, key) ? data[key] : undefined;\n}\n\n/**\n * Checks if a hash value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Hash\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction hashHas(key) {\n var data = this.__data__;\n return nativeCreate ? (data[key] !== undefined) : hasOwnProperty.call(data, key);\n}\n\n/**\n * Sets the hash `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Hash\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the hash instance.\n */\nfunction hashSet(key, value) {\n var data = this.__data__;\n this.size += this.has(key) ? 0 : 1;\n data[key] = (nativeCreate && value === undefined) ? HASH_UNDEFINED : value;\n return this;\n}\n\n// Add methods to `Hash`.\nHash.prototype.clear = hashClear;\nHash.prototype['delete'] = hashDelete;\nHash.prototype.get = hashGet;\nHash.prototype.has = hashHas;\nHash.prototype.set = hashSet;\n\n/**\n * Creates an list cache object.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction ListCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the list cache.\n *\n * @private\n * @name clear\n * @memberOf ListCache\n */\nfunction listCacheClear() {\n this.__data__ = [];\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the list cache.\n *\n * @private\n * @name delete\n * @memberOf ListCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction listCacheDelete(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n return false;\n }\n var lastIndex = data.length - 1;\n if (index == lastIndex) {\n data.pop();\n } else {\n splice.call(data, index, 1);\n }\n --this.size;\n return true;\n}\n\n/**\n * Gets the list cache value for `key`.\n *\n * @private\n * @name get\n * @memberOf ListCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction listCacheGet(key) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n return index < 0 ? undefined : data[index][1];\n}\n\n/**\n * Checks if a list cache value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf ListCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction listCacheHas(key) {\n return assocIndexOf(this.__data__, key) > -1;\n}\n\n/**\n * Sets the list cache `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf ListCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the list cache instance.\n */\nfunction listCacheSet(key, value) {\n var data = this.__data__,\n index = assocIndexOf(data, key);\n\n if (index < 0) {\n ++this.size;\n data.push([key, value]);\n } else {\n data[index][1] = value;\n }\n return this;\n}\n\n// Add methods to `ListCache`.\nListCache.prototype.clear = listCacheClear;\nListCache.prototype['delete'] = listCacheDelete;\nListCache.prototype.get = listCacheGet;\nListCache.prototype.has = listCacheHas;\nListCache.prototype.set = listCacheSet;\n\n/**\n * Creates a map cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction MapCache(entries) {\n var index = -1,\n length = entries == null ? 0 : entries.length;\n\n this.clear();\n while (++index < length) {\n var entry = entries[index];\n this.set(entry[0], entry[1]);\n }\n}\n\n/**\n * Removes all key-value entries from the map.\n *\n * @private\n * @name clear\n * @memberOf MapCache\n */\nfunction mapCacheClear() {\n this.size = 0;\n this.__data__ = {\n 'hash': new Hash,\n 'map': new (Map || ListCache),\n 'string': new Hash\n };\n}\n\n/**\n * Removes `key` and its value from the map.\n *\n * @private\n * @name delete\n * @memberOf MapCache\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction mapCacheDelete(key) {\n var result = getMapData(this, key)['delete'](key);\n this.size -= result ? 1 : 0;\n return result;\n}\n\n/**\n * Gets the map value for `key`.\n *\n * @private\n * @name get\n * @memberOf MapCache\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction mapCacheGet(key) {\n return getMapData(this, key).get(key);\n}\n\n/**\n * Checks if a map value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf MapCache\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction mapCacheHas(key) {\n return getMapData(this, key).has(key);\n}\n\n/**\n * Sets the map `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf MapCache\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the map cache instance.\n */\nfunction mapCacheSet(key, value) {\n var data = getMapData(this, key),\n size = data.size;\n\n data.set(key, value);\n this.size += data.size == size ? 0 : 1;\n return this;\n}\n\n// Add methods to `MapCache`.\nMapCache.prototype.clear = mapCacheClear;\nMapCache.prototype['delete'] = mapCacheDelete;\nMapCache.prototype.get = mapCacheGet;\nMapCache.prototype.has = mapCacheHas;\nMapCache.prototype.set = mapCacheSet;\n\n/**\n * Creates a stack cache object to store key-value pairs.\n *\n * @private\n * @constructor\n * @param {Array} [entries] The key-value pairs to cache.\n */\nfunction Stack(entries) {\n var data = this.__data__ = new ListCache(entries);\n this.size = data.size;\n}\n\n/**\n * Removes all key-value entries from the stack.\n *\n * @private\n * @name clear\n * @memberOf Stack\n */\nfunction stackClear() {\n this.__data__ = new ListCache;\n this.size = 0;\n}\n\n/**\n * Removes `key` and its value from the stack.\n *\n * @private\n * @name delete\n * @memberOf Stack\n * @param {string} key The key of the value to remove.\n * @returns {boolean} Returns `true` if the entry was removed, else `false`.\n */\nfunction stackDelete(key) {\n var data = this.__data__,\n result = data['delete'](key);\n\n this.size = data.size;\n return result;\n}\n\n/**\n * Gets the stack value for `key`.\n *\n * @private\n * @name get\n * @memberOf Stack\n * @param {string} key The key of the value to get.\n * @returns {*} Returns the entry value.\n */\nfunction stackGet(key) {\n return this.__data__.get(key);\n}\n\n/**\n * Checks if a stack value for `key` exists.\n *\n * @private\n * @name has\n * @memberOf Stack\n * @param {string} key The key of the entry to check.\n * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.\n */\nfunction stackHas(key) {\n return this.__data__.has(key);\n}\n\n/**\n * Sets the stack `key` to `value`.\n *\n * @private\n * @name set\n * @memberOf Stack\n * @param {string} key The key of the value to set.\n * @param {*} value The value to set.\n * @returns {Object} Returns the stack cache instance.\n */\nfunction stackSet(key, value) {\n var data = this.__data__;\n if (data instanceof ListCache) {\n var pairs = data.__data__;\n if (!Map || (pairs.length < LARGE_ARRAY_SIZE - 1)) {\n pairs.push([key, value]);\n this.size = ++data.size;\n return this;\n }\n data = this.__data__ = new MapCache(pairs);\n }\n data.set(key, value);\n this.size = data.size;\n return this;\n}\n\n// Add methods to `Stack`.\nStack.prototype.clear = stackClear;\nStack.prototype['delete'] = stackDelete;\nStack.prototype.get = stackGet;\nStack.prototype.has = stackHas;\nStack.prototype.set = stackSet;\n\n/**\n * Creates an array of the enumerable property names of the array-like `value`.\n *\n * @private\n * @param {*} value The value to query.\n * @param {boolean} inherited Specify returning inherited property names.\n * @returns {Array} Returns the array of property names.\n */\nfunction arrayLikeKeys(value, inherited) {\n var isArr = isArray(value),\n isArg = !isArr && isArguments(value),\n isBuff = !isArr && !isArg && isBuffer(value),\n isType = !isArr && !isArg && !isBuff && isTypedArray(value),\n skipIndexes = isArr || isArg || isBuff || isType,\n result = skipIndexes ? baseTimes(value.length, String) : [],\n length = result.length;\n\n for (var key in value) {\n if ((inherited || hasOwnProperty.call(value, key)) &&\n !(skipIndexes && (\n // Safari 9 has enumerable `arguments.length` in strict mode.\n key == 'length' ||\n // Node.js 0.10 has enumerable non-index properties on buffers.\n (isBuff && (key == 'offset' || key == 'parent')) ||\n // PhantomJS 2 has enumerable non-index properties on typed arrays.\n (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||\n // Skip index properties.\n isIndex(key, length)\n ))) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * This function is like `assignValue` except that it doesn't assign\n * `undefined` values.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignMergeValue(object, key, value) {\n if ((value !== undefined && !eq(object[key], value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\n/**\n * Assigns `value` to `key` of `object` if the existing value is not equivalent\n * using [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * for equality comparisons.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction assignValue(object, key, value) {\n var objValue = object[key];\n if (!(hasOwnProperty.call(object, key) && eq(objValue, value)) ||\n (value === undefined && !(key in object))) {\n baseAssignValue(object, key, value);\n }\n}\n\n/**\n * Gets the index at which the `key` is found in `array` of key-value pairs.\n *\n * @private\n * @param {Array} array The array to inspect.\n * @param {*} key The key to search for.\n * @returns {number} Returns the index of the matched value, else `-1`.\n */\nfunction assocIndexOf(array, key) {\n var length = array.length;\n while (length--) {\n if (eq(array[length][0], key)) {\n return length;\n }\n }\n return -1;\n}\n\n/**\n * The base implementation of `assignValue` and `assignMergeValue` without\n * value checks.\n *\n * @private\n * @param {Object} object The object to modify.\n * @param {string} key The key of the property to assign.\n * @param {*} value The value to assign.\n */\nfunction baseAssignValue(object, key, value) {\n if (key == '__proto__' && defineProperty) {\n defineProperty(object, key, {\n 'configurable': true,\n 'enumerable': true,\n 'value': value,\n 'writable': true\n });\n } else {\n object[key] = value;\n }\n}\n\n/**\n * The base implementation of `baseForOwn` which iterates over `object`\n * properties returned by `keysFunc` and invokes `iteratee` for each property.\n * Iteratee functions may exit iteration early by explicitly returning `false`.\n *\n * @private\n * @param {Object} object The object to iterate over.\n * @param {Function} iteratee The function invoked per iteration.\n * @param {Function} keysFunc The function to get the keys of `object`.\n * @returns {Object} Returns `object`.\n */\nvar baseFor = createBaseFor();\n\n/**\n * The base implementation of `getTag` without fallbacks for buggy environments.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the `toStringTag`.\n */\nfunction baseGetTag(value) {\n if (value == null) {\n return value === undefined ? undefinedTag : nullTag;\n }\n return (symToStringTag && symToStringTag in Object(value))\n ? getRawTag(value)\n : objectToString(value);\n}\n\n/**\n * The base implementation of `_.isArguments`.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n */\nfunction baseIsArguments(value) {\n return isObjectLike(value) && baseGetTag(value) == argsTag;\n}\n\n/**\n * The base implementation of `_.isNative` without bad shim checks.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a native function,\n * else `false`.\n */\nfunction baseIsNative(value) {\n if (!isObject(value) || isMasked(value)) {\n return false;\n }\n var pattern = isFunction(value) ? reIsNative : reIsHostCtor;\n return pattern.test(toSource(value));\n}\n\n/**\n * The base implementation of `_.isTypedArray` without Node.js optimizations.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n */\nfunction baseIsTypedArray(value) {\n return isObjectLike(value) &&\n isLength(value.length) && !!typedArrayTags[baseGetTag(value)];\n}\n\n/**\n * The base implementation of `_.keysIn` which doesn't treat sparse arrays as dense.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction baseKeysIn(object) {\n if (!isObject(object)) {\n return nativeKeysIn(object);\n }\n var isProto = isPrototype(object),\n result = [];\n\n for (var key in object) {\n if (!(key == 'constructor' && (isProto || !hasOwnProperty.call(object, key)))) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * The base implementation of `_.merge` without support for multiple sources.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} [customizer] The function to customize merged values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\nfunction baseMerge(object, source, srcIndex, customizer, stack) {\n if (object === source) {\n return;\n }\n baseFor(source, function(srcValue, key) {\n if (isObject(srcValue)) {\n stack || (stack = new Stack);\n baseMergeDeep(object, source, key, srcIndex, baseMerge, customizer, stack);\n }\n else {\n var newValue = customizer\n ? customizer(safeGet(object, key), srcValue, (key + ''), object, source, stack)\n : undefined;\n\n if (newValue === undefined) {\n newValue = srcValue;\n }\n assignMergeValue(object, key, newValue);\n }\n }, keysIn);\n}\n\n/**\n * A specialized version of `baseMerge` for arrays and objects which performs\n * deep merges and tracks traversed objects enabling objects with circular\n * references to be merged.\n *\n * @private\n * @param {Object} object The destination object.\n * @param {Object} source The source object.\n * @param {string} key The key of the value to merge.\n * @param {number} srcIndex The index of `source`.\n * @param {Function} mergeFunc The function to merge values.\n * @param {Function} [customizer] The function to customize assigned values.\n * @param {Object} [stack] Tracks traversed source values and their merged\n * counterparts.\n */\nfunction baseMergeDeep(object, source, key, srcIndex, mergeFunc, customizer, stack) {\n var objValue = safeGet(object, key),\n srcValue = safeGet(source, key),\n stacked = stack.get(srcValue);\n\n if (stacked) {\n assignMergeValue(object, key, stacked);\n return;\n }\n var newValue = customizer\n ? customizer(objValue, srcValue, (key + ''), object, source, stack)\n : undefined;\n\n var isCommon = newValue === undefined;\n\n if (isCommon) {\n var isArr = isArray(srcValue),\n isBuff = !isArr && isBuffer(srcValue),\n isTyped = !isArr && !isBuff && isTypedArray(srcValue);\n\n newValue = srcValue;\n if (isArr || isBuff || isTyped) {\n if (isArray(objValue)) {\n newValue = objValue;\n }\n else if (isArrayLikeObject(objValue)) {\n newValue = copyArray(objValue);\n }\n else if (isBuff) {\n isCommon = false;\n newValue = cloneBuffer(srcValue, true);\n }\n else if (isTyped) {\n isCommon = false;\n newValue = cloneTypedArray(srcValue, true);\n }\n else {\n newValue = [];\n }\n }\n else if (isPlainObject(srcValue) || isArguments(srcValue)) {\n newValue = objValue;\n if (isArguments(objValue)) {\n newValue = toPlainObject(objValue);\n }\n else if (!isObject(objValue) || (srcIndex && isFunction(objValue))) {\n newValue = initCloneObject(srcValue);\n }\n }\n else {\n isCommon = false;\n }\n }\n if (isCommon) {\n // Recursively merge objects and arrays (susceptible to call stack limits).\n stack.set(srcValue, newValue);\n mergeFunc(newValue, srcValue, srcIndex, customizer, stack);\n stack['delete'](srcValue);\n }\n assignMergeValue(object, key, newValue);\n}\n\n/**\n * The base implementation of `_.rest` which doesn't validate or coerce arguments.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @returns {Function} Returns the new function.\n */\nfunction baseRest(func, start) {\n return setToString(overRest(func, start, identity), func + '');\n}\n\n/**\n * The base implementation of `setToString` without support for hot loop shorting.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar baseSetToString = !defineProperty ? identity : function(func, string) {\n return defineProperty(func, 'toString', {\n 'configurable': true,\n 'enumerable': false,\n 'value': constant(string),\n 'writable': true\n });\n};\n\n/**\n * Creates a clone of `buffer`.\n *\n * @private\n * @param {Buffer} buffer The buffer to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Buffer} Returns the cloned buffer.\n */\nfunction cloneBuffer(buffer, isDeep) {\n if (isDeep) {\n return buffer.slice();\n }\n var length = buffer.length,\n result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);\n\n buffer.copy(result);\n return result;\n}\n\n/**\n * Creates a clone of `arrayBuffer`.\n *\n * @private\n * @param {ArrayBuffer} arrayBuffer The array buffer to clone.\n * @returns {ArrayBuffer} Returns the cloned array buffer.\n */\nfunction cloneArrayBuffer(arrayBuffer) {\n var result = new arrayBuffer.constructor(arrayBuffer.byteLength);\n new Uint8Array(result).set(new Uint8Array(arrayBuffer));\n return result;\n}\n\n/**\n * Creates a clone of `typedArray`.\n *\n * @private\n * @param {Object} typedArray The typed array to clone.\n * @param {boolean} [isDeep] Specify a deep clone.\n * @returns {Object} Returns the cloned typed array.\n */\nfunction cloneTypedArray(typedArray, isDeep) {\n var buffer = isDeep ? cloneArrayBuffer(typedArray.buffer) : typedArray.buffer;\n return new typedArray.constructor(buffer, typedArray.byteOffset, typedArray.length);\n}\n\n/**\n * Copies the values of `source` to `array`.\n *\n * @private\n * @param {Array} source The array to copy values from.\n * @param {Array} [array=[]] The array to copy values to.\n * @returns {Array} Returns `array`.\n */\nfunction copyArray(source, array) {\n var index = -1,\n length = source.length;\n\n array || (array = Array(length));\n while (++index < length) {\n array[index] = source[index];\n }\n return array;\n}\n\n/**\n * Copies properties of `source` to `object`.\n *\n * @private\n * @param {Object} source The object to copy properties from.\n * @param {Array} props The property identifiers to copy.\n * @param {Object} [object={}] The object to copy properties to.\n * @param {Function} [customizer] The function to customize copied values.\n * @returns {Object} Returns `object`.\n */\nfunction copyObject(source, props, object, customizer) {\n var isNew = !object;\n object || (object = {});\n\n var index = -1,\n length = props.length;\n\n while (++index < length) {\n var key = props[index];\n\n var newValue = customizer\n ? customizer(object[key], source[key], key, object, source)\n : undefined;\n\n if (newValue === undefined) {\n newValue = source[key];\n }\n if (isNew) {\n baseAssignValue(object, key, newValue);\n } else {\n assignValue(object, key, newValue);\n }\n }\n return object;\n}\n\n/**\n * Creates a function like `_.assign`.\n *\n * @private\n * @param {Function} assigner The function to assign values.\n * @returns {Function} Returns the new assigner function.\n */\nfunction createAssigner(assigner) {\n return baseRest(function(object, sources) {\n var index = -1,\n length = sources.length,\n customizer = length > 1 ? sources[length - 1] : undefined,\n guard = length > 2 ? sources[2] : undefined;\n\n customizer = (assigner.length > 3 && typeof customizer == 'function')\n ? (length--, customizer)\n : undefined;\n\n if (guard && isIterateeCall(sources[0], sources[1], guard)) {\n customizer = length < 3 ? undefined : customizer;\n length = 1;\n }\n object = Object(object);\n while (++index < length) {\n var source = sources[index];\n if (source) {\n assigner(object, source, index, customizer);\n }\n }\n return object;\n });\n}\n\n/**\n * Creates a base function for methods like `_.forIn` and `_.forOwn`.\n *\n * @private\n * @param {boolean} [fromRight] Specify iterating from right to left.\n * @returns {Function} Returns the new base function.\n */\nfunction createBaseFor(fromRight) {\n return function(object, iteratee, keysFunc) {\n var index = -1,\n iterable = Object(object),\n props = keysFunc(object),\n length = props.length;\n\n while (length--) {\n var key = props[fromRight ? length : ++index];\n if (iteratee(iterable[key], key, iterable) === false) {\n break;\n }\n }\n return object;\n };\n}\n\n/**\n * Gets the data for `map`.\n *\n * @private\n * @param {Object} map The map to query.\n * @param {string} key The reference key.\n * @returns {*} Returns the map data.\n */\nfunction getMapData(map, key) {\n var data = map.__data__;\n return isKeyable(key)\n ? data[typeof key == 'string' ? 'string' : 'hash']\n : data.map;\n}\n\n/**\n * Gets the native function at `key` of `object`.\n *\n * @private\n * @param {Object} object The object to query.\n * @param {string} key The key of the method to get.\n * @returns {*} Returns the function if it's native, else `undefined`.\n */\nfunction getNative(object, key) {\n var value = getValue(object, key);\n return baseIsNative(value) ? value : undefined;\n}\n\n/**\n * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.\n *\n * @private\n * @param {*} value The value to query.\n * @returns {string} Returns the raw `toStringTag`.\n */\nfunction getRawTag(value) {\n var isOwn = hasOwnProperty.call(value, symToStringTag),\n tag = value[symToStringTag];\n\n try {\n value[symToStringTag] = undefined;\n var unmasked = true;\n } catch (e) {}\n\n var result = nativeObjectToString.call(value);\n if (unmasked) {\n if (isOwn) {\n value[symToStringTag] = tag;\n } else {\n delete value[symToStringTag];\n }\n }\n return result;\n}\n\n/**\n * Initializes an object clone.\n *\n * @private\n * @param {Object} object The object to clone.\n * @returns {Object} Returns the initialized clone.\n */\nfunction initCloneObject(object) {\n return (typeof object.constructor == 'function' && !isPrototype(object))\n ? baseCreate(getPrototype(object))\n : {};\n}\n\n/**\n * Checks if `value` is a valid array-like index.\n *\n * @private\n * @param {*} value The value to check.\n * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.\n * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.\n */\nfunction isIndex(value, length) {\n var type = typeof value;\n length = length == null ? MAX_SAFE_INTEGER : length;\n\n return !!length &&\n (type == 'number' ||\n (type != 'symbol' && reIsUint.test(value))) &&\n (value > -1 && value % 1 == 0 && value < length);\n}\n\n/**\n * Checks if the given arguments are from an iteratee call.\n *\n * @private\n * @param {*} value The potential iteratee value argument.\n * @param {*} index The potential iteratee index or key argument.\n * @param {*} object The potential iteratee object argument.\n * @returns {boolean} Returns `true` if the arguments are from an iteratee call,\n * else `false`.\n */\nfunction isIterateeCall(value, index, object) {\n if (!isObject(object)) {\n return false;\n }\n var type = typeof index;\n if (type == 'number'\n ? (isArrayLike(object) && isIndex(index, object.length))\n : (type == 'string' && index in object)\n ) {\n return eq(object[index], value);\n }\n return false;\n}\n\n/**\n * Checks if `value` is suitable for use as unique object key.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is suitable, else `false`.\n */\nfunction isKeyable(value) {\n var type = typeof value;\n return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')\n ? (value !== '__proto__')\n : (value === null);\n}\n\n/**\n * Checks if `func` has its source masked.\n *\n * @private\n * @param {Function} func The function to check.\n * @returns {boolean} Returns `true` if `func` is masked, else `false`.\n */\nfunction isMasked(func) {\n return !!maskSrcKey && (maskSrcKey in func);\n}\n\n/**\n * Checks if `value` is likely a prototype object.\n *\n * @private\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.\n */\nfunction isPrototype(value) {\n var Ctor = value && value.constructor,\n proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto;\n\n return value === proto;\n}\n\n/**\n * This function is like\n * [`Object.keys`](http://ecma-international.org/ecma-262/7.0/#sec-object.keys)\n * except that it includes inherited enumerable properties.\n *\n * @private\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n */\nfunction nativeKeysIn(object) {\n var result = [];\n if (object != null) {\n for (var key in Object(object)) {\n result.push(key);\n }\n }\n return result;\n}\n\n/**\n * Converts `value` to a string using `Object.prototype.toString`.\n *\n * @private\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n */\nfunction objectToString(value) {\n return nativeObjectToString.call(value);\n}\n\n/**\n * A specialized version of `baseRest` which transforms the rest array.\n *\n * @private\n * @param {Function} func The function to apply a rest parameter to.\n * @param {number} [start=func.length-1] The start position of the rest parameter.\n * @param {Function} transform The rest array transform.\n * @returns {Function} Returns the new function.\n */\nfunction overRest(func, start, transform) {\n start = nativeMax(start === undefined ? (func.length - 1) : start, 0);\n return function() {\n var args = arguments,\n index = -1,\n length = nativeMax(args.length - start, 0),\n array = Array(length);\n\n while (++index < length) {\n array[index] = args[start + index];\n }\n index = -1;\n var otherArgs = Array(start + 1);\n while (++index < start) {\n otherArgs[index] = args[index];\n }\n otherArgs[start] = transform(array);\n return apply(func, this, otherArgs);\n };\n}\n\n/**\n * Sets the `toString` method of `func` to return `string`.\n *\n * @private\n * @param {Function} func The function to modify.\n * @param {Function} string The `toString` result.\n * @returns {Function} Returns `func`.\n */\nvar setToString = shortOut(baseSetToString);\n\n/**\n * Creates a function that'll short out and invoke `identity` instead\n * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`\n * milliseconds.\n *\n * @private\n * @param {Function} func The function to restrict.\n * @returns {Function} Returns the new shortable function.\n */\nfunction shortOut(func) {\n var count = 0,\n lastCalled = 0;\n\n return function() {\n var stamp = nativeNow(),\n remaining = HOT_SPAN - (stamp - lastCalled);\n\n lastCalled = stamp;\n if (remaining > 0) {\n if (++count >= HOT_COUNT) {\n return arguments[0];\n }\n } else {\n count = 0;\n }\n return func.apply(undefined, arguments);\n };\n}\n\n/**\n * Converts `func` to its source code.\n *\n * @private\n * @param {Function} func The function to convert.\n * @returns {string} Returns the source code.\n */\nfunction toSource(func) {\n if (func != null) {\n try {\n return funcToString.call(func);\n } catch (e) {}\n try {\n return (func + '');\n } catch (e) {}\n }\n return '';\n}\n\n/**\n * Performs a\n * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)\n * comparison between two values to determine if they are equivalent.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to compare.\n * @param {*} other The other value to compare.\n * @returns {boolean} Returns `true` if the values are equivalent, else `false`.\n * @example\n *\n * var object = { 'a': 1 };\n * var other = { 'a': 1 };\n *\n * _.eq(object, object);\n * // => true\n *\n * _.eq(object, other);\n * // => false\n *\n * _.eq('a', 'a');\n * // => true\n *\n * _.eq('a', Object('a'));\n * // => false\n *\n * _.eq(NaN, NaN);\n * // => true\n */\nfunction eq(value, other) {\n return value === other || (value !== value && other !== other);\n}\n\n/**\n * Checks if `value` is likely an `arguments` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an `arguments` object,\n * else `false`.\n * @example\n *\n * _.isArguments(function() { return arguments; }());\n * // => true\n *\n * _.isArguments([1, 2, 3]);\n * // => false\n */\nvar isArguments = baseIsArguments(function() { return arguments; }()) ? baseIsArguments : function(value) {\n return isObjectLike(value) && hasOwnProperty.call(value, 'callee') &&\n !propertyIsEnumerable.call(value, 'callee');\n};\n\n/**\n * Checks if `value` is classified as an `Array` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array, else `false`.\n * @example\n *\n * _.isArray([1, 2, 3]);\n * // => true\n *\n * _.isArray(document.body.children);\n * // => false\n *\n * _.isArray('abc');\n * // => false\n *\n * _.isArray(_.noop);\n * // => false\n */\nvar isArray = Array.isArray;\n\n/**\n * Checks if `value` is array-like. A value is considered array-like if it's\n * not a function and has a `value.length` that's an integer greater than or\n * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is array-like, else `false`.\n * @example\n *\n * _.isArrayLike([1, 2, 3]);\n * // => true\n *\n * _.isArrayLike(document.body.children);\n * // => true\n *\n * _.isArrayLike('abc');\n * // => true\n *\n * _.isArrayLike(_.noop);\n * // => false\n */\nfunction isArrayLike(value) {\n return value != null && isLength(value.length) && !isFunction(value);\n}\n\n/**\n * This method is like `_.isArrayLike` except that it also checks if `value`\n * is an object.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an array-like object,\n * else `false`.\n * @example\n *\n * _.isArrayLikeObject([1, 2, 3]);\n * // => true\n *\n * _.isArrayLikeObject(document.body.children);\n * // => true\n *\n * _.isArrayLikeObject('abc');\n * // => false\n *\n * _.isArrayLikeObject(_.noop);\n * // => false\n */\nfunction isArrayLikeObject(value) {\n return isObjectLike(value) && isArrayLike(value);\n}\n\n/**\n * Checks if `value` is a buffer.\n *\n * @static\n * @memberOf _\n * @since 4.3.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.\n * @example\n *\n * _.isBuffer(new Buffer(2));\n * // => true\n *\n * _.isBuffer(new Uint8Array(2));\n * // => false\n */\nvar isBuffer = nativeIsBuffer || stubFalse;\n\n/**\n * Checks if `value` is classified as a `Function` object.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a function, else `false`.\n * @example\n *\n * _.isFunction(_);\n * // => true\n *\n * _.isFunction(/abc/);\n * // => false\n */\nfunction isFunction(value) {\n if (!isObject(value)) {\n return false;\n }\n // The use of `Object#toString` avoids issues with the `typeof` operator\n // in Safari 9 which returns 'object' for typed arrays and other constructors.\n var tag = baseGetTag(value);\n return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;\n}\n\n/**\n * Checks if `value` is a valid array-like length.\n *\n * **Note:** This method is loosely based on\n * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.\n * @example\n *\n * _.isLength(3);\n * // => true\n *\n * _.isLength(Number.MIN_VALUE);\n * // => false\n *\n * _.isLength(Infinity);\n * // => false\n *\n * _.isLength('3');\n * // => false\n */\nfunction isLength(value) {\n return typeof value == 'number' &&\n value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;\n}\n\n/**\n * Checks if `value` is the\n * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)\n * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is an object, else `false`.\n * @example\n *\n * _.isObject({});\n * // => true\n *\n * _.isObject([1, 2, 3]);\n * // => true\n *\n * _.isObject(_.noop);\n * // => true\n *\n * _.isObject(null);\n * // => false\n */\nfunction isObject(value) {\n var type = typeof value;\n return value != null && (type == 'object' || type == 'function');\n}\n\n/**\n * Checks if `value` is object-like. A value is object-like if it's not `null`\n * and has a `typeof` result of \"object\".\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is object-like, else `false`.\n * @example\n *\n * _.isObjectLike({});\n * // => true\n *\n * _.isObjectLike([1, 2, 3]);\n * // => true\n *\n * _.isObjectLike(_.noop);\n * // => false\n *\n * _.isObjectLike(null);\n * // => false\n */\nfunction isObjectLike(value) {\n return value != null && typeof value == 'object';\n}\n\n/**\n * Checks if `value` is a plain object, that is, an object created by the\n * `Object` constructor or one with a `[[Prototype]]` of `null`.\n *\n * @static\n * @memberOf _\n * @since 0.8.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a plain object, else `false`.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * }\n *\n * _.isPlainObject(new Foo);\n * // => false\n *\n * _.isPlainObject([1, 2, 3]);\n * // => false\n *\n * _.isPlainObject({ 'x': 0, 'y': 0 });\n * // => true\n *\n * _.isPlainObject(Object.create(null));\n * // => true\n */\nfunction isPlainObject(value) {\n if (!isObjectLike(value) || baseGetTag(value) != objectTag) {\n return false;\n }\n var proto = getPrototype(value);\n if (proto === null) {\n return true;\n }\n var Ctor = hasOwnProperty.call(proto, 'constructor') && proto.constructor;\n return typeof Ctor == 'function' && Ctor instanceof Ctor &&\n funcToString.call(Ctor) == objectCtorString;\n}\n\n/**\n * Checks if `value` is classified as a typed array.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to check.\n * @returns {boolean} Returns `true` if `value` is a typed array, else `false`.\n * @example\n *\n * _.isTypedArray(new Uint8Array);\n * // => true\n *\n * _.isTypedArray([]);\n * // => false\n */\nvar isTypedArray = nodeIsTypedArray ? baseUnary(nodeIsTypedArray) : baseIsTypedArray;\n\n/**\n * Converts `value` to a plain object flattening inherited enumerable string\n * keyed properties of `value` to own properties of the plain object.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {Object} Returns the converted plain object.\n * @example\n *\n * function Foo() {\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.assign({ 'a': 1 }, new Foo);\n * // => { 'a': 1, 'b': 2 }\n *\n * _.assign({ 'a': 1 }, _.toPlainObject(new Foo));\n * // => { 'a': 1, 'b': 2, 'c': 3 }\n */\nfunction toPlainObject(value) {\n return copyObject(value, keysIn(value));\n}\n\n/**\n * Creates an array of the own and inherited enumerable property names of `object`.\n *\n * **Note:** Non-object values are coerced to objects.\n *\n * @static\n * @memberOf _\n * @since 3.0.0\n * @category Object\n * @param {Object} object The object to query.\n * @returns {Array} Returns the array of property names.\n * @example\n *\n * function Foo() {\n * this.a = 1;\n * this.b = 2;\n * }\n *\n * Foo.prototype.c = 3;\n *\n * _.keysIn(new Foo);\n * // => ['a', 'b', 'c'] (iteration order is not guaranteed)\n */\nfunction keysIn(object) {\n return isArrayLike(object) ? arrayLikeKeys(object, true) : baseKeysIn(object);\n}\n\n/**\n * This method is like `_.assign` except that it recursively merges own and\n * inherited enumerable string keyed properties of source objects into the\n * destination object. Source properties that resolve to `undefined` are\n * skipped if a destination value exists. Array and plain object properties\n * are merged recursively. Other objects and value types are overridden by\n * assignment. Source objects are applied from left to right. Subsequent\n * sources overwrite property assignments of previous sources.\n *\n * **Note:** This method mutates `object`.\n *\n * @static\n * @memberOf _\n * @since 0.5.0\n * @category Object\n * @param {Object} object The destination object.\n * @param {...Object} [sources] The source objects.\n * @returns {Object} Returns `object`.\n * @example\n *\n * var object = {\n * 'a': [{ 'b': 2 }, { 'd': 4 }]\n * };\n *\n * var other = {\n * 'a': [{ 'c': 3 }, { 'e': 5 }]\n * };\n *\n * _.merge(object, other);\n * // => { 'a': [{ 'b': 2, 'c': 3 }, { 'd': 4, 'e': 5 }] }\n */\nvar merge = createAssigner(function(object, source, srcIndex) {\n baseMerge(object, source, srcIndex);\n});\n\n/**\n * Creates a function that returns `value`.\n *\n * @static\n * @memberOf _\n * @since 2.4.0\n * @category Util\n * @param {*} value The value to return from the new function.\n * @returns {Function} Returns the new constant function.\n * @example\n *\n * var objects = _.times(2, _.constant({ 'a': 1 }));\n *\n * console.log(objects);\n * // => [{ 'a': 1 }, { 'a': 1 }]\n *\n * console.log(objects[0] === objects[1]);\n * // => true\n */\nfunction constant(value) {\n return function() {\n return value;\n };\n}\n\n/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\n/**\n * This method returns `false`.\n *\n * @static\n * @memberOf _\n * @since 4.13.0\n * @category Util\n * @returns {boolean} Returns `false`.\n * @example\n *\n * _.times(2, _.stubFalse);\n * // => [false, false]\n */\nfunction stubFalse() {\n return false;\n}\n\nmodule.exports = merge;\n});\n\nfunction install(Vue) {\n\tvar options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n\n\tif (install.installed) return;\n\tinstall.installed = true;\n\n\tvar finalOptions = {};\n\tlodash_merge(finalOptions, defaultOptions, options);\n\n\tplugin.options = finalOptions;\n\tdirective.options = finalOptions;\n\n\tVue.directive('tooltip', directive);\n\tVue.directive('close-popover', vclosepopover);\n\tVue.component('v-popover', Popover);\n}\n\nvar VTooltip = directive;\nvar VClosePopover = vclosepopover;\nvar VPopover = Popover;\n\nvar plugin = {\n\tinstall: install,\n\n\tget enabled() {\n\t\treturn state.enabled;\n\t},\n\n\tset enabled(value) {\n\t\tstate.enabled = value;\n\t}\n};\n\n// Auto-install\nvar GlobalVue = null;\nif (typeof window !== 'undefined') {\n\tGlobalVue = window.Vue;\n} else if (typeof global !== 'undefined') {\n\tGlobalVue = global.Vue;\n}\nif (GlobalVue) {\n\tGlobalVue.use(plugin);\n}\n\nexport { install, VTooltip, VClosePopover, VPopover, createTooltip, destroyTooltip };\nexport default plugin;\n","function validate(binding) {\r\n if (typeof binding.value !== 'function') {\r\n console.warn('[Vue-click-outside:] provided expression', binding.expression, 'is not a function.')\r\n return false\r\n }\r\n\r\n return true\r\n}\r\n\r\nfunction isPopup(popupItem, elements) {\r\n if (!popupItem || !elements)\r\n return false\r\n\r\n for (var i = 0, len = elements.length; i < len; i++) {\r\n try {\r\n if (popupItem.contains(elements[i])) {\r\n return true\r\n }\r\n if (elements[i].contains(popupItem)) {\r\n return false\r\n }\r\n } catch(e) {\r\n return false\r\n }\r\n }\r\n\r\n return false\r\n}\r\n\r\nfunction isServer(vNode) {\r\n return typeof vNode.componentInstance !== 'undefined' && vNode.componentInstance.$isServer\r\n}\r\n\r\nexports = module.exports = {\r\n bind: function (el, binding, vNode) {\r\n if (!validate(binding)) return\r\n\r\n // Define Handler and cache it on the element\r\n function handler(e) {\r\n if (!vNode.context) return\r\n\r\n // some components may have related popup item, on which we shall prevent the click outside event handler.\r\n var elements = e.path || (e.composedPath && e.composedPath())\r\n elements && elements.length > 0 && elements.unshift(e.target)\r\n \r\n if (el.contains(e.target) || isPopup(vNode.context.popupItem, elements)) return\r\n\r\n el.__vueClickOutside__.callback(e)\r\n }\r\n\r\n // add Event Listeners\r\n el.__vueClickOutside__ = {\r\n handler: handler,\r\n callback: binding.value\r\n }\r\n !isServer(vNode) && document.addEventListener('click', handler)\r\n },\r\n\r\n update: function (el, binding) {\r\n if (validate(binding)) el.__vueClickOutside__.callback = binding.value\r\n },\r\n \r\n unbind: function (el, binding, vNode) {\r\n // Remove Event Listeners\r\n !isServer(vNode) && document.removeEventListener('click', el.__vueClickOutside__.handler)\r\n delete el.__vueClickOutside__\r\n }\r\n}\r\n","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticClass: \"followupsection\", attrs: { id: \"updatenotification\" } },\n [\n _c(\n \"div\",\n { staticClass: \"update\" },\n [\n _vm.isNewVersionAvailable\n ? [\n _vm.versionIsEol\n ? _c(\"p\", [\n _c(\"span\", { staticClass: \"warning\" }, [\n _c(\"span\", { staticClass: \"icon icon-error\" }),\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.\"\n )\n ) +\n \"\\n\\t\\t\\t\\t\"\n )\n ])\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"p\", [\n _c(\"span\", {\n domProps: {\n innerHTML: _vm._s(_vm.newVersionAvailableString)\n }\n }),\n _c(\"br\"),\n _vm._v(\" \"),\n !_vm.isListFetched\n ? _c(\"span\", { staticClass: \"icon icon-loading-small\" })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"span\", {\n domProps: { innerHTML: _vm._s(_vm.statusText) }\n })\n ]),\n _vm._v(\" \"),\n _vm.missingAppUpdates.length\n ? [\n _c(\n \"h3\",\n { on: { click: _vm.toggleHideMissingUpdates } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Apps missing updates\"\n )\n ) +\n \"\\n\\t\\t\\t\\t\\t\"\n ),\n !_vm.hideMissingUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-n\"\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hideMissingUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-s\"\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n !_vm.hideMissingUpdates\n ? _c(\n \"ul\",\n { staticClass: \"applist\" },\n _vm._l(_vm.missingAppUpdates, function(app) {\n return _c(\"li\", [\n _c(\n \"a\",\n {\n attrs: {\n href:\n \"https://apps.nextcloud.com/apps/\" +\n app.appId,\n title: _vm.t(\"settings\", \"View in store\")\n }\n },\n [_vm._v(_vm._s(app.appName) + \" ↗\")]\n )\n ])\n })\n )\n : _vm._e()\n ]\n : _vm._e(),\n _vm._v(\" \"),\n _vm.availableAppUpdates.length\n ? [\n _c(\n \"h3\",\n { on: { click: _vm.toggleHideAvailableUpdates } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Apps with available updates\"\n )\n ) +\n \"\\n\\t\\t\\t\\t\\t\"\n ),\n !_vm.hideAvailableUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-n\"\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hideAvailableUpdates\n ? _c(\"span\", {\n staticClass: \"icon icon-triangle-s\"\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"ul\",\n { staticClass: \"applist\" },\n _vm._l(_vm.availableAppUpdates, function(app) {\n return !_vm.hideAvailableUpdates\n ? _c(\"li\", [\n _c(\n \"a\",\n {\n attrs: {\n href:\n \"https://apps.nextcloud.com/apps/\" +\n app.appId,\n title: _vm.t(\"settings\", \"View in store\")\n }\n },\n [_vm._v(_vm._s(app.appName) + \" ↗\")]\n )\n ])\n : _vm._e()\n })\n )\n ]\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"p\", [\n _vm.updaterEnabled\n ? _c(\n \"a\",\n {\n staticClass: \"button\",\n attrs: { href: \"#\" },\n on: { click: _vm.clickUpdaterButton }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"updatenotification\", \"Open updater\"))\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.downloadLink\n ? _c(\n \"a\",\n {\n staticClass: \"button\",\n class: { hidden: !_vm.updaterEnabled },\n attrs: { href: _vm.downloadLink }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"updatenotification\", \"Download now\"))\n )\n ]\n )\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _vm.whatsNew\n ? _c(\"div\", { staticClass: \"whatsNew\" }, [\n _c(\"div\", { staticClass: \"toggleWhatsNew\" }, [\n _c(\n \"span\",\n {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n on: { click: _vm.toggleMenu }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"updatenotification\", \"What's new?\"))\n )\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: {\n \"menu-center\": true,\n open: _vm.openedWhatsNew\n }\n },\n [\n _c(\"popover-menu\", {\n attrs: { menu: _vm.whatsNew }\n })\n ],\n 1\n )\n ])\n ])\n : _vm._e()\n ]\n : !_vm.isUpdateChecked\n ? [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The update check is not yet finished. Please refresh the page.\"\n )\n )\n )\n ]\n : [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Your version is up to date.\"\n )\n ) +\n \"\\n\\t\\t\\t\"\n ),\n _c(\"span\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.lastCheckedOnString,\n expression: \"lastCheckedOnString\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"icon-info svg\"\n })\n ],\n _vm._v(\" \"),\n !_vm.isDefaultUpdateServerURL\n ? [\n _c(\"p\", [\n _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"A non-default update server is in use to be checked for updates:\"\n )\n ) + \" \"\n ),\n _c(\"code\", [_vm._v(_vm._s(_vm.updateServerURL))])\n ])\n ])\n ]\n : _vm._e()\n ],\n 2\n ),\n _vm._v(\" \"),\n _c(\"p\", [\n _c(\"label\", { attrs: { for: \"release-channel\" } }, [\n _vm._v(_vm._s(_vm.t(\"updatenotification\", \"Update channel:\")))\n ]),\n _vm._v(\" \"),\n _c(\n \"select\",\n {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.currentChannel,\n expression: \"currentChannel\"\n }\n ],\n attrs: { id: \"release-channel\" },\n on: {\n change: [\n function($event) {\n var $$selectedVal = Array.prototype.filter\n .call($event.target.options, function(o) {\n return o.selected\n })\n .map(function(o) {\n var val = \"_value\" in o ? o._value : o.value\n return val\n })\n _vm.currentChannel = $event.target.multiple\n ? $$selectedVal\n : $$selectedVal[0]\n },\n _vm.changeReleaseChannel\n ]\n }\n },\n _vm._l(_vm.channels, function(channel) {\n return _c(\"option\", { domProps: { value: channel } }, [\n _vm._v(_vm._s(channel))\n ])\n })\n ),\n _vm._v(\" \"),\n _c(\"span\", { staticClass: \"msg\", attrs: { id: \"channel_save_msg\" } }),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.\"\n )\n )\n )\n ]),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.\"\n )\n )\n )\n ])\n ]),\n _vm._v(\" \"),\n _c(\"p\", { staticClass: \"channel-description\" }, [\n _c(\"span\", {\n domProps: { innerHTML: _vm._s(_vm.productionInfoString) }\n }),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"span\", { domProps: { innerHTML: _vm._s(_vm.stableInfoString) } }),\n _c(\"br\"),\n _vm._v(\" \"),\n _c(\"span\", { domProps: { innerHTML: _vm._s(_vm.betaInfoString) } })\n ]),\n _vm._v(\" \"),\n _c(\n \"p\",\n { attrs: { id: \"oca_updatenotification_groups\" } },\n [\n _vm._v(\n \"\\n\\t\\t\" +\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Notify members of the following groups about available updates:\"\n )\n ) +\n \"\\n\\t\\t\"\n ),\n _c(\"multiselect\", {\n attrs: {\n options: _vm.availableGroups,\n multiple: true,\n label: \"label\",\n \"track-by\": \"value\",\n \"tag-width\": 75\n },\n model: {\n value: _vm.notifyGroups,\n callback: function($$v) {\n _vm.notifyGroups = $$v\n },\n expression: \"notifyGroups\"\n }\n }),\n _c(\"br\"),\n _vm._v(\" \"),\n _vm.currentChannel === \"daily\" || _vm.currentChannel === \"git\"\n ? _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"Only notification for app updates are available.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.currentChannel === \"daily\"\n ? _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The selected update channel makes dedicated notifications for the server obsolete.\"\n )\n )\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.currentChannel === \"git\"\n ? _c(\"em\", [\n _vm._v(\n _vm._s(\n _vm.t(\n \"updatenotification\",\n \"The selected update channel does not support updates of the server.\"\n )\n )\n )\n ])\n : _vm._e()\n ],\n 1\n )\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./root.vue?vue&type=template&id=6f6af01c&\"\nimport script from \"./root.vue?vue&type=script&lang=js&\"\nexport * from \"./root.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/admin/Docker/server/apps/updatenotification/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!module.hot.data) {\n api.createRecord('6f6af01c', component.options)\n } else {\n api.reload('6f6af01c', component.options)\n }\n module.hot.accept(\"./root.vue?vue&type=template&id=6f6af01c&\", function () {\n api.rerender('6f6af01c', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"src/components/root.vue\"\nexport default component.exports","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","import mod from \"-!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./root.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./root.vue?vue&type=script&lang=js&\"","/**\n * @copyright Copyright (c) 2018 Joas Schilling <coding@schilljs.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\n\n/* global define, $ */\nimport Vue from 'vue';\nimport Root from './components/root'\n\nVue.mixin({\n\tmethods: {\n\t\tt: function(app, text, vars, count, options) {\n\t\t\treturn OC.L10N.translate(app, text, vars, count, options);\n\t\t},\n\t\tn: function(app, textSingular, textPlural, count, vars, options) {\n\t\t\treturn OC.L10N.translatePlural(app, textSingular, textPlural, count, vars, options);\n\t\t}\n\t}\n});\n\nconst vm = new Vue({\n\trender: h => h(Root)\n}).$mount('#updatenotification');\n\n\n"],"sourceRoot":""}
\ No newline at end of file diff --git a/apps/updatenotification/l10n/ast.js b/apps/updatenotification/l10n/ast.js index 6a40e4b3bb8..e9c0555aa33 100644 --- a/apps/updatenotification/l10n/ast.js +++ b/apps/updatenotification/l10n/ast.js @@ -10,18 +10,18 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Ta disponible l'anovamientu pa %1$s a la versión %2$s.", "Update for {app} to version %s is available." : "Ta disponible l'anovamientu pa {app} a la versión %s.", "Open updater" : "Abrir anovador", + "Download now" : "Baxar agora", + "The update check is not yet finished. Please refresh the page." : "Entá nun finó la comprobación d'anovamientu. Refresca la páxina, por favor.", "Your version is up to date." : "La to versión ta anovada", "A non-default update server is in use to be checked for updates:" : "Úsase un sirvidor non predetermináu pa comprobar anovamientos:", + "Update channel:" : "Canal d'anovamientu:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempres pues anovar a una canal esperimental pero enxamás nun afites una canal más estable.", "Notify members of the following groups about available updates:" : "Avisar a los miembros de los grupos de darréu tocante a anovamientos disponibles:", "Only notification for app updates are available." : "Namái tán disponibles los avisos pa los anovamientos d'aplicaciones.", + "The selected update channel makes dedicated notifications for the server obsolete." : "La canal esbillada d'anovamientu fai avisos dedicaos pa lo obsoleto del sirvidor.", "The selected update channel does not support updates of the server." : "El canal esbilláu d'anovamientu nun sofita anovamientos del sirvidor.", "Could not start updater, please try the manual update" : "Nun pudo aniciase l'anovador, por favor prueba l'anovamientu manual", "A new version is available: %s" : "Ta disponible una versión más nueva: %s", - "Download now" : "Baxar agora", - "Checked on %s" : "Comprobóse'l %s", - "Update channel:" : "Canal d'anovamientu:", - "The selected update channel makes dedicated notifications for the server obsolete." : "La canal esbillada d'anovamientu fai avisos dedicaos pa lo obsoleto del sirvidor.", - "The update check is not yet finished. Please refresh the page." : "Entá nun finó la comprobación d'anovamientu. Refresca la páxina, por favor." + "Checked on %s" : "Comprobóse'l %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/ast.json b/apps/updatenotification/l10n/ast.json index 44933120cdc..6fb17ece3c2 100644 --- a/apps/updatenotification/l10n/ast.json +++ b/apps/updatenotification/l10n/ast.json @@ -8,18 +8,18 @@ "Update for %1$s to version %2$s is available." : "Ta disponible l'anovamientu pa %1$s a la versión %2$s.", "Update for {app} to version %s is available." : "Ta disponible l'anovamientu pa {app} a la versión %s.", "Open updater" : "Abrir anovador", + "Download now" : "Baxar agora", + "The update check is not yet finished. Please refresh the page." : "Entá nun finó la comprobación d'anovamientu. Refresca la páxina, por favor.", "Your version is up to date." : "La to versión ta anovada", "A non-default update server is in use to be checked for updates:" : "Úsase un sirvidor non predetermináu pa comprobar anovamientos:", + "Update channel:" : "Canal d'anovamientu:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempres pues anovar a una canal esperimental pero enxamás nun afites una canal más estable.", "Notify members of the following groups about available updates:" : "Avisar a los miembros de los grupos de darréu tocante a anovamientos disponibles:", "Only notification for app updates are available." : "Namái tán disponibles los avisos pa los anovamientos d'aplicaciones.", + "The selected update channel makes dedicated notifications for the server obsolete." : "La canal esbillada d'anovamientu fai avisos dedicaos pa lo obsoleto del sirvidor.", "The selected update channel does not support updates of the server." : "El canal esbilláu d'anovamientu nun sofita anovamientos del sirvidor.", "Could not start updater, please try the manual update" : "Nun pudo aniciase l'anovador, por favor prueba l'anovamientu manual", "A new version is available: %s" : "Ta disponible una versión más nueva: %s", - "Download now" : "Baxar agora", - "Checked on %s" : "Comprobóse'l %s", - "Update channel:" : "Canal d'anovamientu:", - "The selected update channel makes dedicated notifications for the server obsolete." : "La canal esbillada d'anovamientu fai avisos dedicaos pa lo obsoleto del sirvidor.", - "The update check is not yet finished. Please refresh the page." : "Entá nun finó la comprobación d'anovamientu. Refresca la páxina, por favor." + "Checked on %s" : "Comprobóse'l %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/ca.js b/apps/updatenotification/l10n/ca.js index 48886062a6b..a37966f3a67 100644 --- a/apps/updatenotification/l10n/ca.js +++ b/apps/updatenotification/l10n/ca.js @@ -11,20 +11,20 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Actualització per {app} a la versió %s està disponible.", "Update notification" : "Notificació d'actualització", "Open updater" : "Obrir actualitzador", + "Download now" : "Descarrega ara", + "The update check is not yet finished. Please refresh the page." : "Actualitzeu la pàgina.", "Your version is up to date." : "La teva versió està actualitzada.", "A non-default update server is in use to be checked for updates:" : "S'utilitza un servidor d'actualització no predeterminat per comprovar si hi ha actualitzacions:", + "Update channel:" : "Actualitzar canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre podràs actualitzar a una versió més recent / canal experimental. Però mai es pot fer un \"downgrade\" a un canal més estable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Tingueu en compte que després d'un nou llançament, pot trigar un temps abans que aparegui aquí. Desplegem noves versions distribuïdes amb el temps als nostres usuaris i, de vegades, ometen una versió quan es detecten problemes.", "Notify members of the following groups about available updates:" : "Notificar als membres dels següents grups sobre les actualitzacions disponibles:", "Only notification for app updates are available." : "Només notificació d'actualitzacions d'apps estan disponibles.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal d'actualització seleccionat deixa obsoletes les notificacions específiques del servidor.", "The selected update channel does not support updates of the server." : "El canal d'actualització seleccionat no admet actualitzacions del servidor.", "View changelog" : "Mostra el registre de canvis", "Could not start updater, please try the manual update" : "No s'ha pogut iniciar actualitzador, provi l'actualització manual", "A new version is available: %s" : "Una nova versió està disponible: %s", - "Download now" : "Descarrega ara", - "Checked on %s" : "Comprovat en %s", - "Update channel:" : "Actualitzar canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal d'actualització seleccionat deixa obsoletes les notificacions específiques del servidor.", - "The update check is not yet finished. Please refresh the page." : "Actualitzeu la pàgina." + "Checked on %s" : "Comprovat en %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/ca.json b/apps/updatenotification/l10n/ca.json index ca7ce22cde7..721fde971c4 100644 --- a/apps/updatenotification/l10n/ca.json +++ b/apps/updatenotification/l10n/ca.json @@ -9,20 +9,20 @@ "Update for {app} to version %s is available." : "Actualització per {app} a la versió %s està disponible.", "Update notification" : "Notificació d'actualització", "Open updater" : "Obrir actualitzador", + "Download now" : "Descarrega ara", + "The update check is not yet finished. Please refresh the page." : "Actualitzeu la pàgina.", "Your version is up to date." : "La teva versió està actualitzada.", "A non-default update server is in use to be checked for updates:" : "S'utilitza un servidor d'actualització no predeterminat per comprovar si hi ha actualitzacions:", + "Update channel:" : "Actualitzar canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre podràs actualitzar a una versió més recent / canal experimental. Però mai es pot fer un \"downgrade\" a un canal més estable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Tingueu en compte que després d'un nou llançament, pot trigar un temps abans que aparegui aquí. Desplegem noves versions distribuïdes amb el temps als nostres usuaris i, de vegades, ometen una versió quan es detecten problemes.", "Notify members of the following groups about available updates:" : "Notificar als membres dels següents grups sobre les actualitzacions disponibles:", "Only notification for app updates are available." : "Només notificació d'actualitzacions d'apps estan disponibles.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal d'actualització seleccionat deixa obsoletes les notificacions específiques del servidor.", "The selected update channel does not support updates of the server." : "El canal d'actualització seleccionat no admet actualitzacions del servidor.", "View changelog" : "Mostra el registre de canvis", "Could not start updater, please try the manual update" : "No s'ha pogut iniciar actualitzador, provi l'actualització manual", "A new version is available: %s" : "Una nova versió està disponible: %s", - "Download now" : "Descarrega ara", - "Checked on %s" : "Comprovat en %s", - "Update channel:" : "Actualitzar canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal d'actualització seleccionat deixa obsoletes les notificacions específiques del servidor.", - "The update check is not yet finished. Please refresh the page." : "Actualitzeu la pàgina." + "Checked on %s" : "Comprovat en %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/cs.js b/apps/updatenotification/l10n/cs.js index 74b4c94d1b7..3b0a83c8891 100644 --- a/apps/updatenotification/l10n/cs.js +++ b/apps/updatenotification/l10n/cs.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Pro {app} je dostupná aktualizace na verzi %s.", "Update notification" : "Upozornění na aktualizaci", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Zobrazí oznámení o aktualizacích pro Nextcloud a poskytuje sjednocené přihlašování pro aktualizace.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verze, kterou provozujete, už není udržovaná. Aktualizujte co nejdříve na podporovanou verzi.", + "Apps missing updates" : "Aplikace s chybějícími aktualizacemi", + "View in store" : "Zobrazit v instalačním katalogu", "Apps with available updates" : "Aplikace s dostupnými aktualizacemi", "Open updater" : "Otevřít aktualizátor", + "Download now" : "Stáhnout nyní", + "What's new?" : "Co je nového?", + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Načtěte stránku znovu.", "Your version is up to date." : "Používáte nejnovější verzi.", "A non-default update server is in use to be checked for updates:" : "Pro kontrolu aktualizací se používá jiný než výchozí server:", + "Update channel:" : "Aktualizovat kanál:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy můžete aktualizovat na novější verzi / experimentální kanál. Poté ale nelze nikdy provést downgrade zpět na nižší stabilní kanál.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Všimněte si, že po vydání nové verze může chvíli trvat, než se zde objeví. Distribuujeme nové verze průběžně rozložené v čase mezi naše uživatele a pokud jsou nalezeny problémy někdy danou verzi přeskočíme.", "Notify members of the following groups about available updates:" : "Upozorňovat členy následujících skupin na dostupné aktualizace:", "Only notification for app updates are available." : "Je možné pouze upozornění na dostupné aktualizace aplikací.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Zvolený kanál aktualizací označuje dedikovaná upozornění pro server za zastaralá.", "The selected update channel does not support updates of the server." : "Vybraný kanál aktualizací nepodporuje aktualizace serveru.", "A new version is available: <strong>{newVersionString}</strong>" : "K dispozici je nová verze: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Zkontrolováno {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Ověřte, že v souboru s nastaveními config.php není volba <samp>appstoreenabled</samp> nastavena na hodnotu false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nedaří se spojit s katalogem aplikací nebo tento nevrátil vůbec žádné aktualizace. Vyhledejte aktualizace ručně nebo ověřte, zda má váš server přístup k Internetu a může se spojit s katalogem.", "<strong>All</strong> apps have an update for this version available" : "<strong>Všehny</strong> aplikace mají k dispozici aktualizaci pro tuto verzi", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikace nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikací nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>produkční</strong> vždy poskytuje nejnovější opravy, ale neaktualizuje hned na příští hlavní verzi. Taková aktualizace se obvykle děje při druhém podvydání (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> je nejnovější stabilní verze. Je vhodná pro běžné používání a vždy ji lze aktualizovat na nejnovější hlavní verzi.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> je pouze předprodukční verze pro zkoušení nových funkcí, ne pro produkční nasazení.", "View changelog" : "Zobrazit souhrn změn", "Could not start updater, please try the manual update" : "Nepodařilo se spustit aktualizátor, zkuste ruční aktualizaci", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikace nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikací nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi"], "A new version is available: %s" : "Je dostupná nová verze: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verze, kterou provozujete, už není udržovaná. Aktualizujte co nejdříve na podporovanou verzi.", - "Download now" : "Stáhnout nyní", - "Checked on %s" : "Zkontrolováno %s", - "Update channel:" : "Aktualizovat kanál:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Zvolený kanál aktualizací označuje dedikovaná upozornění pro server za zastaralá.", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Načtěte stránku znovu." + "Checked on %s" : "Zkontrolováno %s" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/apps/updatenotification/l10n/cs.json b/apps/updatenotification/l10n/cs.json index 5592fbe254d..3a18f8a0fe3 100644 --- a/apps/updatenotification/l10n/cs.json +++ b/apps/updatenotification/l10n/cs.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "Pro {app} je dostupná aktualizace na verzi %s.", "Update notification" : "Upozornění na aktualizaci", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Zobrazí oznámení o aktualizacích pro Nextcloud a poskytuje sjednocené přihlašování pro aktualizace.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verze, kterou provozujete, už není udržovaná. Aktualizujte co nejdříve na podporovanou verzi.", + "Apps missing updates" : "Aplikace s chybějícími aktualizacemi", + "View in store" : "Zobrazit v instalačním katalogu", "Apps with available updates" : "Aplikace s dostupnými aktualizacemi", "Open updater" : "Otevřít aktualizátor", + "Download now" : "Stáhnout nyní", + "What's new?" : "Co je nového?", + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Načtěte stránku znovu.", "Your version is up to date." : "Používáte nejnovější verzi.", "A non-default update server is in use to be checked for updates:" : "Pro kontrolu aktualizací se používá jiný než výchozí server:", + "Update channel:" : "Aktualizovat kanál:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy můžete aktualizovat na novější verzi / experimentální kanál. Poté ale nelze nikdy provést downgrade zpět na nižší stabilní kanál.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Všimněte si, že po vydání nové verze může chvíli trvat, než se zde objeví. Distribuujeme nové verze průběžně rozložené v čase mezi naše uživatele a pokud jsou nalezeny problémy někdy danou verzi přeskočíme.", "Notify members of the following groups about available updates:" : "Upozorňovat členy následujících skupin na dostupné aktualizace:", "Only notification for app updates are available." : "Je možné pouze upozornění na dostupné aktualizace aplikací.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Zvolený kanál aktualizací označuje dedikovaná upozornění pro server za zastaralá.", "The selected update channel does not support updates of the server." : "Vybraný kanál aktualizací nepodporuje aktualizace serveru.", "A new version is available: <strong>{newVersionString}</strong>" : "K dispozici je nová verze: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Zkontrolováno {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Ověřte, že v souboru s nastaveními config.php není volba <samp>appstoreenabled</samp> nastavena na hodnotu false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nedaří se spojit s katalogem aplikací nebo tento nevrátil vůbec žádné aktualizace. Vyhledejte aktualizace ručně nebo ověřte, zda má váš server přístup k Internetu a může se spojit s katalogem.", "<strong>All</strong> apps have an update for this version available" : "<strong>Všehny</strong> aplikace mají k dispozici aktualizaci pro tuto verzi", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikace nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikací nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>produkční</strong> vždy poskytuje nejnovější opravy, ale neaktualizuje hned na příští hlavní verzi. Taková aktualizace se obvykle děje při druhém podvydání (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> je nejnovější stabilní verze. Je vhodná pro běžné používání a vždy ji lze aktualizovat na nejnovější hlavní verzi.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> je pouze předprodukční verze pro zkoušení nových funkcí, ne pro produkční nasazení.", "View changelog" : "Zobrazit souhrn změn", "Could not start updater, please try the manual update" : "Nepodařilo se spustit aktualizátor, zkuste ruční aktualizaci", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikace nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikací nemá k dispozici aktualizaci na tuto verzi","<strong>%n</strong> aplikace nemají k dispozici aktualizaci na tuto verzi"], "A new version is available: %s" : "Je dostupná nová verze: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verze, kterou provozujete, už není udržovaná. Aktualizujte co nejdříve na podporovanou verzi.", - "Download now" : "Stáhnout nyní", - "Checked on %s" : "Zkontrolováno %s", - "Update channel:" : "Aktualizovat kanál:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Zvolený kanál aktualizací označuje dedikovaná upozornění pro server za zastaralá.", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizací ještě neskončila. Načtěte stránku znovu." + "Checked on %s" : "Zkontrolováno %s" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/da.js b/apps/updatenotification/l10n/da.js index 2500292b8e1..cd8912ea8c0 100644 --- a/apps/updatenotification/l10n/da.js +++ b/apps/updatenotification/l10n/da.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Opdatering af %1$s til version %2$s er tilgængelig.", "Update for {app} to version %s is available." : "Opdatering af {app} til version %s er tilgængelig.", "Open updater" : "Åbn for opdatering", + "Download now" : "Hent nu", + "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden.", "Your version is up to date." : "Du har seneste version.", "A non-default update server is in use to be checked for updates:" : "En ikke standard opdateringsserver bliver brugt for at tjekke efter opdateringer:", + "Update channel:" : "Opdatér kanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan altid opdatere til en nyere version / eksperimentel kanal. Men du kan aldrig nedgradere til en mere stabil kanal", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Bemærk at efter en ny udgivelse kan det tage noget tid før den bliver vist her. Vi udruller nye opdateringer spredt ud og nogle gange springer man versioner over hvis der bliver fundet fejl i dem.", "Notify members of the following groups about available updates:" : "Meddel brugere fra følgende gruppe om tilgængelige opdateringer: ", "Only notification for app updates are available." : "Kun notifikation for app opdateringer tilgængelige.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte kanal lave dedikerede notifikationer for serveren ligegyldige.", "The selected update channel does not support updates of the server." : "Den valgte opdateringskanal understøtter ikke opdatering af serveren.", "Could not start updater, please try the manual update" : "Kunne ikke starte opdateringen, prøv venligst med en manual opdatering", "A new version is available: %s" : "Der er en ny version tligængelig: %s", - "Download now" : "Hent nu", - "Checked on %s" : "Tjekket per %s", - "Update channel:" : "Opdatér kanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte kanal lave dedikerede notifikationer for serveren ligegyldige.", - "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden." + "Checked on %s" : "Tjekket per %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/da.json b/apps/updatenotification/l10n/da.json index 37793161d14..2f3554ced9d 100644 --- a/apps/updatenotification/l10n/da.json +++ b/apps/updatenotification/l10n/da.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "Opdatering af %1$s til version %2$s er tilgængelig.", "Update for {app} to version %s is available." : "Opdatering af {app} til version %s er tilgængelig.", "Open updater" : "Åbn for opdatering", + "Download now" : "Hent nu", + "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden.", "Your version is up to date." : "Du har seneste version.", "A non-default update server is in use to be checked for updates:" : "En ikke standard opdateringsserver bliver brugt for at tjekke efter opdateringer:", + "Update channel:" : "Opdatér kanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan altid opdatere til en nyere version / eksperimentel kanal. Men du kan aldrig nedgradere til en mere stabil kanal", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Bemærk at efter en ny udgivelse kan det tage noget tid før den bliver vist her. Vi udruller nye opdateringer spredt ud og nogle gange springer man versioner over hvis der bliver fundet fejl i dem.", "Notify members of the following groups about available updates:" : "Meddel brugere fra følgende gruppe om tilgængelige opdateringer: ", "Only notification for app updates are available." : "Kun notifikation for app opdateringer tilgængelige.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte kanal lave dedikerede notifikationer for serveren ligegyldige.", "The selected update channel does not support updates of the server." : "Den valgte opdateringskanal understøtter ikke opdatering af serveren.", "Could not start updater, please try the manual update" : "Kunne ikke starte opdateringen, prøv venligst med en manual opdatering", "A new version is available: %s" : "Der er en ny version tligængelig: %s", - "Download now" : "Hent nu", - "Checked on %s" : "Tjekket per %s", - "Update channel:" : "Opdatér kanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte kanal lave dedikerede notifikationer for serveren ligegyldige.", - "The update check is not yet finished. Please refresh the page." : "Opdateringstjek er ikke færdigt. Genindlæs venligst siden." + "Checked on %s" : "Tjekket per %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/de.js b/apps/updatenotification/l10n/de.js index 2bad4763770..3463c1997b4 100644 --- a/apps/updatenotification/l10n/de.js +++ b/apps/updatenotification/l10n/de.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", "Update notification" : "Aktualisierungs-Benachrichtigung", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Zeigt Benachrichtigungen für Aktualisierungen von Nextcloud an und bietet SSO für den Aktualisierer.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Deine installierte Version wird nicht mehr unterstützt. Bitte aktualisiere baldmöglichst auf eine unterstützte Version.", + "Apps missing updates" : "Für diese Apps fehlen Aktualisierungen", + "View in store" : "Im Store anzeigen", "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", "Open updater" : "Updater öffnen", + "Download now" : "Jetzt herunterladen", + "What's new?" : "Was ist neu?", + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", "Your version is up to date." : "Deine Version ist aktuell.", "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Es kann immer auf eine neuere Version / experimentellen Kanal aktualisiert werden. Allerdings kann kein Downgrade auf einen stabileren Kanal durchgeführt werden.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", "Notify members of the following groups about available updates:" : "Informiere die Mitglieder der folgenden Gruppen über verfügbare Updates:", "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", "A new version is available: <strong>{newVersionString}</strong>" : "Eine neue Version ist verfügbar: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Bitte stelle sicher, dass in der \"config.php\"-Datei die Variable <samp>appstoreenabled</samp> nicht auf \"false\" steht.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suche selbst nach den Updates oder stelle sicher, dass dein Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", "<strong>All</strong> apps have an update for this version available" : "Für <strong>alle</strong> Apps steht eine Aktualisierung zur Verfügung", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>Produktion</strong> bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stabil</strong> ist die aktuellste stabile Version. Die stabile Version ist für den normalen Gebrauch gedacht und wird jeweils auf die aktuelle Hauptversion aktualisiert.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>Beta</strong> bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", "View changelog" : "Liste der Änderungen anschauen", "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuche ein manuelles Update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Deine installierte Version wird nicht mehr unterstützt. Bitte aktualisiere baldmöglichst auf eine unterstützte Version.", - "Download now" : "Jetzt herunterladen", - "Checked on %s" : "Geprüft am %s", - "Update channel:" : "Update-Kanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." + "Checked on %s" : "Geprüft am %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/de.json b/apps/updatenotification/l10n/de.json index 8598d941f74..fa39dbcd71e 100644 --- a/apps/updatenotification/l10n/de.json +++ b/apps/updatenotification/l10n/de.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", "Update notification" : "Aktualisierungs-Benachrichtigung", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Zeigt Benachrichtigungen für Aktualisierungen von Nextcloud an und bietet SSO für den Aktualisierer.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Deine installierte Version wird nicht mehr unterstützt. Bitte aktualisiere baldmöglichst auf eine unterstützte Version.", + "Apps missing updates" : "Für diese Apps fehlen Aktualisierungen", + "View in store" : "Im Store anzeigen", "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", "Open updater" : "Updater öffnen", + "Download now" : "Jetzt herunterladen", + "What's new?" : "Was ist neu?", + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", "Your version is up to date." : "Deine Version ist aktuell.", "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Es kann immer auf eine neuere Version / experimentellen Kanal aktualisiert werden. Allerdings kann kein Downgrade auf einen stabileren Kanal durchgeführt werden.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", "Notify members of the following groups about available updates:" : "Informiere die Mitglieder der folgenden Gruppen über verfügbare Updates:", "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", "A new version is available: <strong>{newVersionString}</strong>" : "Eine neue Version ist verfügbar: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Bitte stelle sicher, dass in der \"config.php\"-Datei die Variable <samp>appstoreenabled</samp> nicht auf \"false\" steht.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suche selbst nach den Updates oder stelle sicher, dass dein Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", "<strong>All</strong> apps have an update for this version available" : "Für <strong>alle</strong> Apps steht eine Aktualisierung zur Verfügung", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>Produktion</strong> bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stabil</strong> ist die aktuellste stabile Version. Die stabile Version ist für den normalen Gebrauch gedacht und wird jeweils auf die aktuelle Hauptversion aktualisiert.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>Beta</strong> bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", "View changelog" : "Liste der Änderungen anschauen", "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuche ein manuelles Update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Deine installierte Version wird nicht mehr unterstützt. Bitte aktualisiere baldmöglichst auf eine unterstützte Version.", - "Download now" : "Jetzt herunterladen", - "Checked on %s" : "Geprüft am %s", - "Update channel:" : "Update-Kanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." + "Checked on %s" : "Geprüft am %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/de_DE.js b/apps/updatenotification/l10n/de_DE.js index 32c3e403664..4dc525e8619 100644 --- a/apps/updatenotification/l10n/de_DE.js +++ b/apps/updatenotification/l10n/de_DE.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", "Update notification" : "Aktualisierungs-Benachrichtigung", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Zeigt Benachrichtigungen für Aktualisierungen von Nextcloud an und bietet SSO für den Aktualisierer.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Ihre installierte Version wird nicht mehr unterstützt. Bitte aktualisieren Sie baldmöglichst auf eine unterstützte Version.", + "Apps missing updates" : "Für diese Apps fehlen Aktualisierungen", + "View in store" : "Im Store anzeigen", "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", "Open updater" : "Updater öffnen", + "Download now" : "Jetzt herunterladen", + "What's new?" : "Was ist neu?", + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", "Your version is up to date." : "Ihre Version ist aktuell.", "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sie können immer auf eine neuere Version / experimentellen Kanal updaten, aber kein Downgrade auf einen stabileren Kanal durchführen.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", "Notify members of the following groups about available updates:" : "Informieren Sie die Mitglieder der folgenden Gruppen über verfügbare Updates:", "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", "A new version is available: <strong>{newVersionString}</strong>" : "Eine neue Version ist verfügbar: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Bitte stellen Sie sicher, dass in der \"config.php\"-Datei die Variable <samp>appstoreenabled</samp>nicht auf \"false\" steht.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suchen Sie selbst nach den Updates oder stellen Sie sicher, dass ihr Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", "<strong>All</strong> apps have an update for this version available" : "Für <strong>alle</strong> Apps steht eine Aktualisierung zur Verfügung", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>Produktion</strong> bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stabil</strong> ist die aktuellste stabile Version. Die stabile Version ist für den normalen Gebrauch gedacht und wird jeweils auf die aktuelle Hauptversion aktualisiert.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>Beta</strong> bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", "View changelog" : "Liste der Änderungen anschauen", "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuchen Sie ein manuelles Update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Ihre installierte Version wird nicht mehr unterstützt. Bitte aktualisieren Sie baldmöglichst auf eine unterstützte Version.", - "Download now" : "Jetzt herunterladen", - "Checked on %s" : "Überprüft am %s", - "Update channel:" : "Update-Kanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." + "Checked on %s" : "Überprüft am %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/de_DE.json b/apps/updatenotification/l10n/de_DE.json index 714e424ee81..5bfa3c191f6 100644 --- a/apps/updatenotification/l10n/de_DE.json +++ b/apps/updatenotification/l10n/de_DE.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "Eine Aktualisierung für {app} auf Version %s ist verfügbar.", "Update notification" : "Aktualisierungs-Benachrichtigung", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Zeigt Benachrichtigungen für Aktualisierungen von Nextcloud an und bietet SSO für den Aktualisierer.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Ihre installierte Version wird nicht mehr unterstützt. Bitte aktualisieren Sie baldmöglichst auf eine unterstützte Version.", + "Apps missing updates" : "Für diese Apps fehlen Aktualisierungen", + "View in store" : "Im Store anzeigen", "Apps with available updates" : "Für diese Apps gibt es Aktualisierungen", "Open updater" : "Updater öffnen", + "Download now" : "Jetzt herunterladen", + "What's new?" : "Was ist neu?", + "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden.", "Your version is up to date." : "Ihre Version ist aktuell.", "A non-default update server is in use to be checked for updates:" : "Es wird ein Nicht-Standard-Aktualisierungsserver zum Prüfen auf Aktualisierungen verwendet:", + "Update channel:" : "Update-Kanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sie können immer auf eine neuere Version / experimentellen Kanal updaten, aber kein Downgrade auf einen stabileren Kanal durchführen.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nach Veröffentlichung einer neuen Version kann es einige Zeit dauern bis diese hier erscheint. Die neuen Versionen verteilen sich beim Ausrollen im Laufe der Zeit auf die Benutzer. Manchmal werden Versionen übersprungen, wenn Probleme gefunden wurden.", "Notify members of the following groups about available updates:" : "Informieren Sie die Mitglieder der folgenden Gruppen über verfügbare Updates:", "Only notification for app updates are available." : "Benachrichtigungen sind nur für Aktualisierungen von Apps verfügbar.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", "The selected update channel does not support updates of the server." : "Der gewählte Aktualisierungskanal unterstützt keine Aktualisierungen für Server.", "A new version is available: <strong>{newVersionString}</strong>" : "Eine neue Version ist verfügbar: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Geprüft am {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Bitte stellen Sie sicher, dass in der \"config.php\"-Datei die Variable <samp>appstoreenabled</samp>nicht auf \"false\" steht.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Die Verbindung zum Appstore konnte nicht aufgebaut werden oder der Appstore hat keine Apps zurück geliefert. Suchen Sie selbst nach den Updates oder stellen Sie sicher, dass ihr Server Zugriff auf das Internet hat und eine Verbindung zum Appstore aufbauen kann. ", "<strong>All</strong> apps have an update for this version available" : "Für <strong>alle</strong> Apps steht eine Aktualisierung zur Verfügung", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>Produktion</strong> bietet immer die neuesten Patch-Stände an, jedoch nicht sofort die nächste Hauptversion. Diese Aktualisierung erfolgt normalerweise nach der zweiten kleineren Aktualisierung (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stabil</strong> ist die aktuellste stabile Version. Die stabile Version ist für den normalen Gebrauch gedacht und wird jeweils auf die aktuelle Hauptversion aktualisiert.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>Beta</strong> bietet eine Vorabversion an und dient zum Testen von neuen Funktionen. Nicht für den Einsatz in Produktivumgebungen geeignet.", "View changelog" : "Liste der Änderungen anschauen", "Could not start updater, please try the manual update" : "Der Updater konnte nicht gestartet werden, bitte versuchen Sie ein manuelles Update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["Für <strong>%n</strong> App steht keine Aktualisierung für diese Version zur Verfügung","Für <strong>%n</strong> Apps stehen keine Aktualisierungen für diese Version zur Verfügung"], "A new version is available: %s" : "Eine neue Version ist verfügbar: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Ihre installierte Version wird nicht mehr unterstützt. Bitte aktualisieren Sie baldmöglichst auf eine unterstützte Version.", - "Download now" : "Jetzt herunterladen", - "Checked on %s" : "Überprüft am %s", - "Update channel:" : "Update-Kanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Der gewählte Aktualisierungskanal macht dedizierte Benachrichtigungen für Server Aktualisierungen obsolet.", - "The update check is not yet finished. Please refresh the page." : "Die Aktualisierungsprüfung ist noch nicht abgeschlossen. Bitte die Seite neu laden." + "Checked on %s" : "Überprüft am %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/el.js b/apps/updatenotification/l10n/el.js index 66a6e66c492..f75e50e4d19 100644 --- a/apps/updatenotification/l10n/el.js +++ b/apps/updatenotification/l10n/el.js @@ -12,18 +12,18 @@ OC.L10N.register( "Update notification" : "Ειδοποίηση ενημέρωσης", "Apps with available updates" : "Εφαρμογές με διαθέσιμες ενημερώσεις", "Open updater" : "Άνοιγμα εφαρμογής ενημέρωσης", + "Download now" : "Λήψη τώρα", "Your version is up to date." : "Έχετε την τελευταία έκδοση.", + "Update channel:" : "Ενημέρωση καναλιού:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Μπορείτε πάντα να περάσετε σε νεότερη / πειραματική έκδοση. Αλλά ποτέ δεν μπορείτε να γυρίσετε πίσω σε πιο σταθερό κανάλι.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Σημειώστε ότι μετά από μια νέα διανομή μπορεί να περάσει λίγος καιρός πριν εμφανιστεί εδώ. Κυκλοφορούμε κατά διαστήματα νέες εκδόσεις στους χρήστες μας και κάποιες φορές παραλείπουμε κάποια έκδοση αν βρεθούν προβλήματα.", "Notify members of the following groups about available updates:" : "Να ενημερωθούν τα μέλη των παρακάτω ομάδων σχετικά με τις διαθέσιμες ενημερώσεις:", "Only notification for app updates are available." : "Είναι μόνο διαθέσιμες οι ενημερώσεις για την εφαρμογή", + "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή.", "The selected update channel does not support updates of the server." : "Το συγκεκριμένο κανάλι ενημέρωσης δεν υποστηρίζει ενημερώσεις διακομιστή.", "Checking apps for compatible updates" : "Έλεγχος εφαρμογών για συμβατές ενημερώσεις", "Could not start updater, please try the manual update" : "Δεν μπορεί να εκκινήσει η εφαρμογή ενημέρωσης, παρακαλώ δοκιμάστε την χειροκίνητη ενημέρωση", "A new version is available: %s" : "Μία νέα έκδοση είναι διαθέσιμη: %s", - "Download now" : "Λήψη τώρα", - "Checked on %s" : "Ελέγχθηκε στις %s", - "Update channel:" : "Ενημέρωση καναλιού:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή." + "Checked on %s" : "Ελέγχθηκε στις %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/el.json b/apps/updatenotification/l10n/el.json index e2c3fc52a2e..d2f946156dc 100644 --- a/apps/updatenotification/l10n/el.json +++ b/apps/updatenotification/l10n/el.json @@ -10,18 +10,18 @@ "Update notification" : "Ειδοποίηση ενημέρωσης", "Apps with available updates" : "Εφαρμογές με διαθέσιμες ενημερώσεις", "Open updater" : "Άνοιγμα εφαρμογής ενημέρωσης", + "Download now" : "Λήψη τώρα", "Your version is up to date." : "Έχετε την τελευταία έκδοση.", + "Update channel:" : "Ενημέρωση καναλιού:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Μπορείτε πάντα να περάσετε σε νεότερη / πειραματική έκδοση. Αλλά ποτέ δεν μπορείτε να γυρίσετε πίσω σε πιο σταθερό κανάλι.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Σημειώστε ότι μετά από μια νέα διανομή μπορεί να περάσει λίγος καιρός πριν εμφανιστεί εδώ. Κυκλοφορούμε κατά διαστήματα νέες εκδόσεις στους χρήστες μας και κάποιες φορές παραλείπουμε κάποια έκδοση αν βρεθούν προβλήματα.", "Notify members of the following groups about available updates:" : "Να ενημερωθούν τα μέλη των παρακάτω ομάδων σχετικά με τις διαθέσιμες ενημερώσεις:", "Only notification for app updates are available." : "Είναι μόνο διαθέσιμες οι ενημερώσεις για την εφαρμογή", + "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή.", "The selected update channel does not support updates of the server." : "Το συγκεκριμένο κανάλι ενημέρωσης δεν υποστηρίζει ενημερώσεις διακομιστή.", "Checking apps for compatible updates" : "Έλεγχος εφαρμογών για συμβατές ενημερώσεις", "Could not start updater, please try the manual update" : "Δεν μπορεί να εκκινήσει η εφαρμογή ενημέρωσης, παρακαλώ δοκιμάστε την χειροκίνητη ενημέρωση", "A new version is available: %s" : "Μία νέα έκδοση είναι διαθέσιμη: %s", - "Download now" : "Λήψη τώρα", - "Checked on %s" : "Ελέγχθηκε στις %s", - "Update channel:" : "Ενημέρωση καναλιού:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Το συγκεκριμένο κανάλι ενημέρωσης καθιστά παρωχημένες τις ειδοποιήσεις που προορίζονται για τον διακομιστή." + "Checked on %s" : "Ελέγχθηκε στις %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/en_GB.js b/apps/updatenotification/l10n/en_GB.js index 52badaea459..e1c11cc0d21 100644 --- a/apps/updatenotification/l10n/en_GB.js +++ b/apps/updatenotification/l10n/en_GB.js @@ -11,14 +11,19 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Update for {app} to version %s is available.", "Update notification" : "Update notification", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Displays update notifications for Nextcloud and provides the SSO for the updater.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.", "Apps with available updates" : "Apps with available updates", "Open updater" : "Open updater", + "Download now" : "Download now", + "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page.", "Your version is up to date." : "Your version is up to date.", "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", + "Update channel:" : "Update channel:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.", "Notify members of the following groups about available updates:" : "Notify members of the following groups about available updates:", "Only notification for app updates are available." : "Only notification for app updates are available.", + "The selected update channel makes dedicated notifications for the server obsolete." : "The selected update channel makes dedicated notifications for the server obsolete.", "The selected update channel does not support updates of the server." : "The selected update channel does not support updates of the server.", "A new version is available: <strong>{newVersionString}</strong>" : "A new version is available: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Checked on {lastCheckedDate}", @@ -26,18 +31,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>All</strong> apps have an update for this version available", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.", "View changelog" : "View changelog", "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available"], "A new version is available: %s" : "A new version is available: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.", - "Download now" : "Download now", - "Checked on %s" : "Checked on %s", - "Update channel:" : "Update channel:", - "The selected update channel makes dedicated notifications for the server obsolete." : "The selected update channel makes dedicated notifications for the server obsolete.", - "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page." + "Checked on %s" : "Checked on %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/en_GB.json b/apps/updatenotification/l10n/en_GB.json index 50b0a4c569a..e4f75b85e81 100644 --- a/apps/updatenotification/l10n/en_GB.json +++ b/apps/updatenotification/l10n/en_GB.json @@ -9,14 +9,19 @@ "Update for {app} to version %s is available." : "Update for {app} to version %s is available.", "Update notification" : "Update notification", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Displays update notifications for Nextcloud and provides the SSO for the updater.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.", "Apps with available updates" : "Apps with available updates", "Open updater" : "Open updater", + "Download now" : "Download now", + "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page.", "Your version is up to date." : "Your version is up to date.", "A non-default update server is in use to be checked for updates:" : "A non-default update server is in use to be checked for updates:", + "Update channel:" : "Update channel:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found.", "Notify members of the following groups about available updates:" : "Notify members of the following groups about available updates:", "Only notification for app updates are available." : "Only notification for app updates are available.", + "The selected update channel makes dedicated notifications for the server obsolete." : "The selected update channel makes dedicated notifications for the server obsolete.", "The selected update channel does not support updates of the server." : "The selected update channel does not support updates of the server.", "A new version is available: <strong>{newVersionString}</strong>" : "A new version is available: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Checked on {lastCheckedDate}", @@ -24,18 +29,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>All</strong> apps have an update for this version available", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments.", "View changelog" : "View changelog", "Could not start updater, please try the manual update" : "Could not start updater, please try the manual update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app has no update for this version available","<strong>%n</strong> apps have no update for this version available"], "A new version is available: %s" : "A new version is available: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible.", - "Download now" : "Download now", - "Checked on %s" : "Checked on %s", - "Update channel:" : "Update channel:", - "The selected update channel makes dedicated notifications for the server obsolete." : "The selected update channel makes dedicated notifications for the server obsolete.", - "The update check is not yet finished. Please refresh the page." : "The update check is not yet finished. Please refresh the page." + "Checked on %s" : "Checked on %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es.js b/apps/updatenotification/l10n/es.js index ffe32bd4b96..aec005766b5 100644 --- a/apps/updatenotification/l10n/es.js +++ b/apps/updatenotification/l10n/es.js @@ -11,14 +11,19 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Actualización de {app} a la versión %s disponible.", "Update notification" : "Notificación de actualización", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Muestra notificaciones de actualizaciones para Nexcloud y provee el SSO para el actualizador.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que usas yo no está mantenida. Por favor, asegúrate de actualizar a una versión soportada tan pronto como sea posible.", "Apps with available updates" : "Apps con actualizaciones disponibles", "Open updater" : "Abrir el actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página.", "Your version is up to date." : "Su versión está actualizada.", "A non-default update server is in use to be checked for updates:" : "Se está usando un servidor de actualización no estándar para comprobar actualizaciones:", + "Update channel:" : "Canal de actualización: ", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre podrás actualizar a la versión más reciente o al canal experimental, pero nunca podrás volver a un canal más estable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota: tras un nuevo lanzamiento, puede pasar algo de tiempo antes de que aparezca aquí. Escalonamos la difusión de nuevas versiones a nuestros usuarios y a veces saltamos una versión cuando aparecen problemas.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos sobre actualizaciones disponibles:", "Only notification for app updates are available." : "Solo están disponibles las notificaciones para actualizaciones de apps", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace obsoletas las notificaciones dedicadas para el servidor.", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor", "A new version is available: <strong>{newVersionString}</strong>" : "Una nueva versión está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Comprobado el {lastCheckeDate}", @@ -26,18 +31,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor, asegúrate de que tu config.php no tiene configurado <samp>appstoreenabled</samp> como false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No se ha podido conectar a la appstore o la appstore no ha devuelto ninguna actualización. Busca actualizaciones manualmente o asegúrate de que tu servidor tiene acceso a internet y puede conectarse a la appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las apps tienen disponible una actualización para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app no tiene actualización disponible para esta versión.","<strong>%n</strong> apps no tienen actualización disponible para esta versión."], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> siempre proporcionará el último nivel de parches, pero no se actualizará a la próxima versión principal de inmediato. Esa actualización generalmente ocurre con la segunda versión menor (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> es la versión estable más reciente. Es adecuada para uso en producción y siempre se actualizará a la última versión principal.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión preliminar solo para probar nuevas características, no para entornos de producción.", "View changelog" : "Ver registro de cambios", "Could not start updater, please try the manual update" : "No se ha podido iniciar el actualizador. Por favor, prueba a realizar la actualización de forma manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app no tiene actualización disponible para esta versión.","<strong>%n</strong> apps no tienen actualización disponible para esta versión."], "A new version is available: %s" : "Hay una nueva versión disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que usas yo no está mantenida. Por favor, asegúrate de actualizar a una versión soportada tan pronto como sea posible.", - "Download now" : "Descargar ahora", - "Checked on %s" : "Comprobado el %s", - "Update channel:" : "Canal de actualización: ", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace obsoletas las notificaciones dedicadas para el servidor.", - "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página." + "Checked on %s" : "Comprobado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es.json b/apps/updatenotification/l10n/es.json index 9e8e1c4c8bf..a3b0d2f6cfa 100644 --- a/apps/updatenotification/l10n/es.json +++ b/apps/updatenotification/l10n/es.json @@ -9,14 +9,19 @@ "Update for {app} to version %s is available." : "Actualización de {app} a la versión %s disponible.", "Update notification" : "Notificación de actualización", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Muestra notificaciones de actualizaciones para Nexcloud y provee el SSO para el actualizador.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que usas yo no está mantenida. Por favor, asegúrate de actualizar a una versión soportada tan pronto como sea posible.", "Apps with available updates" : "Apps con actualizaciones disponibles", "Open updater" : "Abrir el actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página.", "Your version is up to date." : "Su versión está actualizada.", "A non-default update server is in use to be checked for updates:" : "Se está usando un servidor de actualización no estándar para comprobar actualizaciones:", + "Update channel:" : "Canal de actualización: ", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre podrás actualizar a la versión más reciente o al canal experimental, pero nunca podrás volver a un canal más estable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota: tras un nuevo lanzamiento, puede pasar algo de tiempo antes de que aparezca aquí. Escalonamos la difusión de nuevas versiones a nuestros usuarios y a veces saltamos una versión cuando aparecen problemas.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos sobre actualizaciones disponibles:", "Only notification for app updates are available." : "Solo están disponibles las notificaciones para actualizaciones de apps", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace obsoletas las notificaciones dedicadas para el servidor.", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor", "A new version is available: <strong>{newVersionString}</strong>" : "Una nueva versión está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Comprobado el {lastCheckeDate}", @@ -24,18 +29,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor, asegúrate de que tu config.php no tiene configurado <samp>appstoreenabled</samp> como false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No se ha podido conectar a la appstore o la appstore no ha devuelto ninguna actualización. Busca actualizaciones manualmente o asegúrate de que tu servidor tiene acceso a internet y puede conectarse a la appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las apps tienen disponible una actualización para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app no tiene actualización disponible para esta versión.","<strong>%n</strong> apps no tienen actualización disponible para esta versión."], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> siempre proporcionará el último nivel de parches, pero no se actualizará a la próxima versión principal de inmediato. Esa actualización generalmente ocurre con la segunda versión menor (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> es la versión estable más reciente. Es adecuada para uso en producción y siempre se actualizará a la última versión principal.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión preliminar solo para probar nuevas características, no para entornos de producción.", "View changelog" : "Ver registro de cambios", "Could not start updater, please try the manual update" : "No se ha podido iniciar el actualizador. Por favor, prueba a realizar la actualización de forma manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app no tiene actualización disponible para esta versión.","<strong>%n</strong> apps no tienen actualización disponible para esta versión."], "A new version is available: %s" : "Hay una nueva versión disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que usas yo no está mantenida. Por favor, asegúrate de actualizar a una versión soportada tan pronto como sea posible.", - "Download now" : "Descargar ahora", - "Checked on %s" : "Comprobado el %s", - "Update channel:" : "Canal de actualización: ", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace obsoletas las notificaciones dedicadas para el servidor.", - "The update check is not yet finished. Please refresh the page." : "La comprobación de actuliazaciones no ha finalizado aún. Por favor, recarga la página." + "Checked on %s" : "Comprobado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_419.js b/apps/updatenotification/l10n/es_419.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_419.js +++ b/apps/updatenotification/l10n/es_419.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_419.json b/apps/updatenotification/l10n/es_419.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_419.json +++ b/apps/updatenotification/l10n/es_419.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_CL.js b/apps/updatenotification/l10n/es_CL.js index 20c7b8f076e..c3f7f9d1ce6 100644 --- a/apps/updatenotification/l10n/es_CL.js +++ b/apps/updatenotification/l10n/es_CL.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -25,16 +30,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_CL.json b/apps/updatenotification/l10n/es_CL.json index 29e98c529c1..784a2d45a2f 100644 --- a/apps/updatenotification/l10n/es_CL.json +++ b/apps/updatenotification/l10n/es_CL.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -23,16 +28,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_CO.js b/apps/updatenotification/l10n/es_CO.js index 20c7b8f076e..c3f7f9d1ce6 100644 --- a/apps/updatenotification/l10n/es_CO.js +++ b/apps/updatenotification/l10n/es_CO.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -25,16 +30,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_CO.json b/apps/updatenotification/l10n/es_CO.json index 29e98c529c1..784a2d45a2f 100644 --- a/apps/updatenotification/l10n/es_CO.json +++ b/apps/updatenotification/l10n/es_CO.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -23,16 +28,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_CR.js b/apps/updatenotification/l10n/es_CR.js index 20c7b8f076e..c3f7f9d1ce6 100644 --- a/apps/updatenotification/l10n/es_CR.js +++ b/apps/updatenotification/l10n/es_CR.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -25,16 +30,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_CR.json b/apps/updatenotification/l10n/es_CR.json index 29e98c529c1..784a2d45a2f 100644 --- a/apps/updatenotification/l10n/es_CR.json +++ b/apps/updatenotification/l10n/es_CR.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -23,16 +28,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_DO.js b/apps/updatenotification/l10n/es_DO.js index 20c7b8f076e..c3f7f9d1ce6 100644 --- a/apps/updatenotification/l10n/es_DO.js +++ b/apps/updatenotification/l10n/es_DO.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -25,16 +30,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_DO.json b/apps/updatenotification/l10n/es_DO.json index 29e98c529c1..784a2d45a2f 100644 --- a/apps/updatenotification/l10n/es_DO.json +++ b/apps/updatenotification/l10n/es_DO.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -23,16 +28,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_EC.js b/apps/updatenotification/l10n/es_EC.js index 20c7b8f076e..c3f7f9d1ce6 100644 --- a/apps/updatenotification/l10n/es_EC.js +++ b/apps/updatenotification/l10n/es_EC.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -25,16 +30,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_EC.json b/apps/updatenotification/l10n/es_EC.json index 29e98c529c1..784a2d45a2f 100644 --- a/apps/updatenotification/l10n/es_EC.json +++ b/apps/updatenotification/l10n/es_EC.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -23,16 +28,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_GT.js b/apps/updatenotification/l10n/es_GT.js index 20c7b8f076e..c3f7f9d1ce6 100644 --- a/apps/updatenotification/l10n/es_GT.js +++ b/apps/updatenotification/l10n/es_GT.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -25,16 +30,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_GT.json b/apps/updatenotification/l10n/es_GT.json index 29e98c529c1..784a2d45a2f 100644 --- a/apps/updatenotification/l10n/es_GT.json +++ b/apps/updatenotification/l10n/es_GT.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -23,16 +28,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_HN.js b/apps/updatenotification/l10n/es_HN.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_HN.js +++ b/apps/updatenotification/l10n/es_HN.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_HN.json b/apps/updatenotification/l10n/es_HN.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_HN.json +++ b/apps/updatenotification/l10n/es_HN.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_MX.js b/apps/updatenotification/l10n/es_MX.js index 8a699414a7e..e5adf22b8c7 100644 --- a/apps/updatenotification/l10n/es_MX.js +++ b/apps/updatenotification/l10n/es_MX.js @@ -11,14 +11,19 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Despliega las notifiaciones de actualización para Nextcloud y provee el SSO para el actualizador.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -26,16 +31,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_MX.json b/apps/updatenotification/l10n/es_MX.json index 14357f6e1a7..8e121b2ddf9 100644 --- a/apps/updatenotification/l10n/es_MX.json +++ b/apps/updatenotification/l10n/es_MX.json @@ -9,14 +9,19 @@ "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Despliega las notifiaciones de actualización para Nextcloud y provee el SSO para el actualizador.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -24,16 +29,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_NI.js b/apps/updatenotification/l10n/es_NI.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_NI.js +++ b/apps/updatenotification/l10n/es_NI.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_NI.json b/apps/updatenotification/l10n/es_NI.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_NI.json +++ b/apps/updatenotification/l10n/es_NI.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PA.js b/apps/updatenotification/l10n/es_PA.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_PA.js +++ b/apps/updatenotification/l10n/es_PA.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PA.json b/apps/updatenotification/l10n/es_PA.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_PA.json +++ b/apps/updatenotification/l10n/es_PA.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PE.js b/apps/updatenotification/l10n/es_PE.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_PE.js +++ b/apps/updatenotification/l10n/es_PE.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PE.json b/apps/updatenotification/l10n/es_PE.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_PE.json +++ b/apps/updatenotification/l10n/es_PE.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PR.js b/apps/updatenotification/l10n/es_PR.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_PR.js +++ b/apps/updatenotification/l10n/es_PR.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PR.json b/apps/updatenotification/l10n/es_PR.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_PR.json +++ b/apps/updatenotification/l10n/es_PR.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_PY.js b/apps/updatenotification/l10n/es_PY.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_PY.js +++ b/apps/updatenotification/l10n/es_PY.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_PY.json b/apps/updatenotification/l10n/es_PY.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_PY.json +++ b/apps/updatenotification/l10n/es_PY.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_SV.js b/apps/updatenotification/l10n/es_SV.js index 20c7b8f076e..c3f7f9d1ce6 100644 --- a/apps/updatenotification/l10n/es_SV.js +++ b/apps/updatenotification/l10n/es_SV.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -25,16 +30,11 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_SV.json b/apps/updatenotification/l10n/es_SV.json index 29e98c529c1..784a2d45a2f 100644 --- a/apps/updatenotification/l10n/es_SV.json +++ b/apps/updatenotification/l10n/es_SV.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Update notification" : "Notificación de actualización", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", "Apps with available updates" : "Aplicaciones con actualizaciones disponibles", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces omitimos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "A new version is available: <strong>{newVersionString}</strong>" : "Una versión más reciente está disponible: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado el {lastCheckedDate}", @@ -23,16 +28,11 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Por favor asegurate que en tu config.php no se establezca <samp>appstoreenabled</samp> como falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "No fue posible conectarse a la appstore o bien la appstore no regresó ninguna actualización. Busca manualmente o asegurate que tu servidor teng acceso a Internet y pueda conectarse a la appstore. ", "<strong>All</strong> apps have an update for this version available" : "<strong>Todas</strong> las aplicaciones tienen una actualización disponible para esta versión", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>producción</strong> siempre contará el más reciente nivel de parches, pero no actualizará a la siguiente liberación mayor inmediatamente. Esta actualización siempre sucede en la segunda liberación menor (x.0.2)", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> es una versión de pre-liberación sólo para probar nuevas características, no para ambientes de producción. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicación no cuenta con una actualización para esta versión","<strong>%n</strong> aplicaciones no cuentan con una actualización para esta versión"], "A new version is available: %s" : "Una nueva versión está disponible: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versión que estas corriendo ya no cuenta con mantenimiento. Por favor asegurate de actualizar a una versión soportada lo antes posible. ", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/es_UY.js b/apps/updatenotification/l10n/es_UY.js index 90051a89186..ee830f5ee3b 100644 --- a/apps/updatenotification/l10n/es_UY.js +++ b/apps/updatenotification/l10n/es_UY.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/es_UY.json b/apps/updatenotification/l10n/es_UY.json index 61c6ab12dcf..ae35904bd5f 100644 --- a/apps/updatenotification/l10n/es_UY.json +++ b/apps/updatenotification/l10n/es_UY.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "La actualización para %1$s a la versión %2$s está disponible.", "Update for {app} to version %s is available." : "Actualización para {app} a la versión %s está disponible.", "Open updater" : "Abrir actualizador", + "Download now" : "Descargar ahora", + "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página.", "Your version is up to date." : "Tu verisón está actualizada.", "A non-default update server is in use to be checked for updates:" : "Un servidor de actualizaciones no-predeterminado está en uso para ser verficiado por actualizaciones:", + "Update channel:" : "Actualizar el canal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Siempre puedes actualizar a una versión más reciente / canal experimental. Sin embargo nunca podrás desactualizar la versión a un canal más estable. ", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota que después una nueva publicación puede tomar algo de tiempo antes de que se muestre aquí. Distribuimos nuevas versiones para que sean distribuidas a través del tiempo para nuestros usuarios y algunas veces nos saltamos una versión cuando encontramos detalles.", "Notify members of the following groups about available updates:" : "Notificar a los miembros de los siguientes grupos de las actualizaciones disponibles:", "Only notification for app updates are available." : "Sólo se tienen disponibles notificaciones de actualizaciones de la aplicación.", + "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", "The selected update channel does not support updates of the server." : "El canal de actualización seleccionado no soporta actualizaciones del servidor. ", "Could not start updater, please try the manual update" : "No fue posible iniciar el actualizador, por favor intenta la actualización manual", "A new version is available: %s" : "Una nueva versión está disponible: %s", - "Download now" : "Descargar ahora", - "Checked on %s" : "Verificado el %s", - "Update channel:" : "Actualizar el canal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "El canal de actualización seleccionado hace que las notificaciones dedicadas al servidor sean obsoletas. ", - "The update check is not yet finished. Please refresh the page." : "La verificación de actualización aún no termina. Por favor actualiza la página." + "Checked on %s" : "Verificado el %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/fi.js b/apps/updatenotification/l10n/fi.js index a333bcabbde..7df3c507a00 100644 --- a/apps/updatenotification/l10n/fi.js +++ b/apps/updatenotification/l10n/fi.js @@ -10,9 +10,15 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Kohteen %1$s päivitys versioon %2$s on saatavilla.", "Update for {app} to version %s is available." : "Sovelluksen {app} päivitys versioon %s on saatavilla.", "Update notification" : "Päivitysilmoitus", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Käyttämäsi versio ei ole enää tuettu. Varmista, että päivität tuettuun versioon mahdollisimman pian.", + "View in store" : "Näytä kaupassa", "Apps with available updates" : "Sovellukset, joihin saatavilla päivityksiä", "Open updater" : "Avaa päivittäjä", + "Download now" : "Lataa heti", + "What's new?" : "Mitä uutta?", + "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu.", "Your version is up to date." : "Versiosi on ajan tasalla.", + "Update channel:" : "Päivityskanava:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Voit aina päivittää uudempaan versioon tai kokeellisen jakelukanavan versioon. Et voi kuitenkaan palata aiempaan, vakaan julkaisukanavan versioon.", "Notify members of the following groups about available updates:" : "Ilmoita seuraavien ryhmien jäsenille saatavilla olevista päivityksistä:", "Only notification for app updates are available." : "Sovelluspäivityksiin on saatavilla vain huomautuksia.", @@ -22,10 +28,6 @@ OC.L10N.register( "View changelog" : "Näytä muutosloki", "Could not start updater, please try the manual update" : "Ei voitu aloittaa päivitystä, kokeile päivittämistä manuaalisesti", "A new version is available: %s" : "Uusi versio on saatavilla: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Käyttämäsi versio ei ole enää tuettu. Varmista, että päivität tuettuun versioon mahdollisimman pian.", - "Download now" : "Lataa heti", - "Checked on %s" : "Tarkistettu %s", - "Update channel:" : "Päivityskanava:", - "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu." + "Checked on %s" : "Tarkistettu %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/fi.json b/apps/updatenotification/l10n/fi.json index 39b4f181b3e..928575031c8 100644 --- a/apps/updatenotification/l10n/fi.json +++ b/apps/updatenotification/l10n/fi.json @@ -8,9 +8,15 @@ "Update for %1$s to version %2$s is available." : "Kohteen %1$s päivitys versioon %2$s on saatavilla.", "Update for {app} to version %s is available." : "Sovelluksen {app} päivitys versioon %s on saatavilla.", "Update notification" : "Päivitysilmoitus", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Käyttämäsi versio ei ole enää tuettu. Varmista, että päivität tuettuun versioon mahdollisimman pian.", + "View in store" : "Näytä kaupassa", "Apps with available updates" : "Sovellukset, joihin saatavilla päivityksiä", "Open updater" : "Avaa päivittäjä", + "Download now" : "Lataa heti", + "What's new?" : "Mitä uutta?", + "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu.", "Your version is up to date." : "Versiosi on ajan tasalla.", + "Update channel:" : "Päivityskanava:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Voit aina päivittää uudempaan versioon tai kokeellisen jakelukanavan versioon. Et voi kuitenkaan palata aiempaan, vakaan julkaisukanavan versioon.", "Notify members of the following groups about available updates:" : "Ilmoita seuraavien ryhmien jäsenille saatavilla olevista päivityksistä:", "Only notification for app updates are available." : "Sovelluspäivityksiin on saatavilla vain huomautuksia.", @@ -20,10 +26,6 @@ "View changelog" : "Näytä muutosloki", "Could not start updater, please try the manual update" : "Ei voitu aloittaa päivitystä, kokeile päivittämistä manuaalisesti", "A new version is available: %s" : "Uusi versio on saatavilla: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Käyttämäsi versio ei ole enää tuettu. Varmista, että päivität tuettuun versioon mahdollisimman pian.", - "Download now" : "Lataa heti", - "Checked on %s" : "Tarkistettu %s", - "Update channel:" : "Päivityskanava:", - "The update check is not yet finished. Please refresh the page." : "Päivitystarkistus ei ole vielä valmis. Päivitä sivu." + "Checked on %s" : "Tarkistettu %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/fr.js b/apps/updatenotification/l10n/fr.js index 5a66d800928..673ab443d1b 100644 --- a/apps/updatenotification/l10n/fr.js +++ b/apps/updatenotification/l10n/fr.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Une mise à jour de {app} vers la version %s est disponible.", "Update notification" : "Notification mise à jour", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Affiche les notifications de mise à jour pour Nextcloud et fournit l'authentification unique SSO pour le programme de mise à jour.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La version que vous utilisez n'est plus maintenue. Assurez vous d'effectuer une mise à jour vers une version prise en charge dès que possible.", + "Apps missing updates" : "Applications à mettre à jour", + "View in store" : "Afficher dans le magasin d'applications", "Apps with available updates" : "Applications avec des mises à jour disponibles", "Open updater" : "Ouvrir le système de mise à jour", + "Download now" : "Télécharger maintenant", + "What's new?" : "Quoi de neuf ?", + "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page.", "Your version is up to date." : "Votre version est à jour.", "A non-default update server is in use to be checked for updates:" : "Un serveur spécifique est actuellement configuré pour la vérification des mises-à-jour :", + "Update channel:" : "Canal de mise à jour :", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vous pouvez à tout moment mettre à jour votre instance Nextcloud vers une version plus récente ou un canal expérimental. Vous ne pourrez cependant jamais revenir à une version antérieure en sélectionnant un canal plus stable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Veuillez noter qu'il peut s'écouler un certain temps entre la sortie d'une nouvelle version et sa disponibilité pour téléchargement et mise-à-jour ici, sur votre instance. Nous répartissons le déploiement des nouvelles versions Nextcloud dans le temps à l'ensemble de nos utilisateurs. Certaines versions mineures, présentant des bugs problématiques, peuvent être sautées.", "Notify members of the following groups about available updates:" : "Notifier les membres des groupes suivants des mises à jours disponibles :", "Only notification for app updates are available." : "Seules les notifications pour les mises à jour d'applications sont diponibles.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de mise à jour sélectionné rend obsolètes les notifications dédiées au serveur.", "The selected update channel does not support updates of the server." : "Le canal de mises à jour sélectionné ne supporte pas les mises à jour du serveur.", "A new version is available: <strong>{newVersionString}</strong>" : "Une nouvelle version est disponible : <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Vérifié le {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Veuillez vous assurer que le paramètre <samp>appstoreenabled</samp> n'est pas défini à false dans votre config.php.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Il est impossible de se connecter à l'appstore ou alors l'appstore n'a renvoyé aucune mise à jour. Cherchez manuellement les mises à jour ou assurez-vous que votre serveur a accès à Internet et peut se connecter à l'appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Toutes</strong> les applications ont une mise à jour disponible pour cette version", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> application n'a pas de mise à jour disponible pour cette version","<strong>%n</strong> applications n'ont pas de mise à jour disponible pour cette version"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> fournira toujours le correctif le plus récent, mais ne mettra pas immédiatement à jour vers la version majeure suivante. Cette mise à jour se produit généralement avec la deuxième version mineure (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> est la version stable la plus récente. Elle est adapté pour une utilisation régulière et sera toujours mise à jour vers la dernière version majeure.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> est une version préliminaire utilisée seulement pour tester les nouvelles fonctionnalités, n'est pas adaptée dans un environnement de production.", "View changelog" : "Voir le journal des modifications", "Could not start updater, please try the manual update" : "Impossible de démarrer le système de mise à jour, veuillez essayer de mettre à jour manuellement", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> application n'a pas de mise à jour disponible pour cette version","<strong>%n</strong> applications n'ont pas de mise à jour disponible pour cette version"], "A new version is available: %s" : "Une nouvelle version est disponible : %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La version que vous utilisez n'est plus maintenue. Assurez vous d'effectuer une mise à jour vers une version prise en charge dès que possible.", - "Download now" : "Télécharger maintenant", - "Checked on %s" : "Vérifié le %s", - "Update channel:" : "Canal de mise à jour :", - "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de mise à jour sélectionné rend obsolètes les notifications dédiées au serveur.", - "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page." + "Checked on %s" : "Vérifié le %s" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/updatenotification/l10n/fr.json b/apps/updatenotification/l10n/fr.json index 48a580c8c24..08ed48d9fbe 100644 --- a/apps/updatenotification/l10n/fr.json +++ b/apps/updatenotification/l10n/fr.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "Une mise à jour de {app} vers la version %s est disponible.", "Update notification" : "Notification mise à jour", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Affiche les notifications de mise à jour pour Nextcloud et fournit l'authentification unique SSO pour le programme de mise à jour.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La version que vous utilisez n'est plus maintenue. Assurez vous d'effectuer une mise à jour vers une version prise en charge dès que possible.", + "Apps missing updates" : "Applications à mettre à jour", + "View in store" : "Afficher dans le magasin d'applications", "Apps with available updates" : "Applications avec des mises à jour disponibles", "Open updater" : "Ouvrir le système de mise à jour", + "Download now" : "Télécharger maintenant", + "What's new?" : "Quoi de neuf ?", + "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page.", "Your version is up to date." : "Votre version est à jour.", "A non-default update server is in use to be checked for updates:" : "Un serveur spécifique est actuellement configuré pour la vérification des mises-à-jour :", + "Update channel:" : "Canal de mise à jour :", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vous pouvez à tout moment mettre à jour votre instance Nextcloud vers une version plus récente ou un canal expérimental. Vous ne pourrez cependant jamais revenir à une version antérieure en sélectionnant un canal plus stable.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Veuillez noter qu'il peut s'écouler un certain temps entre la sortie d'une nouvelle version et sa disponibilité pour téléchargement et mise-à-jour ici, sur votre instance. Nous répartissons le déploiement des nouvelles versions Nextcloud dans le temps à l'ensemble de nos utilisateurs. Certaines versions mineures, présentant des bugs problématiques, peuvent être sautées.", "Notify members of the following groups about available updates:" : "Notifier les membres des groupes suivants des mises à jours disponibles :", "Only notification for app updates are available." : "Seules les notifications pour les mises à jour d'applications sont diponibles.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de mise à jour sélectionné rend obsolètes les notifications dédiées au serveur.", "The selected update channel does not support updates of the server." : "Le canal de mises à jour sélectionné ne supporte pas les mises à jour du serveur.", "A new version is available: <strong>{newVersionString}</strong>" : "Une nouvelle version est disponible : <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Vérifié le {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Veuillez vous assurer que le paramètre <samp>appstoreenabled</samp> n'est pas défini à false dans votre config.php.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Il est impossible de se connecter à l'appstore ou alors l'appstore n'a renvoyé aucune mise à jour. Cherchez manuellement les mises à jour ou assurez-vous que votre serveur a accès à Internet et peut se connecter à l'appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Toutes</strong> les applications ont une mise à jour disponible pour cette version", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> application n'a pas de mise à jour disponible pour cette version","<strong>%n</strong> applications n'ont pas de mise à jour disponible pour cette version"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong> fournira toujours le correctif le plus récent, mais ne mettra pas immédiatement à jour vers la version majeure suivante. Cette mise à jour se produit généralement avec la deuxième version mineure (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> est la version stable la plus récente. Elle est adapté pour une utilisation régulière et sera toujours mise à jour vers la dernière version majeure.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> est une version préliminaire utilisée seulement pour tester les nouvelles fonctionnalités, n'est pas adaptée dans un environnement de production.", "View changelog" : "Voir le journal des modifications", "Could not start updater, please try the manual update" : "Impossible de démarrer le système de mise à jour, veuillez essayer de mettre à jour manuellement", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> application n'a pas de mise à jour disponible pour cette version","<strong>%n</strong> applications n'ont pas de mise à jour disponible pour cette version"], "A new version is available: %s" : "Une nouvelle version est disponible : %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La version que vous utilisez n'est plus maintenue. Assurez vous d'effectuer une mise à jour vers une version prise en charge dès que possible.", - "Download now" : "Télécharger maintenant", - "Checked on %s" : "Vérifié le %s", - "Update channel:" : "Canal de mise à jour :", - "The selected update channel makes dedicated notifications for the server obsolete." : "Le canal de mise à jour sélectionné rend obsolètes les notifications dédiées au serveur.", - "The update check is not yet finished. Please refresh the page." : "La vérification de la mise-à-jour n'est pas encore terminée. Veuillez rafraîchir la page." + "Checked on %s" : "Vérifié le %s" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/gl.js b/apps/updatenotification/l10n/gl.js index f8f47691fdb..835b6bf5d8a 100644 --- a/apps/updatenotification/l10n/gl.js +++ b/apps/updatenotification/l10n/gl.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Está dispoñíbel unha actualización para %1$s á versión %2$s.", "Update for {app} to version %s is available." : "Está dispoñíbel unha actualización para {app} á versión %s.", "Open updater" : "Abrir o actualizador", + "Download now" : "Descargar agora", + "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina.", "Your version is up to date." : "A súa versión está actualizada.", "A non-default update server is in use to be checked for updates:" : "Está en uso un servidor de actualizacións que non é o predeterminado para comprobar as actualizacións:", + "Update channel:" : "Canle de actualización:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre poderá actualizar á unha versión máis nova ou á canle experimental, mais nunca poderá voltar atrás a unha canle máis estábel.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Teña en conta que despois da publicación dunha nova versión pode levar algún tempo antes de que se mostre eiquí. Programamos novas versións ao longo do tempo para os nosos usuarios e ás veces saltamos unha versión cando se atopan problemas.", "Notify members of the following groups about available updates:" : "Notificar aos participantes nos seguintes grupos sobre actualizacións dispoñíbeis:", "Only notification for app updates are available." : "Só están dispoñíbeis as notificacións para actualizacións de aplicacións.", + "The selected update channel makes dedicated notifications for the server obsolete." : "A canle de actualización seleccionada fai obsoletas as notificacións dedicadas para o servidor.", "The selected update channel does not support updates of the server." : "A canle de actualización seleccionada non admite actualizacións do servidor.", "Could not start updater, please try the manual update" : "Non foi posíbel iniciar o actualizador, por favor tente a actualización manual", "A new version is available: %s" : "Hai dispoñíbel unha nova versión: %s", - "Download now" : "Descargar agora", - "Checked on %s" : "Comprobado en %s", - "Update channel:" : "Canle de actualización:", - "The selected update channel makes dedicated notifications for the server obsolete." : "A canle de actualización seleccionada fai obsoletas as notificacións dedicadas para o servidor.", - "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina." + "Checked on %s" : "Comprobado en %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/gl.json b/apps/updatenotification/l10n/gl.json index ed7a8a40ef2..70324ebe8ef 100644 --- a/apps/updatenotification/l10n/gl.json +++ b/apps/updatenotification/l10n/gl.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "Está dispoñíbel unha actualización para %1$s á versión %2$s.", "Update for {app} to version %s is available." : "Está dispoñíbel unha actualización para {app} á versión %s.", "Open updater" : "Abrir o actualizador", + "Download now" : "Descargar agora", + "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina.", "Your version is up to date." : "A súa versión está actualizada.", "A non-default update server is in use to be checked for updates:" : "Está en uso un servidor de actualizacións que non é o predeterminado para comprobar as actualizacións:", + "Update channel:" : "Canle de actualización:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Sempre poderá actualizar á unha versión máis nova ou á canle experimental, mais nunca poderá voltar atrás a unha canle máis estábel.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Teña en conta que despois da publicación dunha nova versión pode levar algún tempo antes de que se mostre eiquí. Programamos novas versións ao longo do tempo para os nosos usuarios e ás veces saltamos unha versión cando se atopan problemas.", "Notify members of the following groups about available updates:" : "Notificar aos participantes nos seguintes grupos sobre actualizacións dispoñíbeis:", "Only notification for app updates are available." : "Só están dispoñíbeis as notificacións para actualizacións de aplicacións.", + "The selected update channel makes dedicated notifications for the server obsolete." : "A canle de actualización seleccionada fai obsoletas as notificacións dedicadas para o servidor.", "The selected update channel does not support updates of the server." : "A canle de actualización seleccionada non admite actualizacións do servidor.", "Could not start updater, please try the manual update" : "Non foi posíbel iniciar o actualizador, por favor tente a actualización manual", "A new version is available: %s" : "Hai dispoñíbel unha nova versión: %s", - "Download now" : "Descargar agora", - "Checked on %s" : "Comprobado en %s", - "Update channel:" : "Canle de actualización:", - "The selected update channel makes dedicated notifications for the server obsolete." : "A canle de actualización seleccionada fai obsoletas as notificacións dedicadas para o servidor.", - "The update check is not yet finished. Please refresh the page." : "A comprobación de actualización aínda non rematou. Por favor recargue a páxina." + "Checked on %s" : "Comprobado en %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/he.js b/apps/updatenotification/l10n/he.js index e50040544ad..a8bdbafcce3 100644 --- a/apps/updatenotification/l10n/he.js +++ b/apps/updatenotification/l10n/he.js @@ -10,9 +10,13 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "עדכון של %1$s לגרסה %2$s זמין.", "Update for {app} to version %s is available." : "קיים עדכון עבור {app} לגרסה %s.", "Update notification" : "התראה על עדכון", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "הגרסה שפועלת אצלך אינה מתוחזקת יותר. נא לוודא לעדכן לגרסה נתמכת במהירות האפשרית.", "Apps with available updates" : "יישומים עם עדכונים זמינים", "Open updater" : "פתיחת המעדכן", + "Download now" : "להוריד כעת", + "The update check is not yet finished. Please refresh the page." : "בדיקת העדכונים לא הסתיימה עדיין. נא לעדכן את העמוד.", "Your version is up to date." : "הגרסה שבידך מעודכנת.", + "Update channel:" : "עדכון ערוץ:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "תמיד ניתן לעדכן לגרסה חדשה / ערוץ ניסיון. אבל לא ניתן להוריד גרסה לערוץ יציב יותר.", "Notify members of the following groups about available updates:" : "דיווח למשתמשים של קבוצות אלו על עדכונים זמינים:", "A new version is available: <strong>{newVersionString}</strong>" : "גרסה חדשה זמינה: <strong>{newVersionString}</strong>", @@ -20,10 +24,6 @@ OC.L10N.register( "Checking apps for compatible updates" : "היישומונים נבדקים לאיתור עדכונים תואמים", "Could not start updater, please try the manual update" : "לא ניתן להתחיל את המעדכן, נא לנסות לעדכן ידנית", "A new version is available: %s" : "קיימת גרסה מעודכנת: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "הגרסה שפועלת אצלך אינה מתוחזקת יותר. נא לוודא לעדכן לגרסה נתמכת במהירות האפשרית.", - "Download now" : "להוריד כעת", - "Checked on %s" : "נבדק לאחרונה ב- %s", - "Update channel:" : "עדכון ערוץ:", - "The update check is not yet finished. Please refresh the page." : "בדיקת העדכונים לא הסתיימה עדיין. נא לעדכן את העמוד." + "Checked on %s" : "נבדק לאחרונה ב- %s" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;"); diff --git a/apps/updatenotification/l10n/he.json b/apps/updatenotification/l10n/he.json index f51df9d53da..4f02202ec29 100644 --- a/apps/updatenotification/l10n/he.json +++ b/apps/updatenotification/l10n/he.json @@ -8,9 +8,13 @@ "Update for %1$s to version %2$s is available." : "עדכון של %1$s לגרסה %2$s זמין.", "Update for {app} to version %s is available." : "קיים עדכון עבור {app} לגרסה %s.", "Update notification" : "התראה על עדכון", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "הגרסה שפועלת אצלך אינה מתוחזקת יותר. נא לוודא לעדכן לגרסה נתמכת במהירות האפשרית.", "Apps with available updates" : "יישומים עם עדכונים זמינים", "Open updater" : "פתיחת המעדכן", + "Download now" : "להוריד כעת", + "The update check is not yet finished. Please refresh the page." : "בדיקת העדכונים לא הסתיימה עדיין. נא לעדכן את העמוד.", "Your version is up to date." : "הגרסה שבידך מעודכנת.", + "Update channel:" : "עדכון ערוץ:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "תמיד ניתן לעדכן לגרסה חדשה / ערוץ ניסיון. אבל לא ניתן להוריד גרסה לערוץ יציב יותר.", "Notify members of the following groups about available updates:" : "דיווח למשתמשים של קבוצות אלו על עדכונים זמינים:", "A new version is available: <strong>{newVersionString}</strong>" : "גרסה חדשה זמינה: <strong>{newVersionString}</strong>", @@ -18,10 +22,6 @@ "Checking apps for compatible updates" : "היישומונים נבדקים לאיתור עדכונים תואמים", "Could not start updater, please try the manual update" : "לא ניתן להתחיל את המעדכן, נא לנסות לעדכן ידנית", "A new version is available: %s" : "קיימת גרסה מעודכנת: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "הגרסה שפועלת אצלך אינה מתוחזקת יותר. נא לוודא לעדכן לגרסה נתמכת במהירות האפשרית.", - "Download now" : "להוריד כעת", - "Checked on %s" : "נבדק לאחרונה ב- %s", - "Update channel:" : "עדכון ערוץ:", - "The update check is not yet finished. Please refresh the page." : "בדיקת העדכונים לא הסתיימה עדיין. נא לעדכן את העמוד." + "Checked on %s" : "נבדק לאחרונה ב- %s" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/hu.js b/apps/updatenotification/l10n/hu.js index 8fdb06ccdbf..c42d51d0c88 100644 --- a/apps/updatenotification/l10n/hu.js +++ b/apps/updatenotification/l10n/hu.js @@ -12,12 +12,16 @@ OC.L10N.register( "Update notification" : "Frissítési értesítés", "Apps with available updates" : "Alkalmazások frissítéssel", "Open updater" : "Frissítő megnyitása", + "Download now" : "Letöltés most", + "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt.", "Your version is up to date." : "Verzió frissítve.", "A non-default update server is in use to be checked for updates:" : "Egy nem alapértelmezett szervert használunk a frissítések kereséséhez:", + "Update channel:" : "Frissítési csatorna:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mindig frissíthetsz az újabb verzióra vagy kísérleti csatornára, de visszafelé sosem frissíthetsz egy jóval stabilabb verzióra.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vedd figyelembe, hogy egy firssítés megjelenése után eltarthat egy darabig míg itt megjelenik. Fokozatosan juttatjuk el a frissítéseket a felhaszálóinkhoz és néha kihagyunk egy-egy verziót, ha problémák merülnek fel.", "Notify members of the following groups about available updates:" : "A következő csoport tagjainak értesítése az elérhető frissítésekről:", "Only notification for app updates are available." : "Csak az értesítő alkalmazás frissítései érhetők el.", + "The selected update channel makes dedicated notifications for the server obsolete." : "A kiválasztott frissítési csatorna dedikált értesítéseket jelenít meg a szerver elavulásakor.", "The selected update channel does not support updates of the server." : "A kiválasztott frissítése csatorna nem támogatja a szerver frissítéseit.", "A new version is available: <strong>{newVersionString}</strong>" : "Új verzió érhető el: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Ellenőrizve ekkor: {lastCheckedDate}", @@ -25,13 +29,9 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Ellenőrizd, hogy a config.php-dben nincs-e beállítva a <samp>appstoreenabled</samp> false-ra.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nem lehet csatlakozni az alkalmazásbolthoz, vagy az nem adott vissza frissítéseket egyáltalán. Keress frissítéseket kézzel, vagy győződj meg arról, hogy a szervered hozzáfér az internethez és eléri az alkalmazásboltot.", "<strong>All</strong> apps have an update for this version available" : "<strong>Minden</strong> alkalmazás felfrissítve a legújabb verzióra.", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz","<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz"], "Could not start updater, please try the manual update" : "Nem sikerült elindítani a frissítőt, kérlek próbáld a manuális frissítést", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz","<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz"], "A new version is available: %s" : "Új verzió érhető el: %s", - "Download now" : "Letöltés most", - "Checked on %s" : "Ellenőrizve: %s", - "Update channel:" : "Frissítési csatorna:", - "The selected update channel makes dedicated notifications for the server obsolete." : "A kiválasztott frissítési csatorna dedikált értesítéseket jelenít meg a szerver elavulásakor.", - "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt." + "Checked on %s" : "Ellenőrizve: %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/hu.json b/apps/updatenotification/l10n/hu.json index a1c05a8fd4e..0ce7156e9c8 100644 --- a/apps/updatenotification/l10n/hu.json +++ b/apps/updatenotification/l10n/hu.json @@ -10,12 +10,16 @@ "Update notification" : "Frissítési értesítés", "Apps with available updates" : "Alkalmazások frissítéssel", "Open updater" : "Frissítő megnyitása", + "Download now" : "Letöltés most", + "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt.", "Your version is up to date." : "Verzió frissítve.", "A non-default update server is in use to be checked for updates:" : "Egy nem alapértelmezett szervert használunk a frissítések kereséséhez:", + "Update channel:" : "Frissítési csatorna:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mindig frissíthetsz az újabb verzióra vagy kísérleti csatornára, de visszafelé sosem frissíthetsz egy jóval stabilabb verzióra.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vedd figyelembe, hogy egy firssítés megjelenése után eltarthat egy darabig míg itt megjelenik. Fokozatosan juttatjuk el a frissítéseket a felhaszálóinkhoz és néha kihagyunk egy-egy verziót, ha problémák merülnek fel.", "Notify members of the following groups about available updates:" : "A következő csoport tagjainak értesítése az elérhető frissítésekről:", "Only notification for app updates are available." : "Csak az értesítő alkalmazás frissítései érhetők el.", + "The selected update channel makes dedicated notifications for the server obsolete." : "A kiválasztott frissítési csatorna dedikált értesítéseket jelenít meg a szerver elavulásakor.", "The selected update channel does not support updates of the server." : "A kiválasztott frissítése csatorna nem támogatja a szerver frissítéseit.", "A new version is available: <strong>{newVersionString}</strong>" : "Új verzió érhető el: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Ellenőrizve ekkor: {lastCheckedDate}", @@ -23,13 +27,9 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Ellenőrizd, hogy a config.php-dben nincs-e beállítva a <samp>appstoreenabled</samp> false-ra.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nem lehet csatlakozni az alkalmazásbolthoz, vagy az nem adott vissza frissítéseket egyáltalán. Keress frissítéseket kézzel, vagy győződj meg arról, hogy a szervered hozzáfér az internethez és eléri az alkalmazásboltot.", "<strong>All</strong> apps have an update for this version available" : "<strong>Minden</strong> alkalmazás felfrissítve a legújabb verzióra.", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz","<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz"], "Could not start updater, please try the manual update" : "Nem sikerült elindítani a frissítőt, kérlek próbáld a manuális frissítést", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz","<strong>%n</strong> alkalmazásnak nincs elérhető frissítése ehhez a verzióhoz"], "A new version is available: %s" : "Új verzió érhető el: %s", - "Download now" : "Letöltés most", - "Checked on %s" : "Ellenőrizve: %s", - "Update channel:" : "Frissítési csatorna:", - "The selected update channel makes dedicated notifications for the server obsolete." : "A kiválasztott frissítési csatorna dedikált értesítéseket jelenít meg a szerver elavulásakor.", - "The update check is not yet finished. Please refresh the page." : "A frissítéskeresés még nem ért véget. Kérjük frissítsd az oldalt." + "Checked on %s" : "Ellenőrizve: %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/is.js b/apps/updatenotification/l10n/is.js index ebea70c34c3..08856338462 100644 --- a/apps/updatenotification/l10n/is.js +++ b/apps/updatenotification/l10n/is.js @@ -11,14 +11,19 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Uppfærsla fyrir {app} í útgáfu %s er tiltæk.", "Update notification" : "Tilkynning um uppfærslu", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Birtir tilkynningar um uppfærslur fyrir Nextcloud og sér um SSO-innskráningu fyrir uppfærslustýringuna.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Útgáfunni sem þú ert að keyra er ekki legur viðhaldið. Uppfærðu í studda útgáfu við fyrsta tækifæri.", "Apps with available updates" : "Forrit með tiltækar uppfærslur", "Open updater" : "Opna uppfærslustýringu", + "Download now" : "Sækja núna", + "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna.", "Your version is up to date." : "Útgáfan þín er af nýjustu gerð.", "A non-default update server is in use to be checked for updates:" : "Uppfærsluþjónn sem ekki er sjálfgefinn er núna í notkun til að athuga með uppfærslur:", + "Update channel:" : "Uppfærslurás:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Þú getur alltaf uppfært í nýrri útgáfu eða tilraunaútgáfurás. En þú getur aldrei niðurfært í stöðugri rás.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Athugaðu að það getur tekið nokkurn tíma áður en nýjar útgáfur birtast hér. Við dreifum útgáfum yfir tíma auk þess sem stundum er útgáfum sleppt ef í þeim finnast hnökrar.", "Notify members of the following groups about available updates:" : "Tilkynna meðlimum eftirfarandi hópa um tiltækar uppfærslur:", "Only notification for app updates are available." : "Eingöngu eru eru tiltækar tilkynningar fyrir uppfærslur forrita.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Valda uppfærslurásin gerir úreltar sértækar tilkynningar fyrir vefþjóninn.", "The selected update channel does not support updates of the server." : "Valda uppfærslurásin styður ekki uppfærslur fyrir vefþjóninn.", "A new version is available: <strong>{newVersionString}</strong>" : "Ný útgáfa er tiltæk: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Athugað þann {lastCheckedDate}", @@ -26,18 +31,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Gakktu úr skugga um að í config.php sé <samp>appstoreenabled</samp> ekki sett sem ósatt/false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Gat ekki tengst við forritabúðina eða að í henni eru engar uppfærslur. Leitaðu handvirkt að uppfærslum, eða gakktu úr skugga um að þjónninn þinn sé með aðgang að internetinu og geti tengst forritabúðinni.", "<strong>All</strong> apps have an update for this version available" : "<strong>Öll</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu","<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>vinnsla</strong> mun alltaf vera á nýjasta stigi endurbóta (öryggisviðbætur o.fl.), en ekki uppfærast samstundis í næstu aðalútgáfu. Sú uppfærsla á sér yfirleitt stað við undirútgáfu númer tvö (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stöðug</strong> er nýjasta stöðuga útgáfan. Hún hentar fyrir alla venjulega notkun og er alltaf uppfærð í nýjustu aðalútgáfu.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> er for-útgáfa sem einungis er hugsuð til að prófa nýja eiginleika, og er alls ekki ætluð fyrir alvöru vinnslu.", "View changelog" : "Skoða breytingaannál", "Could not start updater, please try the manual update" : "Gat ekki ræst uppfærslustýringu, prófaðu að uppfæra handvirkt", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu","<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu"], "A new version is available: %s" : "Ný útgáfa er tiltæk: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Útgáfunni sem þú ert að keyra er ekki legur viðhaldið. Uppfærðu í studda útgáfu við fyrsta tækifæri.", - "Download now" : "Sækja núna", - "Checked on %s" : "Athugað þann %s", - "Update channel:" : "Uppfærslurás:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Valda uppfærslurásin gerir úreltar sértækar tilkynningar fyrir vefþjóninn.", - "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna." + "Checked on %s" : "Athugað þann %s" }, "nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"); diff --git a/apps/updatenotification/l10n/is.json b/apps/updatenotification/l10n/is.json index e1d7de4db58..987acbb1a57 100644 --- a/apps/updatenotification/l10n/is.json +++ b/apps/updatenotification/l10n/is.json @@ -9,14 +9,19 @@ "Update for {app} to version %s is available." : "Uppfærsla fyrir {app} í útgáfu %s er tiltæk.", "Update notification" : "Tilkynning um uppfærslu", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Birtir tilkynningar um uppfærslur fyrir Nextcloud og sér um SSO-innskráningu fyrir uppfærslustýringuna.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Útgáfunni sem þú ert að keyra er ekki legur viðhaldið. Uppfærðu í studda útgáfu við fyrsta tækifæri.", "Apps with available updates" : "Forrit með tiltækar uppfærslur", "Open updater" : "Opna uppfærslustýringu", + "Download now" : "Sækja núna", + "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna.", "Your version is up to date." : "Útgáfan þín er af nýjustu gerð.", "A non-default update server is in use to be checked for updates:" : "Uppfærsluþjónn sem ekki er sjálfgefinn er núna í notkun til að athuga með uppfærslur:", + "Update channel:" : "Uppfærslurás:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Þú getur alltaf uppfært í nýrri útgáfu eða tilraunaútgáfurás. En þú getur aldrei niðurfært í stöðugri rás.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Athugaðu að það getur tekið nokkurn tíma áður en nýjar útgáfur birtast hér. Við dreifum útgáfum yfir tíma auk þess sem stundum er útgáfum sleppt ef í þeim finnast hnökrar.", "Notify members of the following groups about available updates:" : "Tilkynna meðlimum eftirfarandi hópa um tiltækar uppfærslur:", "Only notification for app updates are available." : "Eingöngu eru eru tiltækar tilkynningar fyrir uppfærslur forrita.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Valda uppfærslurásin gerir úreltar sértækar tilkynningar fyrir vefþjóninn.", "The selected update channel does not support updates of the server." : "Valda uppfærslurásin styður ekki uppfærslur fyrir vefþjóninn.", "A new version is available: <strong>{newVersionString}</strong>" : "Ný útgáfa er tiltæk: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Athugað þann {lastCheckedDate}", @@ -24,18 +29,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Gakktu úr skugga um að í config.php sé <samp>appstoreenabled</samp> ekki sett sem ósatt/false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Gat ekki tengst við forritabúðina eða að í henni eru engar uppfærslur. Leitaðu handvirkt að uppfærslum, eða gakktu úr skugga um að þjónninn þinn sé með aðgang að internetinu og geti tengst forritabúðinni.", "<strong>All</strong> apps have an update for this version available" : "<strong>Öll</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu","<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>vinnsla</strong> mun alltaf vera á nýjasta stigi endurbóta (öryggisviðbætur o.fl.), en ekki uppfærast samstundis í næstu aðalútgáfu. Sú uppfærsla á sér yfirleitt stað við undirútgáfu númer tvö (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stöðug</strong> er nýjasta stöðuga útgáfan. Hún hentar fyrir alla venjulega notkun og er alltaf uppfærð í nýjustu aðalútgáfu.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> er for-útgáfa sem einungis er hugsuð til að prófa nýja eiginleika, og er alls ekki ætluð fyrir alvöru vinnslu.", "View changelog" : "Skoða breytingaannál", "Could not start updater, please try the manual update" : "Gat ekki ræst uppfærslustýringu, prófaðu að uppfæra handvirkt", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu","<strong>%n</strong> forrit eru með uppfærslu tiltæka fyrir þessa útgáfu"], "A new version is available: %s" : "Ný útgáfa er tiltæk: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Útgáfunni sem þú ert að keyra er ekki legur viðhaldið. Uppfærðu í studda útgáfu við fyrsta tækifæri.", - "Download now" : "Sækja núna", - "Checked on %s" : "Athugað þann %s", - "Update channel:" : "Uppfærslurás:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Valda uppfærslurásin gerir úreltar sértækar tilkynningar fyrir vefþjóninn.", - "The update check is not yet finished. Please refresh the page." : "Athugun á uppfærslum er ekki ennþá lokið. Endurlestu síðuna." + "Checked on %s" : "Athugað þann %s" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/it.js b/apps/updatenotification/l10n/it.js index c1c454fe506..dab1d51a88c 100644 --- a/apps/updatenotification/l10n/it.js +++ b/apps/updatenotification/l10n/it.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "È disponibile l'aggiornamento di {app} alla versione %s.", "Update notification" : "Notifica di aggiornamento", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Visualizza le notifiche degli aggiornamenti per Nextcloud e fornisce il SSO per lo strumento di aggiornamento.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versione che stai eseguendo non è più mantenuta. Assicurati di aggiornare a una versione supportata non appena possibile.", + "Apps missing updates" : "Applicazioni non aggiornate", + "View in store" : "Visualizza nel negozio", "Apps with available updates" : "Applicazioni con aggiornamenti disponibili", "Open updater" : "Apri strumento di aggiornamento", + "Download now" : "Scarica ora", + "What's new?" : "Cosa c'è di nuovo?", + "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina.", "Your version is up to date." : "La tua versione è aggiornata.", "A non-default update server is in use to be checked for updates:" : "Stai utilizzando un server non predefinito per controllare gli aggiornamenti:", + "Update channel:" : "Canale di aggiornamento:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Puoi aggiornare sempre a una nuova versione / canale sperimentale. Ma non puoi mai tornare a una versione precedente.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota che, dopo una nuova versione, potrebbe essere necessario del tempo prima che sia mostrato qui. Rilasciamo nel tempo nuove versioni ai nostri utenti e, a volte, saltiamo una versione, se troviamo dei problemi.", "Notify members of the following groups about available updates:" : "Notifica i membri dei seguenti gruppi sugli aggiornamenti disponibili:", "Only notification for app updates are available." : "Sono disponibili solo le notifiche per gli aggiornamenti delle applicazioni.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Il canale di aggiornamento selezionato rende obsolete le notifiche dedicate al server.", "The selected update channel does not support updates of the server." : "Il canale di aggiornamento selezionato non supporta gli aggiornamenti del server.", "A new version is available: <strong>{newVersionString}</strong>" : "Una nuova versione è disponibile: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Controllato il {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Assicurati che il tuo config.php non abbia <samp>appstoreenabled</samp> impostata a false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Impossibile connettersi al negozio delle applicazioni o il negozio delle applicazioni non ha restituito alcun aggiornamento. Cerca manualmente gli aggiornamenti o assicurati che il server abbia accesso a Internet e possa collegarsi al negozio delle applicazioni.", "<strong>All</strong> apps have an update for this version available" : "<strong>Tutte</strong> le applicazioni hanno un aggiornamento disponibile per questa versione", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> applicazione non ha un aggiornamento disponibile per questa versione","<strong>%n</strong> applicazioni non hanno un aggiornamento disponibile per questa versione"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>produzione</strong> fornirà sempre l'ultimo livello di patch, ma non aggiornerà immediatamente alla successiva versione principale. Tale aggiornamento di solito avviene con la seconda versione minore (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stabile</strong> è la versione stabile più recente. È appropriata per l'utilizzo di tutti i giorni e sarà sempre aggiornata all'ultima versione principale.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> è una versione pre-rilascio solo per provare le nuove funzionalità, non per ambienti di produzione.", "View changelog" : "Visualizza le novità", "Could not start updater, please try the manual update" : "Impossibile avviare lo strumento di aggiornamento, prova l'aggiornamento manuale", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> applicazione non ha un aggiornamento disponibile per questa versione","<strong>%n</strong> applicazioni non hanno un aggiornamento disponibile per questa versione"], "A new version is available: %s" : "Una nuova versione è disponibile: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versione che stai eseguendo non è più mantenuta. Assicurati di aggiornare a una versione supportata non appena possibile.", - "Download now" : "Scarica ora", - "Checked on %s" : "Controllato il %s", - "Update channel:" : "Canale di aggiornamento:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Il canale di aggiornamento selezionato rende obsolete le notifiche dedicate al server.", - "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina." + "Checked on %s" : "Controllato il %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/it.json b/apps/updatenotification/l10n/it.json index d5fe04b9e79..228f0d6ac42 100644 --- a/apps/updatenotification/l10n/it.json +++ b/apps/updatenotification/l10n/it.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "È disponibile l'aggiornamento di {app} alla versione %s.", "Update notification" : "Notifica di aggiornamento", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Visualizza le notifiche degli aggiornamenti per Nextcloud e fornisce il SSO per lo strumento di aggiornamento.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versione che stai eseguendo non è più mantenuta. Assicurati di aggiornare a una versione supportata non appena possibile.", + "Apps missing updates" : "Applicazioni non aggiornate", + "View in store" : "Visualizza nel negozio", "Apps with available updates" : "Applicazioni con aggiornamenti disponibili", "Open updater" : "Apri strumento di aggiornamento", + "Download now" : "Scarica ora", + "What's new?" : "Cosa c'è di nuovo?", + "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina.", "Your version is up to date." : "La tua versione è aggiornata.", "A non-default update server is in use to be checked for updates:" : "Stai utilizzando un server non predefinito per controllare gli aggiornamenti:", + "Update channel:" : "Canale di aggiornamento:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Puoi aggiornare sempre a una nuova versione / canale sperimentale. Ma non puoi mai tornare a una versione precedente.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Nota che, dopo una nuova versione, potrebbe essere necessario del tempo prima che sia mostrato qui. Rilasciamo nel tempo nuove versioni ai nostri utenti e, a volte, saltiamo una versione, se troviamo dei problemi.", "Notify members of the following groups about available updates:" : "Notifica i membri dei seguenti gruppi sugli aggiornamenti disponibili:", "Only notification for app updates are available." : "Sono disponibili solo le notifiche per gli aggiornamenti delle applicazioni.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Il canale di aggiornamento selezionato rende obsolete le notifiche dedicate al server.", "The selected update channel does not support updates of the server." : "Il canale di aggiornamento selezionato non supporta gli aggiornamenti del server.", "A new version is available: <strong>{newVersionString}</strong>" : "Una nuova versione è disponibile: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Controllato il {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Assicurati che il tuo config.php non abbia <samp>appstoreenabled</samp> impostata a false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Impossibile connettersi al negozio delle applicazioni o il negozio delle applicazioni non ha restituito alcun aggiornamento. Cerca manualmente gli aggiornamenti o assicurati che il server abbia accesso a Internet e possa collegarsi al negozio delle applicazioni.", "<strong>All</strong> apps have an update for this version available" : "<strong>Tutte</strong> le applicazioni hanno un aggiornamento disponibile per questa versione", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> applicazione non ha un aggiornamento disponibile per questa versione","<strong>%n</strong> applicazioni non hanno un aggiornamento disponibile per questa versione"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>produzione</strong> fornirà sempre l'ultimo livello di patch, ma non aggiornerà immediatamente alla successiva versione principale. Tale aggiornamento di solito avviene con la seconda versione minore (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stabile</strong> è la versione stabile più recente. È appropriata per l'utilizzo di tutti i giorni e sarà sempre aggiornata all'ultima versione principale.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> è una versione pre-rilascio solo per provare le nuove funzionalità, non per ambienti di produzione.", "View changelog" : "Visualizza le novità", "Could not start updater, please try the manual update" : "Impossibile avviare lo strumento di aggiornamento, prova l'aggiornamento manuale", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> applicazione non ha un aggiornamento disponibile per questa versione","<strong>%n</strong> applicazioni non hanno un aggiornamento disponibile per questa versione"], "A new version is available: %s" : "Una nuova versione è disponibile: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "La versione che stai eseguendo non è più mantenuta. Assicurati di aggiornare a una versione supportata non appena possibile.", - "Download now" : "Scarica ora", - "Checked on %s" : "Controllato il %s", - "Update channel:" : "Canale di aggiornamento:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Il canale di aggiornamento selezionato rende obsolete le notifiche dedicate al server.", - "The update check is not yet finished. Please refresh the page." : "Il controllo degli aggiornamenti non è ancora terminato. Aggiorna la pagina." + "Checked on %s" : "Controllato il %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/ja.js b/apps/updatenotification/l10n/ja.js index 0ce90e53e27..178d297a6d9 100644 --- a/apps/updatenotification/l10n/ja.js +++ b/apps/updatenotification/l10n/ja.js @@ -13,25 +13,25 @@ OC.L10N.register( "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Nextcloudの更新通知を表示し、アップデータのSSOを提供します。", "Apps with available updates" : "アップデート可能なアプリ", "Open updater" : "アップデーターを開く", + "Download now" : "今すぐダウンロード", + "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。", "Your version is up to date." : "最新版です。", "A non-default update server is in use to be checked for updates:" : "更新のチェックにデフォルト以外の更新サーバーが利用されています:", + "Update channel:" : "アップデートチャンネル:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "開発版の新しいバージョンにアップデートできます。ただし、アップデート後は安定版にダウングレードできません。", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "新しいリリースの後、公開されるまでには時間がかかります。\n新しいバージョンを公開して配布しますが、問題が発見されたときにバージョンをスキップすることがあります。", "Notify members of the following groups about available updates:" : "次のグループのメンバーに利用可能なアップデートを通知する:", "Only notification for app updates are available." : "アプリ更新情報があるときのみ通知する。", + "The selected update channel makes dedicated notifications for the server obsolete." : "選択した更新チャネルでは、廃止サーバーについて専用の通知を行います。", "The selected update channel does not support updates of the server." : "選択したチャンネルでは、サーバーのアップデートをサポートしていません。", "A new version is available: <strong>{newVersionString}</strong>" : "新しいバージョンが利用可能です: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "{lastCheckedDate} にチェックが入っています", "Checking apps for compatible updates" : "互換性のあるアップデートの有無を確認する", "<strong>All</strong> apps have an update for this version available" : "<strong>すべての</strong> アプリにこのバージョンのアップデートがあります", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> アプリにこのバージョンのアップデートがありません"], "View changelog" : "変更履歴を確認する", "Could not start updater, please try the manual update" : "アップデータを起動できませんでした。手動アップデートをお試しください", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> アプリにこのバージョンのアップデートがありません"], "A new version is available: %s" : "新しいバージョンが利用可能: %s", - "Download now" : "今すぐダウンロード", - "Checked on %s" : "%s に確認", - "Update channel:" : "アップデートチャンネル:", - "The selected update channel makes dedicated notifications for the server obsolete." : "選択した更新チャネルでは、廃止サーバーについて専用の通知を行います。", - "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。" + "Checked on %s" : "%s に確認" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/ja.json b/apps/updatenotification/l10n/ja.json index 74830ed358b..065346ca7fe 100644 --- a/apps/updatenotification/l10n/ja.json +++ b/apps/updatenotification/l10n/ja.json @@ -11,25 +11,25 @@ "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Nextcloudの更新通知を表示し、アップデータのSSOを提供します。", "Apps with available updates" : "アップデート可能なアプリ", "Open updater" : "アップデーターを開く", + "Download now" : "今すぐダウンロード", + "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。", "Your version is up to date." : "最新版です。", "A non-default update server is in use to be checked for updates:" : "更新のチェックにデフォルト以外の更新サーバーが利用されています:", + "Update channel:" : "アップデートチャンネル:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "開発版の新しいバージョンにアップデートできます。ただし、アップデート後は安定版にダウングレードできません。", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "新しいリリースの後、公開されるまでには時間がかかります。\n新しいバージョンを公開して配布しますが、問題が発見されたときにバージョンをスキップすることがあります。", "Notify members of the following groups about available updates:" : "次のグループのメンバーに利用可能なアップデートを通知する:", "Only notification for app updates are available." : "アプリ更新情報があるときのみ通知する。", + "The selected update channel makes dedicated notifications for the server obsolete." : "選択した更新チャネルでは、廃止サーバーについて専用の通知を行います。", "The selected update channel does not support updates of the server." : "選択したチャンネルでは、サーバーのアップデートをサポートしていません。", "A new version is available: <strong>{newVersionString}</strong>" : "新しいバージョンが利用可能です: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "{lastCheckedDate} にチェックが入っています", "Checking apps for compatible updates" : "互換性のあるアップデートの有無を確認する", "<strong>All</strong> apps have an update for this version available" : "<strong>すべての</strong> アプリにこのバージョンのアップデートがあります", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> アプリにこのバージョンのアップデートがありません"], "View changelog" : "変更履歴を確認する", "Could not start updater, please try the manual update" : "アップデータを起動できませんでした。手動アップデートをお試しください", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> アプリにこのバージョンのアップデートがありません"], "A new version is available: %s" : "新しいバージョンが利用可能: %s", - "Download now" : "今すぐダウンロード", - "Checked on %s" : "%s に確認", - "Update channel:" : "アップデートチャンネル:", - "The selected update channel makes dedicated notifications for the server obsolete." : "選択した更新チャネルでは、廃止サーバーについて専用の通知を行います。", - "The update check is not yet finished. Please refresh the page." : "アップデートチェックが完了していません。ページを更新してください。" + "Checked on %s" : "%s に確認" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/ka_GE.js b/apps/updatenotification/l10n/ka_GE.js index 0c70194ecbd..e9d32ee54a4 100644 --- a/apps/updatenotification/l10n/ka_GE.js +++ b/apps/updatenotification/l10n/ka_GE.js @@ -11,20 +11,20 @@ OC.L10N.register( "Update for {app} to version %s is available." : "განახლება აპლიკაციისთვის {app} ვერსიაზე %s ხელმისაწვდომია.", "Update notification" : "შეტყობინების განახლება", "Open updater" : "განმანახლებლის ჩართვა", + "Download now" : "ჩამოტვირთვა", + "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი.", "Your version is up to date." : "თქვენ იყენბთ ბოლო ვერსიას.", "A non-default update server is in use to be checked for updates:" : "განახლებების შესამოწმებლად მოქმედია არა-საწყისი სერვერი:", + "Update channel:" : "განახლების არხი:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "ყოველთვის შეგიძლიათ განაახლოთ უფრო ახალ ვერსიაზე / ექსპერიმენტალურ არხზე. თუმცა სტაბილურ ვერსიაზე ჩამოსვლა ვერ მოხერხდება.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "გაითვალისწინეთ, ახალი რელიზი აქ გამოჩენამდე, საჭიროებს გარკვეულ დროს. ჩვენ მომხმარებლებისთვის ვუშვებთ ახალ ვერსიებს და ხანდახან პრობლემების პოვნისას ზოგიერთ ვერსიას ვტოვებთ.", "Notify members of the following groups about available updates:" : "შემდეგი ჯგუფის წევრებს გაუგზავნეთ შეტყობინება ხელმისაწვდომ განახლებებზე:", "Only notification for app updates are available." : "შეტყობინება ხელმისაწვდომია მხოლოდ აპლიკაციების განახლებებზე.", + "The selected update channel makes dedicated notifications for the server obsolete." : "არჩეული განახლების არხი მოძველებული სერვერის შესახებ საჭიროებს გამოყოფილ შეტყობინებებს.", "The selected update channel does not support updates of the server." : "არჩეული განახლების არხი არ უჭერს მხარს სერვერის განახლებას.", "Checked on {lastCheckedDate}" : "შემოწმდა {lastCheckedDate}-ზე", "Could not start updater, please try the manual update" : "განმანახმებლის გაშვება ვერ მოხერხდა, გთხოვთ სცადოთ განახლება მექანიკურ რეჯიმში", "A new version is available: %s" : "ხელმისაწვდომია ახალი ვერსია: %s", - "Download now" : "ჩამოტვირთვა", - "Checked on %s" : "შემოწმდა %s-ზე", - "Update channel:" : "განახლების არხი:", - "The selected update channel makes dedicated notifications for the server obsolete." : "არჩეული განახლების არხი მოძველებული სერვერის შესახებ საჭიროებს გამოყოფილ შეტყობინებებს.", - "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი." + "Checked on %s" : "შემოწმდა %s-ზე" }, "nplurals=2; plural=(n!=1);"); diff --git a/apps/updatenotification/l10n/ka_GE.json b/apps/updatenotification/l10n/ka_GE.json index 9b527012f56..7b63ad5b78c 100644 --- a/apps/updatenotification/l10n/ka_GE.json +++ b/apps/updatenotification/l10n/ka_GE.json @@ -9,20 +9,20 @@ "Update for {app} to version %s is available." : "განახლება აპლიკაციისთვის {app} ვერსიაზე %s ხელმისაწვდომია.", "Update notification" : "შეტყობინების განახლება", "Open updater" : "განმანახლებლის ჩართვა", + "Download now" : "ჩამოტვირთვა", + "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი.", "Your version is up to date." : "თქვენ იყენბთ ბოლო ვერსიას.", "A non-default update server is in use to be checked for updates:" : "განახლებების შესამოწმებლად მოქმედია არა-საწყისი სერვერი:", + "Update channel:" : "განახლების არხი:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "ყოველთვის შეგიძლიათ განაახლოთ უფრო ახალ ვერსიაზე / ექსპერიმენტალურ არხზე. თუმცა სტაბილურ ვერსიაზე ჩამოსვლა ვერ მოხერხდება.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "გაითვალისწინეთ, ახალი რელიზი აქ გამოჩენამდე, საჭიროებს გარკვეულ დროს. ჩვენ მომხმარებლებისთვის ვუშვებთ ახალ ვერსიებს და ხანდახან პრობლემების პოვნისას ზოგიერთ ვერსიას ვტოვებთ.", "Notify members of the following groups about available updates:" : "შემდეგი ჯგუფის წევრებს გაუგზავნეთ შეტყობინება ხელმისაწვდომ განახლებებზე:", "Only notification for app updates are available." : "შეტყობინება ხელმისაწვდომია მხოლოდ აპლიკაციების განახლებებზე.", + "The selected update channel makes dedicated notifications for the server obsolete." : "არჩეული განახლების არხი მოძველებული სერვერის შესახებ საჭიროებს გამოყოფილ შეტყობინებებს.", "The selected update channel does not support updates of the server." : "არჩეული განახლების არხი არ უჭერს მხარს სერვერის განახლებას.", "Checked on {lastCheckedDate}" : "შემოწმდა {lastCheckedDate}-ზე", "Could not start updater, please try the manual update" : "განმანახმებლის გაშვება ვერ მოხერხდა, გთხოვთ სცადოთ განახლება მექანიკურ რეჯიმში", "A new version is available: %s" : "ხელმისაწვდომია ახალი ვერსია: %s", - "Download now" : "ჩამოტვირთვა", - "Checked on %s" : "შემოწმდა %s-ზე", - "Update channel:" : "განახლების არხი:", - "The selected update channel makes dedicated notifications for the server obsolete." : "არჩეული განახლების არხი მოძველებული სერვერის შესახებ საჭიროებს გამოყოფილ შეტყობინებებს.", - "The update check is not yet finished. Please refresh the page." : "განახლება ჯერ არ დასრულებულა. გთხოვთ განაახლოთ გვერდი." + "Checked on %s" : "შემოწმდა %s-ზე" },"pluralForm" :"nplurals=2; plural=(n!=1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/ko.js b/apps/updatenotification/l10n/ko.js index 4f136d6848f..2ee9268d11c 100644 --- a/apps/updatenotification/l10n/ko.js +++ b/apps/updatenotification/l10n/ko.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "%1$s을(를) 버전 %2$s(으)로 업데이트할 수 있습니다.", "Update for {app} to version %s is available." : "{app}을(를) 버전 %s(으)로 업데이트할 수 있습니다.", "Open updater" : "업데이터 열기", + "Download now" : "지금 다운로드", + "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오.", "Your version is up to date." : "최신 버전을 사용하고 있습니다.", "A non-default update server is in use to be checked for updates:" : "기본 업데이트 서버가 아닌 곳에서 업데이트를 확인하고 있음:", + "Update channel:" : "업데이트 채널:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "항상 새로운 버전이나 실험 채널로 업그레이드할 수 있지만, 안정 채널로 다운그레이드할 수는 없습니다.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "새 릴리스가 발표된 후 여기에 표시되기까지 시간이 소요됩니다. 새 버전은 단계적으로 적용되고 있으며 문제가 발생한 경우 버전을 건너뛸 수도 있습니다.", "Notify members of the following groups about available updates:" : "다음 그룹 구성원에게 업데이트 알림 전달:", "Only notification for app updates are available." : "앱 업데이트 알림만 사용할 수 있습니다.", + "The selected update channel makes dedicated notifications for the server obsolete." : "선택한 업데이트 채널은 서버 알림을 사용하지 않습니다.", "The selected update channel does not support updates of the server." : "선택한 업데이트 채널은 서버 업데이트를 지원하지 않습니다.", "Could not start updater, please try the manual update" : "업데이트를 시작할 수 없습니다. 수동 업데이트를 시도하십시오.", "A new version is available: %s" : "새 버전을 사용할 수 있습니다: %s", - "Download now" : "지금 다운로드", - "Checked on %s" : "%s에 확인함", - "Update channel:" : "업데이트 채널:", - "The selected update channel makes dedicated notifications for the server obsolete." : "선택한 업데이트 채널은 서버 알림을 사용하지 않습니다.", - "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오." + "Checked on %s" : "%s에 확인함" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/ko.json b/apps/updatenotification/l10n/ko.json index a69a4413e54..a3a182a1e40 100644 --- a/apps/updatenotification/l10n/ko.json +++ b/apps/updatenotification/l10n/ko.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "%1$s을(를) 버전 %2$s(으)로 업데이트할 수 있습니다.", "Update for {app} to version %s is available." : "{app}을(를) 버전 %s(으)로 업데이트할 수 있습니다.", "Open updater" : "업데이터 열기", + "Download now" : "지금 다운로드", + "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오.", "Your version is up to date." : "최신 버전을 사용하고 있습니다.", "A non-default update server is in use to be checked for updates:" : "기본 업데이트 서버가 아닌 곳에서 업데이트를 확인하고 있음:", + "Update channel:" : "업데이트 채널:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "항상 새로운 버전이나 실험 채널로 업그레이드할 수 있지만, 안정 채널로 다운그레이드할 수는 없습니다.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "새 릴리스가 발표된 후 여기에 표시되기까지 시간이 소요됩니다. 새 버전은 단계적으로 적용되고 있으며 문제가 발생한 경우 버전을 건너뛸 수도 있습니다.", "Notify members of the following groups about available updates:" : "다음 그룹 구성원에게 업데이트 알림 전달:", "Only notification for app updates are available." : "앱 업데이트 알림만 사용할 수 있습니다.", + "The selected update channel makes dedicated notifications for the server obsolete." : "선택한 업데이트 채널은 서버 알림을 사용하지 않습니다.", "The selected update channel does not support updates of the server." : "선택한 업데이트 채널은 서버 업데이트를 지원하지 않습니다.", "Could not start updater, please try the manual update" : "업데이트를 시작할 수 없습니다. 수동 업데이트를 시도하십시오.", "A new version is available: %s" : "새 버전을 사용할 수 있습니다: %s", - "Download now" : "지금 다운로드", - "Checked on %s" : "%s에 확인함", - "Update channel:" : "업데이트 채널:", - "The selected update channel makes dedicated notifications for the server obsolete." : "선택한 업데이트 채널은 서버 알림을 사용하지 않습니다.", - "The update check is not yet finished. Please refresh the page." : "업데이트 확인이 아직 끝나지 않았습니다. 페이지를 새로 고치십시오." + "Checked on %s" : "%s에 확인함" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/lt_LT.js b/apps/updatenotification/l10n/lt_LT.js index b352ffad484..801aa8faa85 100644 --- a/apps/updatenotification/l10n/lt_LT.js +++ b/apps/updatenotification/l10n/lt_LT.js @@ -10,8 +10,11 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Yra prieinamas %1$s atnaujinimas į versiją %2$s.", "Update for {app} to version %s is available." : "Yra prieinamas {app} atnaujinimas į versiją %s.", "Open updater" : "Atverti atnaujinimo programą", + "Download now" : "Atsisiųsti dabar", + "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo.", "Your version is up to date." : "Jūsų versija yra naujausia.", "A non-default update server is in use to be checked for updates:" : "Atnaujinimų aptikimui yra naudojamas ne nenumatytasis serveris: ", + "Update channel:" : "Atnaujinimo kanalas:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Visada galite atnaujinti į naujesnę versiją / eksperimentinį kanalą. Tačiau niekada negalite sendinti versijos ar persijungti į stabilų kanalą.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Turėkite omenyje, kad po naujos versijos išleidimo, gali praeiti šiek tiek laiko, kol ji čia taps matoma. Mes išleidžiame naujas versijas paskirstytas pagal laiką savo naudotojams ir, kartais, pastebėjus klaidas, praleidžiame versiją.", "Notify members of the following groups about available updates:" : "Apie galimus atnaujinimus informuoti narius iš grupių:", @@ -22,9 +25,6 @@ OC.L10N.register( "View changelog" : "Rodyti keitinių žurnalą", "Could not start updater, please try the manual update" : "Nepavyko paleisti atnaujinimo programos, prašome bandyti atnaujinimą rankiniu būdu", "A new version is available: %s" : "Yra prieinama nauja versija: %s", - "Download now" : "Atsisiųsti dabar", - "Checked on %s" : "Tikrinta %s", - "Update channel:" : "Atnaujinimo kanalas:", - "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo." + "Checked on %s" : "Tikrinta %s" }, "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/updatenotification/l10n/lt_LT.json b/apps/updatenotification/l10n/lt_LT.json index 604dcc12c6d..3ddbebd893e 100644 --- a/apps/updatenotification/l10n/lt_LT.json +++ b/apps/updatenotification/l10n/lt_LT.json @@ -8,8 +8,11 @@ "Update for %1$s to version %2$s is available." : "Yra prieinamas %1$s atnaujinimas į versiją %2$s.", "Update for {app} to version %s is available." : "Yra prieinamas {app} atnaujinimas į versiją %s.", "Open updater" : "Atverti atnaujinimo programą", + "Download now" : "Atsisiųsti dabar", + "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo.", "Your version is up to date." : "Jūsų versija yra naujausia.", "A non-default update server is in use to be checked for updates:" : "Atnaujinimų aptikimui yra naudojamas ne nenumatytasis serveris: ", + "Update channel:" : "Atnaujinimo kanalas:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Visada galite atnaujinti į naujesnę versiją / eksperimentinį kanalą. Tačiau niekada negalite sendinti versijos ar persijungti į stabilų kanalą.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Turėkite omenyje, kad po naujos versijos išleidimo, gali praeiti šiek tiek laiko, kol ji čia taps matoma. Mes išleidžiame naujas versijas paskirstytas pagal laiką savo naudotojams ir, kartais, pastebėjus klaidas, praleidžiame versiją.", "Notify members of the following groups about available updates:" : "Apie galimus atnaujinimus informuoti narius iš grupių:", @@ -20,9 +23,6 @@ "View changelog" : "Rodyti keitinių žurnalą", "Could not start updater, please try the manual update" : "Nepavyko paleisti atnaujinimo programos, prašome bandyti atnaujinimą rankiniu būdu", "A new version is available: %s" : "Yra prieinama nauja versija: %s", - "Download now" : "Atsisiųsti dabar", - "Checked on %s" : "Tikrinta %s", - "Update channel:" : "Atnaujinimo kanalas:", - "The update check is not yet finished. Please refresh the page." : "Atnaujinimų patikrinimas dar neužbaigtas. Prašome įkelti puslapį iš naujo." + "Checked on %s" : "Tikrinta %s" },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/nb.js b/apps/updatenotification/l10n/nb.js index 931079d4780..474a37e3098 100644 --- a/apps/updatenotification/l10n/nb.js +++ b/apps/updatenotification/l10n/nb.js @@ -11,21 +11,21 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Oppdatering for {app} til versjon %s er tilgjengelig.", "Update notification" : "Oppdateringsvarsel", "Open updater" : "Åpne oppdaterer", + "Download now" : "Last ned nå", + "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden.", "Your version is up to date." : "Du har nyeste versjon.", "A non-default update server is in use to be checked for updates:" : "En ikke-forvalgt oppdateringstjener brukes for å se etter oppdateringer:", + "Update channel:" : "Oppdateringskanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid oppdatere til en nyere versjon / eksperimentell kanal. Men du kan aldri nedgradere til en mer stabil kanal.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vær oppmerksom på at etter en ny utgivelse kan det ta noe tid før den vises her. Vi ruller ut nye versjonen spredt utover tid til våre brukere, og av og til hoppes det over en versjon når problemer dukker opp.", "Notify members of the following groups about available updates:" : "Informer medlemmene i følgende grupper om tilgjengelig oppdateringer:", "Only notification for app updates are available." : "Kun varsler for app oppdateringer er tilgjengelig.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte oppdateringskanalen gjør dedikerte varsler til denne tjeneren utdatert.", "The selected update channel does not support updates of the server." : "Den valgte oppdateringskanalen tilbyr ikke oppdateringer av tjeneren.", "A new version is available: <strong>{newVersionString}</strong>" : "En ny versjon er tilgjengelig: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Sist sjekket {lastCheckedDate}", "Could not start updater, please try the manual update" : "Kunne ikke starte oppdateringen, prøv å oppdatere manuelt", "A new version is available: %s" : "En ny versjon er tilgjengelig: %s", - "Download now" : "Last ned nå", - "Checked on %s" : "Sjekket %s", - "Update channel:" : "Oppdateringskanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte oppdateringskanalen gjør dedikerte varsler til denne tjeneren utdatert.", - "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden." + "Checked on %s" : "Sjekket %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/nb.json b/apps/updatenotification/l10n/nb.json index 5a7a9bee33d..75bc1028b6c 100644 --- a/apps/updatenotification/l10n/nb.json +++ b/apps/updatenotification/l10n/nb.json @@ -9,21 +9,21 @@ "Update for {app} to version %s is available." : "Oppdatering for {app} til versjon %s er tilgjengelig.", "Update notification" : "Oppdateringsvarsel", "Open updater" : "Åpne oppdaterer", + "Download now" : "Last ned nå", + "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden.", "Your version is up to date." : "Du har nyeste versjon.", "A non-default update server is in use to be checked for updates:" : "En ikke-forvalgt oppdateringstjener brukes for å se etter oppdateringer:", + "Update channel:" : "Oppdateringskanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid oppdatere til en nyere versjon / eksperimentell kanal. Men du kan aldri nedgradere til en mer stabil kanal.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vær oppmerksom på at etter en ny utgivelse kan det ta noe tid før den vises her. Vi ruller ut nye versjonen spredt utover tid til våre brukere, og av og til hoppes det over en versjon når problemer dukker opp.", "Notify members of the following groups about available updates:" : "Informer medlemmene i følgende grupper om tilgjengelig oppdateringer:", "Only notification for app updates are available." : "Kun varsler for app oppdateringer er tilgjengelig.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte oppdateringskanalen gjør dedikerte varsler til denne tjeneren utdatert.", "The selected update channel does not support updates of the server." : "Den valgte oppdateringskanalen tilbyr ikke oppdateringer av tjeneren.", "A new version is available: <strong>{newVersionString}</strong>" : "En ny versjon er tilgjengelig: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Sist sjekket {lastCheckedDate}", "Could not start updater, please try the manual update" : "Kunne ikke starte oppdateringen, prøv å oppdatere manuelt", "A new version is available: %s" : "En ny versjon er tilgjengelig: %s", - "Download now" : "Last ned nå", - "Checked on %s" : "Sjekket %s", - "Update channel:" : "Oppdateringskanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Den valgte oppdateringskanalen gjør dedikerte varsler til denne tjeneren utdatert.", - "The update check is not yet finished. Please refresh the page." : "Oppdateringssjekken er ikke ferdig, vennligst oppdater siden." + "Checked on %s" : "Sjekket %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/nl.js b/apps/updatenotification/l10n/nl.js index 3f02f216b9d..344f708577a 100644 --- a/apps/updatenotification/l10n/nl.js +++ b/apps/updatenotification/l10n/nl.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Update voor {app} naar versie %s is beschikbaar.", "Update notification" : "Bijwerkmelding", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Toont updatemeldingen voor Nextcloud en zorgt voor SSO voor de updater.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "De versie die je gebruikt, wordt niet langer ondersteund. Zorg ervoor om zo snel mogelijk bij te werken naar een ondersteunde versie.", + "Apps missing updates" : "Apps met ontbrekende updates", + "View in store" : "Bekijk in winkel", "Apps with available updates" : "Apps met beschikbare updates", "Open updater" : "Open updater", + "Download now" : "Download nu", + "What's new?" : "Wat is nieuw?", + "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina.", "Your version is up to date." : "Je versie is up to date.", "A non-default update server is in use to be checked for updates:" : "Een niet-standaard updateserver is in gebruik om te worden gecontroleerd op updates:", + "Update channel:" : "Bijwerkkanaal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Je kunt altijd updaten naar een nieuwere versie of experimenteel kanaal. Maar terug naar een oudere versie of een stabieler kanaal is niet mogelijk.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Houd er rekening mee dat het enige tijd kan duren voordat na een nieuwe versie hier verschijnt. We verspreiden nieuwe versies over de tijd aan onze gebruikers en soms slaan we een versie over als er problemen zijn gevonden.", "Notify members of the following groups about available updates:" : "Geef een melding over beschikbare updates aan leden van de volgende groepen:", "Only notification for app updates are available." : "Er zijn alleen meldingen voor apps beschikbaar.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Het geselecteerde updatekanaal maakt overbodig om serverspecifieke meldingen apart te genereren.", "The selected update channel does not support updates of the server." : "Het geselecteerde updatekanaal ondersteunt geen updates voor de server.", "A new version is available: <strong>{newVersionString}</strong>" : "Er is een nieuwe versie beschikbaar: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Gecontroleerd op {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Zorg ervoor dat je in config.php <samp>appstoreenabled</samp> niet op 'false' zet.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Kan niet verbinden met de appstore of de appstore gaf geen updates terug. Zoek handmatig naar updates of verifieer dat je server internettoegang heeft en kan verbinden met de appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Alle</strong> apps hebben een update voor deze versie beschikbaar", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app heeft geen update voor deze versie beschikbaar","<strong>%n</strong> apps hebben geen update voor deze versie beschikbaar"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>productie</strong> heeft altijd de laatste patches, maar de update naar de volgende grote release nog niet onmiddellijk. Die update gebeurt meestal bij de tweede kleine release (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> is de recentste stabiele versie. Het is geschikt voor regulier gebruik en zal altijd bijwerken naar de laatste grote versie.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>bèta</strong> is een versie om nieuwe functies uit te testen, niet om te gebruiken in een productieomgeving.", "View changelog" : "Bekijk wijzigingenoverzicht", "Could not start updater, please try the manual update" : "Kon de updater niet starten, probeer de handmatige update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app heeft geen update voor deze versie beschikbaar","<strong>%n</strong> apps hebben geen update voor deze versie beschikbaar"], "A new version is available: %s" : "Er is een nieuwe versie beschikbaar: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "De versie die je gebruikt, wordt niet langer ondersteund. Zorg ervoor om zo snel mogelijk bij te werken naar een ondersteunde versie.", - "Download now" : "Download nu", - "Checked on %s" : "Gecontroleerd op %s", - "Update channel:" : "Bijwerkkanaal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Het geselecteerde updatekanaal maakt overbodig om serverspecifieke meldingen apart te genereren.", - "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina." + "Checked on %s" : "Gecontroleerd op %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/nl.json b/apps/updatenotification/l10n/nl.json index e8c803d33f9..df3cec228c4 100644 --- a/apps/updatenotification/l10n/nl.json +++ b/apps/updatenotification/l10n/nl.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "Update voor {app} naar versie %s is beschikbaar.", "Update notification" : "Bijwerkmelding", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Toont updatemeldingen voor Nextcloud en zorgt voor SSO voor de updater.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "De versie die je gebruikt, wordt niet langer ondersteund. Zorg ervoor om zo snel mogelijk bij te werken naar een ondersteunde versie.", + "Apps missing updates" : "Apps met ontbrekende updates", + "View in store" : "Bekijk in winkel", "Apps with available updates" : "Apps met beschikbare updates", "Open updater" : "Open updater", + "Download now" : "Download nu", + "What's new?" : "Wat is nieuw?", + "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina.", "Your version is up to date." : "Je versie is up to date.", "A non-default update server is in use to be checked for updates:" : "Een niet-standaard updateserver is in gebruik om te worden gecontroleerd op updates:", + "Update channel:" : "Bijwerkkanaal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Je kunt altijd updaten naar een nieuwere versie of experimenteel kanaal. Maar terug naar een oudere versie of een stabieler kanaal is niet mogelijk.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Houd er rekening mee dat het enige tijd kan duren voordat na een nieuwe versie hier verschijnt. We verspreiden nieuwe versies over de tijd aan onze gebruikers en soms slaan we een versie over als er problemen zijn gevonden.", "Notify members of the following groups about available updates:" : "Geef een melding over beschikbare updates aan leden van de volgende groepen:", "Only notification for app updates are available." : "Er zijn alleen meldingen voor apps beschikbaar.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Het geselecteerde updatekanaal maakt overbodig om serverspecifieke meldingen apart te genereren.", "The selected update channel does not support updates of the server." : "Het geselecteerde updatekanaal ondersteunt geen updates voor de server.", "A new version is available: <strong>{newVersionString}</strong>" : "Er is een nieuwe versie beschikbaar: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Gecontroleerd op {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Zorg ervoor dat je in config.php <samp>appstoreenabled</samp> niet op 'false' zet.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Kan niet verbinden met de appstore of de appstore gaf geen updates terug. Zoek handmatig naar updates of verifieer dat je server internettoegang heeft en kan verbinden met de appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Alle</strong> apps hebben een update voor deze versie beschikbaar", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app heeft geen update voor deze versie beschikbaar","<strong>%n</strong> apps hebben geen update voor deze versie beschikbaar"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>productie</strong> heeft altijd de laatste patches, maar de update naar de volgende grote release nog niet onmiddellijk. Die update gebeurt meestal bij de tweede kleine release (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>stable</strong> is de recentste stabiele versie. Het is geschikt voor regulier gebruik en zal altijd bijwerken naar de laatste grote versie.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>bèta</strong> is een versie om nieuwe functies uit te testen, niet om te gebruiken in een productieomgeving.", "View changelog" : "Bekijk wijzigingenoverzicht", "Could not start updater, please try the manual update" : "Kon de updater niet starten, probeer de handmatige update", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> app heeft geen update voor deze versie beschikbaar","<strong>%n</strong> apps hebben geen update voor deze versie beschikbaar"], "A new version is available: %s" : "Er is een nieuwe versie beschikbaar: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "De versie die je gebruikt, wordt niet langer ondersteund. Zorg ervoor om zo snel mogelijk bij te werken naar een ondersteunde versie.", - "Download now" : "Download nu", - "Checked on %s" : "Gecontroleerd op %s", - "Update channel:" : "Bijwerkkanaal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Het geselecteerde updatekanaal maakt overbodig om serverspecifieke meldingen apart te genereren.", - "The update check is not yet finished. Please refresh the page." : "De update controle is niet afgerond. Ververs de pagina." + "Checked on %s" : "Gecontroleerd op %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/pl.js b/apps/updatenotification/l10n/pl.js index 0f71e657509..4e3187ed4ef 100644 --- a/apps/updatenotification/l10n/pl.js +++ b/apps/updatenotification/l10n/pl.js @@ -13,12 +13,16 @@ OC.L10N.register( "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Wyświetla powiadomienia o aktualizacji dla usługi NextCloud i udostępnia SSO dla aktualizatora.", "Apps with available updates" : "Dostępne aktualizacje", "Open updater" : "Otwórz aktualizator", + "Download now" : "Pobierz teraz", + "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę.", "Your version is up to date." : "Posiadasz aktualną wersję.", "A non-default update server is in use to be checked for updates:" : "Do sprawdzania aktualizacji nie są używane domyślne serwery aktualizacji:", + "Update channel:" : "Kanał aktualizacji:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Zawsze możesz zaktualizować do nowszej wersji z eksperymentalnego kanału. Ale nigdy nie możesz powrócić do wersji ze stabilnego kanału.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Zauważ, że po opublikowaniu nowej wersji może minąć trochę czasu, zanim pojawi się ona tutaj. Publikację dla naszych użytkowników rozkładamy w czasie, a czasami pomijamy wersję, gdy znajdziemy jakieś błędy.", "Notify members of the following groups about available updates:" : "Powiadom członków następujących grup o dostępnych aktualizacjach: ", "Only notification for app updates are available." : "Tylko powiadomienia o aktualizacjach aplikacji są dostępne.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Wybrany kanał aktualizacji dla dedykowanych powiadomień dla serwera jest nieaktualny.", "The selected update channel does not support updates of the server." : "Wybrany kanał aktualizacji nie obsługuje danego serwera.", "A new version is available: <strong>{newVersionString}</strong>" : "Dostępna jest nowa wersja: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Sprawdzono {lastCheckedDate}", @@ -26,14 +30,10 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Upewnij się, że opcja <samp>appstoreenabled</samp> w Twoim config.php nie jest ustawiona na false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nie można połączyć się z appstore lub całkowicie zgłasza brak aktualizacji. Wyszukaj aktualizacje ręcznie lub upewnij się, że masz dostęp do Internetu i możesz łączyć się z appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Wszystkie</strong> aplikacje mają aktualizację dla tej wersji", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>aplikacja nie ma aktualizacji dla tej wersji","<strong>%n</strong>aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji"], "View changelog" : "Zobacz listę zmian", "Could not start updater, please try the manual update" : "Nie można uruchomić aktualizacji, spróbuj z aktualizować ręcznie", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>aplikacja nie ma aktualizacji dla tej wersji","<strong>%n</strong>aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji"], "A new version is available: %s" : "Dostępna jest nowa wersja: %s", - "Download now" : "Pobierz teraz", - "Checked on %s" : "Sprawdzono: %s", - "Update channel:" : "Kanał aktualizacji:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Wybrany kanał aktualizacji dla dedykowanych powiadomień dla serwera jest nieaktualny.", - "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę." + "Checked on %s" : "Sprawdzono: %s" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/apps/updatenotification/l10n/pl.json b/apps/updatenotification/l10n/pl.json index a6f2cceca2d..2acefadfeff 100644 --- a/apps/updatenotification/l10n/pl.json +++ b/apps/updatenotification/l10n/pl.json @@ -11,12 +11,16 @@ "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Wyświetla powiadomienia o aktualizacji dla usługi NextCloud i udostępnia SSO dla aktualizatora.", "Apps with available updates" : "Dostępne aktualizacje", "Open updater" : "Otwórz aktualizator", + "Download now" : "Pobierz teraz", + "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę.", "Your version is up to date." : "Posiadasz aktualną wersję.", "A non-default update server is in use to be checked for updates:" : "Do sprawdzania aktualizacji nie są używane domyślne serwery aktualizacji:", + "Update channel:" : "Kanał aktualizacji:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Zawsze możesz zaktualizować do nowszej wersji z eksperymentalnego kanału. Ale nigdy nie możesz powrócić do wersji ze stabilnego kanału.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Zauważ, że po opublikowaniu nowej wersji może minąć trochę czasu, zanim pojawi się ona tutaj. Publikację dla naszych użytkowników rozkładamy w czasie, a czasami pomijamy wersję, gdy znajdziemy jakieś błędy.", "Notify members of the following groups about available updates:" : "Powiadom członków następujących grup o dostępnych aktualizacjach: ", "Only notification for app updates are available." : "Tylko powiadomienia o aktualizacjach aplikacji są dostępne.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Wybrany kanał aktualizacji dla dedykowanych powiadomień dla serwera jest nieaktualny.", "The selected update channel does not support updates of the server." : "Wybrany kanał aktualizacji nie obsługuje danego serwera.", "A new version is available: <strong>{newVersionString}</strong>" : "Dostępna jest nowa wersja: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Sprawdzono {lastCheckedDate}", @@ -24,14 +28,10 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Upewnij się, że opcja <samp>appstoreenabled</samp> w Twoim config.php nie jest ustawiona na false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nie można połączyć się z appstore lub całkowicie zgłasza brak aktualizacji. Wyszukaj aktualizacje ręcznie lub upewnij się, że masz dostęp do Internetu i możesz łączyć się z appstore.", "<strong>All</strong> apps have an update for this version available" : "<strong>Wszystkie</strong> aplikacje mają aktualizację dla tej wersji", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>aplikacja nie ma aktualizacji dla tej wersji","<strong>%n</strong>aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji"], "View changelog" : "Zobacz listę zmian", "Could not start updater, please try the manual update" : "Nie można uruchomić aktualizacji, spróbuj z aktualizować ręcznie", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>aplikacja nie ma aktualizacji dla tej wersji","<strong>%n</strong>aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji","<strong>%n</strong> aplikacje nie mają aktualizacji dla tej wersji"], "A new version is available: %s" : "Dostępna jest nowa wersja: %s", - "Download now" : "Pobierz teraz", - "Checked on %s" : "Sprawdzono: %s", - "Update channel:" : "Kanał aktualizacji:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Wybrany kanał aktualizacji dla dedykowanych powiadomień dla serwera jest nieaktualny.", - "The update check is not yet finished. Please refresh the page." : "Sprawdzanie aktualizacji nie zostało jeszcze zakończone. Odśwież stronę." + "Checked on %s" : "Sprawdzono: %s" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/pt_BR.js b/apps/updatenotification/l10n/pt_BR.js index ed937003b67..eeb4bedff7b 100644 --- a/apps/updatenotification/l10n/pt_BR.js +++ b/apps/updatenotification/l10n/pt_BR.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Atualização para {app} para a versão %s está disponível.", "Update notification" : "Notificação de atualização", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Exibe notificações de atualização para o Nextcloud e fornece o SSO para o atualizador.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "A versão que você está executando não é mais mantida. Por favor, atualize para uma versão suportada o mais rápido possível.", + "Apps missing updates" : "Aplicativos faltando atualizações", + "View in store" : "Ver na loja", "Apps with available updates" : "Aplicativos com atualizações disponíveis", "Open updater" : "Abrir atualizador", + "Download now" : "Baixar agora", + "What's new?" : "O que há de novo?", + "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página.", "Your version is up to date." : "Sua versão está atualizada.", "A non-default update server is in use to be checked for updates:" : "Um servidor de atualização não padrão está sendo verificado por atualizações:", + "Update channel:" : "Atualizar para:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Você pode atualizar para uma versão mais nova ou experimental. No entanto, nunca poderá voltar para uma versão estável ou antiga.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Observe que após uma nova versão pode levar um tempo até aparecer aqui. Lançamos novas versões distribuídas ao longo do tempo para nossos usuários e às vezes pulamos uma versão quando problemas são encontrados.", "Notify members of the following groups about available updates:" : "Notificar membros dos seguintes grupos sobre atualizações disponíveis:", "Only notification for app updates are available." : "Só está disponível notificação para atualizações de aplicativos.", + "The selected update channel makes dedicated notifications for the server obsolete." : "A atualização selecionada fornece notificações dedicadas para o servidor desatualizado.", "The selected update channel does not support updates of the server." : "A atualização selecionada não fornece suporte a atualizações do servidor.", "A new version is available: <strong>{newVersionString}</strong>" : "Uma nova versão está disponível: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado em {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Certifique-se de que seu config.php não tenha configurado <samp>appstoreenabled</samp> para falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Não foi possível conectar a appstore ou não havia atualização. Procure manualmente por atualizações ou verifique se o servidor tem acesso à internet.", "<strong>All</strong> apps have an update for this version available" : "<strong>Todos</strong> os aplicativos tem uma atualização disponível", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicativo não tem atualização disponível","<strong>%n</strong> aplicativos tem uma atualização disponível"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>produção</strong> sempre fornecerá o nível de patch mais recente, mas não será atualizada para a próxima versão principal imediatamente. Essa atualização geralmente acontece com o segundo lançamento menor (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>estável</strong> é a versão estável mais recente. É adequado para uso regular e será sempre atualizado para a versão principal mais recente.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> é uma versão de pré-lançamento apenas para testar novos recursos, não para ambientes de produção.", "View changelog" : "Visualizar registro de alterações", "Could not start updater, please try the manual update" : "Não foi possível iniciar o atualizador, tente a atualização manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicativo não tem atualização disponível","<strong>%n</strong> aplicativos tem uma atualização disponível"], "A new version is available: %s" : "Uma nova versão está disponível: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "A versão que você está executando não é mais mantida. Por favor, atualize para uma versão suportada o mais rápido possível.", - "Download now" : "Baixar agora", - "Checked on %s" : "Verificada em %s", - "Update channel:" : "Atualizar para:", - "The selected update channel makes dedicated notifications for the server obsolete." : "A atualização selecionada fornece notificações dedicadas para o servidor desatualizado.", - "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página." + "Checked on %s" : "Verificada em %s" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/updatenotification/l10n/pt_BR.json b/apps/updatenotification/l10n/pt_BR.json index 1830da5fee3..3aa187b2883 100644 --- a/apps/updatenotification/l10n/pt_BR.json +++ b/apps/updatenotification/l10n/pt_BR.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "Atualização para {app} para a versão %s está disponível.", "Update notification" : "Notificação de atualização", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Exibe notificações de atualização para o Nextcloud e fornece o SSO para o atualizador.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "A versão que você está executando não é mais mantida. Por favor, atualize para uma versão suportada o mais rápido possível.", + "Apps missing updates" : "Aplicativos faltando atualizações", + "View in store" : "Ver na loja", "Apps with available updates" : "Aplicativos com atualizações disponíveis", "Open updater" : "Abrir atualizador", + "Download now" : "Baixar agora", + "What's new?" : "O que há de novo?", + "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página.", "Your version is up to date." : "Sua versão está atualizada.", "A non-default update server is in use to be checked for updates:" : "Um servidor de atualização não padrão está sendo verificado por atualizações:", + "Update channel:" : "Atualizar para:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Você pode atualizar para uma versão mais nova ou experimental. No entanto, nunca poderá voltar para uma versão estável ou antiga.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Observe que após uma nova versão pode levar um tempo até aparecer aqui. Lançamos novas versões distribuídas ao longo do tempo para nossos usuários e às vezes pulamos uma versão quando problemas são encontrados.", "Notify members of the following groups about available updates:" : "Notificar membros dos seguintes grupos sobre atualizações disponíveis:", "Only notification for app updates are available." : "Só está disponível notificação para atualizações de aplicativos.", + "The selected update channel makes dedicated notifications for the server obsolete." : "A atualização selecionada fornece notificações dedicadas para o servidor desatualizado.", "The selected update channel does not support updates of the server." : "A atualização selecionada não fornece suporte a atualizações do servidor.", "A new version is available: <strong>{newVersionString}</strong>" : "Uma nova versão está disponível: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Verificado em {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Certifique-se de que seu config.php não tenha configurado <samp>appstoreenabled</samp> para falso.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Não foi possível conectar a appstore ou não havia atualização. Procure manualmente por atualizações ou verifique se o servidor tem acesso à internet.", "<strong>All</strong> apps have an update for this version available" : "<strong>Todos</strong> os aplicativos tem uma atualização disponível", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicativo não tem atualização disponível","<strong>%n</strong> aplicativos tem uma atualização disponível"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>produção</strong> sempre fornecerá o nível de patch mais recente, mas não será atualizada para a próxima versão principal imediatamente. Essa atualização geralmente acontece com o segundo lançamento menor (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>estável</strong> é a versão estável mais recente. É adequado para uso regular e será sempre atualizado para a versão principal mais recente.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> é uma versão de pré-lançamento apenas para testar novos recursos, não para ambientes de produção.", "View changelog" : "Visualizar registro de alterações", "Could not start updater, please try the manual update" : "Não foi possível iniciar o atualizador, tente a atualização manual", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplicativo não tem atualização disponível","<strong>%n</strong> aplicativos tem uma atualização disponível"], "A new version is available: %s" : "Uma nova versão está disponível: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "A versão que você está executando não é mais mantida. Por favor, atualize para uma versão suportada o mais rápido possível.", - "Download now" : "Baixar agora", - "Checked on %s" : "Verificada em %s", - "Update channel:" : "Atualizar para:", - "The selected update channel makes dedicated notifications for the server obsolete." : "A atualização selecionada fornece notificações dedicadas para o servidor desatualizado.", - "The update check is not yet finished. Please refresh the page." : "A verificação de atualização ainda não acabou. Atualize a página." + "Checked on %s" : "Verificada em %s" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/ru.js b/apps/updatenotification/l10n/ru.js index 3d17a472d50..75600c37943 100644 --- a/apps/updatenotification/l10n/ru.js +++ b/apps/updatenotification/l10n/ru.js @@ -11,14 +11,19 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Для приложения «{app}» доступно обновление до версии %s.", "Update notification" : "Уведомление о новой версии", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Показывает уведомления об обновлениях для Nextcloud и обеспечивает систему обновления технологией единого входа (SSO).", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Версия, которой вы пользуетесь, больше не обслуживается. Пожалуйста, обновитесь до поддерживаемой версии как можно скорее.", "Apps with available updates" : "Приложения с доступными обновлениями", "Open updater" : "Открыть окно обновления", + "Download now" : "Скачать сейчас", + "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу.", "Your version is up to date." : "Версия не требует обновления.", "A non-default update server is in use to be checked for updates:" : "Не сервер по умолчанию используется как сервер для проверки обновлений:", + "Update channel:" : "Канал обновлений:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Вы всегда можете переключиться на экспериментальный канал обновлений для получения новейших версий. Но учтите, что вы не сможете переключиться обратно на канал обновлений для стабильных версий.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Обратите внимание, что с момента выпуска новой версии до её появления здесь может пройти некоторое время. Мы растягиваем во времени распространение новых версий и иногда, при обнаружении проблем, пропускаем версию.", "Notify members of the following groups about available updates:" : "Уведомить членов следующих групп о наличии доступных обновлений:", "Only notification for app updates are available." : "Только уведомления об обновлении приложений доступны.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Выбранный канал обновлений высылает специальные уведомления, если сервер устарел.", "The selected update channel does not support updates of the server." : "Выбранный канал обновлений не поддерживает обновление сервера.", "A new version is available: <strong>{newVersionString}</strong>" : "Доступна новая версия: <strong>{newVersionString}</strong> ", "Checked on {lastCheckedDate}" : "Проверялось {lastCheckedDate}", @@ -26,18 +31,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Убедитесь, что значением параметра <samp>appstoreenabled</samp> в файле «config.php» не является «false».", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не удалось установить соединение с магазином приложений, либо магазин приложений не предоставляет информации об обновлениях. Выполните поиск обновлений вручную, или убедитесь, что сервер имеет подключение к Интернет и магазин приложений доступен.", "<strong>All</strong> apps have an update for this version available" : "<strong>Все</strong> приложения имеют доступные обновления для этой версии", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> приложение не имеет доступного обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>промышленная</strong> всегда обеспечит последний уровень патча, но не будет сразу обновляться на следующий глобальный уровень. Такое обновление обычно происходит со вторым минорным выпуском (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>стабильная</strong> - самая последняя стабильная версия. Она подходит для регулярного использования и всегда будет обновляться до последней крупной версии.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> это пред-релизная версия только для тестирования новых возможностей, не для промышленной эксплуатации.", "View changelog" : "Смотреть изменения", "Could not start updater, please try the manual update" : "Не удалось обновить. Выполните обновление вручную.", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> приложение не имеет доступного обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии"], "A new version is available: %s" : "Доступна новая версия: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Версия, которой вы пользуетесь, больше не обслуживается. Пожалуйста, обновитесь до поддерживаемой версии как можно скорее.", - "Download now" : "Скачать сейчас", - "Checked on %s" : "Проверено %s", - "Update channel:" : "Канал обновлений:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Выбранный канал обновлений высылает специальные уведомления, если сервер устарел.", - "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу." + "Checked on %s" : "Проверено %s" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/apps/updatenotification/l10n/ru.json b/apps/updatenotification/l10n/ru.json index cb1cf80a563..9b9eb85ad60 100644 --- a/apps/updatenotification/l10n/ru.json +++ b/apps/updatenotification/l10n/ru.json @@ -9,14 +9,19 @@ "Update for {app} to version %s is available." : "Для приложения «{app}» доступно обновление до версии %s.", "Update notification" : "Уведомление о новой версии", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Показывает уведомления об обновлениях для Nextcloud и обеспечивает систему обновления технологией единого входа (SSO).", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Версия, которой вы пользуетесь, больше не обслуживается. Пожалуйста, обновитесь до поддерживаемой версии как можно скорее.", "Apps with available updates" : "Приложения с доступными обновлениями", "Open updater" : "Открыть окно обновления", + "Download now" : "Скачать сейчас", + "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу.", "Your version is up to date." : "Версия не требует обновления.", "A non-default update server is in use to be checked for updates:" : "Не сервер по умолчанию используется как сервер для проверки обновлений:", + "Update channel:" : "Канал обновлений:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Вы всегда можете переключиться на экспериментальный канал обновлений для получения новейших версий. Но учтите, что вы не сможете переключиться обратно на канал обновлений для стабильных версий.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Обратите внимание, что с момента выпуска новой версии до её появления здесь может пройти некоторое время. Мы растягиваем во времени распространение новых версий и иногда, при обнаружении проблем, пропускаем версию.", "Notify members of the following groups about available updates:" : "Уведомить членов следующих групп о наличии доступных обновлений:", "Only notification for app updates are available." : "Только уведомления об обновлении приложений доступны.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Выбранный канал обновлений высылает специальные уведомления, если сервер устарел.", "The selected update channel does not support updates of the server." : "Выбранный канал обновлений не поддерживает обновление сервера.", "A new version is available: <strong>{newVersionString}</strong>" : "Доступна новая версия: <strong>{newVersionString}</strong> ", "Checked on {lastCheckedDate}" : "Проверялось {lastCheckedDate}", @@ -24,18 +29,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Убедитесь, что значением параметра <samp>appstoreenabled</samp> в файле «config.php» не является «false».", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не удалось установить соединение с магазином приложений, либо магазин приложений не предоставляет информации об обновлениях. Выполните поиск обновлений вручную, или убедитесь, что сервер имеет подключение к Интернет и магазин приложений доступен.", "<strong>All</strong> apps have an update for this version available" : "<strong>Все</strong> приложения имеют доступные обновления для этой версии", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> приложение не имеет доступного обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>промышленная</strong> всегда обеспечит последний уровень патча, но не будет сразу обновляться на следующий глобальный уровень. Такое обновление обычно происходит со вторым минорным выпуском (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>стабильная</strong> - самая последняя стабильная версия. Она подходит для регулярного использования и всегда будет обновляться до последней крупной версии.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong> это пред-релизная версия только для тестирования новых возможностей, не для промышленной эксплуатации.", "View changelog" : "Смотреть изменения", "Could not start updater, please try the manual update" : "Не удалось обновить. Выполните обновление вручную.", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> приложение не имеет доступного обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии","<strong>%n</strong> приложений не имеют доступные обновления для этой версии"], "A new version is available: %s" : "Доступна новая версия: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Версия, которой вы пользуетесь, больше не обслуживается. Пожалуйста, обновитесь до поддерживаемой версии как можно скорее.", - "Download now" : "Скачать сейчас", - "Checked on %s" : "Проверено %s", - "Update channel:" : "Канал обновлений:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Выбранный канал обновлений высылает специальные уведомления, если сервер устарел.", - "The update check is not yet finished. Please refresh the page." : "Проверка обновлений ещё не закончена. Пожалуйста обновите страницу." + "Checked on %s" : "Проверено %s" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/sk.js b/apps/updatenotification/l10n/sk.js index 971e7aae2b0..dfb52252096 100644 --- a/apps/updatenotification/l10n/sk.js +++ b/apps/updatenotification/l10n/sk.js @@ -10,14 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Pre %1$s je dostupná aktualizácia na verziu %2$s.", "Update for {app} to version %s is available." : "Pre {app} je dostupná aktualizácia na verziu %s.", "Update notification" : "Aktualizovať hlásenie", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verzia, ktorú používate už nie je podporovaná. Čím skôr aktualizujte na podporovanú verziu prosím.", "Apps with available updates" : "Aplikácie pre ktoré sú dostupné aktualizácie", "Open updater" : "Otvoriť aktualizátor", + "Download now" : "Stiahnuť teraz", + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku.", "Your version is up to date." : "Vaša verzia je atuálna.", "A non-default update server is in use to be checked for updates:" : "Pre kontrolu aktualizácií sa používa iný než predvolený server:", + "Update channel:" : "Aktualizačný kanál:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy je možné prejsť na novšiu verziu / experimentálny kanál. Ale následne nie je možné prejsť naspäť na staršiu verziu / stabilnejší kanál.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Upozorňujeme, že po oficiálnom vydaní novej verzie môže chvíľu trvať, než sa tu objaví. Nové verzie medzi našich používateľov distribuujeme priebežne rozložené v čase a ak sa nájdu chyby, niekedy danú verziu preskočíme.", "Notify members of the following groups about available updates:" : "Upozorňovať členov nasledujúcich skupín o dostupných aktualizáciach:", "Only notification for app updates are available." : "Sú dostupné upozornenia iba pre aktualizácie aplikácií.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Pre vybraný aktualizačný kanál budú priradené upozornenia pre server zastarané.", "The selected update channel does not support updates of the server." : "Vybraný aktualizačný kanál nepodporuje aktualizácie servera.", "A new version is available: <strong>{newVersionString}</strong>" : "Je dostupná nová verzia: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Skontrolované {lastCheckedDate}", @@ -25,15 +30,10 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Prosím uistite sa, že Váš config.php nemá nastavené <samp>appstoreenabled</samp>na false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nepodarilo sa pripojiť k obchodu s aplikáciami alebo obchod nemá žiadne aktualizácie. Aktualizácie hľadajte manuálne alebo sa uistite, že Váš server má prístup na internet a že sa môže pripojiť k obchodu.", "<strong>All</strong> apps have an update for this version available" : "<strong>Všetky</strong> aplikácie majú dostupnú aktualizáciu", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikácia nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong> aplikácie nemá dostupnú aktualizáciu na túto verziu ","<strong>%n</strong> aplikácií nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong>aplikácií nemá dostupnú aktualizáciu na túto verziu"], "View changelog" : "Zobraziť súhrn zmien", "Could not start updater, please try the manual update" : "Nebolo možné spustiť aktualizátor, skúste prosím manuálnu aktualizáciu", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikácia nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong> aplikácie nemá dostupnú aktualizáciu na túto verziu ","<strong>%n</strong> aplikácií nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong>aplikácií nemá dostupnú aktualizáciu na túto verziu"], "A new version is available: %s" : "Je dostupná nová verzia: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verzia, ktorú používate už nie je podporovaná. Čím skôr aktualizujte na podporovanú verziu prosím.", - "Download now" : "Stiahnuť teraz", - "Checked on %s" : "Skontrolované %s", - "Update channel:" : "Aktualizačný kanál:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Pre vybraný aktualizačný kanál budú priradené upozornenia pre server zastarané.", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku." + "Checked on %s" : "Skontrolované %s" }, "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/apps/updatenotification/l10n/sk.json b/apps/updatenotification/l10n/sk.json index 85307e89062..f26408152f0 100644 --- a/apps/updatenotification/l10n/sk.json +++ b/apps/updatenotification/l10n/sk.json @@ -8,14 +8,19 @@ "Update for %1$s to version %2$s is available." : "Pre %1$s je dostupná aktualizácia na verziu %2$s.", "Update for {app} to version %s is available." : "Pre {app} je dostupná aktualizácia na verziu %s.", "Update notification" : "Aktualizovať hlásenie", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verzia, ktorú používate už nie je podporovaná. Čím skôr aktualizujte na podporovanú verziu prosím.", "Apps with available updates" : "Aplikácie pre ktoré sú dostupné aktualizácie", "Open updater" : "Otvoriť aktualizátor", + "Download now" : "Stiahnuť teraz", + "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku.", "Your version is up to date." : "Vaša verzia je atuálna.", "A non-default update server is in use to be checked for updates:" : "Pre kontrolu aktualizácií sa používa iný než predvolený server:", + "Update channel:" : "Aktualizačný kanál:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Vždy je možné prejsť na novšiu verziu / experimentálny kanál. Ale následne nie je možné prejsť naspäť na staršiu verziu / stabilnejší kanál.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Upozorňujeme, že po oficiálnom vydaní novej verzie môže chvíľu trvať, než sa tu objaví. Nové verzie medzi našich používateľov distribuujeme priebežne rozložené v čase a ak sa nájdu chyby, niekedy danú verziu preskočíme.", "Notify members of the following groups about available updates:" : "Upozorňovať členov nasledujúcich skupín o dostupných aktualizáciach:", "Only notification for app updates are available." : "Sú dostupné upozornenia iba pre aktualizácie aplikácií.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Pre vybraný aktualizačný kanál budú priradené upozornenia pre server zastarané.", "The selected update channel does not support updates of the server." : "Vybraný aktualizačný kanál nepodporuje aktualizácie servera.", "A new version is available: <strong>{newVersionString}</strong>" : "Je dostupná nová verzia: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Skontrolované {lastCheckedDate}", @@ -23,15 +28,10 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Prosím uistite sa, že Váš config.php nemá nastavené <samp>appstoreenabled</samp>na false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Nepodarilo sa pripojiť k obchodu s aplikáciami alebo obchod nemá žiadne aktualizácie. Aktualizácie hľadajte manuálne alebo sa uistite, že Váš server má prístup na internet a že sa môže pripojiť k obchodu.", "<strong>All</strong> apps have an update for this version available" : "<strong>Všetky</strong> aplikácie majú dostupnú aktualizáciu", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikácia nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong> aplikácie nemá dostupnú aktualizáciu na túto verziu ","<strong>%n</strong> aplikácií nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong>aplikácií nemá dostupnú aktualizáciu na túto verziu"], "View changelog" : "Zobraziť súhrn zmien", "Could not start updater, please try the manual update" : "Nebolo možné spustiť aktualizátor, skúste prosím manuálnu aktualizáciu", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> aplikácia nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong> aplikácie nemá dostupnú aktualizáciu na túto verziu ","<strong>%n</strong> aplikácií nemá dostupnú aktualizáciu na túto verziu","<strong>%n</strong>aplikácií nemá dostupnú aktualizáciu na túto verziu"], "A new version is available: %s" : "Je dostupná nová verzia: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Verzia, ktorú používate už nie je podporovaná. Čím skôr aktualizujte na podporovanú verziu prosím.", - "Download now" : "Stiahnuť teraz", - "Checked on %s" : "Skontrolované %s", - "Update channel:" : "Aktualizačný kanál:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Pre vybraný aktualizačný kanál budú priradené upozornenia pre server zastarané.", - "The update check is not yet finished. Please refresh the page." : "Kontrola aktualizácií ešte neskončila. Obnovte prosím stránku." + "Checked on %s" : "Skontrolované %s" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/sq.js b/apps/updatenotification/l10n/sq.js index 06955d2b491..19e44ea99b4 100644 --- a/apps/updatenotification/l10n/sq.js +++ b/apps/updatenotification/l10n/sq.js @@ -10,17 +10,17 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "Është gati përditësimi për %1$s në version %2$s.", "Update for {app} to version %s is available." : "Përditësimi për {app} në versionin %s është në dispozicion", "Open updater" : "Hape përditësuesin", + "Download now" : "Shkarko tani", "Your version is up to date." : "Versioni juaj është i përditësuar.", + "Update channel:" : "Kanal përditësimesh:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mundeni përherë ta përditësoni me një version të ri / kanal eksperimental. Por nuk mund ta ulni kurrë versionin në një version më të qëndrueshëm.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vini re se pas një lëshimi të ri mund të duhet pak kohë para se të shfaqet këtu. Ne hapim versione të reja të shpërndara me kalimin e kohës tek përdoruesit tanë dhe nganjëherë kalojmë një version kur gjenden çështjet.", "Notify members of the following groups about available updates:" : "Njoftoji anëtarët e grupeve vijues për përditësime të gatshme:", "Only notification for app updates are available." : "Vetëm njoftime për përditësime aplikacionesh janë të disponueshme.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme.", "The selected update channel does not support updates of the server." : "Kanali i zgjdhur i përditësimit nuk mbështet përditësime të shvrbyesit.", "Could not start updater, please try the manual update" : "Nuk mundi të filloj përditësuesi, ju lutemi të provoni përditësimin manual", "A new version is available: %s" : "Ka gati një version të ri: %s", - "Download now" : "Shkarko tani", - "Checked on %s" : "Kontrolluar më %s", - "Update channel:" : "Kanal përditësimesh:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme." + "Checked on %s" : "Kontrolluar më %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/sq.json b/apps/updatenotification/l10n/sq.json index def3785747d..b7309a1bdda 100644 --- a/apps/updatenotification/l10n/sq.json +++ b/apps/updatenotification/l10n/sq.json @@ -8,17 +8,17 @@ "Update for %1$s to version %2$s is available." : "Është gati përditësimi për %1$s në version %2$s.", "Update for {app} to version %s is available." : "Përditësimi për {app} në versionin %s është në dispozicion", "Open updater" : "Hape përditësuesin", + "Download now" : "Shkarko tani", "Your version is up to date." : "Versioni juaj është i përditësuar.", + "Update channel:" : "Kanal përditësimesh:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Mundeni përherë ta përditësoni me një version të ri / kanal eksperimental. Por nuk mund ta ulni kurrë versionin në një version më të qëndrueshëm.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Vini re se pas një lëshimi të ri mund të duhet pak kohë para se të shfaqet këtu. Ne hapim versione të reja të shpërndara me kalimin e kohës tek përdoruesit tanë dhe nganjëherë kalojmë një version kur gjenden çështjet.", "Notify members of the following groups about available updates:" : "Njoftoji anëtarët e grupeve vijues për përditësime të gatshme:", "Only notification for app updates are available." : "Vetëm njoftime për përditësime aplikacionesh janë të disponueshme.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme.", "The selected update channel does not support updates of the server." : "Kanali i zgjdhur i përditësimit nuk mbështet përditësime të shvrbyesit.", "Could not start updater, please try the manual update" : "Nuk mundi të filloj përditësuesi, ju lutemi të provoni përditësimin manual", "A new version is available: %s" : "Ka gati një version të ri: %s", - "Download now" : "Shkarko tani", - "Checked on %s" : "Kontrolluar më %s", - "Update channel:" : "Kanal përditësimesh:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Kanali i zgjedhur i përditësimit i bën njoftimet për shërbyesin të papërdorshme." + "Checked on %s" : "Kontrolluar më %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/sr.js b/apps/updatenotification/l10n/sr.js index d653a35aaf3..c4b1ba510e1 100644 --- a/apps/updatenotification/l10n/sr.js +++ b/apps/updatenotification/l10n/sr.js @@ -11,14 +11,19 @@ OC.L10N.register( "Update for {app} to version %s is available." : "Доступно је ажурирање апликације {app} на верзију %s.", "Update notification" : "Обавештење о ажурирању", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Приказује обавештавања о ажурирањима за Некстклауд и омогућава јединствену пријаву за програм ажурирања.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Верзија коју тренутно користите се више не одржава. Постарајте се да ажурирате инсталацију на неку подржану верзију што је пре могуће.", "Apps with available updates" : "Апликације са доступним ажурирањима", "Open updater" : "Отвори програм за ажурирање", + "Download now" : "Скини сада", + "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну.", "Your version is up to date." : "Ваша верзија је ажурна.", "A non-default update server is in use to be checked for updates:" : "Неподразумевани сервер за ажурирање је коришћен да провери нове верзије:", + "Update channel:" : "Канал за ажурирање:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Увек можете да надоградите на новију верзију/експериментални канал. Али не можете се вратити на стабилни канал.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "После издавања нове верзије, може да прође неко време пре него што се верзија појави овде. Ми избацујемо нове верзије постепено и можемо некад да прескочимо верзију ако наиђемо на проблеме.", "Notify members of the following groups about available updates:" : "Обавести чланове следећих група о доступности нових верзија:", "Only notification for app updates are available." : "Доступна су само обавештења о новим верзијама апликација.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Уз означени канал за ажурирање нема смисла да имате обавештења о новим верзијама.", "The selected update channel does not support updates of the server." : "Означени канал за ажурирање не подржава обавештења о новим верзијама.", "A new version is available: <strong>{newVersionString}</strong>" : "Доступна је нова верзија: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Проверено {lastCheckedDate}", @@ -26,18 +31,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Проверите да у config.php фајлу немате <samp>appstoreenabled</samp> постављено на „false“.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не могу да се повежем на продавницу апликација или продавница нема ниједно ажурирање. Претражите ручно ажурирања или проверите да ли сервер има везу са интернетом", "<strong>All</strong> apps have an update for this version available" : "<strong>Све</strong> апликације имају доступна ажурирања за ову верзију", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> апликација имају доступна ажурирања за ову верзију","<strong>%n</strong> апликације имају доступна ажурирања за ову верзију","<strong>%n</strong> апликација имају доступна ажурирања за ову верзију"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>радна</strong> ће увек давати последњи ниво закрпа али неће се одмах ажурирати на следеће главно издање. То ажурирање се углавном обавља по изласку другог мањег издања (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>стабилна</strong> је најновија стабилна верзија. Прикладна за свакодневну употребу и увек се ажурира на најновију главну верзију.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>бета</strong> је пред-издање и служи само за тестирање нових могућности, не за свакодневни рад.", "View changelog" : "Погледајте дневник измена", "Could not start updater, please try the manual update" : "Не могу да покренем програм за ажурирање, покушајте ручно ажурирање", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> апликација имају доступна ажурирања за ову верзију","<strong>%n</strong> апликације имају доступна ажурирања за ову верзију","<strong>%n</strong> апликација имају доступна ажурирања за ову верзију"], "A new version is available: %s" : "Доступна је нова верзија: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Верзија коју тренутно користите се више не одржава. Постарајте се да ажурирате инсталацију на неку подржану верзију што је пре могуће.", - "Download now" : "Скини сада", - "Checked on %s" : "Проверено %s", - "Update channel:" : "Канал за ажурирање:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Уз означени канал за ажурирање нема смисла да имате обавештења о новим верзијама.", - "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну." + "Checked on %s" : "Проверено %s" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/apps/updatenotification/l10n/sr.json b/apps/updatenotification/l10n/sr.json index ebd88304346..83c0d7a8cce 100644 --- a/apps/updatenotification/l10n/sr.json +++ b/apps/updatenotification/l10n/sr.json @@ -9,14 +9,19 @@ "Update for {app} to version %s is available." : "Доступно је ажурирање апликације {app} на верзију %s.", "Update notification" : "Обавештење о ажурирању", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Приказује обавештавања о ажурирањима за Некстклауд и омогућава јединствену пријаву за програм ажурирања.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Верзија коју тренутно користите се више не одржава. Постарајте се да ажурирате инсталацију на неку подржану верзију што је пре могуће.", "Apps with available updates" : "Апликације са доступним ажурирањима", "Open updater" : "Отвори програм за ажурирање", + "Download now" : "Скини сада", + "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну.", "Your version is up to date." : "Ваша верзија је ажурна.", "A non-default update server is in use to be checked for updates:" : "Неподразумевани сервер за ажурирање је коришћен да провери нове верзије:", + "Update channel:" : "Канал за ажурирање:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Увек можете да надоградите на новију верзију/експериментални канал. Али не можете се вратити на стабилни канал.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "После издавања нове верзије, може да прође неко време пре него што се верзија појави овде. Ми избацујемо нове верзије постепено и можемо некад да прескочимо верзију ако наиђемо на проблеме.", "Notify members of the following groups about available updates:" : "Обавести чланове следећих група о доступности нових верзија:", "Only notification for app updates are available." : "Доступна су само обавештења о новим верзијама апликација.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Уз означени канал за ажурирање нема смисла да имате обавештења о новим верзијама.", "The selected update channel does not support updates of the server." : "Означени канал за ажурирање не подржава обавештења о новим верзијама.", "A new version is available: <strong>{newVersionString}</strong>" : "Доступна је нова верзија: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Проверено {lastCheckedDate}", @@ -24,18 +29,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Проверите да у config.php фајлу немате <samp>appstoreenabled</samp> постављено на „false“.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Не могу да се повежем на продавницу апликација или продавница нема ниједно ажурирање. Претражите ручно ажурирања или проверите да ли сервер има везу са интернетом", "<strong>All</strong> apps have an update for this version available" : "<strong>Све</strong> апликације имају доступна ажурирања за ову верзију", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> апликација имају доступна ажурирања за ову верзију","<strong>%n</strong> апликације имају доступна ажурирања за ову верзију","<strong>%n</strong> апликација имају доступна ажурирања за ову верзију"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>радна</strong> ће увек давати последњи ниво закрпа али неће се одмах ажурирати на следеће главно издање. То ажурирање се углавном обавља по изласку другог мањег издања (x.0.2).", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>стабилна</strong> је најновија стабилна верзија. Прикладна за свакодневну употребу и увек се ажурира на најновију главну верзију.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>бета</strong> је пред-издање и служи само за тестирање нових могућности, не за свакодневни рад.", "View changelog" : "Погледајте дневник измена", "Could not start updater, please try the manual update" : "Не могу да покренем програм за ажурирање, покушајте ручно ажурирање", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> апликација имају доступна ажурирања за ову верзију","<strong>%n</strong> апликације имају доступна ажурирања за ову верзију","<strong>%n</strong> апликација имају доступна ажурирања за ову верзију"], "A new version is available: %s" : "Доступна је нова верзија: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Верзија коју тренутно користите се више не одржава. Постарајте се да ажурирате инсталацију на неку подржану верзију што је пре могуће.", - "Download now" : "Скини сада", - "Checked on %s" : "Проверено %s", - "Update channel:" : "Канал за ажурирање:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Уз означени канал за ажурирање нема смисла да имате обавештења о новим верзијама.", - "The update check is not yet finished. Please refresh the page." : "Провера за новим верзијама још није готова. Освежите страну." + "Checked on %s" : "Проверено %s" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/sv.js b/apps/updatenotification/l10n/sv.js index 8b16949f0bf..7342f116928 100644 --- a/apps/updatenotification/l10n/sv.js +++ b/apps/updatenotification/l10n/sv.js @@ -12,19 +12,19 @@ OC.L10N.register( "Update notification" : "Uppdatera notifikation", "Apps with available updates" : "Appar med tillgängliga uppdateringar", "Open updater" : "Öppna uppdateraren", + "Download now" : "Ladda ned nu", + "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan.", "Your version is up to date." : "Din version är uppdaterad.", "A non-default update server is in use to be checked for updates:" : "En icke-standard updateringsserver används för att kolla efter uppdateringar:", + "Update channel:" : "Uppdateringskanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid uppdatera till en nyare version / experimentell kanal. Men du kan aldrig nedgradera till en mer stabil kanal.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Notera att när en ny version släppts kan det ta lite tid innan den dyker upp här. Vi rullar ut nya versioner till våra användare vid utspridda tillfällen och hoppar ibland över versioner när problem hittas.", "Notify members of the following groups about available updates:" : "Notifiera medlemmar i följande grupper om tillgängliga uppdateraingar:", "Only notification for app updates are available." : "Endast notifikation för app-uppdateringar är tillgängliga.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Den valda uppdateringskanalen gör dedikerade notiser för servern förlegade.", "The selected update channel does not support updates of the server." : "Den valda uppdateringskanalen stödjer inte uppdateringar för servern.", "Could not start updater, please try the manual update" : "Kunde inte starta uppdateraren, vänligen försök uppdatera manuellt", "A new version is available: %s" : "En ny version är tillgänglig: %s", - "Download now" : "Ladda ned nu", - "Checked on %s" : "Senast kontrollerad %s", - "Update channel:" : "Uppdateringskanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Den valda uppdateringskanalen gör dedikerade notiser för servern förlegade.", - "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan." + "Checked on %s" : "Senast kontrollerad %s" }, "nplurals=2; plural=(n != 1);"); diff --git a/apps/updatenotification/l10n/sv.json b/apps/updatenotification/l10n/sv.json index a604a582ff3..9690daaced6 100644 --- a/apps/updatenotification/l10n/sv.json +++ b/apps/updatenotification/l10n/sv.json @@ -10,19 +10,19 @@ "Update notification" : "Uppdatera notifikation", "Apps with available updates" : "Appar med tillgängliga uppdateringar", "Open updater" : "Öppna uppdateraren", + "Download now" : "Ladda ned nu", + "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan.", "Your version is up to date." : "Din version är uppdaterad.", "A non-default update server is in use to be checked for updates:" : "En icke-standard updateringsserver används för att kolla efter uppdateringar:", + "Update channel:" : "Uppdateringskanal:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "Du kan alltid uppdatera till en nyare version / experimentell kanal. Men du kan aldrig nedgradera till en mer stabil kanal.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Notera att när en ny version släppts kan det ta lite tid innan den dyker upp här. Vi rullar ut nya versioner till våra användare vid utspridda tillfällen och hoppar ibland över versioner när problem hittas.", "Notify members of the following groups about available updates:" : "Notifiera medlemmar i följande grupper om tillgängliga uppdateraingar:", "Only notification for app updates are available." : "Endast notifikation för app-uppdateringar är tillgängliga.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Den valda uppdateringskanalen gör dedikerade notiser för servern förlegade.", "The selected update channel does not support updates of the server." : "Den valda uppdateringskanalen stödjer inte uppdateringar för servern.", "Could not start updater, please try the manual update" : "Kunde inte starta uppdateraren, vänligen försök uppdatera manuellt", "A new version is available: %s" : "En ny version är tillgänglig: %s", - "Download now" : "Ladda ned nu", - "Checked on %s" : "Senast kontrollerad %s", - "Update channel:" : "Uppdateringskanal:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Den valda uppdateringskanalen gör dedikerade notiser för servern förlegade.", - "The update check is not yet finished. Please refresh the page." : "Uppdateringskontrollen är inte färdig ännu. Var god uppdatera sidan." + "Checked on %s" : "Senast kontrollerad %s" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/tr.js b/apps/updatenotification/l10n/tr.js index 40558d3a7c0..ccb57b29bae 100644 --- a/apps/updatenotification/l10n/tr.js +++ b/apps/updatenotification/l10n/tr.js @@ -11,14 +11,22 @@ OC.L10N.register( "Update for {app} to version %s is available." : "{app} uygulaması için %s sürümü güncellemesi yayınlanmış.", "Update notification" : "Güncelleme bildirimi", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Nextcloud güncelleme bildirimlerini görüntüler ve güncelleyici için Tek Oturum Açma (SSO) bilgilerini sağlar.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Kullanmakta olduğunuz sürüm artık desteklenmiyor. Lütfen en kısa sürede desteklenen bir sürüme güncellemeyi ihmal etmeyin.", + "Apps missing updates" : "Güncellemesi eksik uygulamalar", + "View in store" : "Mağazada görüntüle", "Apps with available updates" : "Güncellenebilecek uygulamalar", "Open updater" : "Güncelleyici aç", + "Download now" : "İndir", + "What's new?" : "Yenilikler neler?", + "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin.", "Your version is up to date." : "Sürümünüz güncel.", "A non-default update server is in use to be checked for updates:" : "Güncelleme denetimi için varsayılan sunucudan başka bir sunucu kullanılıyor:", + "Update channel:" : "Güncelleme kanalı:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "İstediğiniz zaman yeni / deneysel bir güncelleme kanalına geçebilirsiniz. Daha kararlı bir kanala geri dönemezsiniz.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Yeni bir sürümün yayınlanmasından sonra burada görüntülenmesinin biraz zaman alabileceğini unutmayın. Yeni sürümleri kullanıcılarımıza zamanla dağıtıyoruz ve bazen sorunlarla karşılaştığımızda bir sürümü atlayabiliyoruz.", "Notify members of the following groups about available updates:" : "Yayınlanan güncellemeler şu grupların üyelerine bildirilsin:", "Only notification for app updates are available." : "Yalnız uygulama güncellemeleri kullanılabilir.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Seçilmiş güncelleme kanalı kullanımdan kalkmış sunucu bildirimleri için kullanılıyor.", "The selected update channel does not support updates of the server." : "Seçilmiş güncelleme kanalı sunucunun güncellemelerini desteklemiyor.", "A new version is available: <strong>{newVersionString}</strong>" : "Yeni bir sürüm yayınlanmış: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Son denetim: {lastCheckedDate}", @@ -26,18 +34,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Lütfen config.php dosyasındaki <samp>appstoreenabled</samp> seçeneğinin false olarak ayarlanmadığından emin olun.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Uygulama mağazasına bağlanılamadı ya da uygulama mağazasında herhangi bir güncelleme yok. Güncellemeleri el ile arayın ya da sunucunuzun İnternet üzerine ve uygulama mağazasına bağlanabildiğinden emin olun.", "<strong>All</strong> apps have an update for this version available" : "<strong>Tüm</strong> uygulamaların bu sürüm için kullanılabilecek bir güncellemesi var", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok","<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>Üretim</strong> her zaman en son yama düzeyini sağlar ancak sonraki büyük sürüme hemen güncellemez. Bu güncelleme genellikle ikinci küçük sürüm kullanılarak yapılır (x.0.2)", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>Kararlı</strong> son kararlı sürümü sağlar. Normal kullanımına uygundur ve her zaman son büyük sürüme günceller.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>Beta</strong> yeni özelliklerin denenebileceği yayım öncesi sürümüdür. Üretim ortamlarında kullanılması önerilmez.", "View changelog" : "Değişiklik günlüğünü görüntüle", "Could not start updater, please try the manual update" : "Güncelleyici başlatılamadı lütfen el ile güncellemeyi deneyin", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok","<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok"], "A new version is available: %s" : "Yeni bir sürüm yayınlanmış: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Kullanmakta olduğunuz sürüm artık desteklenmiyor. Lütfen en kısa sürede desteklenen bir sürüme güncellemeyi ihmal etmeyin.", - "Download now" : "İndir", - "Checked on %s" : "Son denetim: %s", - "Update channel:" : "Güncelleme kanalı:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Seçilmiş güncelleme kanalı kullanımdan kalkmış sunucu bildirimleri için kullanılıyor.", - "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin." + "Checked on %s" : "Son denetim: %s" }, "nplurals=2; plural=(n > 1);"); diff --git a/apps/updatenotification/l10n/tr.json b/apps/updatenotification/l10n/tr.json index 8a0e9eccd32..f6f4ed31981 100644 --- a/apps/updatenotification/l10n/tr.json +++ b/apps/updatenotification/l10n/tr.json @@ -9,14 +9,22 @@ "Update for {app} to version %s is available." : "{app} uygulaması için %s sürümü güncellemesi yayınlanmış.", "Update notification" : "Güncelleme bildirimi", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "Nextcloud güncelleme bildirimlerini görüntüler ve güncelleyici için Tek Oturum Açma (SSO) bilgilerini sağlar.", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Kullanmakta olduğunuz sürüm artık desteklenmiyor. Lütfen en kısa sürede desteklenen bir sürüme güncellemeyi ihmal etmeyin.", + "Apps missing updates" : "Güncellemesi eksik uygulamalar", + "View in store" : "Mağazada görüntüle", "Apps with available updates" : "Güncellenebilecek uygulamalar", "Open updater" : "Güncelleyici aç", + "Download now" : "İndir", + "What's new?" : "Yenilikler neler?", + "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin.", "Your version is up to date." : "Sürümünüz güncel.", "A non-default update server is in use to be checked for updates:" : "Güncelleme denetimi için varsayılan sunucudan başka bir sunucu kullanılıyor:", + "Update channel:" : "Güncelleme kanalı:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "İstediğiniz zaman yeni / deneysel bir güncelleme kanalına geçebilirsiniz. Daha kararlı bir kanala geri dönemezsiniz.", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "Yeni bir sürümün yayınlanmasından sonra burada görüntülenmesinin biraz zaman alabileceğini unutmayın. Yeni sürümleri kullanıcılarımıza zamanla dağıtıyoruz ve bazen sorunlarla karşılaştığımızda bir sürümü atlayabiliyoruz.", "Notify members of the following groups about available updates:" : "Yayınlanan güncellemeler şu grupların üyelerine bildirilsin:", "Only notification for app updates are available." : "Yalnız uygulama güncellemeleri kullanılabilir.", + "The selected update channel makes dedicated notifications for the server obsolete." : "Seçilmiş güncelleme kanalı kullanımdan kalkmış sunucu bildirimleri için kullanılıyor.", "The selected update channel does not support updates of the server." : "Seçilmiş güncelleme kanalı sunucunun güncellemelerini desteklemiyor.", "A new version is available: <strong>{newVersionString}</strong>" : "Yeni bir sürüm yayınlanmış: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "Son denetim: {lastCheckedDate}", @@ -24,18 +32,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "Lütfen config.php dosyasındaki <samp>appstoreenabled</samp> seçeneğinin false olarak ayarlanmadığından emin olun.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "Uygulama mağazasına bağlanılamadı ya da uygulama mağazasında herhangi bir güncelleme yok. Güncellemeleri el ile arayın ya da sunucunuzun İnternet üzerine ve uygulama mağazasına bağlanabildiğinden emin olun.", "<strong>All</strong> apps have an update for this version available" : "<strong>Tüm</strong> uygulamaların bu sürüm için kullanılabilecek bir güncellemesi var", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok","<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>Üretim</strong> her zaman en son yama düzeyini sağlar ancak sonraki büyük sürüme hemen güncellemez. Bu güncelleme genellikle ikinci küçük sürüm kullanılarak yapılır (x.0.2)", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>Kararlı</strong> son kararlı sürümü sağlar. Normal kullanımına uygundur ve her zaman son büyük sürüme günceller.", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>Beta</strong> yeni özelliklerin denenebileceği yayım öncesi sürümüdür. Üretim ortamlarında kullanılması önerilmez.", "View changelog" : "Değişiklik günlüğünü görüntüle", "Could not start updater, please try the manual update" : "Güncelleyici başlatılamadı lütfen el ile güncellemeyi deneyin", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok","<strong>%n</strong> uygulamanın bu sürüm için kullanılabilecek bir güncellemesi yok"], "A new version is available: %s" : "Yeni bir sürüm yayınlanmış: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "Kullanmakta olduğunuz sürüm artık desteklenmiyor. Lütfen en kısa sürede desteklenen bir sürüme güncellemeyi ihmal etmeyin.", - "Download now" : "İndir", - "Checked on %s" : "Son denetim: %s", - "Update channel:" : "Güncelleme kanalı:", - "The selected update channel makes dedicated notifications for the server obsolete." : "Seçilmiş güncelleme kanalı kullanımdan kalkmış sunucu bildirimleri için kullanılıyor.", - "The update check is not yet finished. Please refresh the page." : "Güncelleme denetimi henüz tamamlanmadı. Lütfen sayfayı yenileyin." + "Checked on %s" : "Son denetim: %s" },"pluralForm" :"nplurals=2; plural=(n > 1);" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/zh_CN.js b/apps/updatenotification/l10n/zh_CN.js index 760e26e0a07..a45abdccd31 100644 --- a/apps/updatenotification/l10n/zh_CN.js +++ b/apps/updatenotification/l10n/zh_CN.js @@ -11,14 +11,19 @@ OC.L10N.register( "Update for {app} to version %s is available." : "可以将您的 {app} 更新到版本 %s 。", "Update notification" : "更新通知", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "显示 Nextcloud 的更新提示,并提供更新器的认证页面。", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "您运行的版本已经不再被维护了。请尽快更新到一个受支持的版本。", "Apps with available updates" : "有可用更新的应用", "Open updater" : "打开更新器", + "Download now" : "开始下载", + "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。", "Your version is up to date." : "您的版本已是最新。", "A non-default update server is in use to be checked for updates:" : "检查更新使用了一个非默认的服务器:", + "Update channel:" : "更新通道:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以随时更新到新版本 / 实验通道。但你永远不能降级到更稳定的通道。", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "请注意, 在新版本发布后, 它可能需要一段时间才能显示在这里。新版本发布后, 随着时间的推移, 当用户发现问题时我们可能会跳过一个版本。", "Notify members of the following groups about available updates:" : "提醒一下组群的用户关于可用的更新:", "Only notification for app updates are available." : "仅提醒应用更新就绪。", + "The selected update channel makes dedicated notifications for the server obsolete." : "被选中的升级通道将会通知未更新的服务器", "The selected update channel does not support updates of the server." : "选中的更新通道不支持服务器升级。", "A new version is available: <strong>{newVersionString}</strong>" : "有可用的新版本: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "检查时间 {lastCheckedDate}", @@ -26,18 +31,13 @@ OC.L10N.register( "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "请确认 config.php 没有设置<samp>appstoreenabled </samp> 为 false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "无法连接到应用商店, 或者应用商店返回无可用更新。请手动搜索更新,或者是确认您的服务器能访问互联网,并能连接到应用商店。", "<strong>All</strong> apps have an update for this version available" : "<strong>所有</strong> 应用有适用于这个版本的更新", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>应用没有适用这个版本的更新"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong>将会提供最新的补丁,但不会很快的更新到下一个主版本。更新一般会跟随着第二个小版本(x.0.2)发布。", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>稳定版</strong>是最近的稳定版本。适合正常使用,并总是会更新到最新的主版本。", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong>版本只是用于新功能测试的预发布版,请勿用于生产环境。", "View changelog" : "查看更新记录", "Could not start updater, please try the manual update" : "无法启动自动更新,请尝试手动更新", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>应用没有适用这个版本的更新"], "A new version is available: %s" : "有可用的新版本: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "您运行的版本已经不再被维护了。请尽快更新到一个受支持的版本。", - "Download now" : "开始下载", - "Checked on %s" : "检查于 %s", - "Update channel:" : "更新通道:", - "The selected update channel makes dedicated notifications for the server obsolete." : "被选中的升级通道将会通知未更新的服务器", - "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。" + "Checked on %s" : "检查于 %s" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/zh_CN.json b/apps/updatenotification/l10n/zh_CN.json index ad48946b807..b457ac90923 100644 --- a/apps/updatenotification/l10n/zh_CN.json +++ b/apps/updatenotification/l10n/zh_CN.json @@ -9,14 +9,19 @@ "Update for {app} to version %s is available." : "可以将您的 {app} 更新到版本 %s 。", "Update notification" : "更新通知", "Displays update notifications for Nextcloud and provides the SSO for the updater." : "显示 Nextcloud 的更新提示,并提供更新器的认证页面。", + "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "您运行的版本已经不再被维护了。请尽快更新到一个受支持的版本。", "Apps with available updates" : "有可用更新的应用", "Open updater" : "打开更新器", + "Download now" : "开始下载", + "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。", "Your version is up to date." : "您的版本已是最新。", "A non-default update server is in use to be checked for updates:" : "检查更新使用了一个非默认的服务器:", + "Update channel:" : "更新通道:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以随时更新到新版本 / 实验通道。但你永远不能降级到更稳定的通道。", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "请注意, 在新版本发布后, 它可能需要一段时间才能显示在这里。新版本发布后, 随着时间的推移, 当用户发现问题时我们可能会跳过一个版本。", "Notify members of the following groups about available updates:" : "提醒一下组群的用户关于可用的更新:", "Only notification for app updates are available." : "仅提醒应用更新就绪。", + "The selected update channel makes dedicated notifications for the server obsolete." : "被选中的升级通道将会通知未更新的服务器", "The selected update channel does not support updates of the server." : "选中的更新通道不支持服务器升级。", "A new version is available: <strong>{newVersionString}</strong>" : "有可用的新版本: <strong>{newVersionString}</strong>", "Checked on {lastCheckedDate}" : "检查时间 {lastCheckedDate}", @@ -24,18 +29,13 @@ "Please make sure your config.php does not set <samp>appstoreenabled</samp> to false." : "请确认 config.php 没有设置<samp>appstoreenabled </samp> 为 false.", "Could not connect to the appstore or the appstore returned no updates at all. Search manually for updates or make sure your server has access to the internet and can connect to the appstore." : "无法连接到应用商店, 或者应用商店返回无可用更新。请手动搜索更新,或者是确认您的服务器能访问互联网,并能连接到应用商店。", "<strong>All</strong> apps have an update for this version available" : "<strong>所有</strong> 应用有适用于这个版本的更新", - "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>应用没有适用这个版本的更新"], "<strong>production</strong> will always provide the latest patch level, but not update to the next major release immediately. That update usually happens with the second minor release (x.0.2)." : "<strong>production</strong>将会提供最新的补丁,但不会很快的更新到下一个主版本。更新一般会跟随着第二个小版本(x.0.2)发布。", "<strong>stable</strong> is the most recent stable version. It is suited for regular use and will always update to the latest major version." : "<strong>稳定版</strong>是最近的稳定版本。适合正常使用,并总是会更新到最新的主版本。", "<strong>beta</strong> is a pre-release version only for testing new features, not for production environments." : "<strong>beta</strong>版本只是用于新功能测试的预发布版,请勿用于生产环境。", "View changelog" : "查看更新记录", "Could not start updater, please try the manual update" : "无法启动自动更新,请尝试手动更新", + "_<strong>%n</strong> app has no update for this version available_::_<strong>%n</strong> apps have no update for this version available_" : ["<strong>%n</strong>应用没有适用这个版本的更新"], "A new version is available: %s" : "有可用的新版本: %s", - "The version you are running is not maintained anymore. Please make sure to update to a supported version as soon as possible." : "您运行的版本已经不再被维护了。请尽快更新到一个受支持的版本。", - "Download now" : "开始下载", - "Checked on %s" : "检查于 %s", - "Update channel:" : "更新通道:", - "The selected update channel makes dedicated notifications for the server obsolete." : "被选中的升级通道将会通知未更新的服务器", - "The update check is not yet finished. Please refresh the page." : "更新检查未完成。请刷新页面。" + "Checked on %s" : "检查于 %s" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/updatenotification/l10n/zh_TW.js b/apps/updatenotification/l10n/zh_TW.js index fc93727c723..dd02799e8ae 100644 --- a/apps/updatenotification/l10n/zh_TW.js +++ b/apps/updatenotification/l10n/zh_TW.js @@ -10,19 +10,19 @@ OC.L10N.register( "Update for %1$s to version %2$s is available." : "%1$s 到 %2$s 的更新已經釋出", "Update for {app} to version %s is available." : "{app} 已有 %s 版本的更新", "Open updater" : "打開更新程式", + "Download now" : "現在下載", + "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面", "Your version is up to date." : "您的版本是最新版", "A non-default update server is in use to be checked for updates:" : "沒有預設的更新伺服器以至於無法檢查更新:", + "Update channel:" : "更新通道:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以隨時更新至較新的版本 / 實驗通道,但您不能降版至更穩定的通道。", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "請注意,新版本釋出後,需要過一段時間才會在此顯示通知。隨著時間推進,我們為用戶推出了新的版本,有時候會在發現問題時跳過前一個版本更新。", "Notify members of the following groups about available updates:" : "有可用更新時通知這些群組:", "Only notification for app updates are available." : "僅提供應用程式更新的通知", + "The selected update channel makes dedicated notifications for the server obsolete." : "選擇的更新管道會導致伺服器專門的通知過期", "The selected update channel does not support updates of the server." : "所選的更新頻道不提供伺服器軟體的更新", "Could not start updater, please try the manual update" : "無法啟動更新程式,請嘗試手動更新", "A new version is available: %s" : "新版本可用:%s", - "Download now" : "現在下載", - "Checked on %s" : "於 %s 檢查過", - "Update channel:" : "更新通道:", - "The selected update channel makes dedicated notifications for the server obsolete." : "選擇的更新管道會導致伺服器專門的通知過期", - "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面" + "Checked on %s" : "於 %s 檢查過" }, "nplurals=1; plural=0;"); diff --git a/apps/updatenotification/l10n/zh_TW.json b/apps/updatenotification/l10n/zh_TW.json index a447c45d520..8549099f8a1 100644 --- a/apps/updatenotification/l10n/zh_TW.json +++ b/apps/updatenotification/l10n/zh_TW.json @@ -8,19 +8,19 @@ "Update for %1$s to version %2$s is available." : "%1$s 到 %2$s 的更新已經釋出", "Update for {app} to version %s is available." : "{app} 已有 %s 版本的更新", "Open updater" : "打開更新程式", + "Download now" : "現在下載", + "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面", "Your version is up to date." : "您的版本是最新版", "A non-default update server is in use to be checked for updates:" : "沒有預設的更新伺服器以至於無法檢查更新:", + "Update channel:" : "更新通道:", "You can always update to a newer version / experimental channel. But you can never downgrade to a more stable channel." : "您可以隨時更新至較新的版本 / 實驗通道,但您不能降版至更穩定的通道。", "Note that after a new release it can take some time before it shows up here. We roll out new versions spread out over time to our users and sometimes skip a version when issues are found." : "請注意,新版本釋出後,需要過一段時間才會在此顯示通知。隨著時間推進,我們為用戶推出了新的版本,有時候會在發現問題時跳過前一個版本更新。", "Notify members of the following groups about available updates:" : "有可用更新時通知這些群組:", "Only notification for app updates are available." : "僅提供應用程式更新的通知", + "The selected update channel makes dedicated notifications for the server obsolete." : "選擇的更新管道會導致伺服器專門的通知過期", "The selected update channel does not support updates of the server." : "所選的更新頻道不提供伺服器軟體的更新", "Could not start updater, please try the manual update" : "無法啟動更新程式,請嘗試手動更新", "A new version is available: %s" : "新版本可用:%s", - "Download now" : "現在下載", - "Checked on %s" : "於 %s 檢查過", - "Update channel:" : "更新通道:", - "The selected update channel makes dedicated notifications for the server obsolete." : "選擇的更新管道會導致伺服器專門的通知過期", - "The update check is not yet finished. Please refresh the page." : "更新檢查未完成,請刷新這個頁面" + "Checked on %s" : "於 %s 檢查過" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/apps/updatenotification/package-lock.json b/apps/updatenotification/package-lock.json index d0c9be5402e..398b842326d 100644 --- a/apps/updatenotification/package-lock.json +++ b/apps/updatenotification/package-lock.json @@ -4,6 +4,15 @@ "lockfileVersion": 1, "requires": true, "dependencies": { + "@babel/polyfill": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/polyfill/-/polyfill-7.0.0.tgz", + "integrity": "sha512-dnrMRkyyr74CRelJwvgnnSUDh2ge2NCTyHVwpOdvRMHtJUyxLtMAfhBN3s64pY41zdw0kgiLPh6S20eb1NcX6Q==", + "requires": { + "core-js": "^2.5.7", + "regenerator-runtime": "^0.11.1" + } + }, "@vue/component-compiler-utils": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-2.2.0.tgz", @@ -329,7 +338,7 @@ }, "util": { "version": "0.10.3", - "resolved": "http://registry.npmjs.org/util/-/util-0.10.3.tgz", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", "dev": true, "requires": { @@ -356,6 +365,15 @@ "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", "dev": true }, + "axios": { + "version": "0.18.0", + "resolved": "http://registry.npmjs.org/axios/-/axios-0.18.0.tgz", + "integrity": "sha1-MtU+SFHv3AoRmTts0AB4nXDAUQI=", + "requires": { + "follow-redirects": "^1.3.0", + "is-buffer": "^1.1.5" + } + }, "babel-code-frame": { "version": "6.26.0", "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", @@ -375,7 +393,7 @@ }, "chalk": { "version": "1.1.3", - "resolved": "http://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "dev": true, "requires": { @@ -526,7 +544,7 @@ }, "browserify-aes": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", "dev": true, "requires": { @@ -563,7 +581,7 @@ }, "browserify-rsa": { "version": "4.0.1", - "resolved": "http://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", "dev": true, "requires": { @@ -690,6 +708,11 @@ } } }, + "charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" + }, "chokidar": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.0.4.tgz", @@ -898,6 +921,11 @@ "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", "dev": true }, + "core-js": { + "version": "2.5.7", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz", + "integrity": "sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==" + }, "core-util-is": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", @@ -916,7 +944,7 @@ }, "create-hash": { "version": "1.2.0", - "resolved": "http://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", "dev": true, "requires": { @@ -929,7 +957,7 @@ }, "create-hmac": { "version": "1.1.7", - "resolved": "http://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", "dev": true, "requires": { @@ -954,6 +982,11 @@ "which": "^1.2.9" } }, + "crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" + }, "crypto-browserify": { "version": "3.12.0", "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", @@ -1113,7 +1146,7 @@ }, "diffie-hellman": { "version": "5.0.3", - "resolved": "http://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", "dev": true, "requires": { @@ -1238,7 +1271,7 @@ }, "events": { "version": "1.1.1", - "resolved": "http://registry.npmjs.org/events/-/events-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/events/-/events-1.1.1.tgz", "integrity": "sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ=", "dev": true }, @@ -1406,6 +1439,11 @@ "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", "dev": true }, + "fecha": { + "version": "2.3.3", + "resolved": "http://registry.npmjs.org/fecha/-/fecha-2.3.3.tgz", + "integrity": "sha512-lUGBnIamTAwk4znq5BcqsDaxSmZ9nDVJaij6NvRt/Tg4R69gERA+otPKbS86ROw9nxVMw2/mp1fnaiWqbs6Sdg==" + }, "file-loader": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-1.1.11.tgz", @@ -1469,6 +1507,24 @@ "readable-stream": "^2.0.4" } }, + "follow-redirects": { + "version": "1.5.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.9.tgz", + "integrity": "sha512-Bh65EZI/RU8nx0wbYF9shkFZlqLP+6WT/5FnA3cE/djNSuKNHJEinGGZgu/cQEkeeb2GdFOgenAmn8qaqYke2w==", + "requires": { + "debug": "=3.1.0" + }, + "dependencies": { + "debug": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz", + "integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==", + "requires": { + "ms": "2.0.0" + } + } + } + }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -2390,8 +2446,7 @@ "is-buffer": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" }, "is-data-descriptor": { "version": "0.1.4", @@ -2608,6 +2663,11 @@ "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=", "dev": true }, + "lodash.merge": { + "version": "4.6.1", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.1.tgz", + "integrity": "sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==" + }, "lru-cache": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.3.tgz", @@ -2651,6 +2711,16 @@ "object-visit": "^1.0.0" } }, + "md5": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.2.1.tgz", + "integrity": "sha1-U6s41f48iJG6RlMp6iP6wFQBJvk=", + "requires": { + "charenc": "~0.0.1", + "crypt": "~0.0.1", + "is-buffer": "~1.1.1" + } + }, "md5.js": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", @@ -2821,8 +2891,7 @@ "ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" }, "nan": { "version": "2.11.1", @@ -2856,6 +2925,29 @@ "integrity": "sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==", "dev": true }, + "nextcloud-axios": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/nextcloud-axios/-/nextcloud-axios-0.1.2.tgz", + "integrity": "sha512-iGmsgetYead0678dpExmYaN4odpiKjKxtPpzuk3TyB1UoQJs4Mop+Dozh1ryWLA0Nqzng9HIvsWkBqLxAm3q5g==", + "requires": { + "axios": "^0.18.0" + } + }, + "nextcloud-vue": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/nextcloud-vue/-/nextcloud-vue-0.4.4.tgz", + "integrity": "sha512-iaL7mJGZpiyn9Evg0pnoilSj30wWD/TujGPqC2RN7jggeTdWrQQBuwjfiIoY3n4wcg9DgsZ4TwE9gOHz9+Yhrg==", + "requires": { + "@babel/polyfill": "^7.0.0", + "md5": "^2.2.1", + "nextcloud-axios": "^0.1.2", + "v-tooltip": "^2.0.0-rc.33", + "vue": "^2.5.16", + "vue-click-outside": "^1.0.7", + "vue-multiselect": "^2.1.0", + "vue2-datepicker": "^2.6.1" + } + }, "nice-try": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", @@ -3061,7 +3153,7 @@ }, "parse-asn1": { "version": "5.1.1", - "resolved": "http://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.1.tgz", "integrity": "sha512-KPx7flKXg775zZpnp9SxJlz00gTd4BmJ2yJufSc44gMCRrRQ7NSzAcSJQfifuOLgW6bEi+ftrALtsgALeB2Adw==", "dev": true, "requires": { @@ -3136,6 +3228,11 @@ "find-up": "^2.1.0" } }, + "popper.js": { + "version": "1.14.5", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.14.5.tgz", + "integrity": "sha512-fs4Sd8bZLgEzrk8aS7Em1qh+wcawtE87kRUJQhK6+LndyV1HerX7+LURzAylVaTyWIn5NTB/lyjnWqw/AZ6Yrw==" + }, "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", @@ -3386,6 +3483,11 @@ "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", "dev": true }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + }, "regex-not": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", @@ -3409,7 +3511,7 @@ }, "regjsgen": { "version": "0.2.0", - "resolved": "http://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", "dev": true }, @@ -3515,7 +3617,7 @@ }, "safe-regex": { "version": "1.1.0", - "resolved": "http://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", "dev": true, "requires": { @@ -3581,7 +3683,7 @@ }, "sha.js": { "version": "2.4.11", - "resolved": "http://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", "dev": true, "requires": { @@ -4165,6 +4267,16 @@ "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", "dev": true }, + "v-tooltip": { + "version": "2.0.0-rc.33", + "resolved": "https://registry.npmjs.org/v-tooltip/-/v-tooltip-2.0.0-rc.33.tgz", + "integrity": "sha1-ePfY6cNCZWIr5lup3HjGfx3AK3M=", + "requires": { + "lodash.merge": "^4.6.0", + "popper.js": "^1.12.9", + "vue-resize": "^0.4.3" + } + }, "v8-compile-cache": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.2.tgz", @@ -4209,10 +4321,15 @@ "vue-style-loader": "^4.1.0" } }, - "vue-select": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/vue-select/-/vue-select-2.5.1.tgz", - "integrity": "sha512-Hs+arh7+0gLJoYiM3r9V/5CRn5XsAT8tVkouTkpDAWb923KFgraWrKDLSqz3ROedZUkuVIwkFuYq8+baHUf+bg==" + "vue-multiselect": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/vue-multiselect/-/vue-multiselect-2.1.3.tgz", + "integrity": "sha512-ANLvoLEZv5uzissmh2WSHTn8DGhqsKi6zVtctpf1wnGK6vmZBktQZzeuHGxH7KpIb+4A6BlXmq0RR08jtQ67tg==" + }, + "vue-resize": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/vue-resize/-/vue-resize-0.4.4.tgz", + "integrity": "sha512-Lb/cnE2N9Y42ZJPw8wpjkpuX5a9ReerWNGcQRcbNCwfCnkHG6++FurNNmLIdU8dcCTH4c5rtTPdxBqFoRMK2cQ==" }, "vue-style-loader": { "version": "4.1.2", @@ -4240,6 +4357,14 @@ "integrity": "sha512-x3LV3wdmmERhVCYy3quqA57NJW7F3i6faas++pJQWtknWT+n7k30F4TVdHvCLn48peTJFRvCpxs3UuFPqgeELg==", "dev": true }, + "vue2-datepicker": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/vue2-datepicker/-/vue2-datepicker-2.6.2.tgz", + "integrity": "sha512-Z1XaBCBi3oiLm26WSBeYpUtQecFsz8FRZ9CtBofjmlkCNdu45smkzcaRjHsPEtOaV4yhkhJ2fr8EBe/7GVrfyA==", + "requires": { + "fecha": "^2.3.3" + } + }, "watchpack": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", @@ -4365,7 +4490,7 @@ }, "wrap-ansi": { "version": "2.1.0", - "resolved": "http://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", "dev": true, "requires": { diff --git a/apps/updatenotification/package.json b/apps/updatenotification/package.json index 3daa9288171..63ef9e25bc7 100644 --- a/apps/updatenotification/package.json +++ b/apps/updatenotification/package.json @@ -23,9 +23,10 @@ }, "homepage": "https://github.com/nextcloud/notifications#readme", "dependencies": { + "nextcloud-vue": "^0.4.4", + "v-tooltip": "^2.0.0-rc.33", "vue": "^2.5.17", - "vue-click-outside": "^1.0.7", - "vue-select": "^2.5.0" + "vue-click-outside": "^1.0.7" }, "devDependencies": { "css-loader": "^1.0.1", diff --git a/apps/updatenotification/src/components/popoverMenu.vue b/apps/updatenotification/src/components/popoverMenu.vue deleted file mode 100644 index 92f62c5090d..00000000000 --- a/apps/updatenotification/src/components/popoverMenu.vue +++ /dev/null @@ -1,18 +0,0 @@ -<template> - <ul> - <popover-item v-for="(item, key) in menu" :item="item" :key="key" /> - </ul> -</template> - - -<script> -import popoverItem from './popoverMenu/popoverItem'; - -export default { - name: 'popoverMenu', - props: ['menu'], - components: { - popoverItem - } -} -</script> diff --git a/apps/updatenotification/src/components/popoverMenu/popoverItem.vue b/apps/updatenotification/src/components/popoverMenu/popoverItem.vue deleted file mode 100644 index d496a336c22..00000000000 --- a/apps/updatenotification/src/components/popoverMenu/popoverItem.vue +++ /dev/null @@ -1,28 +0,0 @@ -<template> - <li> - <!-- If item.href is set, a link will be directly used --> - <a @click="item.action" v-if="item.href" :href="(item.href) ? item.href : '#' " :target="(item.target) ? item.target : '' " rel="noreferrer noopener"> - <span :class="item.icon"></span> - <span v-if="item.text">{{item.text}}</span> - <p v-else-if="item.longtext">{{item.longtext}}</p> - </a> - <!-- If item.action is set instead, a button will be used --> - <button @click="item.action" v-else-if="item.action"> - <span :class="item.icon"></span> - <span v-if="item.text">{{item.text}}</span> - <p v-else-if="item.longtext">{{item.longtext}}</p> - </button> - <!-- If item.longtext is set AND the item does not have an action --> - <span class="menuitem" v-else> - <span :class="item.icon"></span> - <span v-if="item.text">{{item.text}}</span> - <p v-else-if="item.longtext">{{item.longtext}}</p> - </span> - </li> -</template> - -<script> -export default { - props: ['item'] -} -</script> diff --git a/apps/updatenotification/src/components/root.vue b/apps/updatenotification/src/components/root.vue index b2fcdf328cc..351fe947765 100644 --- a/apps/updatenotification/src/components/root.vue +++ b/apps/updatenotification/src/components/root.vue @@ -53,7 +53,7 @@ <template v-else-if="!isUpdateChecked">{{ t('updatenotification', 'The update check is not yet finished. Please refresh the page.') }}</template> <template v-else> {{ t('updatenotification', 'Your version is up to date.') }} - <span class="icon-info svg" :title="lastCheckedOnString"></span> + <span class="icon-info svg" v-tooltip.auto="lastCheckedOnString"></span> </template> <template v-if="!isDefaultUpdateServerURL"> @@ -81,7 +81,7 @@ <p id="oca_updatenotification_groups"> {{ t('updatenotification', 'Notify members of the following groups about available updates:') }} - <v-select multiple :value="notifyGroups" :options="availableGroups"></v-select><br /> + <multiselect v-model="notifyGroups" :options="availableGroups" :multiple="true" label="label" track-by="value" :tag-width="75" /><br /> <em v-if="currentChannel === 'daily' || currentChannel === 'git'">{{ t('updatenotification', 'Only notification for app updates are available.') }}</em> <em v-if="currentChannel === 'daily'">{{ t('updatenotification', 'The selected update channel makes dedicated notifications for the server obsolete.') }}</em> <em v-if="currentChannel === 'git'">{{ t('updatenotification', 'The selected update channel does not support updates of the server.') }}</em> @@ -90,18 +90,19 @@ </template> <script> - import vSelect from 'vue-select'; - import popoverMenu from './popoverMenu'; + import { PopoverMenu, Multiselect } from 'nextcloud-vue'; + import { VTooltip } from 'v-tooltip'; import ClickOutside from 'vue-click-outside'; export default { name: 'root', components: { - vSelect, - popoverMenu, + Multiselect, + PopoverMenu, }, directives: { - ClickOutside + ClickOutside, + tooltip: VTooltip }, data: function () { return { @@ -355,10 +356,6 @@ this.enableChangeWatcher = true; }.bind(this) }); - }, - - updated: function () { - this._$el.find('.icon-info').tooltip({placement: 'right'}); } } </script> diff --git a/apps/updatenotification/webpack.common.js b/apps/updatenotification/webpack.common.js index 7d2bbfae74e..08cb6031233 100644 --- a/apps/updatenotification/webpack.common.js +++ b/apps/updatenotification/webpack.common.js @@ -20,9 +20,6 @@ module.exports = { new VueLoaderPlugin() ], resolve: { - alias: { - 'vue$': 'vue/dist/vue.esm.js' - }, extensions: ['*', '.js', '.vue', '.json'] } } diff --git a/apps/updatenotification/webpack.dev.js b/apps/updatenotification/webpack.dev.js index 88409bbb1d8..9f66562f908 100644 --- a/apps/updatenotification/webpack.dev.js +++ b/apps/updatenotification/webpack.dev.js @@ -8,5 +8,5 @@ module.exports = merge(common, { noInfo: true, overlay: true }, - devtool: '#eval-source-map', + devtool: '#cheap-source-map', }) diff --git a/apps/workflowengine/l10n/en_GB.js b/apps/workflowengine/l10n/en_GB.js index 6585b245e2a..a8f20914b16 100644 --- a/apps/workflowengine/l10n/en_GB.js +++ b/apps/workflowengine/l10n/en_GB.js @@ -17,6 +17,7 @@ OC.L10N.register( "matches" : "matches", "does not match" : "does not match", "Example: {placeholder}" : "Example: {placeholder}", + "File name" : "File name", "File size (upload)" : "File size (upload)", "less" : "less", "less or equals" : "less or equals", @@ -45,6 +46,7 @@ OC.L10N.register( "Android client" : "Android client", "iOS client" : "iOS client", "Desktop client" : "Desktop client", + "Thunderbird & Outlook addons" : "Thunderbird & Outlook addons", "User group membership" : "User group membership", "is member of" : "is member of", "is not member of" : "is not member of", diff --git a/apps/workflowengine/l10n/en_GB.json b/apps/workflowengine/l10n/en_GB.json index 5f594ab294c..eeb0088dfe7 100644 --- a/apps/workflowengine/l10n/en_GB.json +++ b/apps/workflowengine/l10n/en_GB.json @@ -15,6 +15,7 @@ "matches" : "matches", "does not match" : "does not match", "Example: {placeholder}" : "Example: {placeholder}", + "File name" : "File name", "File size (upload)" : "File size (upload)", "less" : "less", "less or equals" : "less or equals", @@ -43,6 +44,7 @@ "Android client" : "Android client", "iOS client" : "iOS client", "Desktop client" : "Desktop client", + "Thunderbird & Outlook addons" : "Thunderbird & Outlook addons", "User group membership" : "User group membership", "is member of" : "is member of", "is not member of" : "is not member of", diff --git a/apps/workflowengine/l10n/fi.js b/apps/workflowengine/l10n/fi.js index 0c4490a264e..626e1b7fd91 100644 --- a/apps/workflowengine/l10n/fi.js +++ b/apps/workflowengine/l10n/fi.js @@ -47,7 +47,7 @@ OC.L10N.register( "iOS client" : "iOS-sovellus", "Desktop client" : "Työpöytäsovellus", "Thunderbird & Outlook addons" : "Thunderbird- & Outlook-lisäosat", - "User group membership" : "Käyttäjäryhmä jäsenyys", + "User group membership" : "Käyttäjäryhmäjäsenyys", "is member of" : "on jäsen", "is not member of" : "ei ole jäsen", "The given operator is invalid" : "Annettu operaattori on virheellinen", @@ -69,6 +69,7 @@ OC.L10N.register( "Check %s is invalid" : "Tarkistus %s on virheellinen", "Check #%s does not exist" : "Tarkistusta #%s ei ole olemassa", "Workflow" : "Työnkulku", + "Files workflow engine" : "Tiedostojen työnkulkumoottori", "Open documentation" : "Avaa dokumentaatio", "Loading…" : "Ladataan…" }, diff --git a/apps/workflowengine/l10n/fi.json b/apps/workflowengine/l10n/fi.json index c319555c75b..c27320a1faa 100644 --- a/apps/workflowengine/l10n/fi.json +++ b/apps/workflowengine/l10n/fi.json @@ -45,7 +45,7 @@ "iOS client" : "iOS-sovellus", "Desktop client" : "Työpöytäsovellus", "Thunderbird & Outlook addons" : "Thunderbird- & Outlook-lisäosat", - "User group membership" : "Käyttäjäryhmä jäsenyys", + "User group membership" : "Käyttäjäryhmäjäsenyys", "is member of" : "on jäsen", "is not member of" : "ei ole jäsen", "The given operator is invalid" : "Annettu operaattori on virheellinen", @@ -67,6 +67,7 @@ "Check %s is invalid" : "Tarkistus %s on virheellinen", "Check #%s does not exist" : "Tarkistusta #%s ei ole olemassa", "Workflow" : "Työnkulku", + "Files workflow engine" : "Tiedostojen työnkulkumoottori", "Open documentation" : "Avaa dokumentaatio", "Loading…" : "Ladataan…" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/core/css/apps.scss b/core/css/apps.scss index 039374bf726..b9c2b50c6f2 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -39,7 +39,7 @@ h4 { /* do not use italic typeface style, instead lighter color */ em { font-style: normal; - opacity: .5; + color: var(--color-text-lighter); } dl { diff --git a/core/css/guest.css b/core/css/guest.css index 5bc918db1e2..9098c983cab 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -144,20 +144,30 @@ form #datadirField legend { /* Buttons and input */ #submit-wrapper, #reset-password-wrapper { + display: flex; + align-items: center; + justify-content: center; position: relative; /* Make the wrapper the containing block of its absolutely positioned descendant icons */ } #submit-wrapper .submit-icon { position: absolute; - top: 23px; - right: 23px; + top: 22px; + right: 24px; + transition: right 100ms ease-in-out; pointer-events: none; /* The submit icon is positioned on the submit button. From the user point of view the icon is part of the button, so the clicks on the icon have to be applied to the button instead. */ } +#submit-wrapper:hover .submit-icon.icon-confirm-white, +#submit-wrapper:focus .submit-icon.icon-confirm-white, +#submit-wrapper:active .submit-icon.icon-confirm-white { + right: 20px; +} + #reset-password-submit { padding: 10px; overflow: hidden; @@ -174,6 +184,7 @@ form #datadirField legend { right: 24px; } + input, textarea, select, button, div[contenteditable=true] { font-family: 'Nunito', 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif; } @@ -191,6 +202,7 @@ input[type='submit'], input[type='submit'].icon-confirm, input[type='button'], button, +a.button, .button, select { display: inline-block; @@ -220,7 +232,8 @@ input[type='email'] { font-weight: normal; } input.login { - width: 269px; + width: 260px; + height: 50px; background-position: right 16px center; } input[type='submit'], @@ -253,6 +266,7 @@ a.primary { border: 1px solid #fff; background-color: #0082c9; color: #fff; + transition: color 100ms ease-in-out; } input.primary:not(:disabled):hover, @@ -260,8 +274,8 @@ input.primary:not(:disabled):focus, button.primary:not(:disabled):hover, button.primary:not(:disabled):focus, a.primary:not(:disabled):hover, -a.primary:not(:disabled):focus{ - background-color: #17adff; +a.primary:not(:disabled):focus { + color: rgba(255, 255, 255, .8); } /* Checkboxes - white only for login */ @@ -594,6 +608,7 @@ form #selectDbType label.ui-state-active { .warning h2, .update h2, .error h2 { + color: #fff; text-align: center; } diff --git a/core/css/header.scss b/core/css/header.scss index e215c9d4c40..72863696d6a 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -691,8 +691,7 @@ nav[role='navigation'] { height: 34px; width: 0; cursor: pointer; - -webkit-transition: all 100ms; - transition: all 100ms; + transition: width 100ms, opacity 100ms; opacity: .6; &:focus, &:active, &:valid { background-position-x: 6px; diff --git a/core/css/variables.scss b/core/css/variables.scss index 2ec9ba333b4..a1c2750a28e 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -65,7 +65,7 @@ $image-logo: url('../img/logo.svg?v=1') !default; $image-login-background: url('../img/background.png?v=2') !default; $color-loading-light: #ccc !default; -$color-loading-dark: #777 !default; +$color-loading-dark: #444 !default; $color-box-shadow: rgba(nc-darken($color-main-background, 70%), 0.5) !default; diff --git a/core/js/login.js b/core/js/login.js index 3447a5de724..64be29bfec6 100644 --- a/core/js/login.js +++ b/core/js/login.js @@ -17,7 +17,9 @@ OC.Login = _.extend(OC.Login || {}, { if($('form[name=login][action]').length === 0) { $('#submit-wrapper .submit-icon') .removeClass('icon-confirm-white') - .addClass('icon-loading-small-dark'); + .addClass(OCA.Theming && OCA.Theming.inverted + ? 'icon-loading-small' + : 'icon-loading-small-dark'); $('#submit') .attr('value', t('core', 'Logging in …')); $('.login-additional').fadeOut(); diff --git a/core/l10n/fi.js b/core/l10n/fi.js index 520fd31b8de..91b96003502 100644 --- a/core/l10n/fi.js +++ b/core/l10n/fi.js @@ -139,9 +139,12 @@ OC.L10N.register( "Not supported!" : "Ei tuettu!", "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", + "Unable to create a link share" : "Linkkijaon tekeminen ei onnistunut", "Resharing is not allowed" : "Jakaminen uudelleen ei ole sallittu", "Share to {name}" : "Jaa henkilölle {name}", "Link" : "Linkki", + "Hide download" : "Piilota lataus", + "Password protection enforced" : "Salasanasuojaus pakotettu", "Password protect" : "Suojaa salasanalla", "Allow editing" : "Salli muokkaus", "Email link to person" : "Lähetä linkki sähköpostitse", @@ -149,11 +152,16 @@ OC.L10N.register( "Allow upload and editing" : "Salli lähetys ja muokkaus", "Read only" : "Vain luku", "File drop (upload only)" : "Tiedostojen pudotus (Vain lähetys)", + "Expiration date enforced" : "Vanhenemispäivä pakotettu", "Set expiration date" : "Aseta vanhenemispäivä", "Expiration" : "Vanheneminen", "Expiration date" : "Vanhenemispäivä", "Unshare" : "Lopeta jakaminen", + "Delete share link" : "Poista jakolinkki", + "Add another link" : "Lisää toinen linkki", + "Password protection for links is mandatory" : "Linkkien salasanasuojaus on pakollista", "Share link" : "Jaa linkki", + "New share link" : "Uusi jakolinkki", "Could not unshare" : "Jakamisen lopettaminen epäonnistui", "Shared with you and the group {group} by {owner}" : "Jaettu sinun ja ryhmän {group} kanssa käyttäjältä {owner}", "Shared with you by {owner}" : "Jaettu kanssasi käyttäjältä {owner}", @@ -177,6 +185,9 @@ OC.L10N.register( "No users found for {search}" : "Haulla {search} ei löytynyt käyttäjiä", "An error occurred (\"{message}\"). Please try again" : "Tapahtui virhe (\"{message}\"). Yritä uudestaan", "An error occurred. Please try again" : "Tapahtui virhe, yritä uudelleen", + "Home" : "Koti", + "Work" : "Työ", + "Other" : "Muu", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Jaa", "Name or email address..." : "Nimi tai sähköpostiosoite...", @@ -292,6 +303,7 @@ OC.L10N.register( "Error while validating your second factor" : "Tunnistuksen toisen vaiheen tarkistus epäonnistui", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Ota yhteys ylläpitoon, tai jos olet tämän palvelun ylläpitäjä, määritä \"trusted_domains\"-asetus config/config.php-tiedostossa. Esimerkkimääritys on tiedostossa config/config.sample.php.", "App update required" : "Sovelluksen päivittäminen vaaditaan", + "%1$s will be updated to version %2$s" : "%1$s päivitetään versioon %2$s", "These apps will be updated:" : "Nämä sovellukset päivitetään:", "These incompatible apps will be disabled:" : "Nämä yhteensopimattomat sovellukset poistetaan käytöstä:", "The theme %s has been disabled." : "Teema %s on poistettu käytöstä.", @@ -304,7 +316,9 @@ OC.L10N.register( "For help, see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">documentation</a>." : "Jos tarvitset apua, katso <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">ohjeista</a>.", "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Tiedän että jos jatkan päivittämistä web-liittymän kautta, saatan menettää kaikki tiedostot, mikäli päivitys epäonnistuu. Onneksi olen tehnyt varmuuskopion ja osaan sen myös palauttaa tarvittaessa.", "Upgrade via web on my own risk" : "Internetin kautta päivittäminen omalla vastuulla", + "Maintenance mode" : "Huoltotila", "This %s instance is currently in maintenance mode, which may take a while." : "Tämä %s-instanssi on parhaillaan huoltotilassa, huollossa saattaa kestää hetki.", + "This page will refresh itself when the instance is available again." : "Tämä sivu päivittyy itsestään, kun instanssi on jälleen käytettävissä.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Ota yhteys järjestelmän ylläpitäjään, jos tämä viesti ilmenee uudelleen tai odottamatta.", "Updated \"%s\" to %s" : "Päivitetty \"%s\" versioon %s", "%s (3rdparty)" : "%s (3. osapuolen)", diff --git a/core/l10n/fi.json b/core/l10n/fi.json index 970cba661d1..07f38e16097 100644 --- a/core/l10n/fi.json +++ b/core/l10n/fi.json @@ -137,9 +137,12 @@ "Not supported!" : "Ei tuettu!", "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", + "Unable to create a link share" : "Linkkijaon tekeminen ei onnistunut", "Resharing is not allowed" : "Jakaminen uudelleen ei ole sallittu", "Share to {name}" : "Jaa henkilölle {name}", "Link" : "Linkki", + "Hide download" : "Piilota lataus", + "Password protection enforced" : "Salasanasuojaus pakotettu", "Password protect" : "Suojaa salasanalla", "Allow editing" : "Salli muokkaus", "Email link to person" : "Lähetä linkki sähköpostitse", @@ -147,11 +150,16 @@ "Allow upload and editing" : "Salli lähetys ja muokkaus", "Read only" : "Vain luku", "File drop (upload only)" : "Tiedostojen pudotus (Vain lähetys)", + "Expiration date enforced" : "Vanhenemispäivä pakotettu", "Set expiration date" : "Aseta vanhenemispäivä", "Expiration" : "Vanheneminen", "Expiration date" : "Vanhenemispäivä", "Unshare" : "Lopeta jakaminen", + "Delete share link" : "Poista jakolinkki", + "Add another link" : "Lisää toinen linkki", + "Password protection for links is mandatory" : "Linkkien salasanasuojaus on pakollista", "Share link" : "Jaa linkki", + "New share link" : "Uusi jakolinkki", "Could not unshare" : "Jakamisen lopettaminen epäonnistui", "Shared with you and the group {group} by {owner}" : "Jaettu sinun ja ryhmän {group} kanssa käyttäjältä {owner}", "Shared with you by {owner}" : "Jaettu kanssasi käyttäjältä {owner}", @@ -175,6 +183,9 @@ "No users found for {search}" : "Haulla {search} ei löytynyt käyttäjiä", "An error occurred (\"{message}\"). Please try again" : "Tapahtui virhe (\"{message}\"). Yritä uudestaan", "An error occurred. Please try again" : "Tapahtui virhe, yritä uudelleen", + "Home" : "Koti", + "Work" : "Työ", + "Other" : "Muu", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", "Share" : "Jaa", "Name or email address..." : "Nimi tai sähköpostiosoite...", @@ -290,6 +301,7 @@ "Error while validating your second factor" : "Tunnistuksen toisen vaiheen tarkistus epäonnistui", "Please contact your administrator. If you are an administrator, edit the \"trusted_domains\" setting in config/config.php like the example in config.sample.php." : "Ota yhteys ylläpitoon, tai jos olet tämän palvelun ylläpitäjä, määritä \"trusted_domains\"-asetus config/config.php-tiedostossa. Esimerkkimääritys on tiedostossa config/config.sample.php.", "App update required" : "Sovelluksen päivittäminen vaaditaan", + "%1$s will be updated to version %2$s" : "%1$s päivitetään versioon %2$s", "These apps will be updated:" : "Nämä sovellukset päivitetään:", "These incompatible apps will be disabled:" : "Nämä yhteensopimattomat sovellukset poistetaan käytöstä:", "The theme %s has been disabled." : "Teema %s on poistettu käytöstä.", @@ -302,7 +314,9 @@ "For help, see the <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">documentation</a>." : "Jos tarvitset apua, katso <a target=\"_blank\" rel=\"noreferrer noopener\" href=\"%s\">ohjeista</a>.", "I know that if I continue doing the update via web UI has the risk, that the request runs into a timeout and could cause data loss, but I have a backup and know how to restore my instance in case of a failure." : "Tiedän että jos jatkan päivittämistä web-liittymän kautta, saatan menettää kaikki tiedostot, mikäli päivitys epäonnistuu. Onneksi olen tehnyt varmuuskopion ja osaan sen myös palauttaa tarvittaessa.", "Upgrade via web on my own risk" : "Internetin kautta päivittäminen omalla vastuulla", + "Maintenance mode" : "Huoltotila", "This %s instance is currently in maintenance mode, which may take a while." : "Tämä %s-instanssi on parhaillaan huoltotilassa, huollossa saattaa kestää hetki.", + "This page will refresh itself when the instance is available again." : "Tämä sivu päivittyy itsestään, kun instanssi on jälleen käytettävissä.", "Contact your system administrator if this message persists or appeared unexpectedly." : "Ota yhteys järjestelmän ylläpitäjään, jos tämä viesti ilmenee uudelleen tai odottamatta.", "Updated \"%s\" to %s" : "Päivitetty \"%s\" versioon %s", "%s (3rdparty)" : "%s (3. osapuolen)", diff --git a/core/l10n/ja.js b/core/l10n/ja.js index 583718e7e5a..172c5bb5790 100644 --- a/core/l10n/ja.js +++ b/core/l10n/ja.js @@ -189,7 +189,7 @@ OC.L10N.register( "This list is maybe truncated - please refine your search term to see more results." : "このリストは切り捨てられている可能性があります - 検索語句を絞り込んで検索結果を表示してください。", "No users or groups found for {search}" : "{search} の検索でユーザー、グループが見つかりません", "No users found for {search}" : "{search} のユーザーはいませんでした", - "An error occurred (\"{message}\"). Please try again" : "エラーが発生しました(「{メッセージ}」)。 もう一度お試しください", + "An error occurred (\"{message}\"). Please try again" : "エラーが発生しました(\"{message}\")。 もう一度お試しください", "An error occurred. Please try again" : "エラーが発生しました。もう一度実行してください。", "Home" : "ホーム", "Work" : "職場", @@ -377,7 +377,7 @@ OC.L10N.register( "Depending on your configuration, this button could also work to trust the domain:" : "設定に応じて、このボタンはドメインを信頼することもできます:", "Copy URL" : "URL をコピー", "Enable" : "有効にする", - "{sharee} (conversation)" : "{共有}(会話)", + "{sharee} (conversation)" : "{sharee}(会話)", "Please log in before granting %s access to your %s account." : "あなたの %s アカウントに %s アクセスを許可する前にログインしてください。", "Further information how to configure this can be found in the %sdocumentation%s." : "これを構成する方法の詳細は、%sドキュメント%sにあります。" }, diff --git a/core/l10n/ja.json b/core/l10n/ja.json index 63d10f40fe0..59b4c58c434 100644 --- a/core/l10n/ja.json +++ b/core/l10n/ja.json @@ -187,7 +187,7 @@ "This list is maybe truncated - please refine your search term to see more results." : "このリストは切り捨てられている可能性があります - 検索語句を絞り込んで検索結果を表示してください。", "No users or groups found for {search}" : "{search} の検索でユーザー、グループが見つかりません", "No users found for {search}" : "{search} のユーザーはいませんでした", - "An error occurred (\"{message}\"). Please try again" : "エラーが発生しました(「{メッセージ}」)。 もう一度お試しください", + "An error occurred (\"{message}\"). Please try again" : "エラーが発生しました(\"{message}\")。 もう一度お試しください", "An error occurred. Please try again" : "エラーが発生しました。もう一度実行してください。", "Home" : "ホーム", "Work" : "職場", @@ -375,7 +375,7 @@ "Depending on your configuration, this button could also work to trust the domain:" : "設定に応じて、このボタンはドメインを信頼することもできます:", "Copy URL" : "URL をコピー", "Enable" : "有効にする", - "{sharee} (conversation)" : "{共有}(会話)", + "{sharee} (conversation)" : "{sharee}(会話)", "Please log in before granting %s access to your %s account." : "あなたの %s アカウントに %s アクセスを許可する前にログインしてください。", "Further information how to configure this can be found in the %sdocumentation%s." : "これを構成する方法の詳細は、%sドキュメント%sにあります。" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/core/l10n/sr.js b/core/l10n/sr.js index c006f070957..3115b61bf51 100644 --- a/core/l10n/sr.js +++ b/core/l10n/sr.js @@ -217,6 +217,7 @@ OC.L10N.register( "An error occurred (\"{message}\"). Please try again" : "Десила се грешка (\"{message}\"). Покушајте поново.", "An error occurred. Please try again" : "Дошло је до грешке. Покушајте поново", "Home" : "Почетна", + "Work" : "Посао", "Other" : "Остало", "{sharee} (remote group)" : "{sharee} (удаљена група)", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", diff --git a/core/l10n/sr.json b/core/l10n/sr.json index 85596b1e244..ad6111bc1da 100644 --- a/core/l10n/sr.json +++ b/core/l10n/sr.json @@ -215,6 +215,7 @@ "An error occurred (\"{message}\"). Please try again" : "Десила се грешка (\"{message}\"). Покушајте поново.", "An error occurred. Please try again" : "Дошло је до грешке. Покушајте поново", "Home" : "Почетна", + "Work" : "Посао", "Other" : "Остало", "{sharee} (remote group)" : "{sharee} (удаљена група)", "{sharee} ({type}, {owner})" : "{sharee} ({type}, {owner})", diff --git a/core/routes.php b/core/routes.php index f5e6d8e7d21..88f919bdd2f 100644 --- a/core/routes.php +++ b/core/routes.php @@ -62,7 +62,6 @@ $application->registerRoutes($this, [ ['name' => 'Preview#getPreviewByFileId', 'url' => '/core/preview', 'verb' => 'GET'], ['name' => 'Preview#getPreview', 'url' => '/core/preview.png', 'verb' => 'GET'], ['name' => 'Svg#getSvgFromCore', 'url' => '/svg/core/{folder}/{fileName}', 'verb' => 'GET'], - ['name' => 'Svg#getSvgFromSettings', 'url' => '/svg/settings/{folder}/{fileName}', 'verb' => 'GET'], ['name' => 'Svg#getSvgFromApp', 'url' => '/svg/{app}/{fileName}', 'verb' => 'GET'], ['name' => 'Css#getCss', 'url' => '/css/{appName}/{fileName}', 'verb' => 'GET'], ['name' => 'Js#getJs', 'url' => '/js/{appName}/{fileName}', 'verb' => 'GET'], diff --git a/lib/private/Files/Cache/Cache.php b/lib/private/Files/Cache/Cache.php index 1cb11c70a40..43e48e51654 100644 --- a/lib/private/Files/Cache/Cache.php +++ b/lib/private/Files/Cache/Cache.php @@ -150,6 +150,8 @@ class Cache implements ICache { $data = $this->partial[$file]; } return $data; + } else if (!$data) { + return $data; } else { return self::cacheEntryFromData($data, $this->mimetypeLoader); } diff --git a/lib/private/Files/ObjectStore/ObjectStoreStorage.php b/lib/private/Files/ObjectStore/ObjectStoreStorage.php index 71acd27783c..26db551a384 100644 --- a/lib/private/Files/ObjectStore/ObjectStoreStorage.php +++ b/lib/private/Files/ObjectStore/ObjectStoreStorage.php @@ -29,6 +29,7 @@ use Icewind\Streams\CallbackWrapper; use Icewind\Streams\IteratorDirectory; use OC\Files\Cache\CacheEntry; use OC\Files\Stream\CountReadStream; +use OCP\Files\NotFoundException; use OCP\Files\ObjectStore\IObjectStore; class ObjectStoreStorage extends \OC\Files\Storage\Common { @@ -275,10 +276,16 @@ class ObjectStoreStorage extends \OC\Files\Storage\Common { if (is_array($stat)) { try { return $this->objectStore->readObject($this->getURN($stat['fileid'])); + } catch (NotFoundException $e) { + $this->logger->logException($e, [ + 'app' => 'objectstore', + 'message' => 'Could not get object ' . $this->getURN($stat['fileid']) . ' for file ' . $path, + ]); + throw $e; } catch (\Exception $ex) { $this->logger->logException($ex, [ 'app' => 'objectstore', - 'message' => 'Count not get object ' . $this->getURN($stat['fileid']) . ' for file ' . $path, + 'message' => 'Could not get object ' . $this->getURN($stat['fileid']) . ' for file ' . $path, ]); return false; } diff --git a/lib/private/Files/ObjectStore/Swift.php b/lib/private/Files/ObjectStore/Swift.php index 6bb01506c4c..e379e54d018 100644 --- a/lib/private/Files/ObjectStore/Swift.php +++ b/lib/private/Files/ObjectStore/Swift.php @@ -27,8 +27,10 @@ namespace OC\Files\ObjectStore; use function GuzzleHttp\Psr7\stream_for; use Icewind\Streams\RetryWrapper; +use OCP\Files\NotFoundException; use OCP\Files\ObjectStore\IObjectStore; use OCP\Files\StorageAuthException; +use OpenStack\Common\Error\BadResponseError; class Swift implements IObjectStore { /** @@ -84,13 +86,22 @@ class Swift implements IObjectStore { * @param string $urn the unified resource name used to identify the object * @return resource stream with the read data * @throws \Exception from openstack lib when something goes wrong + * @throws NotFoundException if file does not exist */ public function readObject($urn) { - $object = $this->getContainer()->getObject($urn); - - // we need to keep a reference to objectContent or - // the stream will be closed before we can do anything with it - $objectContent = $object->download(); + try { + $object = $this->getContainer()->getObject($urn); + + // we need to keep a reference to objectContent or + // the stream will be closed before we can do anything with it + $objectContent = $object->download(); + } catch (BadResponseError $e) { + if ($e->getResponse()->getStatusCode() === 404) { + throw new NotFoundException("object $urn not found in object store"); + } else { + throw $e; + } + } $objectContent->rewind(); $stream = $objectContent->detach(); diff --git a/lib/private/Setup.php b/lib/private/Setup.php index 7e235d03fdc..0278191587a 100644 --- a/lib/private/Setup.php +++ b/lib/private/Setup.php @@ -504,7 +504,7 @@ class Setup { $content .= "\n Options -MultiViews"; $content .= "\n RewriteRule ^core/js/oc.js$ index.php [PT,E=PATH_INFO:$1]"; $content .= "\n RewriteRule ^core/preview.png$ index.php [PT,E=PATH_INFO:$1]"; - $content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$"; + $content .= "\n RewriteCond %{REQUEST_FILENAME} !\\.(css|js|svg|gif|png|html|ttf|woff2?|ico|jpg|jpeg)$"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/favicon.ico$"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !core/img/manifest.json$"; $content .= "\n RewriteCond %{REQUEST_FILENAME} !/remote.php"; diff --git a/lib/private/User/Session.php b/lib/private/User/Session.php index 674f38e2401..8d1cfd13a50 100644 --- a/lib/private/User/Session.php +++ b/lib/private/User/Session.php @@ -783,6 +783,10 @@ class Session implements IUserSession, Emitter { if(!$this->validateToken($token)) { return false; } + + // Set the session variable so we know this is an app password + $this->session->set('app_password', $token); + return true; } diff --git a/lib/public/Files/ObjectStore/IObjectStore.php b/lib/public/Files/ObjectStore/IObjectStore.php index 8e9df5a55a3..628fd5852da 100644 --- a/lib/public/Files/ObjectStore/IObjectStore.php +++ b/lib/public/Files/ObjectStore/IObjectStore.php @@ -23,6 +23,8 @@ */ namespace OCP\Files\ObjectStore; +use OCP\Files\NotFoundException; + /** * Interface IObjectStore * @@ -41,6 +43,7 @@ interface IObjectStore { * @param string $urn the unified resource name used to identify the object * @return resource stream with the read data * @throws \Exception when something goes wrong, message will be logged + * @throws NotFoundException if file does not exist * @since 7.0.0 */ public function readObject($urn); diff --git a/settings/Controller/CheckSetupController.php b/settings/Controller/CheckSetupController.php index fa4ed57ab95..ba56c72dccf 100644 --- a/settings/Controller/CheckSetupController.php +++ b/settings/Controller/CheckSetupController.php @@ -530,7 +530,7 @@ Raw output } protected function isPhpMailerUsed(): bool { - return $this->config->getSystemValue('mail_smtpmode', 'php') === 'php'; + return $this->config->getSystemValue('mail_smtpmode', 'smtp') === 'php'; } protected function hasOpcacheLoaded(): bool { diff --git a/settings/l10n/af.js b/settings/l10n/af.js index 86df466abf7..d2b2739d41d 100644 --- a/settings/l10n/af.js +++ b/settings/l10n/af.js @@ -17,9 +17,15 @@ OC.L10N.register( "Go to %s" : "Gaan na %s", "Visit website" : "Besoek webwerf", "User documentation" : "Gebruikerdokumentasie", + "Admin documentation" : "Admindokumentasie", + "New password" : "Nuwe wagwoord", + "Username" : "Gebruikersnaam", + "Password" : "Wagwoord", "Email" : "E-pos", "Group admin for" : "Groepadmin vir", + "Quota" : "Kwota", "Language" : "Taal", + "Last login" : "Laaste aantekening", "Default quota" : "Verstekkwota", "Your apps" : "U toeps", "Disabled apps" : "Gedeaktiveerde toeps", @@ -53,14 +59,11 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Twitter-handvatsel @…", "Help translate" : "Help met vertaling", - "Password" : "Wagwoord", "Current password" : "Huidige wagwoord", - "New password" : "Nuwe wagwoord", "Change password" : "Verander wagwoord", "Device" : "Toestel", "App name" : "Toepnaam", "Create new app password" : "Skep nuwe toepwagwoord", - "Username" : "Gebruikersnaam", "Enabled apps" : "Geaktiveerde toeps", "Group already exists." : "Groep bestaan reeds.", "Forbidden" : "Verbode", @@ -70,7 +73,6 @@ OC.L10N.register( "by %s" : "deur %s", "%s-licensed" : "%s-gelisensieer", "Documentation:" : "Dokumentasie:", - "Admin documentation" : "Admindokumentasie", "Online documentation" : "Aanlyndokumentasie", "You are using <strong>%s</strong> of <strong>%s</strong>" : "U gebruik <strong>%s</strong> van <strong>%s</strong>", "You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "U gebruik <strong>%s</strong> van <strong>%s</strong> (<strong>%s %%</strong>)", @@ -82,8 +84,6 @@ OC.L10N.register( "Create" : "Skep", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Voer asb. ’n verstekkwota in (bv.: “512 MB” of “12 GB”)", "Other" : "Ander", - "Quota" : "Kwota", - "Last login" : "Laaste aantekening", "change full name" : "verander volle naam", "set new password" : "stel nuwe wagwoord", "change email address" : "verander e-posadres", diff --git a/settings/l10n/af.json b/settings/l10n/af.json index 228755ab4b3..bd686573a89 100644 --- a/settings/l10n/af.json +++ b/settings/l10n/af.json @@ -15,9 +15,15 @@ "Go to %s" : "Gaan na %s", "Visit website" : "Besoek webwerf", "User documentation" : "Gebruikerdokumentasie", + "Admin documentation" : "Admindokumentasie", + "New password" : "Nuwe wagwoord", + "Username" : "Gebruikersnaam", + "Password" : "Wagwoord", "Email" : "E-pos", "Group admin for" : "Groepadmin vir", + "Quota" : "Kwota", "Language" : "Taal", + "Last login" : "Laaste aantekening", "Default quota" : "Verstekkwota", "Your apps" : "U toeps", "Disabled apps" : "Gedeaktiveerde toeps", @@ -51,14 +57,11 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Twitter-handvatsel @…", "Help translate" : "Help met vertaling", - "Password" : "Wagwoord", "Current password" : "Huidige wagwoord", - "New password" : "Nuwe wagwoord", "Change password" : "Verander wagwoord", "Device" : "Toestel", "App name" : "Toepnaam", "Create new app password" : "Skep nuwe toepwagwoord", - "Username" : "Gebruikersnaam", "Enabled apps" : "Geaktiveerde toeps", "Group already exists." : "Groep bestaan reeds.", "Forbidden" : "Verbode", @@ -68,7 +71,6 @@ "by %s" : "deur %s", "%s-licensed" : "%s-gelisensieer", "Documentation:" : "Dokumentasie:", - "Admin documentation" : "Admindokumentasie", "Online documentation" : "Aanlyndokumentasie", "You are using <strong>%s</strong> of <strong>%s</strong>" : "U gebruik <strong>%s</strong> van <strong>%s</strong>", "You are using <strong>%s</strong> of <strong>%s</strong> (<strong>%s %%</strong>)" : "U gebruik <strong>%s</strong> van <strong>%s</strong> (<strong>%s %%</strong>)", @@ -80,8 +82,6 @@ "Create" : "Skep", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Voer asb. ’n verstekkwota in (bv.: “512 MB” of “12 GB”)", "Other" : "Ander", - "Quota" : "Kwota", - "Last login" : "Laaste aantekening", "change full name" : "verander volle naam", "set new password" : "stel nuwe wagwoord", "change email address" : "verander e-posadres", diff --git a/settings/l10n/ar.js b/settings/l10n/ar.js index e3be8b0b1c3..30ff9b8cbc0 100644 --- a/settings/l10n/ar.js +++ b/settings/l10n/ar.js @@ -69,16 +69,27 @@ OC.L10N.register( "Select a profile picture" : "اختر صورة الملف الشخصي ", "Groups" : "مجموعات", "Official" : "الرسمي", + "Remove" : "حذف", + "Disable" : "إيقاف", + "All" : "الكل", + "View in store" : "العرض على المتجر", "Visit website" : "زر الموقع", + "Report a bug" : "الإبلاغ عن عِلّة", "User documentation" : "دليل المستخدم", + "Admin documentation" : "دليل المدير", "Developer documentation" : "دليل المُطوّر", "Enable all" : "تنشيط الكل", "Enable" : "تفعيل", + "New password" : "كلمات سر جديدة", + "Username" : "إسم المستخدم", + "Password" : "كلمة المرور", "Email" : "البريد الإلكترونى", "Group admin for" : "فريق المُدراء لـ", + "Quota" : "حصه", "Language" : "اللغة", + "Storage location" : "مسار التخزين", + "Last login" : "آخِر تسجيل للدخول", "Unlimited" : "غير محدود", - "App update" : "تحديث التطبيق", "Your apps" : "تطبيقاتك", "Disabled apps" : "التطبيقات المعطلة", "Updates" : "التحديثات", @@ -86,6 +97,7 @@ OC.L10N.register( "Admins" : "المدراء", "Everyone" : "الجميع", "Add group" : "إضافة فريق", + "App update" : "تحديث التطبيق", "SSL Root Certificates" : "شهادات أمان الـ SSL الجذرية", "Common Name" : "الإسم الشائع", "Valid until" : "صالح حتى", @@ -152,15 +164,12 @@ OC.L10N.register( "Link https://…" : "الرابط https://…", "Twitter" : "تويتر", "Help translate" : "ساعد في الترجمه", - "Password" : "كلمة المرور", "Current password" : "كلمات السر الحالية", - "New password" : "كلمات سر جديدة", "Change password" : "عدل كلمة السر", "Device" : "الجهاز", "Last activity" : "آخر نشاط", "App name" : "إسم التطبيق", "Create new app password" : "إنشاء كلمة سرية جديدة للتطبيق", - "Username" : "إسم المستخدم", "Done" : "تم", "Enabled apps" : "التطبيقات المفعّلة", "Migration Completed" : "إكتملت عملية الترحيل", @@ -175,17 +184,14 @@ OC.L10N.register( "Email saved" : "تم حفظ البريد الإلكتروني", "Password confirmation is required" : "مِن الواجب تأكيد كلمة السر", "Add trusted domain" : "أضافة نطاق موثوق فيه", - "All" : "الكل", "Update to %s" : "التحديث إلى %s", "Disabling app …" : "جارٍ تعطيل التطبيق …", "Error while disabling app" : "خطا عند تعطيل البرنامج", - "Disable" : "إيقاف", "Enabling app …" : "جارٍ تنشيط التطبيق …", "Error while enabling app" : "خطا عند تفعيل البرنامج ", "Updating...." : "جاري التحديث ...", "Updated" : "تم التحديث بنجاح", "Removing …" : "عملية الحذف جارية …", - "Remove" : "حذف", "Approved" : "تم قبوله", "Experimental" : "تجريبي", "undo" : "تراجع", @@ -202,11 +208,8 @@ OC.L10N.register( "Tips & tricks" : "نصائح و تلميحات", "How to do backups" : "كيف يمكنكم إنشاء نسخ إحتياطية", "Theming" : "المظهر", - "View in store" : "العرض على المتجر", "by %s" : "مِن %s", "Documentation:" : "التوثيق", - "Admin documentation" : "دليل المدير", - "Report a bug" : "الإبلاغ عن عِلّة", "Show description …" : "إظهار الوصف …", "Hide description …" : "إخفاء الوصف …", "Online documentation" : "التعليمات على الإنترنت", @@ -230,9 +233,6 @@ OC.L10N.register( "Disabled" : "معطّل", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")", "Other" : "شيء آخر", - "Quota" : "حصه", - "Storage location" : "مسار التخزين", - "Last login" : "آخِر تسجيل للدخول", "change full name" : "تغيير اسمك الكامل", "set new password" : "اعداد كلمة مرور جديدة", "change email address" : "تعديل عنوان البريد الإلكتروني", diff --git a/settings/l10n/ar.json b/settings/l10n/ar.json index 47869c6752f..2db7f91f681 100644 --- a/settings/l10n/ar.json +++ b/settings/l10n/ar.json @@ -67,16 +67,27 @@ "Select a profile picture" : "اختر صورة الملف الشخصي ", "Groups" : "مجموعات", "Official" : "الرسمي", + "Remove" : "حذف", + "Disable" : "إيقاف", + "All" : "الكل", + "View in store" : "العرض على المتجر", "Visit website" : "زر الموقع", + "Report a bug" : "الإبلاغ عن عِلّة", "User documentation" : "دليل المستخدم", + "Admin documentation" : "دليل المدير", "Developer documentation" : "دليل المُطوّر", "Enable all" : "تنشيط الكل", "Enable" : "تفعيل", + "New password" : "كلمات سر جديدة", + "Username" : "إسم المستخدم", + "Password" : "كلمة المرور", "Email" : "البريد الإلكترونى", "Group admin for" : "فريق المُدراء لـ", + "Quota" : "حصه", "Language" : "اللغة", + "Storage location" : "مسار التخزين", + "Last login" : "آخِر تسجيل للدخول", "Unlimited" : "غير محدود", - "App update" : "تحديث التطبيق", "Your apps" : "تطبيقاتك", "Disabled apps" : "التطبيقات المعطلة", "Updates" : "التحديثات", @@ -84,6 +95,7 @@ "Admins" : "المدراء", "Everyone" : "الجميع", "Add group" : "إضافة فريق", + "App update" : "تحديث التطبيق", "SSL Root Certificates" : "شهادات أمان الـ SSL الجذرية", "Common Name" : "الإسم الشائع", "Valid until" : "صالح حتى", @@ -150,15 +162,12 @@ "Link https://…" : "الرابط https://…", "Twitter" : "تويتر", "Help translate" : "ساعد في الترجمه", - "Password" : "كلمة المرور", "Current password" : "كلمات السر الحالية", - "New password" : "كلمات سر جديدة", "Change password" : "عدل كلمة السر", "Device" : "الجهاز", "Last activity" : "آخر نشاط", "App name" : "إسم التطبيق", "Create new app password" : "إنشاء كلمة سرية جديدة للتطبيق", - "Username" : "إسم المستخدم", "Done" : "تم", "Enabled apps" : "التطبيقات المفعّلة", "Migration Completed" : "إكتملت عملية الترحيل", @@ -173,17 +182,14 @@ "Email saved" : "تم حفظ البريد الإلكتروني", "Password confirmation is required" : "مِن الواجب تأكيد كلمة السر", "Add trusted domain" : "أضافة نطاق موثوق فيه", - "All" : "الكل", "Update to %s" : "التحديث إلى %s", "Disabling app …" : "جارٍ تعطيل التطبيق …", "Error while disabling app" : "خطا عند تعطيل البرنامج", - "Disable" : "إيقاف", "Enabling app …" : "جارٍ تنشيط التطبيق …", "Error while enabling app" : "خطا عند تفعيل البرنامج ", "Updating...." : "جاري التحديث ...", "Updated" : "تم التحديث بنجاح", "Removing …" : "عملية الحذف جارية …", - "Remove" : "حذف", "Approved" : "تم قبوله", "Experimental" : "تجريبي", "undo" : "تراجع", @@ -200,11 +206,8 @@ "Tips & tricks" : "نصائح و تلميحات", "How to do backups" : "كيف يمكنكم إنشاء نسخ إحتياطية", "Theming" : "المظهر", - "View in store" : "العرض على المتجر", "by %s" : "مِن %s", "Documentation:" : "التوثيق", - "Admin documentation" : "دليل المدير", - "Report a bug" : "الإبلاغ عن عِلّة", "Show description …" : "إظهار الوصف …", "Hide description …" : "إخفاء الوصف …", "Online documentation" : "التعليمات على الإنترنت", @@ -228,9 +231,6 @@ "Disabled" : "معطّل", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "يرجى ادخال تخزين quota (مثل:\"512 MB\" او \"12 GB\")", "Other" : "شيء آخر", - "Quota" : "حصه", - "Storage location" : "مسار التخزين", - "Last login" : "آخِر تسجيل للدخول", "change full name" : "تغيير اسمك الكامل", "set new password" : "اعداد كلمة مرور جديدة", "change email address" : "تعديل عنوان البريد الإلكتروني", diff --git a/settings/l10n/ast.js b/settings/l10n/ast.js index c5d8fa11907..676e3a1baf6 100644 --- a/settings/l10n/ast.js +++ b/settings/l10n/ast.js @@ -97,28 +97,43 @@ OC.L10N.register( "Select a profile picture" : "Esbillar una imaxe de perfil", "Groups" : "Grupos", "Limit to groups" : "Llendar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicaciones oficiales desendólquense dientro la comunidá. Ufren funcionalidá central y tán preparaes pal usu en producción.", "Official" : "Oficial", + "Remove" : "Desaniciar", + "Disable" : "Desactivar", + "All" : "Toos", + "View in store" : "Ver na tienda", "Visit website" : "Visitar sitiu web", + "Report a bug" : "Informar un fallu", "User documentation" : "Documentación d'usuariu", "Developer documentation" : "Documentación de desendolcaores", "This app cannot be installed because the following dependencies are not fulfilled:" : "Nun pue instalase esta aplicación porque nun se cumplen les dependencies de darréu:", + "No apps found for your version" : "Nun s'alcontraron anovamientos pa la to versión", "Enable all" : "Habilitar too", "Enable" : "Activar", "The app will be downloaded from the app store" : "L'aplicación baxaráse dende la tienda d'aplicaciones", + "New password" : "Contraseña nueva", "{size} used" : "{size} usaos", + "Username" : "Nome d'usuariu", + "Password" : "Contraseña", "Email" : "Corréu-e", + "Quota" : "Cuota", "Language" : "Llingua", + "Storage location" : "Allugamientu d'almacenamientu", "User backend" : "Backend d'usuarios", + "Last login" : "Aniciu de sesión caberu", "Unlimited" : "Non llendáu", "Default quota" : "Cuota por defeutu", - "Error: This app can not be enabled because it makes the server unstable" : "Fallu: Esta aplicación nun pue activase porque fai inestable'l sirvidor", "Your apps" : "Les tos aplicaciones", "Disabled apps" : "Aplicaciones deshabilitaes", "Updates" : "Anovamientos", "App bundles" : "Llotes d'aplicaciones", + "Show last login" : "Amosar aniciu de sesión caberu", + "Show user backend" : "Amosar backend d'usuarios", "Admins" : "Almins", "Everyone" : "Toos", "Add group" : "Amestar grupu", + "Error: This app can not be enabled because it makes the server unstable" : "Fallu: Esta aplicación nun pue activase porque fai inestable'l sirvidor", "Common Name" : "Nome común", "Valid until" : "Válidu hasta", "Issued By" : "Emitíu por", @@ -205,16 +220,13 @@ OC.L10N.register( "Link https://…" : "Enllaz https://…", "Twitter" : "Twitter", "Help translate" : "Ayúdanos nes traducciones", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Contraseña nueva", "Change password" : "Camudar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Veceros web, d'escritoriu y móviles cola sesión aniciada anguaño na to cuenta.", "Device" : "Preséu", "Last activity" : "Actividá cabera", "App name" : "Nome d'aplicación", "For security reasons this password will only be shown once." : "Por razones de seguranza, esta contraseña namái s'amosará una vegada.", - "Username" : "Nome d'usuariu", "Done" : "Fecho", "Enabled apps" : "Aplicaciones habilitaes", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL ta usando una versión %s non anovada (%s). Anueva'l to sistema operativu o les carauterístiques como %s nun funcionarán de mou fiable, por favor.", @@ -238,22 +250,17 @@ OC.L10N.register( "Password confirmation is required" : "Ríquese la contraseña de confirmación", "Are you really sure you want add {domain} as trusted domain?" : "¿De xuru que quies amestar {domain} como dominiu d'enfotu?", "Add trusted domain" : "Amestar dominiu d'enfotu", - "All" : "Toos", "Update to %s" : "Anovar a %s", - "No apps found for your version" : "Nun s'alcontraron anovamientos pa la to versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicaciones oficiales desendólquense dientro la comunidá. Ufren funcionalidá central y tán preparaes pal usu en producción.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les aplicaciones aprobaes desendólquenles desendolcadores d'enfotu y pasaron una comprobación rápida de seguranza. Caltiénense activamente nun repositoriu de códigu abiertu y los sos caltenedores consideren si son estables pa un usu normal o casual.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Nun se comprobaron los problemes de seguraza d'esta aplicación o si ye nueva o inestable. Instálala sol to propiu riesgu.", "Disabling app …" : "Deshabilitando aplicación...", "Error while disabling app" : "Fallu mientres se desactivaba l'aplicación", - "Disable" : "Desactivar", "Enabling app …" : "Habilitando aplicación...", "Error while enabling app" : "Fallu mientres s'activaba l'aplicación", "Error: Could not disable broken app" : "Fallu: Nun pudo desactivase l'aplicación rota", "Error while disabling broken app" : "Fallu entrín se deshabilitaba l'aplicación rota", "Updated" : "Anováu", "Removing …" : "Desaniciando...", - "Remove" : "Desaniciar", "Approved" : "Aprobóse", "Experimental" : "Esperimental", "No apps found for {query}" : "Nun s'alcontraron aplicaciones pa {query}", @@ -284,12 +291,10 @@ OC.L10N.register( "Improving the config.php" : "Ameyorando'l config.php", "Theming" : "Aspeutu", "Hardening and security guidance" : "Guía de fortalecimientu y seguranza", - "View in store" : "Ver na tienda", "This app has an update available." : "Esta apllicación tien un anovamientu disponible.", "by %s" : "por %s", "%s-licensed" : "Llicencia %s", "Documentation:" : "Documentación:", - "Report a bug" : "Informar un fallu", "Show description …" : "Amosar descripción...", "Hide description …" : "Anubrir descripción...", "Enable only for specific groups" : "Habilitar namái pa grupos específicos", @@ -301,8 +306,6 @@ OC.L10N.register( "You are member of the following groups:" : "Yes miembru de los grupos de darréu:", "Settings" : "Axustes", "Show storage location" : "Amosar allugamientu d'almacenamientu", - "Show user backend" : "Amosar backend d'usuarios", - "Show last login" : "Amosar aniciu de sesión caberu", "Show email address" : "Amosar direición de corréu", "Send email to new user" : "Unviar corréu al usuariu nuevu", "E-Mail" : "Corréu", @@ -311,9 +314,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Introduz la contraseña de recuperación col envís de recuperar los ficheros de los usuarios mientres el cambéu de contraseña.", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")", "Other" : "Otru", - "Quota" : "Cuota", - "Storage location" : "Allugamientu d'almacenamientu", - "Last login" : "Aniciu de sesión caberu", "change full name" : "camudar el nome completu", "set new password" : "afitar nueva contraseña", "change email address" : "camudar direición de corréu", diff --git a/settings/l10n/ast.json b/settings/l10n/ast.json index 1914dd65cef..ae1960f4a0e 100644 --- a/settings/l10n/ast.json +++ b/settings/l10n/ast.json @@ -95,28 +95,43 @@ "Select a profile picture" : "Esbillar una imaxe de perfil", "Groups" : "Grupos", "Limit to groups" : "Llendar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicaciones oficiales desendólquense dientro la comunidá. Ufren funcionalidá central y tán preparaes pal usu en producción.", "Official" : "Oficial", + "Remove" : "Desaniciar", + "Disable" : "Desactivar", + "All" : "Toos", + "View in store" : "Ver na tienda", "Visit website" : "Visitar sitiu web", + "Report a bug" : "Informar un fallu", "User documentation" : "Documentación d'usuariu", "Developer documentation" : "Documentación de desendolcaores", "This app cannot be installed because the following dependencies are not fulfilled:" : "Nun pue instalase esta aplicación porque nun se cumplen les dependencies de darréu:", + "No apps found for your version" : "Nun s'alcontraron anovamientos pa la to versión", "Enable all" : "Habilitar too", "Enable" : "Activar", "The app will be downloaded from the app store" : "L'aplicación baxaráse dende la tienda d'aplicaciones", + "New password" : "Contraseña nueva", "{size} used" : "{size} usaos", + "Username" : "Nome d'usuariu", + "Password" : "Contraseña", "Email" : "Corréu-e", + "Quota" : "Cuota", "Language" : "Llingua", + "Storage location" : "Allugamientu d'almacenamientu", "User backend" : "Backend d'usuarios", + "Last login" : "Aniciu de sesión caberu", "Unlimited" : "Non llendáu", "Default quota" : "Cuota por defeutu", - "Error: This app can not be enabled because it makes the server unstable" : "Fallu: Esta aplicación nun pue activase porque fai inestable'l sirvidor", "Your apps" : "Les tos aplicaciones", "Disabled apps" : "Aplicaciones deshabilitaes", "Updates" : "Anovamientos", "App bundles" : "Llotes d'aplicaciones", + "Show last login" : "Amosar aniciu de sesión caberu", + "Show user backend" : "Amosar backend d'usuarios", "Admins" : "Almins", "Everyone" : "Toos", "Add group" : "Amestar grupu", + "Error: This app can not be enabled because it makes the server unstable" : "Fallu: Esta aplicación nun pue activase porque fai inestable'l sirvidor", "Common Name" : "Nome común", "Valid until" : "Válidu hasta", "Issued By" : "Emitíu por", @@ -203,16 +218,13 @@ "Link https://…" : "Enllaz https://…", "Twitter" : "Twitter", "Help translate" : "Ayúdanos nes traducciones", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Contraseña nueva", "Change password" : "Camudar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Veceros web, d'escritoriu y móviles cola sesión aniciada anguaño na to cuenta.", "Device" : "Preséu", "Last activity" : "Actividá cabera", "App name" : "Nome d'aplicación", "For security reasons this password will only be shown once." : "Por razones de seguranza, esta contraseña namái s'amosará una vegada.", - "Username" : "Nome d'usuariu", "Done" : "Fecho", "Enabled apps" : "Aplicaciones habilitaes", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL ta usando una versión %s non anovada (%s). Anueva'l to sistema operativu o les carauterístiques como %s nun funcionarán de mou fiable, por favor.", @@ -236,22 +248,17 @@ "Password confirmation is required" : "Ríquese la contraseña de confirmación", "Are you really sure you want add {domain} as trusted domain?" : "¿De xuru que quies amestar {domain} como dominiu d'enfotu?", "Add trusted domain" : "Amestar dominiu d'enfotu", - "All" : "Toos", "Update to %s" : "Anovar a %s", - "No apps found for your version" : "Nun s'alcontraron anovamientos pa la to versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicaciones oficiales desendólquense dientro la comunidá. Ufren funcionalidá central y tán preparaes pal usu en producción.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les aplicaciones aprobaes desendólquenles desendolcadores d'enfotu y pasaron una comprobación rápida de seguranza. Caltiénense activamente nun repositoriu de códigu abiertu y los sos caltenedores consideren si son estables pa un usu normal o casual.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Nun se comprobaron los problemes de seguraza d'esta aplicación o si ye nueva o inestable. Instálala sol to propiu riesgu.", "Disabling app …" : "Deshabilitando aplicación...", "Error while disabling app" : "Fallu mientres se desactivaba l'aplicación", - "Disable" : "Desactivar", "Enabling app …" : "Habilitando aplicación...", "Error while enabling app" : "Fallu mientres s'activaba l'aplicación", "Error: Could not disable broken app" : "Fallu: Nun pudo desactivase l'aplicación rota", "Error while disabling broken app" : "Fallu entrín se deshabilitaba l'aplicación rota", "Updated" : "Anováu", "Removing …" : "Desaniciando...", - "Remove" : "Desaniciar", "Approved" : "Aprobóse", "Experimental" : "Esperimental", "No apps found for {query}" : "Nun s'alcontraron aplicaciones pa {query}", @@ -282,12 +289,10 @@ "Improving the config.php" : "Ameyorando'l config.php", "Theming" : "Aspeutu", "Hardening and security guidance" : "Guía de fortalecimientu y seguranza", - "View in store" : "Ver na tienda", "This app has an update available." : "Esta apllicación tien un anovamientu disponible.", "by %s" : "por %s", "%s-licensed" : "Llicencia %s", "Documentation:" : "Documentación:", - "Report a bug" : "Informar un fallu", "Show description …" : "Amosar descripción...", "Hide description …" : "Anubrir descripción...", "Enable only for specific groups" : "Habilitar namái pa grupos específicos", @@ -299,8 +304,6 @@ "You are member of the following groups:" : "Yes miembru de los grupos de darréu:", "Settings" : "Axustes", "Show storage location" : "Amosar allugamientu d'almacenamientu", - "Show user backend" : "Amosar backend d'usuarios", - "Show last login" : "Amosar aniciu de sesión caberu", "Show email address" : "Amosar direición de corréu", "Send email to new user" : "Unviar corréu al usuariu nuevu", "E-Mail" : "Corréu", @@ -309,9 +312,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Introduz la contraseña de recuperación col envís de recuperar los ficheros de los usuarios mientres el cambéu de contraseña.", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota d'almacenamientu (ex: \"512 MB\" o \"12 GB\")", "Other" : "Otru", - "Quota" : "Cuota", - "Storage location" : "Allugamientu d'almacenamientu", - "Last login" : "Aniciu de sesión caberu", "change full name" : "camudar el nome completu", "set new password" : "afitar nueva contraseña", "change email address" : "camudar direición de corréu", diff --git a/settings/l10n/az.js b/settings/l10n/az.js index 94705ca2492..cec68a07f3c 100644 --- a/settings/l10n/az.js +++ b/settings/l10n/az.js @@ -25,12 +25,20 @@ OC.L10N.register( "Strong password" : "Çətin şifrə", "Select a profile picture" : "Profil üçün şəkli seç", "Groups" : "Qruplar", + "Disable" : "Dayandır", + "All" : "Hamısı", "Developer documentation" : "Yaradıcı sənədləşməsi", "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu proqram yüklənə bilməz ona görə ki, göstərilən asılılıqlar yerinə yetirilməyib:", + "No apps found for your version" : "Sizin versiya üçün proqram tapılmadı", "Enable" : "İşə sal", + "New password" : "Yeni şifrə", + "Username" : "İstifadəçi adı", + "Password" : "Şifrə", "Email" : "Email", + "Quota" : "Norma", "Language" : "Dil", "Unlimited" : "Limitsiz", + "Show user backend" : "Daxili istifadəçini göstər", "Admins" : "İnzibatçılar", "Everyone" : "Hamı", "Common Name" : "Ümumi ad", @@ -83,11 +91,8 @@ OC.L10N.register( "Your email address" : "Sizin email ünvanı", "No email address set" : "Email ünvanı dəsti yoxdur", "Help translate" : "Tərcüməyə kömək", - "Password" : "Şifrə", "Current password" : "Hazırkı şifrə", - "New password" : "Yeni şifrə", "Change password" : "Şifrəni dəyiş", - "Username" : "İstifadəçi adı", "Done" : "Edildi", "Group already exists." : "Qrup artılq mövcduddur.", "Unable to add group." : "Qrupu əlavə etmək mümkün deyil. ", @@ -101,11 +106,8 @@ OC.L10N.register( "Unable to change mail address" : "Mail ünvanını dəyişmək olmur", "Email saved" : "Məktub yadda saxlanıldı", "Add trusted domain" : "İnamlı domainlərə əlavə et", - "All" : "Hamısı", "Update to %s" : "Yenilə bunadək %s", - "No apps found for your version" : "Sizin versiya üçün proqram tapılmadı", "Error while disabling app" : "Proqram təminatını dayandırdıqda səhv baş verdi", - "Disable" : "Dayandır", "Error while enabling app" : "Proqram təminatını işə saldıqda səhv baş verdi", "Updated" : "Yeniləndi", "Unable to delete {objName}" : "{objName} silmək olmur", @@ -128,7 +130,6 @@ OC.L10N.register( "Enable only for specific groups" : "Yalnız spesifik qruplara izin ver", "You are member of the following groups:" : "Siz göstərilən qrupların üzvüsünüz:", "Show storage location" : "Depo ünvanını göstər", - "Show user backend" : "Daxili istifadəçini göstər", "Show email address" : "Email ünvanını göstər", "Send email to new user" : "Yeni istifadəçiyə məktub yolla", "E-Mail" : "E-Mail", @@ -137,7 +138,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Şifrə dəyişilməsi müddətində, səliqə ilə bərpa açarını daxil et ki, istifadəçi fayllları bərpa edilsin. ", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Xahiş olunur depo normasını daxil edəsiniz (Məs: \"512 MB\" yada \"12 GB\")", "Other" : "Digər", - "Quota" : "Norma", "change full name" : "tam adı dəyiş", "set new password" : "yeni şifrə təyin et", "change email address" : "email ünvanını dəyiş", diff --git a/settings/l10n/az.json b/settings/l10n/az.json index ec0dbef2ee4..d5f53a149d5 100644 --- a/settings/l10n/az.json +++ b/settings/l10n/az.json @@ -23,12 +23,20 @@ "Strong password" : "Çətin şifrə", "Select a profile picture" : "Profil üçün şəkli seç", "Groups" : "Qruplar", + "Disable" : "Dayandır", + "All" : "Hamısı", "Developer documentation" : "Yaradıcı sənədləşməsi", "This app cannot be installed because the following dependencies are not fulfilled:" : "Bu proqram yüklənə bilməz ona görə ki, göstərilən asılılıqlar yerinə yetirilməyib:", + "No apps found for your version" : "Sizin versiya üçün proqram tapılmadı", "Enable" : "İşə sal", + "New password" : "Yeni şifrə", + "Username" : "İstifadəçi adı", + "Password" : "Şifrə", "Email" : "Email", + "Quota" : "Norma", "Language" : "Dil", "Unlimited" : "Limitsiz", + "Show user backend" : "Daxili istifadəçini göstər", "Admins" : "İnzibatçılar", "Everyone" : "Hamı", "Common Name" : "Ümumi ad", @@ -81,11 +89,8 @@ "Your email address" : "Sizin email ünvanı", "No email address set" : "Email ünvanı dəsti yoxdur", "Help translate" : "Tərcüməyə kömək", - "Password" : "Şifrə", "Current password" : "Hazırkı şifrə", - "New password" : "Yeni şifrə", "Change password" : "Şifrəni dəyiş", - "Username" : "İstifadəçi adı", "Done" : "Edildi", "Group already exists." : "Qrup artılq mövcduddur.", "Unable to add group." : "Qrupu əlavə etmək mümkün deyil. ", @@ -99,11 +104,8 @@ "Unable to change mail address" : "Mail ünvanını dəyişmək olmur", "Email saved" : "Məktub yadda saxlanıldı", "Add trusted domain" : "İnamlı domainlərə əlavə et", - "All" : "Hamısı", "Update to %s" : "Yenilə bunadək %s", - "No apps found for your version" : "Sizin versiya üçün proqram tapılmadı", "Error while disabling app" : "Proqram təminatını dayandırdıqda səhv baş verdi", - "Disable" : "Dayandır", "Error while enabling app" : "Proqram təminatını işə saldıqda səhv baş verdi", "Updated" : "Yeniləndi", "Unable to delete {objName}" : "{objName} silmək olmur", @@ -126,7 +128,6 @@ "Enable only for specific groups" : "Yalnız spesifik qruplara izin ver", "You are member of the following groups:" : "Siz göstərilən qrupların üzvüsünüz:", "Show storage location" : "Depo ünvanını göstər", - "Show user backend" : "Daxili istifadəçini göstər", "Show email address" : "Email ünvanını göstər", "Send email to new user" : "Yeni istifadəçiyə məktub yolla", "E-Mail" : "E-Mail", @@ -135,7 +136,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Şifrə dəyişilməsi müddətində, səliqə ilə bərpa açarını daxil et ki, istifadəçi fayllları bərpa edilsin. ", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Xahiş olunur depo normasını daxil edəsiniz (Məs: \"512 MB\" yada \"12 GB\")", "Other" : "Digər", - "Quota" : "Norma", "change full name" : "tam adı dəyiş", "set new password" : "yeni şifrə təyin et", "change email address" : "email ünvanını dəyiş", diff --git a/settings/l10n/bg.js b/settings/l10n/bg.js index 72bd8542ca7..f017dfa08a0 100644 --- a/settings/l10n/bg.js +++ b/settings/l10n/bg.js @@ -65,20 +65,32 @@ OC.L10N.register( "Groups" : "Групи", "Limit to groups" : "Ограничен достъп", "Official" : "Официално", + "Disable" : "Изключване", + "All" : "Всички", + "View in store" : "Страница в магазина", "Visit website" : "Уеб страницата", + "Report a bug" : "Докладване на грешка", "User documentation" : "Документация за потребители", + "Admin documentation" : "Документация за администратори", "Developer documentation" : "Документация за разработчици", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложението не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", + "No apps found for your version" : "Няма намерени приложения за версията, която ползвате", "Download and enable" : "Сваляне и включване", "Enable" : "Включване", "The app will be downloaded from the app store" : "Приложението ще бъде свалено от магазина за приложения", + "New password" : "Нова парола", "{size} used" : "{size} използвани", + "Username" : "Потребител", + "Password" : "Парола", "Email" : "Имейл", "Group admin for" : "Групов администратор за", + "Quota" : "Квота", "Language" : "Език", + "Storage location" : "Дисково пространство", + "Last login" : "Последно вписване", + "Default language" : "Стандартен език", "Unlimited" : "Неограничено", "Default quota" : "Стандартна квота", - "Default language" : "Стандартен език", "All languages" : "Всички езици", "Your apps" : "Вашите приложения", "Active apps" : "Включени приложения", @@ -162,9 +174,7 @@ OC.L10N.register( "Website" : "Уеб страница", "Twitter" : "Twitter", "Help translate" : "Помогнете с превода", - "Password" : "Парола", "Current password" : "Текуща парола", - "New password" : "Нова парола", "Change password" : "Промени паролата", "Devices & sessions" : "Устройства и сесии", "Web, desktop and mobile clients currently logged in to your account." : "Уеб, настолни и мобилни клиенти, които в момента са вписани чрез вашия акаунт.", @@ -173,7 +183,6 @@ OC.L10N.register( "App name" : "Име на приложението", "Create new app password" : "Създай парола за приложението", "Use the credentials below to configure your app or device." : "Ползвайте данните по-долу за да настроите вашето приложение или устройство.", - "Username" : "Потребител", "Done" : "Готово", "Enabled apps" : "Включени приложения", "Group already exists." : "Групата вече съществува.", @@ -189,12 +198,9 @@ OC.L10N.register( "Email saved" : "Имейлът е запазен", "Are you really sure you want add {domain} as trusted domain?" : "Наистина ли желаете да добавите {domain} в списъка със сигурни домейни?", "Add trusted domain" : "Добавяне на сигурен домейн", - "All" : "Всички", "Update to %s" : "Актуализирай до %s", - "No apps found for your version" : "Няма намерени приложения за версията, която ползвате", "Disabling app …" : "Забраняване на приложение ...", "Error while disabling app" : "Грешка при изключване на приложението", - "Disable" : "Изключване", "Enabling app …" : "Разрешаване на приложение ...", "Error while enabling app" : "Грешка при включване на приложението", "Updated" : "Актуализирано", @@ -221,12 +227,9 @@ OC.L10N.register( "Improving the config.php" : "Подобряване на config.php", "Theming" : "Промяна на облика", "Check the security of your Nextcloud over our security scan" : "Проверете сигурността на текущата инсталация на Nextcloud", - "View in store" : "Страница в магазина", "This app has an update available." : "Налична е актуализация за приложението.", "by %s" : "от %s", "Documentation:" : "Документация:", - "Admin documentation" : "Документация за администратори", - "Report a bug" : "Докладване на грешка", "Show description …" : "Покажи описанието ...", "Hide description …" : "Скрий описанието ...", "Enable only for specific groups" : "Включи само за определени групи", @@ -253,9 +256,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Въведете паролата за възстановяване, за да възстановиш файловете на потребителите при промяна на паролата.", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Моля, въведете квота за хранилището (напр. \"512 MB\" или \"12 GB\")", "Other" : "Друга...", - "Quota" : "Квота", - "Storage location" : "Дисково пространство", - "Last login" : "Последно вписване", "change full name" : "промени име", "set new password" : "сложи нова парола", "change email address" : "Смени адреса на елетронната поща", diff --git a/settings/l10n/bg.json b/settings/l10n/bg.json index 2156ee4eae4..dffce193792 100644 --- a/settings/l10n/bg.json +++ b/settings/l10n/bg.json @@ -63,20 +63,32 @@ "Groups" : "Групи", "Limit to groups" : "Ограничен достъп", "Official" : "Официално", + "Disable" : "Изключване", + "All" : "Всички", + "View in store" : "Страница в магазина", "Visit website" : "Уеб страницата", + "Report a bug" : "Докладване на грешка", "User documentation" : "Документация за потребители", + "Admin documentation" : "Документация за администратори", "Developer documentation" : "Документация за разработчици", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложението не може да бъде инсталирано, защото следните зависимости не са удовлетворени:", + "No apps found for your version" : "Няма намерени приложения за версията, която ползвате", "Download and enable" : "Сваляне и включване", "Enable" : "Включване", "The app will be downloaded from the app store" : "Приложението ще бъде свалено от магазина за приложения", + "New password" : "Нова парола", "{size} used" : "{size} използвани", + "Username" : "Потребител", + "Password" : "Парола", "Email" : "Имейл", "Group admin for" : "Групов администратор за", + "Quota" : "Квота", "Language" : "Език", + "Storage location" : "Дисково пространство", + "Last login" : "Последно вписване", + "Default language" : "Стандартен език", "Unlimited" : "Неограничено", "Default quota" : "Стандартна квота", - "Default language" : "Стандартен език", "All languages" : "Всички езици", "Your apps" : "Вашите приложения", "Active apps" : "Включени приложения", @@ -160,9 +172,7 @@ "Website" : "Уеб страница", "Twitter" : "Twitter", "Help translate" : "Помогнете с превода", - "Password" : "Парола", "Current password" : "Текуща парола", - "New password" : "Нова парола", "Change password" : "Промени паролата", "Devices & sessions" : "Устройства и сесии", "Web, desktop and mobile clients currently logged in to your account." : "Уеб, настолни и мобилни клиенти, които в момента са вписани чрез вашия акаунт.", @@ -171,7 +181,6 @@ "App name" : "Име на приложението", "Create new app password" : "Създай парола за приложението", "Use the credentials below to configure your app or device." : "Ползвайте данните по-долу за да настроите вашето приложение или устройство.", - "Username" : "Потребител", "Done" : "Готово", "Enabled apps" : "Включени приложения", "Group already exists." : "Групата вече съществува.", @@ -187,12 +196,9 @@ "Email saved" : "Имейлът е запазен", "Are you really sure you want add {domain} as trusted domain?" : "Наистина ли желаете да добавите {domain} в списъка със сигурни домейни?", "Add trusted domain" : "Добавяне на сигурен домейн", - "All" : "Всички", "Update to %s" : "Актуализирай до %s", - "No apps found for your version" : "Няма намерени приложения за версията, която ползвате", "Disabling app …" : "Забраняване на приложение ...", "Error while disabling app" : "Грешка при изключване на приложението", - "Disable" : "Изключване", "Enabling app …" : "Разрешаване на приложение ...", "Error while enabling app" : "Грешка при включване на приложението", "Updated" : "Актуализирано", @@ -219,12 +225,9 @@ "Improving the config.php" : "Подобряване на config.php", "Theming" : "Промяна на облика", "Check the security of your Nextcloud over our security scan" : "Проверете сигурността на текущата инсталация на Nextcloud", - "View in store" : "Страница в магазина", "This app has an update available." : "Налична е актуализация за приложението.", "by %s" : "от %s", "Documentation:" : "Документация:", - "Admin documentation" : "Документация за администратори", - "Report a bug" : "Докладване на грешка", "Show description …" : "Покажи описанието ...", "Hide description …" : "Скрий описанието ...", "Enable only for specific groups" : "Включи само за определени групи", @@ -251,9 +254,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Въведете паролата за възстановяване, за да възстановиш файловете на потребителите при промяна на паролата.", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Моля, въведете квота за хранилището (напр. \"512 MB\" или \"12 GB\")", "Other" : "Друга...", - "Quota" : "Квота", - "Storage location" : "Дисково пространство", - "Last login" : "Последно вписване", "change full name" : "промени име", "set new password" : "сложи нова парола", "change email address" : "Смени адреса на елетронната поща", diff --git a/settings/l10n/bn_BD.js b/settings/l10n/bn_BD.js index aa314c68ce8..b4bf64488a3 100644 --- a/settings/l10n/bn_BD.js +++ b/settings/l10n/bn_BD.js @@ -12,8 +12,14 @@ OC.L10N.register( "Delete" : "মুছে", "Strong password" : "শক্তিশালী কুটশব্দ", "Groups" : "গোষ্ঠীসমূহ", + "Disable" : "নিষ্ক্রিয়", + "All" : "সবাই", "Enable" : "সক্রিয় ", + "New password" : "নতুন কূটশব্দ", + "Username" : "ব্যবহারকারী", + "Password" : "কূটশব্দ", "Email" : "ইমেইল", + "Quota" : "কোটা", "Language" : "ভাষা", "Unlimited" : "অসীম", "Admins" : "প্রশাসন", @@ -36,17 +42,12 @@ OC.L10N.register( "Cancel" : "বাতির", "Your email address" : "আপনার ই-মেইল ঠিকানা", "Help translate" : "অনুবাদ করতে সহায়তা করুন", - "Password" : "কূটশব্দ", "Current password" : "বর্তমান কূটশব্দ", - "New password" : "নতুন কূটশব্দ", "Change password" : "কূটশব্দ পরিবর্তন করুন", - "Username" : "ব্যবহারকারী", "Done" : "শেষ হলো", "Your full name has been changed." : "আপনার পূর্ণ নাম পরিবর্তন করা হয়েছে।", "Email saved" : "ই-মেইল সংরক্ষন করা হয়েছে", - "All" : "সবাই", "Error while disabling app" : "অ্যাপ অকার্যকর করতে সমস্যা দেখা দিয়েছে ", - "Disable" : "নিষ্ক্রিয়", "Error while enabling app" : "অ্যাপ কার্যকর করতে সমস্যা দেখা দিয়েছে ", "Updated" : "নবায়নকৃত", "undo" : "ক্রিয়া প্রত্যাহার", @@ -54,7 +55,6 @@ OC.L10N.register( "Create" : "তৈরী কর", "Admin Recovery Password" : "প্রশাসক পূণরূদ্ধার কুটশব্দ", "Other" : "অন্যান্য", - "Quota" : "কোটা", "change full name" : "পুরোনাম পরিবর্তন করুন", "set new password" : "নতুন কূটশব্দ নির্ধারণ করুন", "Default" : "পূর্বনির্ধারিত" diff --git a/settings/l10n/bn_BD.json b/settings/l10n/bn_BD.json index 4586b3f33a2..a66bb488dfa 100644 --- a/settings/l10n/bn_BD.json +++ b/settings/l10n/bn_BD.json @@ -10,8 +10,14 @@ "Delete" : "মুছে", "Strong password" : "শক্তিশালী কুটশব্দ", "Groups" : "গোষ্ঠীসমূহ", + "Disable" : "নিষ্ক্রিয়", + "All" : "সবাই", "Enable" : "সক্রিয় ", + "New password" : "নতুন কূটশব্দ", + "Username" : "ব্যবহারকারী", + "Password" : "কূটশব্দ", "Email" : "ইমেইল", + "Quota" : "কোটা", "Language" : "ভাষা", "Unlimited" : "অসীম", "Admins" : "প্রশাসন", @@ -34,17 +40,12 @@ "Cancel" : "বাতির", "Your email address" : "আপনার ই-মেইল ঠিকানা", "Help translate" : "অনুবাদ করতে সহায়তা করুন", - "Password" : "কূটশব্দ", "Current password" : "বর্তমান কূটশব্দ", - "New password" : "নতুন কূটশব্দ", "Change password" : "কূটশব্দ পরিবর্তন করুন", - "Username" : "ব্যবহারকারী", "Done" : "শেষ হলো", "Your full name has been changed." : "আপনার পূর্ণ নাম পরিবর্তন করা হয়েছে।", "Email saved" : "ই-মেইল সংরক্ষন করা হয়েছে", - "All" : "সবাই", "Error while disabling app" : "অ্যাপ অকার্যকর করতে সমস্যা দেখা দিয়েছে ", - "Disable" : "নিষ্ক্রিয়", "Error while enabling app" : "অ্যাপ কার্যকর করতে সমস্যা দেখা দিয়েছে ", "Updated" : "নবায়নকৃত", "undo" : "ক্রিয়া প্রত্যাহার", @@ -52,7 +53,6 @@ "Create" : "তৈরী কর", "Admin Recovery Password" : "প্রশাসক পূণরূদ্ধার কুটশব্দ", "Other" : "অন্যান্য", - "Quota" : "কোটা", "change full name" : "পুরোনাম পরিবর্তন করুন", "set new password" : "নতুন কূটশব্দ নির্ধারণ করুন", "Default" : "পূর্বনির্ধারিত" diff --git a/settings/l10n/bs.js b/settings/l10n/bs.js index 745cbbf86e6..063a69be995 100644 --- a/settings/l10n/bs.js +++ b/settings/l10n/bs.js @@ -23,11 +23,18 @@ OC.L10N.register( "Strong password" : "Jaka lozinka", "Select a profile picture" : "Odaberi sliku profila", "Groups" : "Grupe", + "Disable" : "Onemogući", + "All" : "Sve", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", "Enable" : "Omogući", + "New password" : "Nova lozinka", + "Username" : "Korisničko ime", + "Password" : "Lozinka", "Email" : "E-pošta", + "Quota" : "Kvota", "Language" : "Jezik", "Unlimited" : "Neograničeno", + "Show user backend" : "Prikaži korisničku pozadinu (backend)", "Admins" : "Administratori", "Everyone" : "Svi", "Common Name" : "Opće Ime", @@ -74,11 +81,8 @@ OC.L10N.register( "Cancel" : "Odustani", "Your email address" : "Vaša adresa e-pošte", "Help translate" : "Pomozi prevesti", - "Password" : "Lozinka", "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", "Change password" : "Promijeni lozinku", - "Username" : "Korisničko ime", "Group already exists." : "Grupa već postoji.", "Unable to add group." : "Nemoguće dodati grupu.", "Unable to delete group." : "Nemoguće izbrisati grupu.", @@ -90,10 +94,8 @@ OC.L10N.register( "Unable to change mail address" : "Nemoguće je izmjeniti adresu e-pošte", "Email saved" : "E-pošta je spremljena", "Add trusted domain" : "Dodaj pouzdanu domenu", - "All" : "Sve", "Update to %s" : "Ažuriraj na %s", "Error while disabling app" : "Greška pri onemogućavanju aplikacije", - "Disable" : "Onemogući", "Error while enabling app" : "Greška pri omogućavanju aplikacije", "Updated" : "Ažurirano", "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", @@ -111,7 +113,6 @@ OC.L10N.register( "Documentation:" : "Dokumentacija:", "Enable only for specific groups" : "Omogućite samo za specifične grupe", "Show storage location" : "Prikaži mjesto pohrane", - "Show user backend" : "Prikaži korisničku pozadinu (backend)", "Show email address" : "Prikaži adresu e-pošte", "Send email to new user" : "Pošalji e-poštu novom korisniku", "E-Mail" : "E-pošta", @@ -120,7 +121,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tokom promjene lozinke", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molim unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", "Other" : "Ostali", - "Quota" : "Kvota", "change full name" : "promijeni puno ime", "set new password" : "postavi novu lozinku", "change email address" : "promjeni adresu e-pošte", diff --git a/settings/l10n/bs.json b/settings/l10n/bs.json index 653ad52adbc..9b9251cfcc6 100644 --- a/settings/l10n/bs.json +++ b/settings/l10n/bs.json @@ -21,11 +21,18 @@ "Strong password" : "Jaka lozinka", "Select a profile picture" : "Odaberi sliku profila", "Groups" : "Grupe", + "Disable" : "Onemogući", + "All" : "Sve", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ova aplikacija se ne može instalirati zbog slijedećih neispunjenih ovisnosti:", "Enable" : "Omogući", + "New password" : "Nova lozinka", + "Username" : "Korisničko ime", + "Password" : "Lozinka", "Email" : "E-pošta", + "Quota" : "Kvota", "Language" : "Jezik", "Unlimited" : "Neograničeno", + "Show user backend" : "Prikaži korisničku pozadinu (backend)", "Admins" : "Administratori", "Everyone" : "Svi", "Common Name" : "Opće Ime", @@ -72,11 +79,8 @@ "Cancel" : "Odustani", "Your email address" : "Vaša adresa e-pošte", "Help translate" : "Pomozi prevesti", - "Password" : "Lozinka", "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", "Change password" : "Promijeni lozinku", - "Username" : "Korisničko ime", "Group already exists." : "Grupa već postoji.", "Unable to add group." : "Nemoguće dodati grupu.", "Unable to delete group." : "Nemoguće izbrisati grupu.", @@ -88,10 +92,8 @@ "Unable to change mail address" : "Nemoguće je izmjeniti adresu e-pošte", "Email saved" : "E-pošta je spremljena", "Add trusted domain" : "Dodaj pouzdanu domenu", - "All" : "Sve", "Update to %s" : "Ažuriraj na %s", "Error while disabling app" : "Greška pri onemogućavanju aplikacije", - "Disable" : "Onemogući", "Error while enabling app" : "Greška pri omogućavanju aplikacije", "Updated" : "Ažurirano", "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", @@ -109,7 +111,6 @@ "Documentation:" : "Dokumentacija:", "Enable only for specific groups" : "Omogućite samo za specifične grupe", "Show storage location" : "Prikaži mjesto pohrane", - "Show user backend" : "Prikaži korisničku pozadinu (backend)", "Show email address" : "Prikaži adresu e-pošte", "Send email to new user" : "Pošalji e-poštu novom korisniku", "E-Mail" : "E-pošta", @@ -118,7 +119,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tokom promjene lozinke", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molim unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", "Other" : "Ostali", - "Quota" : "Kvota", "change full name" : "promijeni puno ime", "set new password" : "postavi novu lozinku", "change email address" : "promjeni adresu e-pošte", diff --git a/settings/l10n/ca.js b/settings/l10n/ca.js index 5d976eef4e0..f225a9570f7 100644 --- a/settings/l10n/ca.js +++ b/settings/l10n/ca.js @@ -114,47 +114,60 @@ OC.L10N.register( "Enforce two-factor authentication" : "Requerir l'autenticació de dos factor", "Limit to groups" : "Limitar per grups", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Autenticació de dos factors no s’aplica per\tals membres dels següents grups.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions oficials són desenvolupades per i dins de la comunitat. Ofereixen funcionalitat central i estan preparats per a l'ús de la producció.", "Official" : "Oficial", + "Remove" : "Treure", + "Disable" : "Desactiva", + "All" : "Tots", "No results" : "No hi ha resultats", + "View in store" : "Veure al repositori", "Visit website" : "Visita el lloc web", + "Report a bug" : "Reportar un error", "User documentation" : "Documentació d'usuari", + "Admin documentation" : "Documentació d'administrador", "Developer documentation" : "Documentació para desenvolupadors", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicació no es pot instal·lar perquè les següents dependències no es compleixen:", - "{license}-licensed" : "{license}-llicenciat", + "No apps found for your version" : "No s'han trobat aplicacions per la seva versió", "Disable all" : "Inhabilita-ho tot", "Enable all" : "Permetre tots", "Download and enable" : "Descàrrega i permetre", "Enable" : "Habilita", "The app will be downloaded from the app store" : "L'app es descarregarà des de la botiga d'apps", "You do not have permissions to see the details of this user" : "No teniu els permisos necessaris per veure els detalls d'aquest usuari", + "New password" : "Contrasenya nova", "Delete user" : "Suprimeix usuari", "Disable user" : "Desactivar l'usuari", "Enable user" : "Activar usuari", "Resend welcome email" : "Tornar a enviar email de benvinguda", "{size} used" : "{size} utilitzat", "Welcome mail sent!" : "Missatge de correu de benvinguda enviat!", + "Username" : "Nom d'usuari", "Display name" : "Mostrar nom", + "Password" : "Contrasenya", "Email" : "Correu electrònic", "Group admin for" : "Administrador de grup per", + "Quota" : "Quota", "Language" : "Idioma", + "Storage location" : "Ubicació de l'emmagatzematge", "User backend" : "Backend d'usuari", + "Last login" : "Últim accés", + "Default language" : "Idioma per defecte", "Unlimited" : "Il·limitat", "Default quota" : "Quota per defecte", - "Default language" : "Idioma per defecte", "Password change is disabled because the master key is disabled" : "El canvi de contrasenya està inhabilitada perquè la clau mestra està desactivada", "Common languages" : "Idiomes comuns", "All languages" : "Totes les llengües", - "An error occured during the request. Unable to proceed." : "S'ha produït un error durant la petició. Incapaç de continuar.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'app s'ha habilitat, però s’ha de actualitzar. Serà redirigit a la pàgina d'actualització en 5 segons.", - "App update" : "Actualització app", - "Error: This app can not be enabled because it makes the server unstable" : "Error: No es pot activar l'aplicació perquè tornaria el servidor inestable", "Your apps" : "Les teves apps", "Active apps" : "Apps actives", "Disabled apps" : "Apps desactivades", "Updates" : "Actualitzacions", "App bundles" : "Paquets d'apps", + "{license}-licensed" : "{license}-llicenciat", "Default quota:" : "Quota per defecte:", + "Show last login" : "Mostra darrera entrada", + "Show user backend" : "Mostrar backend d'usuari", "You are about to remove the group {group}. The users will NOT be deleted." : "Esteu a punt de suprimir el grup {group}. Els usuaris NO es suprimiran.", "Please confirm the group removal " : "Confirmeu la supressió del grup ", "Remove group" : "Suprimir grup", @@ -163,6 +176,10 @@ OC.L10N.register( "Everyone" : "Tothom", "Add group" : "Afegeix grup", "New user" : "Nou usuari", + "An error occured during the request. Unable to proceed." : "S'ha produït un error durant la petició. Incapaç de continuar.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'app s'ha habilitat, però s’ha de actualitzar. Serà redirigit a la pàgina d'actualització en 5 segons.", + "App update" : "Actualització app", + "Error: This app can not be enabled because it makes the server unstable" : "Error: No es pot activar l'aplicació perquè tornaria el servidor inestable", "SSL Root Certificates" : "Certificats arrel SSL", "Common Name" : "Nom comú", "Valid until" : "Valid fins", @@ -287,9 +304,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter @…", "Help translate" : "Ajudeu-nos amb la traducció", "Locale" : "Localitat", - "Password" : "Contrasenya", "Current password" : "Contrasenya actual", - "New password" : "Contrasenya nova", "Change password" : "Canvia la contrasenya", "Devices & sessions" : "Dispositius i sessions", "Web, desktop and mobile clients currently logged in to your account." : "Clients Web, d'escriptori i mòbils connectats actualment al seu compte.", @@ -299,7 +314,6 @@ OC.L10N.register( "Create new app password" : "Crea una nova contrasenya de l'aplicació", "Use the credentials below to configure your app or device." : "Utilitzeu les credencials següents per configurar la seva app o dispositiu.", "For security reasons this password will only be shown once." : "Per raons de seguretat aquesta contrasenya només es mostrarà una vegada.", - "Username" : "Nom d'usuari", "Done" : "Fet", "Enabled apps" : "Apps activades", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL està fent servir una versió %s obsoleta (%s). Si us plau actualitzi el seu sistema operatiu o característiques com %s no funcionaran amb fiabilitat.", @@ -324,16 +338,12 @@ OC.L10N.register( "Password confirmation is required" : "Cal una confirmació de la contrasenya", "Are you really sure you want add {domain} as trusted domain?" : "Estàs segur que vols afegir {domini} com a domini de confiança?", "Add trusted domain" : "Afegir domini de confiança", - "All" : "Tots", "Update to %s" : "Actualitzar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tu tens %n actualització d’app pendent","Tu tens %n actualitzacions d’apps pendents"], - "No apps found for your version" : "No s'han trobat aplicacions per la seva versió", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions oficials són desenvolupades per i dins de la comunitat. Ofereixen funcionalitat central i estan preparats per a l'ús de la producció.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les aplicacions aprovades són desenvolupades per desenvolupadors de confiança i han superat una verificació de seguretat actual. Es mantenen activament en un repositori de codi obert i els seus mantenidors consideren que són estables per a ús casual a normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Aquesta aplicació no es verifica per qüestions de seguretat, es nova és inestable. Instal·leu-vos sota el vostre propi risc.", "Disabling app …" : "Desactivant l'aplicació …", "Error while disabling app" : "Error en desactivar l'aplicació", - "Disable" : "Desactiva", "Enabling app …" : "Activant aplicació …", "Error while enabling app" : "Error en activar l'aplicació", "Error: Could not disable broken app" : "Error: no s'ha pogut desactivar l'aplicació trencada", @@ -343,7 +353,6 @@ OC.L10N.register( "Updated" : "Actualitzada", "Removing …" : "Treient …", "Error while removing app" : "Error en suprimir l'app", - "Remove" : "Treure", "Approved" : "Aprovat", "Experimental" : "Experimental", "No apps found for {query}" : "No s'han trobat aplicacions per a {query}", @@ -400,16 +409,12 @@ OC.L10N.register( "Theming" : "Aparença", "Check the security of your Nextcloud over our security scan" : "Verificar la seguretat del seu Nextcloud amb el nostre anàlisi de seguretat", "Hardening and security guidance" : "Guia de protecció i seguretat", - "View in store" : "Veure al repositori", "This app has an update available." : "Aquesta aplicació té una actualització disponible.", "by %s" : "per %s", "%s-licensed" : "llicència %s", "Documentation:" : "Documentació:", - "Admin documentation" : "Documentació d'administrador", - "Report a bug" : "Reportar un error", "Show description …" : "Mostrar descripció …", "Hide description …" : "Amagar descripció …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", "Enable only for specific groups" : "Activa només per grups específics", "Online documentation" : "Documentació en línia", "Getting help" : "Obtenint ajuda", @@ -433,8 +438,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Subscriure's al nostre butlletí!", "Settings" : "Preferències", "Show storage location" : "Mostra la ubicació del magatzem", - "Show user backend" : "Mostrar backend d'usuari", - "Show last login" : "Mostra darrera entrada", "Show email address" : "Mostrar l'adreça de correu electrònic", "Send email to new user" : "Enviar correu electrònic al nou usuari", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quan la contrasenya d'un nou usuari es deixa buida, s'envia un email d'activació amb un enllaç per a posar la contrasenya.", @@ -446,9 +449,6 @@ OC.L10N.register( "Disabled" : "Desactivat", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Escriviu la quota d'emmagatzematge (per ex.: \"512 MB\" o \"12 GB\")", "Other" : "Un altre", - "Quota" : "Quota", - "Storage location" : "Ubicació de l'emmagatzematge", - "Last login" : "Últim accés", "change full name" : "canvia el nom complet", "set new password" : "estableix nova contrasenya", "change email address" : "canvi d'adreça de correu electrònic", diff --git a/settings/l10n/ca.json b/settings/l10n/ca.json index 0eb36cb6a9b..dcb779b64e0 100644 --- a/settings/l10n/ca.json +++ b/settings/l10n/ca.json @@ -112,47 +112,60 @@ "Enforce two-factor authentication" : "Requerir l'autenticació de dos factor", "Limit to groups" : "Limitar per grups", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Autenticació de dos factors no s’aplica per\tals membres dels següents grups.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions oficials són desenvolupades per i dins de la comunitat. Ofereixen funcionalitat central i estan preparats per a l'ús de la producció.", "Official" : "Oficial", + "Remove" : "Treure", + "Disable" : "Desactiva", + "All" : "Tots", "No results" : "No hi ha resultats", + "View in store" : "Veure al repositori", "Visit website" : "Visita el lloc web", + "Report a bug" : "Reportar un error", "User documentation" : "Documentació d'usuari", + "Admin documentation" : "Documentació d'administrador", "Developer documentation" : "Documentació para desenvolupadors", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió mínima de Nextcloud assignada. Això serà un error en el futur.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aquesta aplicació no es pot instal·lar perquè les següents dependències no es compleixen:", - "{license}-licensed" : "{license}-llicenciat", + "No apps found for your version" : "No s'han trobat aplicacions per la seva versió", "Disable all" : "Inhabilita-ho tot", "Enable all" : "Permetre tots", "Download and enable" : "Descàrrega i permetre", "Enable" : "Habilita", "The app will be downloaded from the app store" : "L'app es descarregarà des de la botiga d'apps", "You do not have permissions to see the details of this user" : "No teniu els permisos necessaris per veure els detalls d'aquest usuari", + "New password" : "Contrasenya nova", "Delete user" : "Suprimeix usuari", "Disable user" : "Desactivar l'usuari", "Enable user" : "Activar usuari", "Resend welcome email" : "Tornar a enviar email de benvinguda", "{size} used" : "{size} utilitzat", "Welcome mail sent!" : "Missatge de correu de benvinguda enviat!", + "Username" : "Nom d'usuari", "Display name" : "Mostrar nom", + "Password" : "Contrasenya", "Email" : "Correu electrònic", "Group admin for" : "Administrador de grup per", + "Quota" : "Quota", "Language" : "Idioma", + "Storage location" : "Ubicació de l'emmagatzematge", "User backend" : "Backend d'usuari", + "Last login" : "Últim accés", + "Default language" : "Idioma per defecte", "Unlimited" : "Il·limitat", "Default quota" : "Quota per defecte", - "Default language" : "Idioma per defecte", "Password change is disabled because the master key is disabled" : "El canvi de contrasenya està inhabilitada perquè la clau mestra està desactivada", "Common languages" : "Idiomes comuns", "All languages" : "Totes les llengües", - "An error occured during the request. Unable to proceed." : "S'ha produït un error durant la petició. Incapaç de continuar.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'app s'ha habilitat, però s’ha de actualitzar. Serà redirigit a la pàgina d'actualització en 5 segons.", - "App update" : "Actualització app", - "Error: This app can not be enabled because it makes the server unstable" : "Error: No es pot activar l'aplicació perquè tornaria el servidor inestable", "Your apps" : "Les teves apps", "Active apps" : "Apps actives", "Disabled apps" : "Apps desactivades", "Updates" : "Actualitzacions", "App bundles" : "Paquets d'apps", + "{license}-licensed" : "{license}-llicenciat", "Default quota:" : "Quota per defecte:", + "Show last login" : "Mostra darrera entrada", + "Show user backend" : "Mostrar backend d'usuari", "You are about to remove the group {group}. The users will NOT be deleted." : "Esteu a punt de suprimir el grup {group}. Els usuaris NO es suprimiran.", "Please confirm the group removal " : "Confirmeu la supressió del grup ", "Remove group" : "Suprimir grup", @@ -161,6 +174,10 @@ "Everyone" : "Tothom", "Add group" : "Afegeix grup", "New user" : "Nou usuari", + "An error occured during the request. Unable to proceed." : "S'ha produït un error durant la petició. Incapaç de continuar.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'app s'ha habilitat, però s’ha de actualitzar. Serà redirigit a la pàgina d'actualització en 5 segons.", + "App update" : "Actualització app", + "Error: This app can not be enabled because it makes the server unstable" : "Error: No es pot activar l'aplicació perquè tornaria el servidor inestable", "SSL Root Certificates" : "Certificats arrel SSL", "Common Name" : "Nom comú", "Valid until" : "Valid fins", @@ -285,9 +302,7 @@ "Twitter handle @…" : "Twitter @…", "Help translate" : "Ajudeu-nos amb la traducció", "Locale" : "Localitat", - "Password" : "Contrasenya", "Current password" : "Contrasenya actual", - "New password" : "Contrasenya nova", "Change password" : "Canvia la contrasenya", "Devices & sessions" : "Dispositius i sessions", "Web, desktop and mobile clients currently logged in to your account." : "Clients Web, d'escriptori i mòbils connectats actualment al seu compte.", @@ -297,7 +312,6 @@ "Create new app password" : "Crea una nova contrasenya de l'aplicació", "Use the credentials below to configure your app or device." : "Utilitzeu les credencials següents per configurar la seva app o dispositiu.", "For security reasons this password will only be shown once." : "Per raons de seguretat aquesta contrasenya només es mostrarà una vegada.", - "Username" : "Nom d'usuari", "Done" : "Fet", "Enabled apps" : "Apps activades", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL està fent servir una versió %s obsoleta (%s). Si us plau actualitzi el seu sistema operatiu o característiques com %s no funcionaran amb fiabilitat.", @@ -322,16 +336,12 @@ "Password confirmation is required" : "Cal una confirmació de la contrasenya", "Are you really sure you want add {domain} as trusted domain?" : "Estàs segur que vols afegir {domini} com a domini de confiança?", "Add trusted domain" : "Afegir domini de confiança", - "All" : "Tots", "Update to %s" : "Actualitzar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tu tens %n actualització d’app pendent","Tu tens %n actualitzacions d’apps pendents"], - "No apps found for your version" : "No s'han trobat aplicacions per la seva versió", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les aplicacions oficials són desenvolupades per i dins de la comunitat. Ofereixen funcionalitat central i estan preparats per a l'ús de la producció.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les aplicacions aprovades són desenvolupades per desenvolupadors de confiança i han superat una verificació de seguretat actual. Es mantenen activament en un repositori de codi obert i els seus mantenidors consideren que són estables per a ús casual a normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Aquesta aplicació no es verifica per qüestions de seguretat, es nova és inestable. Instal·leu-vos sota el vostre propi risc.", "Disabling app …" : "Desactivant l'aplicació …", "Error while disabling app" : "Error en desactivar l'aplicació", - "Disable" : "Desactiva", "Enabling app …" : "Activant aplicació …", "Error while enabling app" : "Error en activar l'aplicació", "Error: Could not disable broken app" : "Error: no s'ha pogut desactivar l'aplicació trencada", @@ -341,7 +351,6 @@ "Updated" : "Actualitzada", "Removing …" : "Treient …", "Error while removing app" : "Error en suprimir l'app", - "Remove" : "Treure", "Approved" : "Aprovat", "Experimental" : "Experimental", "No apps found for {query}" : "No s'han trobat aplicacions per a {query}", @@ -398,16 +407,12 @@ "Theming" : "Aparença", "Check the security of your Nextcloud over our security scan" : "Verificar la seguretat del seu Nextcloud amb el nostre anàlisi de seguretat", "Hardening and security guidance" : "Guia de protecció i seguretat", - "View in store" : "Veure al repositori", "This app has an update available." : "Aquesta aplicació té una actualització disponible.", "by %s" : "per %s", "%s-licensed" : "llicència %s", "Documentation:" : "Documentació:", - "Admin documentation" : "Documentació d'administrador", - "Report a bug" : "Reportar un error", "Show description …" : "Mostrar descripció …", "Hide description …" : "Amagar descripció …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aquesta aplicació no té cap versió màxima de Nextcloud assignada. Això serà un error en el futur.", "Enable only for specific groups" : "Activa només per grups específics", "Online documentation" : "Documentació en línia", "Getting help" : "Obtenint ajuda", @@ -431,8 +436,6 @@ "Subscribe to our newsletter!" : "Subscriure's al nostre butlletí!", "Settings" : "Preferències", "Show storage location" : "Mostra la ubicació del magatzem", - "Show user backend" : "Mostrar backend d'usuari", - "Show last login" : "Mostra darrera entrada", "Show email address" : "Mostrar l'adreça de correu electrònic", "Send email to new user" : "Enviar correu electrònic al nou usuari", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quan la contrasenya d'un nou usuari es deixa buida, s'envia un email d'activació amb un enllaç per a posar la contrasenya.", @@ -444,9 +447,6 @@ "Disabled" : "Desactivat", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Escriviu la quota d'emmagatzematge (per ex.: \"512 MB\" o \"12 GB\")", "Other" : "Un altre", - "Quota" : "Quota", - "Storage location" : "Ubicació de l'emmagatzematge", - "Last login" : "Últim accés", "change full name" : "canvia el nom complet", "set new password" : "estableix nova contrasenya", "change email address" : "canvi d'adreça de correu electrònic", diff --git a/settings/l10n/cs.js b/settings/l10n/cs.js index d28375c71f4..baf117aa674 100644 --- a/settings/l10n/cs.js +++ b/settings/l10n/cs.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Dvoufázové ověřování je možné vynutit pro všechny\tuživatele a konkrétní skupiny. Pokud nemají nastaveného poskytovatele dvoufázového ověřování, nebudou se moci přihlásit do systému.", "Enforce two-factor authentication" : "Vynutit dvoufázové ověřování", "Limit to groups" : "Omezit na skupiny", + "Enforcement of two-factor authentication can be set for certain groups only." : "Vynucení dvoufázového ověřování je možné nastavit pouze pro určité skupiny.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Dvoufázové ověřování je vynucováno pro všechny\tčleny následujících skupin.", + "Enforced groups" : "Vynucené skupiny", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Dvoufázové ověřování není vynucováno pro\tčleny následujících skupin.", + "Excluded groups" : "Vynechané skupiny", + "Save changes" : "Uložit změny", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiální aplikace jsou vyvíjeny komunitou. Poskytují klíčové funkce a jsou připravené na produkční nasazení.", "Official" : "Oficiální", + "by" : "od", + "Update to {version}" : "Aktualizovat na {version}", + "Remove" : "Odstranit", + "Disable" : "Zakázat", + "All" : "Vše", + "Limit app usage to groups" : "Omezit používání skupin na skupiny", "No results" : "Žádné výsledky", + "View in store" : "Zobrazit v obchodě", "Visit website" : "Navštívit webovou stránku", + "Report a bug" : "Nahlásit chybu", "User documentation" : "Dokumentace uživatele", + "Admin documentation" : "Dokumentace pro administrátory", "Developer documentation" : "Vývojářská dokumentace", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou minimální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou maximální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", - "{license}-licensed" : "licencováno pod {license}", + "Update to {update}" : "Aktualizovat na {update}", + "Results from other categories" : "Výsledky z ostatních kategorií", + "No apps found for your version" : "Nebyly nalezeny aplikace pro vaši verzi", "Disable all" : "Zakázat vše", "Enable all" : "Povolit vše", "Download and enable" : "Stáhnout a povolit", "Enable" : "Povolit", "The app will be downloaded from the app store" : "Aplikace bude stažena z obchodu aplikací", "You do not have permissions to see the details of this user" : "Nemáte oprávnění k zobrazení podrobností o tomto uživateli", + "The backend does not support changing the display name" : "Podpůrná vrstva nepodporuje změnu zobrazovaného názvu", + "New password" : "Nové heslo", + "Add user in group" : "Přidat uživatele do skupiny", + "Set user as admin for" : "Nastavit uživatele jako správce pro", + "Select user quota" : "Vybrat kvótu uživatele", + "No language set" : "Není nastaven jazyk", + "Never" : "Nikdy", "Delete user" : "Smazat uživatele", "Disable user" : "Znepřístupnit uživatelský účet", "Enable user" : "Zpřístupnit uživatelský účet", "Resend welcome email" : "Znovu poslat uvítací e-mail", "{size} used" : "{size} použito", "Welcome mail sent!" : "Uvítací e-mail odeslán!", + "Username" : "Uživatelské jméno", "Display name" : "Zobrazované jméno", + "Password" : "Heslo", "Email" : "E-mail", "Group admin for" : "Správce skupiny", + "Quota" : "Kvóta", "Language" : "Jazyk", + "Storage location" : "Úložiště dat", "User backend" : "Backend uživatelů", + "Last login" : "Poslední přihlášení", + "Default language" : "Výchozí jazyk", + "Add a new user" : "Přidat nového uživatele", + "No users in here" : "Nejsou zde žádní uživatelé", "Unlimited" : "Neomezeně", "Default quota" : "Výchozí kvóta", - "Default language" : "Výchozí jazyk", "Password change is disabled because the master key is disabled" : "Změna hesla je vypnutá protože je vypnutý hlavní klíč", "Common languages" : "Běžné jazyky", "All languages" : "Všechny jazyky", - "An error occured during the request. Unable to proceed." : "Během požadavku došlo k chybě. Nelze pokračovat.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", - "App update" : "Aktualizace aplikace", - "Error: This app can not be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", "Your apps" : "Vaše aplikace", "Active apps" : "Aktivní aplikace", "Disabled apps" : "Zakázané aplikace", "Updates" : "Aktualizace", "App bundles" : "Balíčky aplikací", + "{license}-licensed" : "licencováno pod {license}", "Default quota:" : "Výchozí kvóta:", + "Select default quota" : "Vybrat výchozí kvótu", + "Show Languages" : "Zobrazit jazyky", + "Show last login" : "Zobrazit poslední přihlášení", + "Show user backend" : "Zobrazit vedení uživatelů", + "Show storage path" : "Zobrazit popis umístění úložiště", "You are about to remove the group {group}. The users will NOT be deleted." : "Chystáte se smazat skupinu {group}. Uživatelé NEbudou smazáni.", "Please confirm the group removal " : "Potvrďte odstranění skupiny", "Remove group" : "Odebrat skupinu", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Všichni", "Add group" : "Přidat skupinu", "New user" : "Nový uživatel", + "An error occured during the request. Unable to proceed." : "Během požadavku došlo k chybě. Nelze pokračovat.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", + "App update" : "Aktualizace aplikace", + "Error: This app can not be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", "SSL Root Certificates" : "Kořenové certifikáty SSL", "Common Name" : "Common Name", "Valid until" : "Platný do", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Přezdívka na Twitteru @…", "Help translate" : "Pomoci s překladem", "Locale" : "Místní a jazyková nastavení", - "Password" : "Heslo", "Current password" : "stávající heslo", - "New password" : "Nové heslo", "Change password" : "Změnit heslo", "Devices & sessions" : "Zařízení a sezení", "Web, desktop and mobile clients currently logged in to your account." : "Weboví, desktopoví a mobilní klienti aktuálně přihlášení k vašemu účtu.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Vytvořit nové heslo aplikace", "Use the credentials below to configure your app or device." : "Pro nastavení aplikace nebo zařízení použijte níže uvedené údaje.", "For security reasons this password will only be shown once." : "Toto heslo bude z bezpečnostních důvodů zobrazeno pouze jedenkrát.", - "Username" : "Uživatelské jméno", "Done" : "Dokončeno", "Enabled apps" : "Povolené aplikace", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL používá zastaralou %s verzi (%s). Aktualizujte svůj operační systém, jinak funkce jako %s nemusí spolehlivě pracovat.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "Je vyžadováno potvrzení hesla", "Are you really sure you want add {domain} as trusted domain?" : "Opravdu chcete přidat {domain} mezi důvěryhodné domény?", "Add trusted domain" : "Přidat důvěryhodnou doménu", - "All" : "Vše", "Update to %s" : "Aktualizovat na %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["K dispozici je jedna aktualizace","K dispozici je pár aktualizací","K dispozici je mnoho aktualizací","K dispozici je celkem %naktualizací"], - "No apps found for your version" : "Nebyly nalezeny aplikace pro vaši verzi", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiální aplikace jsou vyvíjeny komunitou. Poskytují klíčové funkce a jsou připravené na produkční nasazení.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Schválené aplikace jsou vyvíjeny důvěryhodnými vývojáři a prošly zběžným bezpečnostním prověřením. Jsou aktivně udržovány v repozitáři s otevřeným kódem a jejich správci je považují za stabilní pro občasné až normální použití.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "U této aplikace nebyla provedena kontrola na bezpečnostní problémy. Aplikace je nová nebo nestabilní. Instalujte pouze na vlastní nebezpečí.", "Disabling app …" : "Zakazování aplikace…", "Error while disabling app" : "Chyba při zakazování aplikace", - "Disable" : "Zakázat", "Enabling app …" : "Povolování aplikace…", "Error while enabling app" : "Chyba při povolování aplikace", "Error: Could not disable broken app" : "Chyba: nezdařilo se vypnout rozbitou aplikaci", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Aktualizováno", "Removing …" : "Odstraňování…", "Error while removing app" : "Chyba při odebírání aplikace", - "Remove" : "Odstranit", "Approved" : "Potvrzeno", "Experimental" : "Experimentální", "No apps found for {query}" : "Nebyly nalezeny žádné aplikace pro {query}", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Vzhledy", "Check the security of your Nextcloud over our security scan" : "Zkontrolujte bezpečnost vašeho Nextcloudu pomocí našeho bezpečnostního skenu", "Hardening and security guidance" : "Průvodce vylepšením bezpečnosti", - "View in store" : "Zobrazit v obchodě", "This app has an update available." : "Pro tuto aplikaci je dostupná aktualizace.", "by %s" : "%s", "%s-licensed" : "%s-licencováno", "Documentation:" : "Dokumentace:", - "Admin documentation" : "Dokumentace pro administrátory", - "Report a bug" : "Nahlásit chybu", "Show description …" : "Zobrazit popis…", "Hide description …" : "Skrýt popis…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou maximální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", "Online documentation" : "Online dokumentace", "Getting help" : "Sehnat pomoc", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Přihlaste se k odběru našeho zpravodaje!", "Settings" : "Nastavení", "Show storage location" : "Cesta k datům", - "Show user backend" : "Zobrazit vedení uživatelů", - "Show last login" : "Zobrazit poslední přihlášení", "Show email address" : "Zobrazit e-mailové adresy", "Send email to new user" : "Poslat e-mail novému uživateli", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Pokud je heslo nového uživatele prázdné, je mu odeslán aktivační e-mail s odkazem, kde si ho může nastavit.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Zakázaní", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Zvolte prosím kvótu pro úložiště (např. „512 MB“ nebo „12 GB“)", "Other" : "Jiný", - "Quota" : "Kvóta", - "Storage location" : "Úložiště dat", - "Last login" : "Poslední přihlášení", "change full name" : "změnit celé jméno", "set new password" : "nastavit nové heslo", "change email address" : "změnit e-mailovou adresu", diff --git a/settings/l10n/cs.json b/settings/l10n/cs.json index fb6e83000d6..683594c9046 100644 --- a/settings/l10n/cs.json +++ b/settings/l10n/cs.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Dvoufázové ověřování je možné vynutit pro všechny\tuživatele a konkrétní skupiny. Pokud nemají nastaveného poskytovatele dvoufázového ověřování, nebudou se moci přihlásit do systému.", "Enforce two-factor authentication" : "Vynutit dvoufázové ověřování", "Limit to groups" : "Omezit na skupiny", + "Enforcement of two-factor authentication can be set for certain groups only." : "Vynucení dvoufázového ověřování je možné nastavit pouze pro určité skupiny.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Dvoufázové ověřování je vynucováno pro všechny\tčleny následujících skupin.", + "Enforced groups" : "Vynucené skupiny", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Dvoufázové ověřování není vynucováno pro\tčleny následujících skupin.", + "Excluded groups" : "Vynechané skupiny", + "Save changes" : "Uložit změny", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiální aplikace jsou vyvíjeny komunitou. Poskytují klíčové funkce a jsou připravené na produkční nasazení.", "Official" : "Oficiální", + "by" : "od", + "Update to {version}" : "Aktualizovat na {version}", + "Remove" : "Odstranit", + "Disable" : "Zakázat", + "All" : "Vše", + "Limit app usage to groups" : "Omezit používání skupin na skupiny", "No results" : "Žádné výsledky", + "View in store" : "Zobrazit v obchodě", "Visit website" : "Navštívit webovou stránku", + "Report a bug" : "Nahlásit chybu", "User documentation" : "Dokumentace uživatele", + "Admin documentation" : "Dokumentace pro administrátory", "Developer documentation" : "Vývojářská dokumentace", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou minimální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou maximální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tuto aplikaci nelze nainstalovat, protože nejsou splněny následující závislosti:", - "{license}-licensed" : "licencováno pod {license}", + "Update to {update}" : "Aktualizovat na {update}", + "Results from other categories" : "Výsledky z ostatních kategorií", + "No apps found for your version" : "Nebyly nalezeny aplikace pro vaši verzi", "Disable all" : "Zakázat vše", "Enable all" : "Povolit vše", "Download and enable" : "Stáhnout a povolit", "Enable" : "Povolit", "The app will be downloaded from the app store" : "Aplikace bude stažena z obchodu aplikací", "You do not have permissions to see the details of this user" : "Nemáte oprávnění k zobrazení podrobností o tomto uživateli", + "The backend does not support changing the display name" : "Podpůrná vrstva nepodporuje změnu zobrazovaného názvu", + "New password" : "Nové heslo", + "Add user in group" : "Přidat uživatele do skupiny", + "Set user as admin for" : "Nastavit uživatele jako správce pro", + "Select user quota" : "Vybrat kvótu uživatele", + "No language set" : "Není nastaven jazyk", + "Never" : "Nikdy", "Delete user" : "Smazat uživatele", "Disable user" : "Znepřístupnit uživatelský účet", "Enable user" : "Zpřístupnit uživatelský účet", "Resend welcome email" : "Znovu poslat uvítací e-mail", "{size} used" : "{size} použito", "Welcome mail sent!" : "Uvítací e-mail odeslán!", + "Username" : "Uživatelské jméno", "Display name" : "Zobrazované jméno", + "Password" : "Heslo", "Email" : "E-mail", "Group admin for" : "Správce skupiny", + "Quota" : "Kvóta", "Language" : "Jazyk", + "Storage location" : "Úložiště dat", "User backend" : "Backend uživatelů", + "Last login" : "Poslední přihlášení", + "Default language" : "Výchozí jazyk", + "Add a new user" : "Přidat nového uživatele", + "No users in here" : "Nejsou zde žádní uživatelé", "Unlimited" : "Neomezeně", "Default quota" : "Výchozí kvóta", - "Default language" : "Výchozí jazyk", "Password change is disabled because the master key is disabled" : "Změna hesla je vypnutá protože je vypnutý hlavní klíč", "Common languages" : "Běžné jazyky", "All languages" : "Všechny jazyky", - "An error occured during the request. Unable to proceed." : "Během požadavku došlo k chybě. Nelze pokračovat.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", - "App update" : "Aktualizace aplikace", - "Error: This app can not be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", "Your apps" : "Vaše aplikace", "Active apps" : "Aktivní aplikace", "Disabled apps" : "Zakázané aplikace", "Updates" : "Aktualizace", "App bundles" : "Balíčky aplikací", + "{license}-licensed" : "licencováno pod {license}", "Default quota:" : "Výchozí kvóta:", + "Select default quota" : "Vybrat výchozí kvótu", + "Show Languages" : "Zobrazit jazyky", + "Show last login" : "Zobrazit poslední přihlášení", + "Show user backend" : "Zobrazit vedení uživatelů", + "Show storage path" : "Zobrazit popis umístění úložiště", "You are about to remove the group {group}. The users will NOT be deleted." : "Chystáte se smazat skupinu {group}. Uživatelé NEbudou smazáni.", "Please confirm the group removal " : "Potvrďte odstranění skupiny", "Remove group" : "Odebrat skupinu", @@ -162,6 +196,10 @@ "Everyone" : "Všichni", "Add group" : "Přidat skupinu", "New user" : "Nový uživatel", + "An error occured during the request. Unable to proceed." : "Během požadavku došlo k chybě. Nelze pokračovat.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikace byla povolena ale je třeba ji aktualizovat. Za 5 sekund budete přesměrování na stránku pro aktualizaci.", + "App update" : "Aktualizace aplikace", + "Error: This app can not be enabled because it makes the server unstable" : "Chyba: tuto aplikaci nelze zapnout, protože způsobuje nestabilitu serveru", "SSL Root Certificates" : "Kořenové certifikáty SSL", "Common Name" : "Common Name", "Valid until" : "Platný do", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Přezdívka na Twitteru @…", "Help translate" : "Pomoci s překladem", "Locale" : "Místní a jazyková nastavení", - "Password" : "Heslo", "Current password" : "stávající heslo", - "New password" : "Nové heslo", "Change password" : "Změnit heslo", "Devices & sessions" : "Zařízení a sezení", "Web, desktop and mobile clients currently logged in to your account." : "Weboví, desktopoví a mobilní klienti aktuálně přihlášení k vašemu účtu.", @@ -298,7 +334,6 @@ "Create new app password" : "Vytvořit nové heslo aplikace", "Use the credentials below to configure your app or device." : "Pro nastavení aplikace nebo zařízení použijte níže uvedené údaje.", "For security reasons this password will only be shown once." : "Toto heslo bude z bezpečnostních důvodů zobrazeno pouze jedenkrát.", - "Username" : "Uživatelské jméno", "Done" : "Dokončeno", "Enabled apps" : "Povolené aplikace", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL používá zastaralou %s verzi (%s). Aktualizujte svůj operační systém, jinak funkce jako %s nemusí spolehlivě pracovat.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "Je vyžadováno potvrzení hesla", "Are you really sure you want add {domain} as trusted domain?" : "Opravdu chcete přidat {domain} mezi důvěryhodné domény?", "Add trusted domain" : "Přidat důvěryhodnou doménu", - "All" : "Vše", "Update to %s" : "Aktualizovat na %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["K dispozici je jedna aktualizace","K dispozici je pár aktualizací","K dispozici je mnoho aktualizací","K dispozici je celkem %naktualizací"], - "No apps found for your version" : "Nebyly nalezeny aplikace pro vaši verzi", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiální aplikace jsou vyvíjeny komunitou. Poskytují klíčové funkce a jsou připravené na produkční nasazení.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Schválené aplikace jsou vyvíjeny důvěryhodnými vývojáři a prošly zběžným bezpečnostním prověřením. Jsou aktivně udržovány v repozitáři s otevřeným kódem a jejich správci je považují za stabilní pro občasné až normální použití.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "U této aplikace nebyla provedena kontrola na bezpečnostní problémy. Aplikace je nová nebo nestabilní. Instalujte pouze na vlastní nebezpečí.", "Disabling app …" : "Zakazování aplikace…", "Error while disabling app" : "Chyba při zakazování aplikace", - "Disable" : "Zakázat", "Enabling app …" : "Povolování aplikace…", "Error while enabling app" : "Chyba při povolování aplikace", "Error: Could not disable broken app" : "Chyba: nezdařilo se vypnout rozbitou aplikaci", @@ -342,7 +373,6 @@ "Updated" : "Aktualizováno", "Removing …" : "Odstraňování…", "Error while removing app" : "Chyba při odebírání aplikace", - "Remove" : "Odstranit", "Approved" : "Potvrzeno", "Experimental" : "Experimentální", "No apps found for {query}" : "Nebyly nalezeny žádné aplikace pro {query}", @@ -399,16 +429,12 @@ "Theming" : "Vzhledy", "Check the security of your Nextcloud over our security scan" : "Zkontrolujte bezpečnost vašeho Nextcloudu pomocí našeho bezpečnostního skenu", "Hardening and security guidance" : "Průvodce vylepšením bezpečnosti", - "View in store" : "Zobrazit v obchodě", "This app has an update available." : "Pro tuto aplikaci je dostupná aktualizace.", "by %s" : "%s", "%s-licensed" : "%s-licencováno", "Documentation:" : "Dokumentace:", - "Admin documentation" : "Dokumentace pro administrátory", - "Report a bug" : "Nahlásit chybu", "Show description …" : "Zobrazit popis…", "Hide description …" : "Skrýt popis…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tato aplikace nemá nastavenou žádnou maximální verzi Nextcloudu. To se v budoucnu projeví jako chyba.", "Enable only for specific groups" : "Povolit pouze pro vybrané skupiny", "Online documentation" : "Online dokumentace", "Getting help" : "Sehnat pomoc", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Přihlaste se k odběru našeho zpravodaje!", "Settings" : "Nastavení", "Show storage location" : "Cesta k datům", - "Show user backend" : "Zobrazit vedení uživatelů", - "Show last login" : "Zobrazit poslední přihlášení", "Show email address" : "Zobrazit e-mailové adresy", "Send email to new user" : "Poslat e-mail novému uživateli", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Pokud je heslo nového uživatele prázdné, je mu odeslán aktivační e-mail s odkazem, kde si ho může nastavit.", @@ -445,9 +469,6 @@ "Disabled" : "Zakázaní", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Zvolte prosím kvótu pro úložiště (např. „512 MB“ nebo „12 GB“)", "Other" : "Jiný", - "Quota" : "Kvóta", - "Storage location" : "Úložiště dat", - "Last login" : "Poslední přihlášení", "change full name" : "změnit celé jméno", "set new password" : "nastavit nové heslo", "change email address" : "změnit e-mailovou adresu", diff --git a/settings/l10n/cy_GB.js b/settings/l10n/cy_GB.js index 65e233d8f73..2ef7ab7ea34 100644 --- a/settings/l10n/cy_GB.js +++ b/settings/l10n/cy_GB.js @@ -5,14 +5,14 @@ OC.L10N.register( "Email sent" : "Anfonwyd yr e-bost", "Delete" : "Dileu", "Groups" : "Grwpiau", + "New password" : "Cyfrinair newydd", + "Username" : "Enw defnyddiwr", + "Password" : "Cyfrinair", "Email" : "E-bost", "None" : "Dim", "Login" : "Mewngofnodi", "Encryption" : "Amgryptiad", "Cancel" : "Diddymu", - "Password" : "Cyfrinair", - "New password" : "Cyfrinair newydd", - "Username" : "Enw defnyddiwr", "undo" : "dadwneud", "never" : "byth", "Other" : "Arall" diff --git a/settings/l10n/cy_GB.json b/settings/l10n/cy_GB.json index bda67cdb7d2..6276d6052d8 100644 --- a/settings/l10n/cy_GB.json +++ b/settings/l10n/cy_GB.json @@ -3,14 +3,14 @@ "Email sent" : "Anfonwyd yr e-bost", "Delete" : "Dileu", "Groups" : "Grwpiau", + "New password" : "Cyfrinair newydd", + "Username" : "Enw defnyddiwr", + "Password" : "Cyfrinair", "Email" : "E-bost", "None" : "Dim", "Login" : "Mewngofnodi", "Encryption" : "Amgryptiad", "Cancel" : "Diddymu", - "Password" : "Cyfrinair", - "New password" : "Cyfrinair newydd", - "Username" : "Enw defnyddiwr", "undo" : "dadwneud", "never" : "byth", "Other" : "Arall" diff --git a/settings/l10n/da.js b/settings/l10n/da.js index 9cb7b55aa2b..4b020f349aa 100644 --- a/settings/l10n/da.js +++ b/settings/l10n/da.js @@ -100,27 +100,40 @@ OC.L10N.register( "Select a profile picture" : "Vælg et profilbillede", "Groups" : "Grupper", "Official" : "Officiel", + "Remove" : "Fjern", + "Disable" : "Deaktiver", + "All" : "Alle", "User documentation" : "Brugerdokumentation", + "Admin documentation" : "Admin-dokumentation", "Developer documentation" : "Dokumentation for udviklere", "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette program kan ikke installeres, da følgende afhængigheder ikke imødekommes:", + "No apps found for your version" : "Ingen apps fundet til din verion", "Enable all" : "Aktiver alle", "Enable" : "Aktiver", "The app will be downloaded from the app store" : "Appen vil blive downloaded fra app storen.", + "New password" : "Nyt kodeord", "{size} used" : "{size} brugt", + "Username" : "Brugernavn", + "Password" : "Kodeord", "Email" : "E-mail", "Group admin for" : "Gruppeadministrator for", + "Quota" : "Kvote", "Language" : "Sprog", + "Storage location" : "Placering af lageret", "User backend" : "Bruger-backend", + "Last login" : "Seneste login", "Unlimited" : "Ubegrænset", "Default quota" : "Standard kvote", - "Error: This app can not be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres fordi den gør serveren ustabil", "Your apps" : "Dine apps", "Disabled apps" : "Deaktiverede apps", "Updates" : "Opdateringer", "App bundles" : "App bundles", + "Show last login" : "Vis seneste login", + "Show user backend" : "Vis bruger-backend", "Admins" : "Administratore", "Everyone" : "Alle", "Add group" : "Tilføj gruppe", + "Error: This app can not be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres fordi den gør serveren ustabil", "Common Name" : "Almindeligt navn", "Valid until" : "Gyldig indtil", "Issued By" : "Udstedt af", @@ -205,16 +218,13 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Hjælp med oversættelsen", - "Password" : "Kodeord", "Current password" : "Nuværende adgangskode", - "New password" : "Nyt kodeord", "Change password" : "Skift kodeord", "Web, desktop and mobile clients currently logged in to your account." : "Web, stationære og mobile klienter, der er logget ind på din konto.", "Device" : "Enhed", "Last activity" : "Sidste aktivitet", "App name" : "App navn", "Create new app password" : "Opret nyt app kodeord", - "Username" : "Brugernavn", "Done" : "Færdig", "Enabled apps" : "Aktiverede apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruger en forældet %s version (%s). Husk at opdatere dit styresystem ellers vil funktioner såsom %s ikke fungere pålideligt.", @@ -239,21 +249,17 @@ OC.L10N.register( "Password confirmation is required" : "Password beskæftigelse er påkrævet", "Are you really sure you want add {domain} as trusted domain?" : "Er du helt sikker på at du vil tilføje {domain} som et betroet domæne?", "Add trusted domain" : "Tilføj et domæne som du har tillid til", - "All" : "Alle", "Update to %s" : "Opdatér til %s", - "No apps found for your version" : "Ingen apps fundet til din verion", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkendte programmer er udviklet af betroet udviklere som har bestået en let sikkerheds gennemgang. De er aktivt vedligeholdt i et åben kode lager og udviklerne vurdere programmet til at være stabilt for normalt brug.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Dette program er ikke kontrolleret for sikkerhedsproblemer, og er nyt eller kendt for at være ustabilt. Installer på eget ansvar.", "Disabling app …" : "Deaktiverer app...", "Error while disabling app" : "Kunne ikke deaktivere app", - "Disable" : "Deaktiver", "Enabling app …" : "Aktiverer app...", "Error while enabling app" : "Kunne ikke aktivere app", "Error: Could not disable broken app" : "Fejl: Kunne ikke deaktivere app", "Error while disabling broken app" : "Fejl under deaktivering af ødelagt app", "Updated" : "Opdateret", "Removing …" : "Fjerner...", - "Remove" : "Fjern", "Approved" : "Godkendt", "Experimental" : "Eksperimentel", "No apps found for {query}" : "Ingen apps fundet for {query}", @@ -279,7 +285,6 @@ OC.L10N.register( "Hardening and security guidance" : "Modstanddygtighed og sikkerheds vejledning", "by %s" : "af %s", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Admin-dokumentation", "Show description …" : "Vis beskrivelse", "Hide description …" : "Skjul beskrivelse", "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", @@ -291,8 +296,6 @@ OC.L10N.register( "You are member of the following groups:" : "Du er medlem af følgende grupper:", "Settings" : "Indstillinger", "Show storage location" : "Vis placering af lageret", - "Show user backend" : "Vis bruger-backend", - "Show last login" : "Vis seneste login", "Show email address" : "Vis e-mailadresse", "Send email to new user" : "Send e-mail til ny bruger", "E-Mail" : "E-mail", @@ -302,9 +305,6 @@ OC.L10N.register( "Disabled" : "Deaktiveret", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", "Other" : "Andet", - "Quota" : "Kvote", - "Storage location" : "Placering af lageret", - "Last login" : "Seneste login", "change full name" : "ændre fulde navn", "set new password" : "skift kodeord", "change email address" : "skift e-mailadresse", diff --git a/settings/l10n/da.json b/settings/l10n/da.json index 2a75e29c8c1..2510f543f84 100644 --- a/settings/l10n/da.json +++ b/settings/l10n/da.json @@ -98,27 +98,40 @@ "Select a profile picture" : "Vælg et profilbillede", "Groups" : "Grupper", "Official" : "Officiel", + "Remove" : "Fjern", + "Disable" : "Deaktiver", + "All" : "Alle", "User documentation" : "Brugerdokumentation", + "Admin documentation" : "Admin-dokumentation", "Developer documentation" : "Dokumentation for udviklere", "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette program kan ikke installeres, da følgende afhængigheder ikke imødekommes:", + "No apps found for your version" : "Ingen apps fundet til din verion", "Enable all" : "Aktiver alle", "Enable" : "Aktiver", "The app will be downloaded from the app store" : "Appen vil blive downloaded fra app storen.", + "New password" : "Nyt kodeord", "{size} used" : "{size} brugt", + "Username" : "Brugernavn", + "Password" : "Kodeord", "Email" : "E-mail", "Group admin for" : "Gruppeadministrator for", + "Quota" : "Kvote", "Language" : "Sprog", + "Storage location" : "Placering af lageret", "User backend" : "Bruger-backend", + "Last login" : "Seneste login", "Unlimited" : "Ubegrænset", "Default quota" : "Standard kvote", - "Error: This app can not be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres fordi den gør serveren ustabil", "Your apps" : "Dine apps", "Disabled apps" : "Deaktiverede apps", "Updates" : "Opdateringer", "App bundles" : "App bundles", + "Show last login" : "Vis seneste login", + "Show user backend" : "Vis bruger-backend", "Admins" : "Administratore", "Everyone" : "Alle", "Add group" : "Tilføj gruppe", + "Error: This app can not be enabled because it makes the server unstable" : "Fejl: Denne app kan ikke aktiveres fordi den gør serveren ustabil", "Common Name" : "Almindeligt navn", "Valid until" : "Gyldig indtil", "Issued By" : "Udstedt af", @@ -203,16 +216,13 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Hjælp med oversættelsen", - "Password" : "Kodeord", "Current password" : "Nuværende adgangskode", - "New password" : "Nyt kodeord", "Change password" : "Skift kodeord", "Web, desktop and mobile clients currently logged in to your account." : "Web, stationære og mobile klienter, der er logget ind på din konto.", "Device" : "Enhed", "Last activity" : "Sidste aktivitet", "App name" : "App navn", "Create new app password" : "Opret nyt app kodeord", - "Username" : "Brugernavn", "Done" : "Færdig", "Enabled apps" : "Aktiverede apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruger en forældet %s version (%s). Husk at opdatere dit styresystem ellers vil funktioner såsom %s ikke fungere pålideligt.", @@ -237,21 +247,17 @@ "Password confirmation is required" : "Password beskæftigelse er påkrævet", "Are you really sure you want add {domain} as trusted domain?" : "Er du helt sikker på at du vil tilføje {domain} som et betroet domæne?", "Add trusted domain" : "Tilføj et domæne som du har tillid til", - "All" : "Alle", "Update to %s" : "Opdatér til %s", - "No apps found for your version" : "Ingen apps fundet til din verion", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkendte programmer er udviklet af betroet udviklere som har bestået en let sikkerheds gennemgang. De er aktivt vedligeholdt i et åben kode lager og udviklerne vurdere programmet til at være stabilt for normalt brug.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Dette program er ikke kontrolleret for sikkerhedsproblemer, og er nyt eller kendt for at være ustabilt. Installer på eget ansvar.", "Disabling app …" : "Deaktiverer app...", "Error while disabling app" : "Kunne ikke deaktivere app", - "Disable" : "Deaktiver", "Enabling app …" : "Aktiverer app...", "Error while enabling app" : "Kunne ikke aktivere app", "Error: Could not disable broken app" : "Fejl: Kunne ikke deaktivere app", "Error while disabling broken app" : "Fejl under deaktivering af ødelagt app", "Updated" : "Opdateret", "Removing …" : "Fjerner...", - "Remove" : "Fjern", "Approved" : "Godkendt", "Experimental" : "Eksperimentel", "No apps found for {query}" : "Ingen apps fundet for {query}", @@ -277,7 +283,6 @@ "Hardening and security guidance" : "Modstanddygtighed og sikkerheds vejledning", "by %s" : "af %s", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Admin-dokumentation", "Show description …" : "Vis beskrivelse", "Hide description …" : "Skjul beskrivelse", "Enable only for specific groups" : "Aktivér kun for udvalgte grupper", @@ -289,8 +294,6 @@ "You are member of the following groups:" : "Du er medlem af følgende grupper:", "Settings" : "Indstillinger", "Show storage location" : "Vis placering af lageret", - "Show user backend" : "Vis bruger-backend", - "Show last login" : "Vis seneste login", "Show email address" : "Vis e-mailadresse", "Send email to new user" : "Send e-mail til ny bruger", "E-Mail" : "E-mail", @@ -300,9 +303,6 @@ "Disabled" : "Deaktiveret", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Indtast venligst lagerkvote (f.eks. \"512 MB\" eller \"12 GB\")", "Other" : "Andet", - "Quota" : "Kvote", - "Storage location" : "Placering af lageret", - "Last login" : "Seneste login", "change full name" : "ændre fulde navn", "set new password" : "skift kodeord", "change email address" : "skift e-mailadresse", diff --git a/settings/l10n/de.js b/settings/l10n/de.js index e0ffa64b2d1..7d255e39eb3 100644 --- a/settings/l10n/de.js +++ b/settings/l10n/de.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Zwei-Faktor-Authentifizierung kann für alle \nBenutzer und Gruppen erzwungen werden. Wenn kein Anbieter für Zwei-Faktor-Authentifizierung für sie eingerichtet ist, so können sie sich nicht am System anmelden.", "Enforce two-factor authentication" : "Zwei-Faktor-Authentifizierung erzwingen", "Limit to groups" : "Auf Gruppen beschränken", + "Enforcement of two-factor authentication can be set for certain groups only." : "Erzwingen der Zwei-Faktor-Authentifizierung kann nur für bestimmte Gruppen eingestellt werden.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wir erzwungen für alle\tMitglieder der folgenden Gruppen.", + "Enforced groups" : "Erzwungene Gruppen", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wird nicht erzwungen\nfür Mitglieder der folgenden Gruppen.", + "Excluded groups" : "Ausgeschlossene Gruppen", + "Save changes" : "Änderungen speichern", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Official" : "Offiziell", + "by" : "von", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Disable" : "Deaktivieren", + "All" : "Alle", + "Limit app usage to groups" : "App-Verwendung auf Gruppen beschränken", "No results" : "Keine Ergebnisse", + "View in store" : "Im Store anzeigen", "Visit website" : "Webseite besuchen", + "Report a bug" : "Melde einen technischen Fehler", "User documentation" : "Dokumentation für Benutzer", + "Admin documentation" : "Dokumentation für Administratoren", "Developer documentation" : "Dokumentation für Entwickler", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "{license}-licensed" : "{license}-Lizensiert", + "Update to {update}" : "Aktualisiern auf {update}", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found for your version" : "Es wurden keine Apps für Deine Version gefunden", "Disable all" : "Alle deaktivieren", "Enable all" : "Alle aktivieren", "Download and enable" : "Herunterladen und aktivieren", "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "You do not have permissions to see the details of this user" : "Du hast nicht dier erforderlichen Rechte um auf die Details zu diesem Nutzer zuzugreifen", + "The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens", + "New password" : "Neues Passwort", + "Add user in group" : "Nutzer zur Gruppe hinzufügen", + "Set user as admin for" : "Nutzer als Adminstrator setzen für", + "Select user quota" : "Speicherkontigent wählen", + "No language set" : "Keine Sprache eingestellt.", + "Never" : "Niemals", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", "Resend welcome email" : "Willkommens-E-Mail erneut senden", "{size} used" : "{size} verwendet", "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", + "Username" : "Benutzername", "Display name" : "Anzeigename", + "Password" : "Passwort", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", + "Quota" : "Kontingent", "Language" : "Sprache", + "Storage location" : "Speicherort", "User backend" : "Benutzer-Backend", + "Last login" : "Letzte Anmeldung", + "Default language" : "Standard-Sprache", + "Add a new user" : "Neuen Nutzer hinzufügen", + "No users in here" : "Kein Nutzer vorhanden", "Unlimited" : "Unbegrenzt", "Default quota" : "Standard Speicherkontingent ", - "Default language" : "Standard-Sprache", "Password change is disabled because the master key is disabled" : "Das Ändern des Passwortes ist deaktiviert, da der Master-Schlüssel deaktiviert ist", "Common languages" : "Gängige Sprachen", "All languages" : "Alle Sprachen", - "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Du wirst in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", - "App update" : "App-Aktualisierung", - "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "Your apps" : "Deine Apps", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", + "{license}-licensed" : "{license}-Lizensiert", "Default quota:" : "Standard Speicherkontingent:", + "Select default quota" : "Standard Speicherkontingent wählen", + "Show Languages" : "Sprachen anzeigen", + "Show last login" : "Letzte Anmeldung anzeigen", + "Show user backend" : "Benutzer-Backend anzeigen", + "Show storage path" : "Zeige Speicherpfad", "You are about to remove the group {group}. The users will NOT be deleted." : "Du bist dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Jeder", "Add group" : "Gruppe hinzufügen", "New user" : "Neuer Benutzer", + "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Du wirst in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", + "App update" : "App-Aktualisierung", + "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "SSL Root Certificates" : "SSL-Root-Zertifikate", "Common Name" : "Allgemeiner Name", "Valid until" : "Gültig bis", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter-Handle @…", "Help translate" : "Hilf bei der Übersetzung", "Locale" : "Gebietsschema", - "Password" : "Passwort", "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", "Change password" : "Passwort ändern", "Devices & sessions" : "Geräte & Sitzungen", "Web, desktop and mobile clients currently logged in to your account." : "Aktuell in Deinem Konto angemeldete Web-, Desktop- und Mobil-Clients.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Neues App-Passwort erstellen", "Use the credentials below to configure your app or device." : "Nutze die unten angebenen Anmeldeinformationen, um deine App oder dein Gerät zu konfigurieren.", "For security reasons this password will only be shown once." : "Aus Sicherheitsgründen wird das Passwort nur einmal angezeigt.", - "Username" : "Benutzername", "Done" : "Erledigt", "Enabled apps" : "Aktivierte Apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisiere dein Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Bist du sicher, dass du {domain} als vertrauenswürdige Domain hinzufügen möchtest?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", - "All" : "Alle", "Update to %s" : "Aktualisierung auf %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Es ist %n App-Aktualisierungen verfügbar","Es sind %n App-Aktualisierungen verfügbar"], - "No apps found for your version" : "Es wurden keine Apps für Deine Version gefunden", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", "Disabling app …" : "App wird deaktiviert…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", "Enabling app …" : "Aktiviere App…", "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", "Error: Could not disable broken app" : " Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden ", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Aktualisiert", "Removing …" : "Entferne…", "Error while removing app" : "Fehler beim Entfernen der App", - "Remove" : "Entfernen", "Approved" : "Geprüft", "Experimental" : "Experimentell", "No apps found for {query}" : "Keine Applikationen für {query} gefunden", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Themen verwenden", "Check the security of your Nextcloud over our security scan" : "Überprüfe die Sicherheit Deiner Nextcloud mit unserem Sicherheits-Scan", "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "View in store" : "Im Store anzeigen", "This app has an update available." : "Für diese App ist eine Aktualisierung verfügbar.", "by %s" : "von %s", "%s-licensed" : "%s-Lizensiert", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Dokumentation für Administratoren", - "Report a bug" : "Melde einen technischen Fehler", "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Online documentation" : "Online-Dokumentation", "Getting help" : "Hilfe bekommen", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Abonniere unseren Newsletter!", "Settings" : "Einstellungen", "Show storage location" : "Speicherort anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Show last login" : "Letzte Anmeldung anzeigen", "Show email address" : "E-Mail-Adresse anzeigen", "Send email to new user" : "E-Mail an neuen Benutzer senden", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Wenn das Passwort für den neuen Benutzer leer gelassen wird, wird eine Aktivierungs-E-Mail mit einem Link zur Passwortvergabe versandt.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Deaktiviert", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)", "Other" : "Andere", - "Quota" : "Kontingent", - "Storage location" : "Speicherort", - "Last login" : "Letzte Anmeldung", "change full name" : "Vollständigen Namen ändern", "set new password" : "Neues Passwort setzen", "change email address" : "E-Mail-Adresse ändern", diff --git a/settings/l10n/de.json b/settings/l10n/de.json index fdd02cd9f9f..9884a8a77c4 100644 --- a/settings/l10n/de.json +++ b/settings/l10n/de.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Zwei-Faktor-Authentifizierung kann für alle \nBenutzer und Gruppen erzwungen werden. Wenn kein Anbieter für Zwei-Faktor-Authentifizierung für sie eingerichtet ist, so können sie sich nicht am System anmelden.", "Enforce two-factor authentication" : "Zwei-Faktor-Authentifizierung erzwingen", "Limit to groups" : "Auf Gruppen beschränken", + "Enforcement of two-factor authentication can be set for certain groups only." : "Erzwingen der Zwei-Faktor-Authentifizierung kann nur für bestimmte Gruppen eingestellt werden.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wir erzwungen für alle\tMitglieder der folgenden Gruppen.", + "Enforced groups" : "Erzwungene Gruppen", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wird nicht erzwungen\nfür Mitglieder der folgenden Gruppen.", + "Excluded groups" : "Ausgeschlossene Gruppen", + "Save changes" : "Änderungen speichern", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Official" : "Offiziell", + "by" : "von", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Disable" : "Deaktivieren", + "All" : "Alle", + "Limit app usage to groups" : "App-Verwendung auf Gruppen beschränken", "No results" : "Keine Ergebnisse", + "View in store" : "Im Store anzeigen", "Visit website" : "Webseite besuchen", + "Report a bug" : "Melde einen technischen Fehler", "User documentation" : "Dokumentation für Benutzer", + "Admin documentation" : "Dokumentation für Administratoren", "Developer documentation" : "Dokumentation für Entwickler", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "{license}-licensed" : "{license}-Lizensiert", + "Update to {update}" : "Aktualisiern auf {update}", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found for your version" : "Es wurden keine Apps für Deine Version gefunden", "Disable all" : "Alle deaktivieren", "Enable all" : "Alle aktivieren", "Download and enable" : "Herunterladen und aktivieren", "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "You do not have permissions to see the details of this user" : "Du hast nicht dier erforderlichen Rechte um auf die Details zu diesem Nutzer zuzugreifen", + "The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens", + "New password" : "Neues Passwort", + "Add user in group" : "Nutzer zur Gruppe hinzufügen", + "Set user as admin for" : "Nutzer als Adminstrator setzen für", + "Select user quota" : "Speicherkontigent wählen", + "No language set" : "Keine Sprache eingestellt.", + "Never" : "Niemals", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", "Resend welcome email" : "Willkommens-E-Mail erneut senden", "{size} used" : "{size} verwendet", "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", + "Username" : "Benutzername", "Display name" : "Anzeigename", + "Password" : "Passwort", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", + "Quota" : "Kontingent", "Language" : "Sprache", + "Storage location" : "Speicherort", "User backend" : "Benutzer-Backend", + "Last login" : "Letzte Anmeldung", + "Default language" : "Standard-Sprache", + "Add a new user" : "Neuen Nutzer hinzufügen", + "No users in here" : "Kein Nutzer vorhanden", "Unlimited" : "Unbegrenzt", "Default quota" : "Standard Speicherkontingent ", - "Default language" : "Standard-Sprache", "Password change is disabled because the master key is disabled" : "Das Ändern des Passwortes ist deaktiviert, da der Master-Schlüssel deaktiviert ist", "Common languages" : "Gängige Sprachen", "All languages" : "Alle Sprachen", - "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Du wirst in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", - "App update" : "App-Aktualisierung", - "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "Your apps" : "Deine Apps", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", + "{license}-licensed" : "{license}-Lizensiert", "Default quota:" : "Standard Speicherkontingent:", + "Select default quota" : "Standard Speicherkontingent wählen", + "Show Languages" : "Sprachen anzeigen", + "Show last login" : "Letzte Anmeldung anzeigen", + "Show user backend" : "Benutzer-Backend anzeigen", + "Show storage path" : "Zeige Speicherpfad", "You are about to remove the group {group}. The users will NOT be deleted." : "Du bist dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -162,6 +196,10 @@ "Everyone" : "Jeder", "Add group" : "Gruppe hinzufügen", "New user" : "Neuer Benutzer", + "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Du wirst in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", + "App update" : "App-Aktualisierung", + "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "SSL Root Certificates" : "SSL-Root-Zertifikate", "Common Name" : "Allgemeiner Name", "Valid until" : "Gültig bis", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Twitter-Handle @…", "Help translate" : "Hilf bei der Übersetzung", "Locale" : "Gebietsschema", - "Password" : "Passwort", "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", "Change password" : "Passwort ändern", "Devices & sessions" : "Geräte & Sitzungen", "Web, desktop and mobile clients currently logged in to your account." : "Aktuell in Deinem Konto angemeldete Web-, Desktop- und Mobil-Clients.", @@ -298,7 +334,6 @@ "Create new app password" : "Neues App-Passwort erstellen", "Use the credentials below to configure your app or device." : "Nutze die unten angebenen Anmeldeinformationen, um deine App oder dein Gerät zu konfigurieren.", "For security reasons this password will only be shown once." : "Aus Sicherheitsgründen wird das Passwort nur einmal angezeigt.", - "Username" : "Benutzername", "Done" : "Erledigt", "Enabled apps" : "Aktivierte Apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisiere dein Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Bist du sicher, dass du {domain} als vertrauenswürdige Domain hinzufügen möchtest?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", - "All" : "Alle", "Update to %s" : "Aktualisierung auf %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Es ist %n App-Aktualisierungen verfügbar","Es sind %n App-Aktualisierungen verfügbar"], - "No apps found for your version" : "Es wurden keine Apps für Deine Version gefunden", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", "Disabling app …" : "App wird deaktiviert…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", "Enabling app …" : "Aktiviere App…", "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", "Error: Could not disable broken app" : " Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden ", @@ -342,7 +373,6 @@ "Updated" : "Aktualisiert", "Removing …" : "Entferne…", "Error while removing app" : "Fehler beim Entfernen der App", - "Remove" : "Entfernen", "Approved" : "Geprüft", "Experimental" : "Experimentell", "No apps found for {query}" : "Keine Applikationen für {query} gefunden", @@ -399,16 +429,12 @@ "Theming" : "Themen verwenden", "Check the security of your Nextcloud over our security scan" : "Überprüfe die Sicherheit Deiner Nextcloud mit unserem Sicherheits-Scan", "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "View in store" : "Im Store anzeigen", "This app has an update available." : "Für diese App ist eine Aktualisierung verfügbar.", "by %s" : "von %s", "%s-licensed" : "%s-Lizensiert", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Dokumentation für Administratoren", - "Report a bug" : "Melde einen technischen Fehler", "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Online documentation" : "Online-Dokumentation", "Getting help" : "Hilfe bekommen", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Abonniere unseren Newsletter!", "Settings" : "Einstellungen", "Show storage location" : "Speicherort anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Show last login" : "Letzte Anmeldung anzeigen", "Show email address" : "E-Mail-Adresse anzeigen", "Send email to new user" : "E-Mail an neuen Benutzer senden", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Wenn das Passwort für den neuen Benutzer leer gelassen wird, wird eine Aktivierungs-E-Mail mit einem Link zur Passwortvergabe versandt.", @@ -445,9 +469,6 @@ "Disabled" : "Deaktiviert", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)", "Other" : "Andere", - "Quota" : "Kontingent", - "Storage location" : "Speicherort", - "Last login" : "Letzte Anmeldung", "change full name" : "Vollständigen Namen ändern", "set new password" : "Neues Passwort setzen", "change email address" : "E-Mail-Adresse ändern", diff --git a/settings/l10n/de_DE.js b/settings/l10n/de_DE.js index 35fedbeb0d2..646377ab9a3 100644 --- a/settings/l10n/de_DE.js +++ b/settings/l10n/de_DE.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Zwei-Faktor-Authentifizierung kann für alle\nBenutzer und Gruppen erzwungen werden. Wenn kein Anbieter für Zwei-Faktor-Authentifizierung für sie eingerichtet ist, so können sie sich nicht am System anmelden.", "Enforce two-factor authentication" : "Zwei-Faktor-Authentifizierung erzwingen", "Limit to groups" : "Auf Gruppen beschränken", + "Enforcement of two-factor authentication can be set for certain groups only." : "Erzwingen der Zwei-Faktor-Authentifizierung kann nur für bestimmte Gruppen eingestellt werden.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wir erzwungen für alleMitglieder der folgenden Gruppen.", + "Enforced groups" : "Erzwungene Gruppen", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wird nicht erzwungen\nfür Mitglieder der folgenden Gruppen.", + "Excluded groups" : "Ausgeschlossene Gruppen", + "Save changes" : "Änderungen speichern ", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Official" : "Offiziell", + "by" : "von", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Disable" : "Deaktivieren", + "All" : "Alle", + "Limit app usage to groups" : "App-Verwendung auf Gruppen beschränken", "No results" : "Keine Ergebnisse", + "View in store" : "Im Store anzeigen", "Visit website" : "Webseite besuchen", + "Report a bug" : "Melden Sie einen technischen Fehler", "User documentation" : "Dokumentation für Benutzer", + "Admin documentation" : "Dokumentation für Administratoren", "Developer documentation" : "Dokumentation für Entwickler", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "{license}-licensed" : "{license}-Lizensiert", + "Update to {update}" : "Aktualisiern auf {update}", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found for your version" : "Es wurden keine Apps für Ihre Version gefunden", "Disable all" : "Alle deaktivieren", "Enable all" : "Alle aktivieren", "Download and enable" : "Herunterladen und aktivieren", "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "You do not have permissions to see the details of this user" : "Sie besitzen nicht die nötigen Berechtigungen um auf die Details zu diesem Benutzer zuzugreifen", + "The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens", + "New password" : "Neues Passwort", + "Add user in group" : "Nutzer zur Gruppe hinzufügen", + "Set user as admin for" : "Nutzer als Adminstrator setzen für", + "Select user quota" : "Speicherkontigent wählen", + "No language set" : "Keine Sprache eingestellt.", + "Never" : "Niemals", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", "Resend welcome email" : "Willkommens-E-Mail erneut senden", "{size} used" : "{size} verwendet", "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", + "Username" : "Benutzername", "Display name" : "Anzeigename", + "Password" : "Passwort", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", + "Quota" : "Kontingent", "Language" : "Sprache", + "Storage location" : "Speicherort", "User backend" : "Benutzer-Backend", + "Last login" : "Letzte Anmeldung", + "Default language" : "Standard-Sprache", + "Add a new user" : "Neuen Nutzer hinzufügen", + "No users in here" : "Kein Nutzer vorhanden", "Unlimited" : "Unbegrenzt", "Default quota" : "Standard Speicherkontingent ", - "Default language" : "Standard-Sprache", "Password change is disabled because the master key is disabled" : "Das Ändern des Passwortes ist deaktiviert, da der Master-Schlüssel deaktiviert ist", "Common languages" : "Gängige Sprachen", "All languages" : "Alle Sprachen", - "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Sie werden in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", - "App update" : "App-Aktualisierung", - "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "Your apps" : "Ihre Apps", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", + "{license}-licensed" : "{license}-Lizensiert", "Default quota:" : "Standard Speicherkontingent:", + "Select default quota" : "Standard Speicherkontingent wählen", + "Show Languages" : "Sprachen anzeigen", + "Show last login" : "Letzte Anmeldung anzeigen", + "Show user backend" : "Benutzer-Backend anzeigen", + "Show storage path" : "Zeige Speicherpfad", "You are about to remove the group {group}. The users will NOT be deleted." : "Sie sind dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Jeder", "Add group" : "Gruppe hinzufügen", "New user" : "Neuer Benutzer", + "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Sie werden in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", + "App update" : "App-Aktualisierung", + "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "SSL Root Certificates" : "SSL-Root-Zertifikate", "Common Name" : "Allgemeiner Name", "Valid until" : "Gültig bis", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter-Handle @…", "Help translate" : "Helfen Sie bei der Übersetzung", "Locale" : "Gebietsschema", - "Password" : "Passwort", "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", "Change password" : "Passwort ändern", "Devices & sessions" : "Geräte & Sitzungen", "Web, desktop and mobile clients currently logged in to your account." : "Aktuell in Ihrem Konto angemeldete Web-, Desktop- und Mobil-Clients.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Neues App-Passwort erstellen", "Use the credentials below to configure your app or device." : "Nutzen Sie die unten angebenen Anmeldeinformationen, um ihre App oder ihr Gerät zu konfigurieren.", "For security reasons this password will only be shown once." : "Aus Sicherheitsgründen wird das Passwort nur einmal angezeigt.", - "Username" : "Benutzername", "Done" : "Erledigt", "Enabled apps" : "Aktivierte Apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisieren Sie ihr Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Sind Sie sich wirklich sicher, dass Sie {domain} als vertrauenswürdige Domain hinzufügen möchten?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", - "All" : "Alle", "Update to %s" : "Aktualisierung auf %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Es ist %n App-Aktualisierungen verfügbar","Es sind %n App-Aktualisierungen verfügbar"], - "No apps found for your version" : "Es wurden keine Apps für Ihre Version gefunden", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", "Disabling app …" : "App wird deaktiviert…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", "Enabling app …" : "Aktiviere App…", "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", "Error: Could not disable broken app" : " Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden ", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Aktualisiert", "Removing …" : "Entferne…", "Error while removing app" : "Fehler beim Entfernen der App", - "Remove" : "Entfernen", "Approved" : "Geprüft", "Experimental" : "Experimentell", "No apps found for {query}" : "Keine Applikationen für {query} gefunden", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Themes verwenden", "Check the security of your Nextcloud over our security scan" : "Überprüfen Sie die Sicherheit Ihrer Nextcloud mit unserem Sicherheits-Scan", "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "View in store" : "Im Store anzeigen", "This app has an update available." : "Für diese App ist eine Aktualisierung verfügbar.", "by %s" : "von %s", "%s-licensed" : "%s-Lizensiert", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Dokumentation für Administratoren", - "Report a bug" : "Melden Sie einen technischen Fehler", "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Online documentation" : "Online-Dokumentation", "Getting help" : "Hilfe bekommen", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Abonnieren Sie unseren Newsletter!", "Settings" : "Einstellungen", "Show storage location" : "Speicherort anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Show last login" : "Letzte Anmeldung anzeigen", "Show email address" : "E-Mail-Adresse anzeigen", "Send email to new user" : "E-Mail an neuen Benutzer senden", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Wenn das Passwort für den neuen Benutzer leer gelassen wird, wird an ihn eine Aktivierungs-E-Mail mit einem Link zur Passwortvergabe versandt.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Deaktiviert", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)", "Other" : "Andere", - "Quota" : "Kontingent", - "Storage location" : "Speicherort", - "Last login" : "Letzte Anmeldung", "change full name" : "Vollständigen Namen ändern", "set new password" : "Neues Passwort setzen", "change email address" : "E-Mail-Adresse ändern", diff --git a/settings/l10n/de_DE.json b/settings/l10n/de_DE.json index 3c5f164fdc8..310a36f2c79 100644 --- a/settings/l10n/de_DE.json +++ b/settings/l10n/de_DE.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Zwei-Faktor-Authentifizierung kann für alle\nBenutzer und Gruppen erzwungen werden. Wenn kein Anbieter für Zwei-Faktor-Authentifizierung für sie eingerichtet ist, so können sie sich nicht am System anmelden.", "Enforce two-factor authentication" : "Zwei-Faktor-Authentifizierung erzwingen", "Limit to groups" : "Auf Gruppen beschränken", + "Enforcement of two-factor authentication can be set for certain groups only." : "Erzwingen der Zwei-Faktor-Authentifizierung kann nur für bestimmte Gruppen eingestellt werden.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wir erzwungen für alleMitglieder der folgenden Gruppen.", + "Enforced groups" : "Erzwungene Gruppen", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Zwei-Faktor-Authentifizierung wird nicht erzwungen\nfür Mitglieder der folgenden Gruppen.", + "Excluded groups" : "Ausgeschlossene Gruppen", + "Save changes" : "Änderungen speichern ", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Official" : "Offiziell", + "by" : "von", + "Update to {version}" : "Aktualisieren auf {version}", + "Remove" : "Entfernen", + "Disable" : "Deaktivieren", + "All" : "Alle", + "Limit app usage to groups" : "App-Verwendung auf Gruppen beschränken", "No results" : "Keine Ergebnisse", + "View in store" : "Im Store anzeigen", "Visit website" : "Webseite besuchen", + "Report a bug" : "Melden Sie einen technischen Fehler", "User documentation" : "Dokumentation für Benutzer", + "Admin documentation" : "Dokumentation für Administratoren", "Developer documentation" : "Dokumentation für Entwickler", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine untere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Diese App kann nicht installiert werden, weil die folgenden Abhängigkeiten nicht erfüllt sind:", - "{license}-licensed" : "{license}-Lizensiert", + "Update to {update}" : "Aktualisiern auf {update}", + "Results from other categories" : "Ergebnisse aus anderen Kategorien", + "No apps found for your version" : "Es wurden keine Apps für Ihre Version gefunden", "Disable all" : "Alle deaktivieren", "Enable all" : "Alle aktivieren", "Download and enable" : "Herunterladen und aktivieren", "Enable" : "Aktivieren", "The app will be downloaded from the app store" : "Die App wird aus dem App-Store heruntergeladen", "You do not have permissions to see the details of this user" : "Sie besitzen nicht die nötigen Berechtigungen um auf die Details zu diesem Benutzer zuzugreifen", + "The backend does not support changing the display name" : "Das Backend unterstützt keine Änderung des Anzeigenamens", + "New password" : "Neues Passwort", + "Add user in group" : "Nutzer zur Gruppe hinzufügen", + "Set user as admin for" : "Nutzer als Adminstrator setzen für", + "Select user quota" : "Speicherkontigent wählen", + "No language set" : "Keine Sprache eingestellt.", + "Never" : "Niemals", "Delete user" : "Benutzer löschen", "Disable user" : "Benutzer deaktivieren", "Enable user" : "Benutzer aktivieren", "Resend welcome email" : "Willkommens-E-Mail erneut senden", "{size} used" : "{size} verwendet", "Welcome mail sent!" : "Willkommens-E-Mail gesendet!", + "Username" : "Benutzername", "Display name" : "Anzeigename", + "Password" : "Passwort", "Email" : "E-Mail", "Group admin for" : "Gruppenadministrator für", + "Quota" : "Kontingent", "Language" : "Sprache", + "Storage location" : "Speicherort", "User backend" : "Benutzer-Backend", + "Last login" : "Letzte Anmeldung", + "Default language" : "Standard-Sprache", + "Add a new user" : "Neuen Nutzer hinzufügen", + "No users in here" : "Kein Nutzer vorhanden", "Unlimited" : "Unbegrenzt", "Default quota" : "Standard Speicherkontingent ", - "Default language" : "Standard-Sprache", "Password change is disabled because the master key is disabled" : "Das Ändern des Passwortes ist deaktiviert, da der Master-Schlüssel deaktiviert ist", "Common languages" : "Gängige Sprachen", "All languages" : "Alle Sprachen", - "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Sie werden in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", - "App update" : "App-Aktualisierung", - "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "Your apps" : "Ihre Apps", "Active apps" : "Aktive Apps", "Disabled apps" : "Deaktivierte Apps", "Updates" : "Aktualisierungen", "App bundles" : "App-Pakete", + "{license}-licensed" : "{license}-Lizensiert", "Default quota:" : "Standard Speicherkontingent:", + "Select default quota" : "Standard Speicherkontingent wählen", + "Show Languages" : "Sprachen anzeigen", + "Show last login" : "Letzte Anmeldung anzeigen", + "Show user backend" : "Benutzer-Backend anzeigen", + "Show storage path" : "Zeige Speicherpfad", "You are about to remove the group {group}. The users will NOT be deleted." : "Sie sind dabei die Gruppe {group} zu löschen. Die Benutzer werden NICHT gelöscht.", "Please confirm the group removal " : "Bitte die Löschung der Gruppe bestätigen", "Remove group" : "Gruppe entfernen", @@ -162,6 +196,10 @@ "Everyone" : "Jeder", "Add group" : "Gruppe hinzufügen", "New user" : "Neuer Benutzer", + "An error occured during the request. Unable to proceed." : "Es ist ein Fehler bei der Anfrage aufgetreten. Es kann nicht fortgefahren werden.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Die App wurde aktiviert, muss aber aktualisiert werden. Sie werden in 5 Sekunden zur Aktualisierungsseite weitergeleitet.", + "App update" : "App-Aktualisierung", + "Error: This app can not be enabled because it makes the server unstable" : "Fehler: Diese App kann nicht aktiviert werden, da sie den Server instabil macht. ", "SSL Root Certificates" : "SSL-Root-Zertifikate", "Common Name" : "Allgemeiner Name", "Valid until" : "Gültig bis", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Twitter-Handle @…", "Help translate" : "Helfen Sie bei der Übersetzung", "Locale" : "Gebietsschema", - "Password" : "Passwort", "Current password" : "Aktuelles Passwort", - "New password" : "Neues Passwort", "Change password" : "Passwort ändern", "Devices & sessions" : "Geräte & Sitzungen", "Web, desktop and mobile clients currently logged in to your account." : "Aktuell in Ihrem Konto angemeldete Web-, Desktop- und Mobil-Clients.", @@ -298,7 +334,6 @@ "Create new app password" : "Neues App-Passwort erstellen", "Use the credentials below to configure your app or device." : "Nutzen Sie die unten angebenen Anmeldeinformationen, um ihre App oder ihr Gerät zu konfigurieren.", "For security reasons this password will only be shown once." : "Aus Sicherheitsgründen wird das Passwort nur einmal angezeigt.", - "Username" : "Benutzername", "Done" : "Erledigt", "Enabled apps" : "Aktivierte Apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL verwendet eine veraltete %s Version (%s). Bitte aktualisieren Sie ihr Betriebssystem, da ansonsten Funktionen, wie z.B. %s, nicht zuverlässig funktionieren werden.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "Passwortbestätigung erforderlich", "Are you really sure you want add {domain} as trusted domain?" : "Sind Sie sich wirklich sicher, dass Sie {domain} als vertrauenswürdige Domain hinzufügen möchten?", "Add trusted domain" : "Vertrauenswürdige Domain hinzufügen", - "All" : "Alle", "Update to %s" : "Aktualisierung auf %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Es ist %n App-Aktualisierungen verfügbar","Es sind %n App-Aktualisierungen verfügbar"], - "No apps found for your version" : "Es wurden keine Apps für Ihre Version gefunden", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offizielle Apps werden von und innerhalb der Community entwickelt. Sie stellen die zentralen Funktionen bereit und sind für den produktiven Einsatz geeignet.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Geprüfte Apps werden von vertrauenswürdigen Entwicklern entwickelt und haben eine oberflächliche Sicherheitsprüfung durchlaufen. Sie werden innerhalb eines offenen Code-Repositorys aktiv gepflegt und ihre Betreuer erachten sie als stabil genug für für den gelegentlichen bis normalen Einsatz.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Diese App ist nicht auf Sicherheitsprobleme hin überprüft und ist neu oder bekanntermaßen instabil. Die Installation erfolgt auf eigenes Risiko.", "Disabling app …" : "App wird deaktiviert…", "Error while disabling app" : "Beim Deaktivieren der App ist ein Fehler aufgetreten", - "Disable" : "Deaktivieren", "Enabling app …" : "Aktiviere App…", "Error while enabling app" : "Beim Aktivieren der App ist ein Fehler aufgetreten", "Error: Could not disable broken app" : " Fehler: Die beschädigte Anwendung konnte nicht deaktiviert werden ", @@ -342,7 +373,6 @@ "Updated" : "Aktualisiert", "Removing …" : "Entferne…", "Error while removing app" : "Fehler beim Entfernen der App", - "Remove" : "Entfernen", "Approved" : "Geprüft", "Experimental" : "Experimentell", "No apps found for {query}" : "Keine Applikationen für {query} gefunden", @@ -399,16 +429,12 @@ "Theming" : "Themes verwenden", "Check the security of your Nextcloud over our security scan" : "Überprüfen Sie die Sicherheit Ihrer Nextcloud mit unserem Sicherheits-Scan", "Hardening and security guidance" : "Systemhärtung und Sicherheitsempfehlungen", - "View in store" : "Im Store anzeigen", "This app has an update available." : "Für diese App ist eine Aktualisierung verfügbar.", "by %s" : "von %s", "%s-licensed" : "%s-Lizensiert", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Dokumentation für Administratoren", - "Report a bug" : "Melden Sie einen technischen Fehler", "Show description …" : "Beschreibung anzeigen…", "Hide description …" : "Beschreibung ausblenden…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Für diese App wurde keine obere Versionsgrenze für Nextcloud gesetzt. Dies wird zukünftig als Fehler behandelt.", "Enable only for specific groups" : "Nur für bestimmte Gruppen aktivieren", "Online documentation" : "Online-Dokumentation", "Getting help" : "Hilfe bekommen", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Abonnieren Sie unseren Newsletter!", "Settings" : "Einstellungen", "Show storage location" : "Speicherort anzeigen", - "Show user backend" : "Benutzer-Backend anzeigen", - "Show last login" : "Letzte Anmeldung anzeigen", "Show email address" : "E-Mail-Adresse anzeigen", "Send email to new user" : "E-Mail an neuen Benutzer senden", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Wenn das Passwort für den neuen Benutzer leer gelassen wird, wird an ihn eine Aktivierungs-E-Mail mit einem Link zur Passwortvergabe versandt.", @@ -445,9 +469,6 @@ "Disabled" : "Deaktiviert", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Bitte Speicherkontingent eingeben (z.B.: „512 MB“ oder „12 GB“)", "Other" : "Andere", - "Quota" : "Kontingent", - "Storage location" : "Speicherort", - "Last login" : "Letzte Anmeldung", "change full name" : "Vollständigen Namen ändern", "set new password" : "Neues Passwort setzen", "change email address" : "E-Mail-Adresse ändern", diff --git a/settings/l10n/el.js b/settings/l10n/el.js index d7116bb5a3b..abb6084f8e1 100644 --- a/settings/l10n/el.js +++ b/settings/l10n/el.js @@ -101,33 +101,50 @@ OC.L10N.register( "Select a profile picture" : "Επιλογή εικόνας προφίλ", "Groups" : "Ομάδες", "Limit to groups" : "Όριο στις ομάδες", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι επίσημες εφαρμογές αναπτύσσονται μέσα από την κοινότητα. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για παραγωγική χρήση. ", "Official" : "Επίσημο", + "Remove" : "Αφαίρεση", + "Disable" : "Απενεργοποίηση", + "All" : "Όλες", + "View in store" : "Προβολή στο κέντρο εφαρμογών", "Visit website" : "Επισκεφθείτε την ιστοσελίδα", + "Report a bug" : "Αναφέρετε σφάλμα", "User documentation" : "Τεκμηρίωση Χρήστη", + "Admin documentation" : "Τεκμηρίωση Διαχειριστή", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Αυτή η εφαρμογή δεν μπορεί να εγκατασταθεί διότι δεν εκπληρώνονται οι ακόλουθες εξαρτήσεις:", + "No apps found for your version" : "Δεν βρέθηκαν εφαρμογές για αυτή την έκδοση", "Enable all" : "Ενεργοποίηση όλων", "Enable" : "Ενεργοποίηση", "The app will be downloaded from the app store" : "Αυτή η εφαρμογή θα ", + "New password" : "Νέο συνθηματικό", "Delete user" : "Διαγραφή χρήστη", "Enable user" : "Ενεργοποίηση χρήστη", "{size} used" : "{μέγεθος} που χρησιμοποιείται", "Welcome mail sent!" : "Απεστάλη το μήνυμα καλωσορίσματος!", + "Username" : "Όνομα χρήστη", + "Password" : "Συνθηματικό", "Email" : "Ηλεκτρονικό ταχυδρομείο", "Group admin for" : "Ομαδα διαχειριστή για", + "Quota" : "Σύνολο Χώρου", "Language" : "Γλώσσα", + "Storage location" : "Τοποθεσία αποθηκευτικού χώρου", "User backend" : "Σύστημα υποστήριξης χρήστη", + "Last login" : "Τελευταία είσοδος", "Unlimited" : "Απεριόριστο", "Default quota" : "Προεπιλέγμενη χωρητικότητα", - "App update" : "Ενημέρωση εφαρμογής", "Your apps" : "Οι εφαρμογές σας", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", "App bundles" : "Πακέτα εφαρμογών", + "Show last login" : "Εμφάνιση τελευταιας σύνδεσης", + "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", "Admins" : "Διαχειριστές", "Everyone" : "Όλοι", "Add group" : "Προσθήκη ομάδας", + "App update" : "Ενημέρωση εφαρμογής", "SSL Root Certificates" : "Πιστοποιητικά SSL του Root", "Common Name" : "Κοινό Όνομα", "Valid until" : "Έγκυρο έως", @@ -229,9 +246,7 @@ OC.L10N.register( "Link https://…" : "Σύνδεσμος https://…", "Twitter" : "Twitter", "Help translate" : "Βοηθήστε στη μετάφραση", - "Password" : "Συνθηματικό", "Current password" : "Τρέχων συνθηματικό", - "New password" : "Νέο συνθηματικό", "Change password" : "Αλλαγή συνθηματικού", "Web, desktop and mobile clients currently logged in to your account." : " ", "Device" : "Συσκευή", @@ -240,7 +255,6 @@ OC.L10N.register( "Create new app password" : "Δημιουργία νέου συνθηματικού εφαρμογής", "Use the credentials below to configure your app or device." : "Χρησιμοποιήστε τα παρακάτω διαπιστευτήρια για να ρυθμίσετε την εφαρμογή ή την συσκευή σας.", "For security reasons this password will only be shown once." : "Για λόγους ασφαλείας αυτό το συνθηματικό θα εμφανιστεί μόνο μια φορά.", - "Username" : "Όνομα χρήστη", "Done" : "Ολοκληρώθηκε", "Enabled apps" : "Ενεργοποιημένες εφαρμογές", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "Το cURL χρησιμοποιεί μια παρωχημένη %s έκδοση (%s). Παρακαλούμε αναβαθμίστε το λειτουργικό σας σύστημα αλλιώς δυνατότητες όπως %s δεν θα δουλέψουν αξιόπιστα.", @@ -265,15 +279,11 @@ OC.L10N.register( "Password confirmation is required" : "Απαιτείται επιβεβαίωση συνθηματικού", "Are you really sure you want add {domain} as trusted domain?" : "Θέλετε σίγουρα να προσθέσετε τον τομέα {domain} ως έμπιστο τομέα;", "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", - "All" : "Όλες", "Update to %s" : "Ενημέρωση σε %s", - "No apps found for your version" : "Δεν βρέθηκαν εφαρμογές για αυτή την έκδοση", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι επίσημες εφαρμογές αναπτύσσονται μέσα από την κοινότητα. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για παραγωγική χρήση. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Οι εγκεκριμένες εφαρμογές αναπτύχθηκαν από αξιόπιστους προγραμματιστές και έχουν περάσει έναν συνοπτικό έλεγχο ασφαλείας. Διατηρούνται ενεργά σε ένα αποθετήριο ανοιχτού κώδικα και οι συντηρητές θεωρούν οτι είναι σταθερές για κανονική χρήση.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Η εφαρμογή αυτή δεν ελέγχεται για θέματα ασφάλειας και είναι νέα ή είναι γνωστό ότι είναι ασταθής. Η εγκατάσταση γίνεται με δική σας ευθύνη.", "Disabling app …" : "Γίνεται απενεργοποίηση εφαρμογής...", "Error while disabling app" : "Σφάλμα κατά την απενεργοποίηση εισόδου", - "Disable" : "Απενεργοποίηση", "Enabling app …" : "Γίνεται ενεργοποίηση εφαρμογής...", "Error while enabling app" : "Σφάλμα κατά την ενεργοποίηση της εφαρμογής", "Error: Could not disable broken app" : "Σφάλμα: αδυναμία απενεργοποίησης κατεστραμμένης εφαρμογής", @@ -283,7 +293,6 @@ OC.L10N.register( "Updated" : "Ενημερώθηκε", "Removing …" : "Αφαίρεση ...", "Error while removing app" : "Σφάλμα κατά την αφαίρεση της εφαρμογής", - "Remove" : "Αφαίρεση", "Approved" : "Εγκεκριμένο", "Experimental" : "Πειραματικό", "No apps found for {query}" : "Δεν βρέθηκαν εφαρμογές για {query}", @@ -319,16 +328,12 @@ OC.L10N.register( "Theming" : "Θέματα", "Check the security of your Nextcloud over our security scan" : "Ελέγξτε την ασφάλεια του Nextcloud σας μέσω της σάρωσης ασφαλείας", "Hardening and security guidance" : "Οδηγίες ασφάλειας και θωράκισης", - "View in store" : "Προβολή στο κέντρο εφαρμογών", "This app has an update available." : "Αυτή η εφαρμογή έχει διαθέσιμη ενημέρωση.", "by %s" : "από %s", "%s-licensed" : "%s-αδειοδοτημένο", "Documentation:" : "Τεκμηρίωση:", - "Admin documentation" : "Τεκμηρίωση Διαχειριστή", - "Report a bug" : "Αναφέρετε σφάλμα", "Show description …" : "Εμφάνιση περιγραφής", "Hide description …" : "Απόκρυψη περιγραφής", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "Enable only for specific groups" : "Ενεργοποίηση μόνο για καθορισμένες ομάδες", "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", "Getting help" : "Λήψη βοήθειας", @@ -347,8 +352,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Εγγραφείτε στο ενημερωτικό δελτίο μας!", "Settings" : "Ρυθμίσεις", "Show storage location" : "Εμφάνιση τοποθεσίας αποθήκευσης", - "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", - "Show last login" : "Εμφάνιση τελευταιας σύνδεσης", "Show email address" : "Εμφάνιση διεύθυνσης ηλ. αλληλογραφίας", "Send email to new user" : "Αποστολή μηνύματος στο νέο χρήστη", "E-Mail" : "Ηλεκτρονική αλληλογραφία", @@ -359,9 +362,6 @@ OC.L10N.register( "Disabled" : "Απενεργοποιημένο", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")", "Other" : "Άλλο", - "Quota" : "Σύνολο Χώρου", - "Storage location" : "Τοποθεσία αποθηκευτικού χώρου", - "Last login" : "Τελευταία είσοδος", "change full name" : "αλλαγή πλήρους ονόματος", "set new password" : "επιλογή νέου κωδικού", "change email address" : "αλλαγή διεύθυνσης ηλ. αλληλογραφίας", diff --git a/settings/l10n/el.json b/settings/l10n/el.json index 5f01253ca4f..2f1460250ab 100644 --- a/settings/l10n/el.json +++ b/settings/l10n/el.json @@ -99,33 +99,50 @@ "Select a profile picture" : "Επιλογή εικόνας προφίλ", "Groups" : "Ομάδες", "Limit to groups" : "Όριο στις ομάδες", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι επίσημες εφαρμογές αναπτύσσονται μέσα από την κοινότητα. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για παραγωγική χρήση. ", "Official" : "Επίσημο", + "Remove" : "Αφαίρεση", + "Disable" : "Απενεργοποίηση", + "All" : "Όλες", + "View in store" : "Προβολή στο κέντρο εφαρμογών", "Visit website" : "Επισκεφθείτε την ιστοσελίδα", + "Report a bug" : "Αναφέρετε σφάλμα", "User documentation" : "Τεκμηρίωση Χρήστη", + "Admin documentation" : "Τεκμηρίωση Διαχειριστή", "Developer documentation" : "Τεκμηρίωση προγραμματιστή", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει ελάχιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Αυτή η εφαρμογή δεν μπορεί να εγκατασταθεί διότι δεν εκπληρώνονται οι ακόλουθες εξαρτήσεις:", + "No apps found for your version" : "Δεν βρέθηκαν εφαρμογές για αυτή την έκδοση", "Enable all" : "Ενεργοποίηση όλων", "Enable" : "Ενεργοποίηση", "The app will be downloaded from the app store" : "Αυτή η εφαρμογή θα ", + "New password" : "Νέο συνθηματικό", "Delete user" : "Διαγραφή χρήστη", "Enable user" : "Ενεργοποίηση χρήστη", "{size} used" : "{μέγεθος} που χρησιμοποιείται", "Welcome mail sent!" : "Απεστάλη το μήνυμα καλωσορίσματος!", + "Username" : "Όνομα χρήστη", + "Password" : "Συνθηματικό", "Email" : "Ηλεκτρονικό ταχυδρομείο", "Group admin for" : "Ομαδα διαχειριστή για", + "Quota" : "Σύνολο Χώρου", "Language" : "Γλώσσα", + "Storage location" : "Τοποθεσία αποθηκευτικού χώρου", "User backend" : "Σύστημα υποστήριξης χρήστη", + "Last login" : "Τελευταία είσοδος", "Unlimited" : "Απεριόριστο", "Default quota" : "Προεπιλέγμενη χωρητικότητα", - "App update" : "Ενημέρωση εφαρμογής", "Your apps" : "Οι εφαρμογές σας", "Disabled apps" : "Απενεργοποιημένες εφαρμογές", "Updates" : "Ενημερώσεις", "App bundles" : "Πακέτα εφαρμογών", + "Show last login" : "Εμφάνιση τελευταιας σύνδεσης", + "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", "Admins" : "Διαχειριστές", "Everyone" : "Όλοι", "Add group" : "Προσθήκη ομάδας", + "App update" : "Ενημέρωση εφαρμογής", "SSL Root Certificates" : "Πιστοποιητικά SSL του Root", "Common Name" : "Κοινό Όνομα", "Valid until" : "Έγκυρο έως", @@ -227,9 +244,7 @@ "Link https://…" : "Σύνδεσμος https://…", "Twitter" : "Twitter", "Help translate" : "Βοηθήστε στη μετάφραση", - "Password" : "Συνθηματικό", "Current password" : "Τρέχων συνθηματικό", - "New password" : "Νέο συνθηματικό", "Change password" : "Αλλαγή συνθηματικού", "Web, desktop and mobile clients currently logged in to your account." : " ", "Device" : "Συσκευή", @@ -238,7 +253,6 @@ "Create new app password" : "Δημιουργία νέου συνθηματικού εφαρμογής", "Use the credentials below to configure your app or device." : "Χρησιμοποιήστε τα παρακάτω διαπιστευτήρια για να ρυθμίσετε την εφαρμογή ή την συσκευή σας.", "For security reasons this password will only be shown once." : "Για λόγους ασφαλείας αυτό το συνθηματικό θα εμφανιστεί μόνο μια φορά.", - "Username" : "Όνομα χρήστη", "Done" : "Ολοκληρώθηκε", "Enabled apps" : "Ενεργοποιημένες εφαρμογές", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "Το cURL χρησιμοποιεί μια παρωχημένη %s έκδοση (%s). Παρακαλούμε αναβαθμίστε το λειτουργικό σας σύστημα αλλιώς δυνατότητες όπως %s δεν θα δουλέψουν αξιόπιστα.", @@ -263,15 +277,11 @@ "Password confirmation is required" : "Απαιτείται επιβεβαίωση συνθηματικού", "Are you really sure you want add {domain} as trusted domain?" : "Θέλετε σίγουρα να προσθέσετε τον τομέα {domain} ως έμπιστο τομέα;", "Add trusted domain" : "Προσθέστε αξιόπιστη περιοχή", - "All" : "Όλες", "Update to %s" : "Ενημέρωση σε %s", - "No apps found for your version" : "Δεν βρέθηκαν εφαρμογές για αυτή την έκδοση", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Οι επίσημες εφαρμογές αναπτύσσονται μέσα από την κοινότητα. Προσφέρουν κεντρική λειτουργικότητα και είναι έτοιμες για παραγωγική χρήση. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Οι εγκεκριμένες εφαρμογές αναπτύχθηκαν από αξιόπιστους προγραμματιστές και έχουν περάσει έναν συνοπτικό έλεγχο ασφαλείας. Διατηρούνται ενεργά σε ένα αποθετήριο ανοιχτού κώδικα και οι συντηρητές θεωρούν οτι είναι σταθερές για κανονική χρήση.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Η εφαρμογή αυτή δεν ελέγχεται για θέματα ασφάλειας και είναι νέα ή είναι γνωστό ότι είναι ασταθής. Η εγκατάσταση γίνεται με δική σας ευθύνη.", "Disabling app …" : "Γίνεται απενεργοποίηση εφαρμογής...", "Error while disabling app" : "Σφάλμα κατά την απενεργοποίηση εισόδου", - "Disable" : "Απενεργοποίηση", "Enabling app …" : "Γίνεται ενεργοποίηση εφαρμογής...", "Error while enabling app" : "Σφάλμα κατά την ενεργοποίηση της εφαρμογής", "Error: Could not disable broken app" : "Σφάλμα: αδυναμία απενεργοποίησης κατεστραμμένης εφαρμογής", @@ -281,7 +291,6 @@ "Updated" : "Ενημερώθηκε", "Removing …" : "Αφαίρεση ...", "Error while removing app" : "Σφάλμα κατά την αφαίρεση της εφαρμογής", - "Remove" : "Αφαίρεση", "Approved" : "Εγκεκριμένο", "Experimental" : "Πειραματικό", "No apps found for {query}" : "Δεν βρέθηκαν εφαρμογές για {query}", @@ -317,16 +326,12 @@ "Theming" : "Θέματα", "Check the security of your Nextcloud over our security scan" : "Ελέγξτε την ασφάλεια του Nextcloud σας μέσω της σάρωσης ασφαλείας", "Hardening and security guidance" : "Οδηγίες ασφάλειας και θωράκισης", - "View in store" : "Προβολή στο κέντρο εφαρμογών", "This app has an update available." : "Αυτή η εφαρμογή έχει διαθέσιμη ενημέρωση.", "by %s" : "από %s", "%s-licensed" : "%s-αδειοδοτημένο", "Documentation:" : "Τεκμηρίωση:", - "Admin documentation" : "Τεκμηρίωση Διαχειριστή", - "Report a bug" : "Αναφέρετε σφάλμα", "Show description …" : "Εμφάνιση περιγραφής", "Hide description …" : "Απόκρυψη περιγραφής", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Αυτή η εφαρμογή δεν έχει μέγιστη έκδοση του Nextcloud ανατεθειμένη. Αυτό θα αποτελεί σφάλμα στο μέλλον.", "Enable only for specific groups" : "Ενεργοποίηση μόνο για καθορισμένες ομάδες", "Online documentation" : "Τεκμηρίωση στο Διαδίκτυο", "Getting help" : "Λήψη βοήθειας", @@ -345,8 +350,6 @@ "Subscribe to our newsletter!" : "Εγγραφείτε στο ενημερωτικό δελτίο μας!", "Settings" : "Ρυθμίσεις", "Show storage location" : "Εμφάνιση τοποθεσίας αποθήκευσης", - "Show user backend" : "Εμφάνιση χρήστη συστήματος υποστήριξης", - "Show last login" : "Εμφάνιση τελευταιας σύνδεσης", "Show email address" : "Εμφάνιση διεύθυνσης ηλ. αλληλογραφίας", "Send email to new user" : "Αποστολή μηνύματος στο νέο χρήστη", "E-Mail" : "Ηλεκτρονική αλληλογραφία", @@ -357,9 +360,6 @@ "Disabled" : "Απενεργοποιημένο", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Παρακαλώ εισάγετε επιτρεπόμενα μερίδια αποθηκευτικού χώρου (π.χ. \"512 MB\" ή \"12 GB\")", "Other" : "Άλλο", - "Quota" : "Σύνολο Χώρου", - "Storage location" : "Τοποθεσία αποθηκευτικού χώρου", - "Last login" : "Τελευταία είσοδος", "change full name" : "αλλαγή πλήρους ονόματος", "set new password" : "επιλογή νέου κωδικού", "change email address" : "αλλαγή διεύθυνσης ηλ. αλληλογραφίας", diff --git a/settings/l10n/en_GB.js b/settings/l10n/en_GB.js index 26e38c52cc0..7457a3db3b3 100644 --- a/settings/l10n/en_GB.js +++ b/settings/l10n/en_GB.js @@ -105,33 +105,50 @@ OC.L10N.register( "Select a profile picture" : "Select a profile picture", "Groups" : "Groups", "Limit to groups" : "Limit to groups", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Official apps are developed by the community. They offer additional functionality and are ready for production use.", "Official" : "Official", + "Remove" : "Remove", + "Disable" : "Disable", + "All" : "All", + "View in store" : "View in store", "Visit website" : "Visit website", + "Report a bug" : "Report a bug", "User documentation" : "User documentation", + "Admin documentation" : "Admin documentation", "Developer documentation" : "Developer documentation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", + "No apps found for your version" : "No apps found for your version", "Enable all" : "Enable all", "Enable" : "Enable", "The app will be downloaded from the app store" : "The app will be downloaded from the app store", + "New password" : "New password", "{size} used" : "{size} used", + "Username" : "Username", + "Password" : "Password", "Email" : "Email", "Group admin for" : "Group admin for", + "Quota" : "Quota", "Language" : "Language", + "Storage location" : "Storage location", "User backend" : "User backend", + "Last login" : "Last login", "Unlimited" : "Unlimited", "Default quota" : "Default quota", - "An error occured during the request. Unable to proceed." : "An error occured during the request. Unable to proceed.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", - "App update" : "App update", - "Error: This app can not be enabled because it makes the server unstable" : "Error: This app can not be enabled because it makes the server unstable", "Your apps" : "Your apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", "App bundles" : "App bundles", + "Show last login" : "Show last login", + "Show user backend" : "Show user backend", "Admins" : "Admins", "Everyone" : "Everyone", "Add group" : "Add group", + "An error occured during the request. Unable to proceed." : "An error occured during the request. Unable to proceed.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", + "App update" : "App update", + "Error: This app can not be enabled because it makes the server unstable" : "Error: This app can not be enabled because it makes the server unstable", "SSL Root Certificates" : "SSL Root Certificates", "Common Name" : "Common Name", "Valid until" : "Valid until", @@ -247,9 +264,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Help translate", - "Password" : "Password", "Current password" : "Current password", - "New password" : "New password", "Change password" : "Change password", "Devices & sessions" : "Devices & sessions", "Web, desktop and mobile clients currently logged in to your account." : "Web, desktop and mobile clients currently logged in to your account.", @@ -259,7 +274,6 @@ OC.L10N.register( "Create new app password" : "Create new app password", "Use the credentials below to configure your app or device." : "Use the credentials below to configure your app or device.", "For security reasons this password will only be shown once." : "For security reasons this password will only be shown once.", - "Username" : "Username", "Done" : "Done", "Enabled apps" : "Enabled apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably.", @@ -284,16 +298,12 @@ OC.L10N.register( "Password confirmation is required" : "Password confirmation is required", "Are you really sure you want add {domain} as trusted domain?" : "Are you really sure you want add {domain} as trusted domain?", "Add trusted domain" : "Add trusted domain", - "All" : "All", "Update to %s" : "Update to %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["You have %n app update pending","You have %n app updates pending"], - "No apps found for your version" : "No apps found for your version", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Official apps are developed by the community. They offer additional functionality and are ready for production use.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "This app is not checked for security issues and is new or known to be unstable. Install at your own risk.", "Disabling app …" : "Disabling app …", "Error while disabling app" : "Error whilst disabling app", - "Disable" : "Disable", "Enabling app …" : "Enabling app …", "Error while enabling app" : "Error whilst enabling app", "Error: Could not disable broken app" : "Error: Could not disable broken app", @@ -303,7 +313,6 @@ OC.L10N.register( "Updated" : "Updated", "Removing …" : "Removing …", "Error while removing app" : "Error while removing app", - "Remove" : "Remove", "Approved" : "Approved", "Experimental" : "Experimental", "No apps found for {query}" : "No apps found for {query}", @@ -360,16 +369,12 @@ OC.L10N.register( "Theming" : "Theming", "Check the security of your Nextcloud over our security scan" : "Check the security of your Nextcloud over our security scan", "Hardening and security guidance" : "Hardening and security guidance", - "View in store" : "View in store", "This app has an update available." : "This app has an update available.", "by %s" : "by %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentation:", - "Admin documentation" : "Admin documentation", - "Report a bug" : "Report a bug", "Show description …" : "Show description …", "Hide description …" : "Hide description …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", "Enable only for specific groups" : "Enable only for specific groups", "Online documentation" : "Online documentation", "Getting help" : "Getting help", @@ -393,8 +398,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Subscribe to our newsletter!", "Settings" : "Settings", "Show storage location" : "Show storage location", - "Show user backend" : "Show user backend", - "Show last login" : "Show last login", "Show email address" : "Show email address", "Send email to new user" : "Send email to new user", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "When the password of a new user is left empty, an activation email with a link to set the password is sent.", @@ -406,9 +409,6 @@ OC.L10N.register( "Disabled" : "Disabled", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")", "Other" : "Other", - "Quota" : "Quota", - "Storage location" : "Storage location", - "Last login" : "Last login", "change full name" : "change full name", "set new password" : "set new password", "change email address" : "change email address", diff --git a/settings/l10n/en_GB.json b/settings/l10n/en_GB.json index 408add81e6e..2ddf684a8b7 100644 --- a/settings/l10n/en_GB.json +++ b/settings/l10n/en_GB.json @@ -103,33 +103,50 @@ "Select a profile picture" : "Select a profile picture", "Groups" : "Groups", "Limit to groups" : "Limit to groups", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Official apps are developed by the community. They offer additional functionality and are ready for production use.", "Official" : "Official", + "Remove" : "Remove", + "Disable" : "Disable", + "All" : "All", + "View in store" : "View in store", "Visit website" : "Visit website", + "Report a bug" : "Report a bug", "User documentation" : "User documentation", + "Admin documentation" : "Admin documentation", "Developer documentation" : "Developer documentation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will cause an error in the future.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "This app cannot be installed because the following dependencies are not fulfilled:", + "No apps found for your version" : "No apps found for your version", "Enable all" : "Enable all", "Enable" : "Enable", "The app will be downloaded from the app store" : "The app will be downloaded from the app store", + "New password" : "New password", "{size} used" : "{size} used", + "Username" : "Username", + "Password" : "Password", "Email" : "Email", "Group admin for" : "Group admin for", + "Quota" : "Quota", "Language" : "Language", + "Storage location" : "Storage location", "User backend" : "User backend", + "Last login" : "Last login", "Unlimited" : "Unlimited", "Default quota" : "Default quota", - "An error occured during the request. Unable to proceed." : "An error occured during the request. Unable to proceed.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", - "App update" : "App update", - "Error: This app can not be enabled because it makes the server unstable" : "Error: This app can not be enabled because it makes the server unstable", "Your apps" : "Your apps", "Disabled apps" : "Disabled apps", "Updates" : "Updates", "App bundles" : "App bundles", + "Show last login" : "Show last login", + "Show user backend" : "Show user backend", "Admins" : "Admins", "Everyone" : "Everyone", "Add group" : "Add group", + "An error occured during the request. Unable to proceed." : "An error occured during the request. Unable to proceed.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds.", + "App update" : "App update", + "Error: This app can not be enabled because it makes the server unstable" : "Error: This app can not be enabled because it makes the server unstable", "SSL Root Certificates" : "SSL Root Certificates", "Common Name" : "Common Name", "Valid until" : "Valid until", @@ -245,9 +262,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Help translate", - "Password" : "Password", "Current password" : "Current password", - "New password" : "New password", "Change password" : "Change password", "Devices & sessions" : "Devices & sessions", "Web, desktop and mobile clients currently logged in to your account." : "Web, desktop and mobile clients currently logged in to your account.", @@ -257,7 +272,6 @@ "Create new app password" : "Create new app password", "Use the credentials below to configure your app or device." : "Use the credentials below to configure your app or device.", "For security reasons this password will only be shown once." : "For security reasons this password will only be shown once.", - "Username" : "Username", "Done" : "Done", "Enabled apps" : "Enabled apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably.", @@ -282,16 +296,12 @@ "Password confirmation is required" : "Password confirmation is required", "Are you really sure you want add {domain} as trusted domain?" : "Are you really sure you want add {domain} as trusted domain?", "Add trusted domain" : "Add trusted domain", - "All" : "All", "Update to %s" : "Update to %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["You have %n app update pending","You have %n app updates pending"], - "No apps found for your version" : "No apps found for your version", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Official apps are developed by the community. They offer additional functionality and are ready for production use.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "This app is not checked for security issues and is new or known to be unstable. Install at your own risk.", "Disabling app …" : "Disabling app …", "Error while disabling app" : "Error whilst disabling app", - "Disable" : "Disable", "Enabling app …" : "Enabling app …", "Error while enabling app" : "Error whilst enabling app", "Error: Could not disable broken app" : "Error: Could not disable broken app", @@ -301,7 +311,6 @@ "Updated" : "Updated", "Removing …" : "Removing …", "Error while removing app" : "Error while removing app", - "Remove" : "Remove", "Approved" : "Approved", "Experimental" : "Experimental", "No apps found for {query}" : "No apps found for {query}", @@ -358,16 +367,12 @@ "Theming" : "Theming", "Check the security of your Nextcloud over our security scan" : "Check the security of your Nextcloud over our security scan", "Hardening and security guidance" : "Hardening and security guidance", - "View in store" : "View in store", "This app has an update available." : "This app has an update available.", "by %s" : "by %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentation:", - "Admin documentation" : "Admin documentation", - "Report a bug" : "Report a bug", "Show description …" : "Show description …", "Hide description …" : "Hide description …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will cause an error in the future.", "Enable only for specific groups" : "Enable only for specific groups", "Online documentation" : "Online documentation", "Getting help" : "Getting help", @@ -391,8 +396,6 @@ "Subscribe to our newsletter!" : "Subscribe to our newsletter!", "Settings" : "Settings", "Show storage location" : "Show storage location", - "Show user backend" : "Show user backend", - "Show last login" : "Show last login", "Show email address" : "Show email address", "Send email to new user" : "Send email to new user", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "When the password of a new user is left empty, an activation email with a link to set the password is sent.", @@ -404,9 +407,6 @@ "Disabled" : "Disabled", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Please enter storage quota (e.g. \"512 MB\" or \"12 GB\")", "Other" : "Other", - "Quota" : "Quota", - "Storage location" : "Storage location", - "Last login" : "Last login", "change full name" : "change full name", "set new password" : "set new password", "change email address" : "change email address", diff --git a/settings/l10n/eo.js b/settings/l10n/eo.js index bc7494d08e8..65e6505fa6f 100644 --- a/settings/l10n/eo.js +++ b/settings/l10n/eo.js @@ -19,20 +19,28 @@ OC.L10N.register( "Select a profile picture" : "Elekti profilan bildon", "Groups" : "Grupoj", "Official" : "Oficiala", + "Disable" : "Malkapabligi", + "All" : "Ĉio", "User documentation" : "Uzodokumentaro", + "Admin documentation" : "Administrodokumentaro", "Enable all" : "Kapabligi ĉiu", "Enable" : "Kapabligi", + "New password" : "Nova pasvorto", + "Username" : "Uzantonomo", + "Password" : "Pasvorto", "Email" : "Retpoŝto", + "Quota" : "Kvoto", "Language" : "Lingvo", "User backend" : "Uzantomotoro", "Unlimited" : "Senlima", "Default quota" : "Defaŭlta kvoto", - "App update" : "Aplikaĵon ĝisdatigi", "Your apps" : "Viaj aplikaĵoj", "Disabled apps" : "Malkapabligitaj aplikaĵoj", "Updates" : "Ĝisdatigoj", + "Show user backend" : "Montri uzantomotoron", "Admins" : "Administrantoj", "Everyone" : "Ĉiuj", + "App update" : "Aplikaĵon ĝisdatigi", "Common Name" : "Komuna nomo", "Valid until" : "Valida ĝis", "Valid until %s" : "Valida ĝis %s", @@ -73,21 +81,16 @@ OC.L10N.register( "Full name" : "Plena nomo", "Your email address" : "Via retpoŝta adreso", "Help translate" : "Helpu traduki", - "Password" : "Pasvorto", "Current password" : "Nuna pasvorto", - "New password" : "Nova pasvorto", "Change password" : "Ŝanĝi la pasvorton", "App name" : "Namo de aplikaĵo", - "Username" : "Uzantonomo", "Done" : "Farita", "Enabled apps" : "Kapabligitaj aplikaĵoj", "Group already exists." : "Grupo jam ekzistas", "Your full name has been changed." : "Via plena nomo ŝanĝitas.", "Email saved" : "La retpoŝtadreso konserviĝis", - "All" : "Ĉio", "Disabling app …" : "Malkapabligas aplikaĵon …", "Error while disabling app" : "Eraris malkapabligo de aplikaĵo", - "Disable" : "Malkapabligi", "Enabling app …" : "Kapabligas aplikaĵon …", "Error while enabling app" : "Eraris kapabligo de aplikaĵo", "Updated" : "Ĝisdatigita", @@ -103,7 +106,6 @@ OC.L10N.register( "by %s" : "de %s", "%s-licensed" : "%s-permesila", "Documentation:" : "Dokumentaro:", - "Admin documentation" : "Administrodokumentaro", "Show description …" : "Montri priskribon...", "Hide description …" : "Malmontri priskribon...", "Enable only for specific groups" : "Kapabligi nur por specifajn grupojn", @@ -112,14 +114,12 @@ OC.L10N.register( "iOS app" : "iOS-aplikaĵo", "App passwords" : "Aplikaĵaj pasvortoj", "Settings" : "Agordo", - "Show user backend" : "Montri uzantomotoron", "Send email to new user" : "Sendi retmesaĝon al nova uzanto", "E-Mail" : "Retpoŝtadreso", "Create" : "Krei", "Group name" : "Gruponomo", "Disabled" : "Malkapabligita", "Other" : "Alia", - "Quota" : "Kvoto", "change full name" : "ŝanĝi plenan nomon", "set new password" : "agordi novan pasvorton", "change email address" : "ŝanĝi retpoŝtadreson", diff --git a/settings/l10n/eo.json b/settings/l10n/eo.json index 167239c755a..1305464f8e7 100644 --- a/settings/l10n/eo.json +++ b/settings/l10n/eo.json @@ -17,20 +17,28 @@ "Select a profile picture" : "Elekti profilan bildon", "Groups" : "Grupoj", "Official" : "Oficiala", + "Disable" : "Malkapabligi", + "All" : "Ĉio", "User documentation" : "Uzodokumentaro", + "Admin documentation" : "Administrodokumentaro", "Enable all" : "Kapabligi ĉiu", "Enable" : "Kapabligi", + "New password" : "Nova pasvorto", + "Username" : "Uzantonomo", + "Password" : "Pasvorto", "Email" : "Retpoŝto", + "Quota" : "Kvoto", "Language" : "Lingvo", "User backend" : "Uzantomotoro", "Unlimited" : "Senlima", "Default quota" : "Defaŭlta kvoto", - "App update" : "Aplikaĵon ĝisdatigi", "Your apps" : "Viaj aplikaĵoj", "Disabled apps" : "Malkapabligitaj aplikaĵoj", "Updates" : "Ĝisdatigoj", + "Show user backend" : "Montri uzantomotoron", "Admins" : "Administrantoj", "Everyone" : "Ĉiuj", + "App update" : "Aplikaĵon ĝisdatigi", "Common Name" : "Komuna nomo", "Valid until" : "Valida ĝis", "Valid until %s" : "Valida ĝis %s", @@ -71,21 +79,16 @@ "Full name" : "Plena nomo", "Your email address" : "Via retpoŝta adreso", "Help translate" : "Helpu traduki", - "Password" : "Pasvorto", "Current password" : "Nuna pasvorto", - "New password" : "Nova pasvorto", "Change password" : "Ŝanĝi la pasvorton", "App name" : "Namo de aplikaĵo", - "Username" : "Uzantonomo", "Done" : "Farita", "Enabled apps" : "Kapabligitaj aplikaĵoj", "Group already exists." : "Grupo jam ekzistas", "Your full name has been changed." : "Via plena nomo ŝanĝitas.", "Email saved" : "La retpoŝtadreso konserviĝis", - "All" : "Ĉio", "Disabling app …" : "Malkapabligas aplikaĵon …", "Error while disabling app" : "Eraris malkapabligo de aplikaĵo", - "Disable" : "Malkapabligi", "Enabling app …" : "Kapabligas aplikaĵon …", "Error while enabling app" : "Eraris kapabligo de aplikaĵo", "Updated" : "Ĝisdatigita", @@ -101,7 +104,6 @@ "by %s" : "de %s", "%s-licensed" : "%s-permesila", "Documentation:" : "Dokumentaro:", - "Admin documentation" : "Administrodokumentaro", "Show description …" : "Montri priskribon...", "Hide description …" : "Malmontri priskribon...", "Enable only for specific groups" : "Kapabligi nur por specifajn grupojn", @@ -110,14 +112,12 @@ "iOS app" : "iOS-aplikaĵo", "App passwords" : "Aplikaĵaj pasvortoj", "Settings" : "Agordo", - "Show user backend" : "Montri uzantomotoron", "Send email to new user" : "Sendi retmesaĝon al nova uzanto", "E-Mail" : "Retpoŝtadreso", "Create" : "Krei", "Group name" : "Gruponomo", "Disabled" : "Malkapabligita", "Other" : "Alia", - "Quota" : "Kvoto", "change full name" : "ŝanĝi plenan nomon", "set new password" : "agordi novan pasvorton", "change email address" : "ŝanĝi retpoŝtadreson", diff --git a/settings/l10n/es.js b/settings/l10n/es.js index 785408a9772..8de1722c72f 100644 --- a/settings/l10n/es.js +++ b/settings/l10n/es.js @@ -115,47 +115,60 @@ OC.L10N.register( "Enforce two-factor authentication" : "Imponer verificación en dos pasos", "Limit to groups" : "Límite para grupos", "Two-factor authentication is not enforced for\tmembers of the following groups." : "La verificación en dos pasos no está impuesta a\tmiembros de los siguientes grupos.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps oficiales están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están preparadas para su uso en producción.", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Desactivar", + "All" : "Todos", "No results" : "No hay resultados", + "View in store" : "Ver en la tienda", "Visit website" : "Visite nuestro sitio web", + "Report a bug" : "Notificar un error", "User documentation" : "Documentación de usuario", + "Admin documentation" : "Documentación de administrador", "Developer documentation" : "Documentación de desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "{license}-licensed" : "licenciado bajo {license}", + "No apps found for your version" : "No se han encontrado aplicaciones para su versión", "Disable all" : "Deshabilitar todos", "Enable all" : "Activar todas", "Download and enable" : "Descargar y activar", "Enable" : "Activar", "The app will be downloaded from the app store" : "La app va a ser descargada de una tienda de aplicaciones", "You do not have permissions to see the details of this user" : "No tienes permisos para ver los detalles de este usuario", + "New password" : "Nueva contraseña", "Delete user" : "Eliminar usuario", "Disable user" : "Inhabilitar usuario", "Enable user" : "Habilitar usuario", "Resend welcome email" : "Volver a enviar correo de bienvenida", "{size} used" : "{size} usados", "Welcome mail sent!" : "¡Correo de bienvenida enviado!", + "Username" : "Nombre de usuario", "Display name" : "Nombre para mostrar", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador de grupo para", + "Quota" : "Espacio", "Language" : "Idioma", + "Storage location" : "Ubicación de los datos", "User backend" : "Motor de usuario", + "Last login" : "Último inicio de sesión", + "Default language" : "Idioma predeterminado", "Unlimited" : "Ilimitado", "Default quota" : "Espacio predeterminado", - "Default language" : "Idioma predeterminado", "Password change is disabled because the master key is disabled" : "El cambio de contraseña está desactivado porque la clave maestra está desactivada", "Common languages" : "Idiomas habituales", "All languages" : "Todos los idiomas", - "An error occured during the request. Unable to proceed." : "Ha ocurrido un error durante la petición. No se puede continuar.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La app ha sido activada pero tiene que actualizarse. Serás redirigido a la página de actualización en 5 segundos.", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque desestabiliza el servidor", "Your apps" : "Tus apps", "Active apps" : "Apps activas", "Disabled apps" : "Apps deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Lotes de apps", + "{license}-licensed" : "licenciado bajo {license}", "Default quota:" : "Espacio predeterminado:", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar motor de usuario", "You are about to remove the group {group}. The users will NOT be deleted." : "Vas a eliminar el grupo {group}. Los usuarios NO serán eliminados.", "Please confirm the group removal " : "Por favor, confirma la eliminación del grupo", "Remove group" : "Eliminar grupo", @@ -164,6 +177,10 @@ OC.L10N.register( "Everyone" : "Todos", "Add group" : "Añadir grupo", "New user" : "Nuevo usuario", + "An error occured during the request. Unable to proceed." : "Ha ocurrido un error durante la petición. No se puede continuar.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La app ha sido activada pero tiene que actualizarse. Serás redirigido a la página de actualización en 5 segundos.", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque desestabiliza el servidor", "SSL Root Certificates" : "Certificados raíz SSL ", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -288,9 +305,7 @@ OC.L10N.register( "Twitter handle @…" : "Usuario de Twitter @...", "Help translate" : "Ayúdanos a traducir", "Locale" : "Región", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, móviles y de escritorio actualmente conectados a tu cuenta.", @@ -300,7 +315,6 @@ OC.L10N.register( "Create new app password" : "Crear nueva contraseña de app", "Use the credentials below to configure your app or device." : "Use las siguientes credenciales para configurar su app o dispositivo.", "For security reasons this password will only be shown once." : "Para seguridad, esta contraseña será mostrado solamente una vez.", - "Username" : "Nombre de usuario", "Done" : "Hecho", "Enabled apps" : "Apps habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión desactualizada %s (%s). Por favor, actualiza tu sistema operativo o las funciones tales como %s no funcionarán de forma fiable.", @@ -325,16 +339,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere confirmar la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Está realmente seguro de que quiere añadir {domain} como dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de app pendiente","Tiene %n actualizaciones de app pendientes"], - "No apps found for your version" : "No se han encontrado aplicaciones para su versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps oficiales están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están preparadas para su uso en producción.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas las desarrollan desarrolladores de confianza y han pasado un control de seguridad superficial. Estas se mantienen activamente en un repositorio de código abierto y sus encargados las consideran estables para un uso normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "No se han verificado los posibles problemas de seguridad de esta app. Es nueva o bien es conocida por ser inestable. Instálela bajo su propio riesgo.", "Disabling app …" : "Deshabilitando aplicación...", "Error while disabling app" : "Error mientras se desactivaba la aplicación", - "Disable" : "Desactivar", "Enabling app …" : "Activando app ...", "Error while enabling app" : "Error mientras se activaba la aplicación", "Error: Could not disable broken app" : "Error: No se ha podido desactivar una app estropeada", @@ -344,7 +354,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando...", "Error while removing app" : "Error al eliminar la app", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se han encontrado apps para {query}", @@ -401,16 +410,12 @@ OC.L10N.register( "Theming" : "Personalizar el tema", "Check the security of your Nextcloud over our security scan" : "Comprueba la seguridad de tu NextCloud mediante nuestro escaneo de seguridad", "Hardening and security guidance" : "Guía de protección y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Está app tiene una actualización pendiente.", "by %s" : "por %s", "%s-licensed" : "Licencia %s", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación de administrador", - "Report a bug" : "Notificar un error", "Show description …" : "Mostrar descripción…", "Hide description …" : "Ocultar descripción…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Activar solamente para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -434,8 +439,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscríbete a nuestro boletín de noticias!", "Settings" : "Configuración", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar motor de usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar correo al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo está vacía, se le envía un un correo de activación para poner una contraseña", @@ -447,9 +450,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", "Other" : "Otro", - "Quota" : "Espacio", - "Storage location" : "Ubicación de los datos", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar dirección de correo electrónico", diff --git a/settings/l10n/es.json b/settings/l10n/es.json index cdeb4b1912a..069e495b3fe 100644 --- a/settings/l10n/es.json +++ b/settings/l10n/es.json @@ -113,47 +113,60 @@ "Enforce two-factor authentication" : "Imponer verificación en dos pasos", "Limit to groups" : "Límite para grupos", "Two-factor authentication is not enforced for\tmembers of the following groups." : "La verificación en dos pasos no está impuesta a\tmiembros de los siguientes grupos.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps oficiales están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están preparadas para su uso en producción.", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Desactivar", + "All" : "Todos", "No results" : "No hay resultados", + "View in store" : "Ver en la tienda", "Visit website" : "Visite nuestro sitio web", + "Report a bug" : "Notificar un error", "User documentation" : "Documentación de usuario", + "Admin documentation" : "Documentación de administrador", "Developer documentation" : "Documentación de desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede instalarse porque las siguientes dependencias no están cumplimentadas:", - "{license}-licensed" : "licenciado bajo {license}", + "No apps found for your version" : "No se han encontrado aplicaciones para su versión", "Disable all" : "Deshabilitar todos", "Enable all" : "Activar todas", "Download and enable" : "Descargar y activar", "Enable" : "Activar", "The app will be downloaded from the app store" : "La app va a ser descargada de una tienda de aplicaciones", "You do not have permissions to see the details of this user" : "No tienes permisos para ver los detalles de este usuario", + "New password" : "Nueva contraseña", "Delete user" : "Eliminar usuario", "Disable user" : "Inhabilitar usuario", "Enable user" : "Habilitar usuario", "Resend welcome email" : "Volver a enviar correo de bienvenida", "{size} used" : "{size} usados", "Welcome mail sent!" : "¡Correo de bienvenida enviado!", + "Username" : "Nombre de usuario", "Display name" : "Nombre para mostrar", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador de grupo para", + "Quota" : "Espacio", "Language" : "Idioma", + "Storage location" : "Ubicación de los datos", "User backend" : "Motor de usuario", + "Last login" : "Último inicio de sesión", + "Default language" : "Idioma predeterminado", "Unlimited" : "Ilimitado", "Default quota" : "Espacio predeterminado", - "Default language" : "Idioma predeterminado", "Password change is disabled because the master key is disabled" : "El cambio de contraseña está desactivado porque la clave maestra está desactivada", "Common languages" : "Idiomas habituales", "All languages" : "Todos los idiomas", - "An error occured during the request. Unable to proceed." : "Ha ocurrido un error durante la petición. No se puede continuar.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La app ha sido activada pero tiene que actualizarse. Serás redirigido a la página de actualización en 5 segundos.", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque desestabiliza el servidor", "Your apps" : "Tus apps", "Active apps" : "Apps activas", "Disabled apps" : "Apps deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Lotes de apps", + "{license}-licensed" : "licenciado bajo {license}", "Default quota:" : "Espacio predeterminado:", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar motor de usuario", "You are about to remove the group {group}. The users will NOT be deleted." : "Vas a eliminar el grupo {group}. Los usuarios NO serán eliminados.", "Please confirm the group removal " : "Por favor, confirma la eliminación del grupo", "Remove group" : "Eliminar grupo", @@ -162,6 +175,10 @@ "Everyone" : "Todos", "Add group" : "Añadir grupo", "New user" : "Nuevo usuario", + "An error occured during the request. Unable to proceed." : "Ha ocurrido un error durante la petición. No se puede continuar.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La app ha sido activada pero tiene que actualizarse. Serás redirigido a la página de actualización en 5 segundos.", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta app no se puede activar porque desestabiliza el servidor", "SSL Root Certificates" : "Certificados raíz SSL ", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -286,9 +303,7 @@ "Twitter handle @…" : "Usuario de Twitter @...", "Help translate" : "Ayúdanos a traducir", "Locale" : "Región", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, móviles y de escritorio actualmente conectados a tu cuenta.", @@ -298,7 +313,6 @@ "Create new app password" : "Crear nueva contraseña de app", "Use the credentials below to configure your app or device." : "Use las siguientes credenciales para configurar su app o dispositivo.", "For security reasons this password will only be shown once." : "Para seguridad, esta contraseña será mostrado solamente una vez.", - "Username" : "Nombre de usuario", "Done" : "Hecho", "Enabled apps" : "Apps habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión desactualizada %s (%s). Por favor, actualiza tu sistema operativo o las funciones tales como %s no funcionarán de forma fiable.", @@ -323,16 +337,12 @@ "Password confirmation is required" : "Se requiere confirmar la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Está realmente seguro de que quiere añadir {domain} como dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de app pendiente","Tiene %n actualizaciones de app pendientes"], - "No apps found for your version" : "No se han encontrado aplicaciones para su versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las apps oficiales están desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad central y están preparadas para su uso en producción.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas las desarrollan desarrolladores de confianza y han pasado un control de seguridad superficial. Estas se mantienen activamente en un repositorio de código abierto y sus encargados las consideran estables para un uso normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "No se han verificado los posibles problemas de seguridad de esta app. Es nueva o bien es conocida por ser inestable. Instálela bajo su propio riesgo.", "Disabling app …" : "Deshabilitando aplicación...", "Error while disabling app" : "Error mientras se desactivaba la aplicación", - "Disable" : "Desactivar", "Enabling app …" : "Activando app ...", "Error while enabling app" : "Error mientras se activaba la aplicación", "Error: Could not disable broken app" : "Error: No se ha podido desactivar una app estropeada", @@ -342,7 +352,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando...", "Error while removing app" : "Error al eliminar la app", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se han encontrado apps para {query}", @@ -399,16 +408,12 @@ "Theming" : "Personalizar el tema", "Check the security of your Nextcloud over our security scan" : "Comprueba la seguridad de tu NextCloud mediante nuestro escaneo de seguridad", "Hardening and security guidance" : "Guía de protección y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Está app tiene una actualización pendiente.", "by %s" : "por %s", "%s-licensed" : "Licencia %s", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación de administrador", - "Report a bug" : "Notificar un error", "Show description …" : "Mostrar descripción…", "Hide description …" : "Ocultar descripción…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app no tiene una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Activar solamente para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -432,8 +437,6 @@ "Subscribe to our newsletter!" : "¡Suscríbete a nuestro boletín de noticias!", "Settings" : "Configuración", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar motor de usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar correo al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo está vacía, se le envía un un correo de activación para poner una contraseña", @@ -445,9 +448,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indique la cúota de almacenamiento (ej: \"512 MB\" o \"12 GB\")", "Other" : "Otro", - "Quota" : "Espacio", - "Storage location" : "Ubicación de los datos", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar dirección de correo electrónico", diff --git a/settings/l10n/es_419.js b/settings/l10n/es_419.js index d31cfb2ee3a..11ff9297342 100644 --- a/settings/l10n/es_419.js +++ b/settings/l10n/es_419.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_419.json b/settings/l10n/es_419.json index 0d1fea59cdd..96395a05cb7 100644 --- a/settings/l10n/es_419.json +++ b/settings/l10n/es_419.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_AR.js b/settings/l10n/es_AR.js index a334e590bba..37d1880527a 100644 --- a/settings/l10n/es_AR.js +++ b/settings/l10n/es_AR.js @@ -103,24 +103,41 @@ OC.L10N.register( "Select a profile picture" : "Seleccionar una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visite el sitio web", + "Report a bug" : "Reporte un tema", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para su versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", + "Username" : "Nombre de usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", "Your apps" : "Sus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "App bundles" : "Paquetes de aplicacion", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", @@ -223,9 +240,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayude a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en su cuenta. ", "Device" : "Dispositivo", @@ -234,7 +249,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Use las siguientes credenciales para configurar su aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Nombre de usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Favor de actualizar su sistema operativo o las funcialidades tales como %s no funcionarán de forma confiable.", @@ -259,21 +273,16 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente está seguro que quiere agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para su versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instale bajo su propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprovado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicación para {query}", @@ -311,16 +320,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifique la seguridad de su Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporte un tema", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -330,8 +335,6 @@ OC.L10N.register( "You are member of the following groups:" : "Usted es un miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con un link para establecerla. ", @@ -342,9 +345,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Favor de indicar la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar dirección de correo electrónico", diff --git a/settings/l10n/es_AR.json b/settings/l10n/es_AR.json index 6fe0c0e7ebf..7408802e614 100644 --- a/settings/l10n/es_AR.json +++ b/settings/l10n/es_AR.json @@ -101,24 +101,41 @@ "Select a profile picture" : "Seleccionar una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visite el sitio web", + "Report a bug" : "Reporte un tema", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para su versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", + "Username" : "Nombre de usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", "Your apps" : "Sus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "App bundles" : "Paquetes de aplicacion", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", @@ -221,9 +238,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayude a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en su cuenta. ", "Device" : "Dispositivo", @@ -232,7 +247,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Use las siguientes credenciales para configurar su aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Nombre de usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Favor de actualizar su sistema operativo o las funcialidades tales como %s no funcionarán de forma confiable.", @@ -257,21 +271,16 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente está seguro que quiere agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para su versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instale bajo su propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprovado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicación para {query}", @@ -309,16 +318,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifique la seguridad de su Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporte un tema", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -328,8 +333,6 @@ "You are member of the following groups:" : "Usted es un miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con un link para establecerla. ", @@ -340,9 +343,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Favor de indicar la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar dirección de correo electrónico", diff --git a/settings/l10n/es_CL.js b/settings/l10n/es_CL.js index da87df824e8..5fe9e4a41fd 100644 --- a/settings/l10n/es_CL.js +++ b/settings/l10n/es_CL.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -243,9 +260,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -255,7 +270,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -280,16 +294,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -299,7 +309,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -356,16 +365,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -389,8 +394,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -402,9 +405,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_CL.json b/settings/l10n/es_CL.json index a85e6166974..94e333b5ee6 100644 --- a/settings/l10n/es_CL.json +++ b/settings/l10n/es_CL.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -241,9 +258,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -253,7 +268,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -278,16 +292,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -297,7 +307,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -354,16 +363,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -387,8 +392,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -400,9 +403,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_CO.js b/settings/l10n/es_CO.js index da87df824e8..5fe9e4a41fd 100644 --- a/settings/l10n/es_CO.js +++ b/settings/l10n/es_CO.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -243,9 +260,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -255,7 +270,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -280,16 +294,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -299,7 +309,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -356,16 +365,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -389,8 +394,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -402,9 +405,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_CO.json b/settings/l10n/es_CO.json index a85e6166974..94e333b5ee6 100644 --- a/settings/l10n/es_CO.json +++ b/settings/l10n/es_CO.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -241,9 +258,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -253,7 +268,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -278,16 +292,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -297,7 +307,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -354,16 +363,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -387,8 +392,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -400,9 +403,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_CR.js b/settings/l10n/es_CR.js index da87df824e8..5fe9e4a41fd 100644 --- a/settings/l10n/es_CR.js +++ b/settings/l10n/es_CR.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -243,9 +260,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -255,7 +270,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -280,16 +294,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -299,7 +309,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -356,16 +365,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -389,8 +394,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -402,9 +405,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_CR.json b/settings/l10n/es_CR.json index a85e6166974..94e333b5ee6 100644 --- a/settings/l10n/es_CR.json +++ b/settings/l10n/es_CR.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -241,9 +258,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -253,7 +268,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -278,16 +292,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -297,7 +307,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -354,16 +363,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -387,8 +392,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -400,9 +403,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_DO.js b/settings/l10n/es_DO.js index da87df824e8..5fe9e4a41fd 100644 --- a/settings/l10n/es_DO.js +++ b/settings/l10n/es_DO.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -243,9 +260,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -255,7 +270,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -280,16 +294,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -299,7 +309,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -356,16 +365,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -389,8 +394,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -402,9 +405,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_DO.json b/settings/l10n/es_DO.json index a85e6166974..94e333b5ee6 100644 --- a/settings/l10n/es_DO.json +++ b/settings/l10n/es_DO.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -241,9 +258,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -253,7 +268,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -278,16 +292,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -297,7 +307,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -354,16 +363,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -387,8 +392,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -400,9 +403,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_EC.js b/settings/l10n/es_EC.js index da87df824e8..5fe9e4a41fd 100644 --- a/settings/l10n/es_EC.js +++ b/settings/l10n/es_EC.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -243,9 +260,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -255,7 +270,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -280,16 +294,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -299,7 +309,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -356,16 +365,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -389,8 +394,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -402,9 +405,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_EC.json b/settings/l10n/es_EC.json index a85e6166974..94e333b5ee6 100644 --- a/settings/l10n/es_EC.json +++ b/settings/l10n/es_EC.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -241,9 +258,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -253,7 +268,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -278,16 +292,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -297,7 +307,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -354,16 +363,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -387,8 +392,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -400,9 +403,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_GT.js b/settings/l10n/es_GT.js index da87df824e8..5fe9e4a41fd 100644 --- a/settings/l10n/es_GT.js +++ b/settings/l10n/es_GT.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -243,9 +260,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -255,7 +270,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -280,16 +294,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -299,7 +309,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -356,16 +365,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -389,8 +394,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -402,9 +405,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_GT.json b/settings/l10n/es_GT.json index a85e6166974..94e333b5ee6 100644 --- a/settings/l10n/es_GT.json +++ b/settings/l10n/es_GT.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -241,9 +258,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -253,7 +268,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -278,16 +292,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -297,7 +307,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -354,16 +363,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -387,8 +392,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -400,9 +403,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_HN.js b/settings/l10n/es_HN.js index 0f2af9284b2..201458edc8d 100644 --- a/settings/l10n/es_HN.js +++ b/settings/l10n/es_HN.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_HN.json b/settings/l10n/es_HN.json index 138d0958eb9..94464a66de6 100644 --- a/settings/l10n/es_HN.json +++ b/settings/l10n/es_HN.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_MX.js b/settings/l10n/es_MX.js index 2bea7bfef89..58d1e80104a 100644 --- a/settings/l10n/es_MX.js +++ b/settings/l10n/es_MX.js @@ -105,33 +105,50 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "An error occured during the request. Unable to proceed." : "Se presentó un error durante la solicitud. No es posible proceder.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "An error occured during the request. Unable to proceed." : "Se presentó un error durante la solicitud. No es posible proceder.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -244,9 +261,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -256,7 +271,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -281,16 +295,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -300,7 +310,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -357,16 +366,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -390,8 +395,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -403,9 +406,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_MX.json b/settings/l10n/es_MX.json index 208d7c4055a..d2355276db5 100644 --- a/settings/l10n/es_MX.json +++ b/settings/l10n/es_MX.json @@ -103,33 +103,50 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "An error occured during the request. Unable to proceed." : "Se presentó un error durante la solicitud. No es posible proceder.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "An error occured during the request. Unable to proceed." : "Se presentó un error durante la solicitud. No es posible proceder.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -242,9 +259,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -254,7 +269,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -279,16 +293,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -298,7 +308,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -355,16 +364,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -388,8 +393,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -401,9 +404,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_NI.js b/settings/l10n/es_NI.js index 0f2af9284b2..201458edc8d 100644 --- a/settings/l10n/es_NI.js +++ b/settings/l10n/es_NI.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_NI.json b/settings/l10n/es_NI.json index 138d0958eb9..94464a66de6 100644 --- a/settings/l10n/es_NI.json +++ b/settings/l10n/es_NI.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PA.js b/settings/l10n/es_PA.js index 0f2af9284b2..201458edc8d 100644 --- a/settings/l10n/es_PA.js +++ b/settings/l10n/es_PA.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PA.json b/settings/l10n/es_PA.json index 138d0958eb9..94464a66de6 100644 --- a/settings/l10n/es_PA.json +++ b/settings/l10n/es_PA.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PE.js b/settings/l10n/es_PE.js index 0f2af9284b2..201458edc8d 100644 --- a/settings/l10n/es_PE.js +++ b/settings/l10n/es_PE.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PE.json b/settings/l10n/es_PE.json index 138d0958eb9..94464a66de6 100644 --- a/settings/l10n/es_PE.json +++ b/settings/l10n/es_PE.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PR.js b/settings/l10n/es_PR.js index 0f2af9284b2..201458edc8d 100644 --- a/settings/l10n/es_PR.js +++ b/settings/l10n/es_PR.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PR.json b/settings/l10n/es_PR.json index 138d0958eb9..94464a66de6 100644 --- a/settings/l10n/es_PR.json +++ b/settings/l10n/es_PR.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PY.js b/settings/l10n/es_PY.js index 0f2af9284b2..201458edc8d 100644 --- a/settings/l10n/es_PY.js +++ b/settings/l10n/es_PY.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_PY.json b/settings/l10n/es_PY.json index 138d0958eb9..94464a66de6 100644 --- a/settings/l10n/es_PY.json +++ b/settings/l10n/es_PY.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_SV.js b/settings/l10n/es_SV.js index da87df824e8..5fe9e4a41fd 100644 --- a/settings/l10n/es_SV.js +++ b/settings/l10n/es_SV.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -243,9 +260,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -255,7 +270,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -280,16 +294,12 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -299,7 +309,6 @@ OC.L10N.register( "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -356,16 +365,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -389,8 +394,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -402,9 +405,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_SV.json b/settings/l10n/es_SV.json index a85e6166974..94e333b5ee6 100644 --- a/settings/l10n/es_SV.json +++ b/settings/l10n/es_SV.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", - "App update" : "Actualización de la aplicación", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "La aplicación ha sido habilitada pero necesita ser actualizada. Serás redireccionado a la página de actualización en 5 segundos. ", + "App update" : "Actualización de la aplicación", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -241,9 +258,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Devices & sessions" : "Dispositivos y sesiones", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", @@ -253,7 +268,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -278,16 +292,12 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Tienes %n actualización de la aplicación pendiente ","Tienes %n actualizaciones de la aplicación pendientes "], - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", @@ -297,7 +307,6 @@ "Updated" : "Actualizado", "Removing …" : "Eliminando ...", "Error while removing app" : "Se presentó un error al remover la aplicación ", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -354,16 +363,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -387,8 +392,6 @@ "Subscribe to our newsletter!" : "¡Suscribete a nuestro newsletter!", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -400,9 +403,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_UY.js b/settings/l10n/es_UY.js index 0f2af9284b2..201458edc8d 100644 --- a/settings/l10n/es_UY.js +++ b/settings/l10n/es_UY.js @@ -105,30 +105,47 @@ OC.L10N.register( "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -238,9 +255,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -249,7 +264,6 @@ OC.L10N.register( "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -274,22 +288,17 @@ OC.L10N.register( "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -327,16 +336,12 @@ OC.L10N.register( "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -346,8 +351,6 @@ OC.L10N.register( "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -358,9 +361,6 @@ OC.L10N.register( "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/es_UY.json b/settings/l10n/es_UY.json index 138d0958eb9..94464a66de6 100644 --- a/settings/l10n/es_UY.json +++ b/settings/l10n/es_UY.json @@ -103,30 +103,47 @@ "Select a profile picture" : "Selecciona una imagen de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitar a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Official" : "Oficial", + "Remove" : "Eliminar", + "Disable" : "Deshabilitar", + "All" : "Todos", + "View in store" : "Ver en la tienda", "Visit website" : "Visita el sitio web", + "Report a bug" : "Reporta un detalle", "User documentation" : "Documentación del usuario", + "Admin documentation" : "Documentación del administrador", "Developer documentation" : "Documentación del desarrollador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión mínima de Nextcloud asignada. Esto será un error en el futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicación no puede ser instalada porque las siguientes dependencias no están satisfechas:", + "No apps found for your version" : "No se encontraron aplicaciones para tu versión", "Enable all" : "Habilitar todo", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "La aplicación será descargada de la tienda de aplicaciones <app store>", + "New password" : "Nueva contraseña", "{size} used" : "{size} usado", + "Username" : "Usuario", + "Password" : "Contraseña", "Email" : "Correo electrónico", "Group admin for" : "Administrador del grupo para", + "Quota" : "Cuota", "Language" : "Idioma", + "Storage location" : "Úbicación del almacenamiento", "User backend" : "Backend del usuario", + "Last login" : "Último inicio de sesión", "Unlimited" : "Ilimitado", "Default quota" : "Cuota predeterminada", - "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "Your apps" : "Tus aplicaciones", "Disabled apps" : "Aplicaciones deshabilitadas", "Updates" : "Actualizaciones", "App bundles" : "Paquetes de aplicación", + "Show last login" : "Mostrar último inicio de sesión", + "Show user backend" : "Mostrar backend del usuario", "Admins" : "Administradores", "Everyone" : "Todos", "Add group" : "Agregar grupo", + "Error: This app can not be enabled because it makes the server unstable" : "Error: Esta aplicación no puede ser habilitada porque genera inestabilidad en el servidor", "SSL Root Certificates" : "Certificado SSL Raíz", "Common Name" : "Nombre común", "Valid until" : "Válido hasta", @@ -236,9 +253,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Cuenta de twitter @...", "Help translate" : "Ayuda a traducir", - "Password" : "Contraseña", "Current password" : "Contraseña actual", - "New password" : "Nueva contraseña", "Change password" : "Cambiar contraseña", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, de escritorio y móviles han iniciado sesión en tu cuenta. ", "Device" : "Dispositivo", @@ -247,7 +262,6 @@ "Create new app password" : "Crear una nueva contraseña de aplicación", "Use the credentials below to configure your app or device." : "Usa las siguientes credenciales para configurar tu aplicación o dispositivo. ", "For security reasons this password will only be shown once." : "Por razones de seguridad esta contraseña sólo se mostrará una vez. ", - "Username" : "Usuario", "Done" : "Terminado", "Enabled apps" : "Aplicaciones habilitadas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando una versión anticuada (%s) de %s. Por favor actualiza tu sistema operativo o funciones tales como %s no funcionarán de forma confiable.", @@ -272,22 +286,17 @@ "Password confirmation is required" : "Se requiere la confirmación de la contraseña", "Are you really sure you want add {domain} as trusted domain?" : "¿Realmente estás seguro que quieres agregar a {domain} como un dominio de confianza?", "Add trusted domain" : "Agregar un dominio de confianza", - "All" : "Todos", "Update to %s" : "Actualizar a %s", - "No apps found for your version" : "No se encontraron aplicaciones para tu versión", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Las aplicaciones oficiales son desarrolladas por y dentro de la comunidad. Ofrecen una funcionalidad centralizada y se encuentran listas para ser usadas en producción. ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Las aplicaciones aprobadas son desarrolladas por desarrolladores de confianza y han pasado una verificación de seguridad. Se les brinda mantenimiento activamente en un repositorio de código abierto y los mantenedores las consideran estables para un uso casual a normal. ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicación no cuenta con una verificación contra temas de seguridad y es nueva o se sabe que es instable. Instalala bajo tu propio riesgo. ", "Disabling app …" : "Deshabilitando la aplicación ...", "Error while disabling app" : "Se presentó un error mientras se deshabilitaba la aplicación", - "Disable" : "Deshabilitar", "Enabling app …" : "Habilitando aplicación ...", "Error while enabling app" : "Se presentó un error al habilitar la aplicación", "Error: Could not disable broken app" : "Error: No fue posible deshabilitar la aplicación rota", "Error while disabling broken app" : "Se presentó un error al deshabilitar la aplicación rota", "Updated" : "Actualizado", "Removing …" : "Eliminando ...", - "Remove" : "Eliminar", "Approved" : "Aprobado", "Experimental" : "Experimental", "No apps found for {query}" : "No se encontraron aplicaciones para {query}", @@ -325,16 +334,12 @@ "Theming" : "Tematizar", "Check the security of your Nextcloud over our security scan" : "Verifica la seguridad de tu Nextcloud con nuestro escaneo de seguridad", "Hardening and security guidance" : "Consejos de reforzamiento y seguridad", - "View in store" : "Ver en la tienda", "This app has an update available." : "Esta aplicación tiene una actualización disponible.", "by %s" : "por %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentación:", - "Admin documentation" : "Documentación del administrador", - "Report a bug" : "Reporta un detalle", "Show description …" : "Mostrar descripción ...", "Hide description …" : "Ocultar descripción ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta aplicación no cuenta con una versión máxima de Nextcloud asignada. Esto será un error en el futuro.", "Enable only for specific groups" : "Habilitar sólo para grupos específicos", "Online documentation" : "Documentación en línea", "Getting help" : "Obtener ayuda", @@ -344,8 +349,6 @@ "You are member of the following groups:" : "Eres miembro de los siguientes grupos:", "Settings" : "Configuraciones ", "Show storage location" : "Mostrar la ubicación del almacenamiento", - "Show user backend" : "Mostrar backend del usuario", - "Show last login" : "Mostrar último inicio de sesión", "Show email address" : "Mostrar dirección de correo electrónico", "Send email to new user" : "Enviar un correo electrónico al usuario nuevo", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Cuando la contraseña de un usuario nuevo se deja en blanco, se envía un correo electrónico de activación con una liga para establecerla. ", @@ -356,9 +359,6 @@ "Disabled" : "Deshabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor indica la cuota de almacenamiento (ejem: \"512 MB\" ó \"12 GB\")", "Other" : "Otro", - "Quota" : "Cuota", - "Storage location" : "Úbicación del almacenamiento", - "Last login" : "Último inicio de sesión", "change full name" : "cambiar el nombre completo", "set new password" : "establecer nueva contraseña", "change email address" : "cambiar la dirección de correo electrónico", diff --git a/settings/l10n/et_EE.js b/settings/l10n/et_EE.js index 715bbe54b68..96425889969 100644 --- a/settings/l10n/et_EE.js +++ b/settings/l10n/et_EE.js @@ -101,36 +101,48 @@ OC.L10N.register( "Groups" : "Grupid", "Limit to groups" : "Luba gruppidele", "Official" : "Ametlik", + "Remove" : "Eemalda", + "Disable" : "Lülita välja", + "All" : "Kõik", "No results" : "Vasteid ei leitud", "Visit website" : "Külasta veebisaiti", + "Report a bug" : "Teata veast", "User documentation" : "Kasutaja dokumentatsioon", + "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", - "{license}-licensed" : "{license} litsents", + "No apps found for your version" : "Sinu versiooni jaoks ei leitud ühtegi rakendust", "Enable all" : "Luba kõik", "Enable" : "Lülita sisse", "You do not have permissions to see the details of this user" : "Sul puuduvad õigused selle kasutaja üksikasjade vaatamiseks", + "New password" : "Uus parool", "Delete user" : "Kustuta kasutaja", "Disable user" : "Keela kasutaja", "Enable user" : "Luba kasutaja", "Resend welcome email" : "Saada tervitusmeil uuesti", "{size} used" : "{size} kasutatud", "Welcome mail sent!" : "Tervitusmeil saadetud!", + "Username" : "Kasutajanimi", "Display name" : "Kuvatav nimi", + "Password" : "Parool", "Email" : "E-post", "Group admin for" : "Grupi admin", + "Quota" : "Mahupiir", "Language" : "Keel", + "Storage location" : "Salvestusruumi asukoht", "User backend" : "Kasutaja taustarakendus", + "Last login" : "Viimane sisselogimine", + "Default language" : "Vaikekeel", "Unlimited" : "Piiramatult", "Default quota" : "Vaikimisi mahupiir", - "Default language" : "Vaikekeel", "Common languages" : "Levinud keeled", "All languages" : "Kõik keeled", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Rakendus on lubatud, aga see vajab uuendamist. Sind suunatakse 5 sekundi pärast uuendamise lehele.", "Your apps" : "Sinu rakendused", "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "App bundles" : "Rakenduste kogumikud", + "{license}-licensed" : "{license} litsents", "Default quota:" : "Vaikekvoot:", + "Show last login" : "Näita viimast sisselogimist", "You are about to remove the group {group}. The users will NOT be deleted." : "Sa oled eemaldamas gruppi {group}. Selles grupis olevaid kasutajaid EI kustutata.", "Please confirm the group removal " : "Palun kinnita grupi eemaldamine", "Remove group" : "Eemalda grupp", @@ -139,6 +151,7 @@ OC.L10N.register( "Everyone" : "Igaüks", "Add group" : "Lisa grupp", "New user" : "Uus kasutaja", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Rakendus on lubatud, aga see vajab uuendamist. Sind suunatakse 5 sekundi pärast uuendamise lehele.", "SSL Root Certificates" : "SSL juursertifikaadid", "Common Name" : "Üldnimetus", "Valid until" : "Kehtib kuni", @@ -228,9 +241,7 @@ OC.L10N.register( "It can take up to 24 hours before the account is displayed as verified." : "Võib võtta kuni 24 tundi enne kui konto kuvatakse kui kinnitatud.", "Help translate" : "Aita tõlkida", "Locale" : "Kasutuskoht", - "Password" : "Parool", "Current password" : "Praegune parool", - "New password" : "Uus parool", "Change password" : "Muuda parooli", "Devices & sessions" : "Seadmed & sessioonid", "Web, desktop and mobile clients currently logged in to your account." : "Sinu kontole hetkel sisse loginud veebi-, töölaua-, ja mobiilsed kliendid.", @@ -240,7 +251,6 @@ OC.L10N.register( "Create new app password" : "Loo uus rakenduse parool", "Use the credentials below to configure your app or device." : "Rakenduse või seadme konfigureerimiseks kasutage allpool toodud mandaate.", "For security reasons this password will only be shown once." : "Turvalisuse huvides kuvatakse see parool ainult üks kord.", - "Username" : "Kasutajanimi", "Done" : "Valmis", "Enabled apps" : "Lubatud rakendused", "A problem occurred, please check your log files (Error: %s)" : "Ilmnes viga, palun kontrollige logifaile. (Viga: %s)", @@ -263,18 +273,14 @@ OC.L10N.register( "%1$s changed your email address on %2$s." : "%1$s muutis su e-posti aadressi %2$s.", "Password confirmation is required" : "Parooli kinnitus on vajalik", "Add trusted domain" : "Lis ausaldusväärne domeen", - "All" : "Kõik", "Update to %s" : "Uuenda versioonile %s", - "No apps found for your version" : "Sinu versiooni jaoks ei leitud ühtegi rakendust", "Disabling app …" : "Keelan rakendust ...", "Error while disabling app" : "Viga rakenduse keelamisel", - "Disable" : "Lülita välja", "Enabling app …" : "Luban rakendust ...", "Error while enabling app" : "Viga rakenduse lubamisel", "Updating...." : "Uuendamine...", "Updated" : "Uuendatud", "Removing …" : "Eemaldan ...", - "Remove" : "Eemalda", "Approved" : "Heaks kiidetud", "Experimental" : "Katsetusjärgus", "Unable to delete {objName}" : "Ei suuda kustutada {objName}", @@ -305,8 +311,6 @@ OC.L10N.register( "Theming" : "Teemad", "This app has an update available." : "Sellel rakendusel on uuendus saadaval", "Documentation:" : "Dokumentatsioon:", - "Admin documentation" : "Administraatori dokumentatsioon", - "Report a bug" : "Teata veast", "Show description …" : "Näita kirjeldist ...", "Hide description …" : "Peida kirjeldus ...", "Enable only for specific groups" : "Luba ainult kindlad grupid", @@ -324,7 +328,6 @@ OC.L10N.register( "Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too." : "Siin saad luua rakendustele individuaalseid paroole, nii et sa ei pea oma parooli välja andma. Saad neid ka individuaalselt tühistada.", "Settings" : "Seaded", "Show storage location" : "Näita salvestusruumi asukohta", - "Show last login" : "Näita viimast sisselogimist", "Show email address" : "Näita e-posti aadressi", "Send email to new user" : "Saada uuele kasutajale e-kiri", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kui uue kasutaja parool jäetakse määramata, saadetakse aktiveerimise kiri lingiga parooli määramiseks.", @@ -336,9 +339,6 @@ OC.L10N.register( "Disabled" : "Keelatud", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")", "Other" : "Muu", - "Quota" : "Mahupiir", - "Storage location" : "Salvestusruumi asukoht", - "Last login" : "Viimane sisselogimine", "change full name" : "Muuda täispikka nime", "set new password" : "määra uus parool", "change email address" : "muuda e-posti aadressi", diff --git a/settings/l10n/et_EE.json b/settings/l10n/et_EE.json index 7bbdf373539..65b01a8fd6c 100644 --- a/settings/l10n/et_EE.json +++ b/settings/l10n/et_EE.json @@ -99,36 +99,48 @@ "Groups" : "Grupid", "Limit to groups" : "Luba gruppidele", "Official" : "Ametlik", + "Remove" : "Eemalda", + "Disable" : "Lülita välja", + "All" : "Kõik", "No results" : "Vasteid ei leitud", "Visit website" : "Külasta veebisaiti", + "Report a bug" : "Teata veast", "User documentation" : "Kasutaja dokumentatsioon", + "Admin documentation" : "Administraatori dokumentatsioon", "Developer documentation" : "Arendaja dokumentatsioon", - "{license}-licensed" : "{license} litsents", + "No apps found for your version" : "Sinu versiooni jaoks ei leitud ühtegi rakendust", "Enable all" : "Luba kõik", "Enable" : "Lülita sisse", "You do not have permissions to see the details of this user" : "Sul puuduvad õigused selle kasutaja üksikasjade vaatamiseks", + "New password" : "Uus parool", "Delete user" : "Kustuta kasutaja", "Disable user" : "Keela kasutaja", "Enable user" : "Luba kasutaja", "Resend welcome email" : "Saada tervitusmeil uuesti", "{size} used" : "{size} kasutatud", "Welcome mail sent!" : "Tervitusmeil saadetud!", + "Username" : "Kasutajanimi", "Display name" : "Kuvatav nimi", + "Password" : "Parool", "Email" : "E-post", "Group admin for" : "Grupi admin", + "Quota" : "Mahupiir", "Language" : "Keel", + "Storage location" : "Salvestusruumi asukoht", "User backend" : "Kasutaja taustarakendus", + "Last login" : "Viimane sisselogimine", + "Default language" : "Vaikekeel", "Unlimited" : "Piiramatult", "Default quota" : "Vaikimisi mahupiir", - "Default language" : "Vaikekeel", "Common languages" : "Levinud keeled", "All languages" : "Kõik keeled", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Rakendus on lubatud, aga see vajab uuendamist. Sind suunatakse 5 sekundi pärast uuendamise lehele.", "Your apps" : "Sinu rakendused", "Disabled apps" : "Keelatud rakendused", "Updates" : "Uuendused", "App bundles" : "Rakenduste kogumikud", + "{license}-licensed" : "{license} litsents", "Default quota:" : "Vaikekvoot:", + "Show last login" : "Näita viimast sisselogimist", "You are about to remove the group {group}. The users will NOT be deleted." : "Sa oled eemaldamas gruppi {group}. Selles grupis olevaid kasutajaid EI kustutata.", "Please confirm the group removal " : "Palun kinnita grupi eemaldamine", "Remove group" : "Eemalda grupp", @@ -137,6 +149,7 @@ "Everyone" : "Igaüks", "Add group" : "Lisa grupp", "New user" : "Uus kasutaja", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Rakendus on lubatud, aga see vajab uuendamist. Sind suunatakse 5 sekundi pärast uuendamise lehele.", "SSL Root Certificates" : "SSL juursertifikaadid", "Common Name" : "Üldnimetus", "Valid until" : "Kehtib kuni", @@ -226,9 +239,7 @@ "It can take up to 24 hours before the account is displayed as verified." : "Võib võtta kuni 24 tundi enne kui konto kuvatakse kui kinnitatud.", "Help translate" : "Aita tõlkida", "Locale" : "Kasutuskoht", - "Password" : "Parool", "Current password" : "Praegune parool", - "New password" : "Uus parool", "Change password" : "Muuda parooli", "Devices & sessions" : "Seadmed & sessioonid", "Web, desktop and mobile clients currently logged in to your account." : "Sinu kontole hetkel sisse loginud veebi-, töölaua-, ja mobiilsed kliendid.", @@ -238,7 +249,6 @@ "Create new app password" : "Loo uus rakenduse parool", "Use the credentials below to configure your app or device." : "Rakenduse või seadme konfigureerimiseks kasutage allpool toodud mandaate.", "For security reasons this password will only be shown once." : "Turvalisuse huvides kuvatakse see parool ainult üks kord.", - "Username" : "Kasutajanimi", "Done" : "Valmis", "Enabled apps" : "Lubatud rakendused", "A problem occurred, please check your log files (Error: %s)" : "Ilmnes viga, palun kontrollige logifaile. (Viga: %s)", @@ -261,18 +271,14 @@ "%1$s changed your email address on %2$s." : "%1$s muutis su e-posti aadressi %2$s.", "Password confirmation is required" : "Parooli kinnitus on vajalik", "Add trusted domain" : "Lis ausaldusväärne domeen", - "All" : "Kõik", "Update to %s" : "Uuenda versioonile %s", - "No apps found for your version" : "Sinu versiooni jaoks ei leitud ühtegi rakendust", "Disabling app …" : "Keelan rakendust ...", "Error while disabling app" : "Viga rakenduse keelamisel", - "Disable" : "Lülita välja", "Enabling app …" : "Luban rakendust ...", "Error while enabling app" : "Viga rakenduse lubamisel", "Updating...." : "Uuendamine...", "Updated" : "Uuendatud", "Removing …" : "Eemaldan ...", - "Remove" : "Eemalda", "Approved" : "Heaks kiidetud", "Experimental" : "Katsetusjärgus", "Unable to delete {objName}" : "Ei suuda kustutada {objName}", @@ -303,8 +309,6 @@ "Theming" : "Teemad", "This app has an update available." : "Sellel rakendusel on uuendus saadaval", "Documentation:" : "Dokumentatsioon:", - "Admin documentation" : "Administraatori dokumentatsioon", - "Report a bug" : "Teata veast", "Show description …" : "Näita kirjeldist ...", "Hide description …" : "Peida kirjeldus ...", "Enable only for specific groups" : "Luba ainult kindlad grupid", @@ -322,7 +326,6 @@ "Here you can generate individual passwords for apps so you don’t have to give out your password. You can revoke them individually too." : "Siin saad luua rakendustele individuaalseid paroole, nii et sa ei pea oma parooli välja andma. Saad neid ka individuaalselt tühistada.", "Settings" : "Seaded", "Show storage location" : "Näita salvestusruumi asukohta", - "Show last login" : "Näita viimast sisselogimist", "Show email address" : "Näita e-posti aadressi", "Send email to new user" : "Saada uuele kasutajale e-kiri", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kui uue kasutaja parool jäetakse määramata, saadetakse aktiveerimise kiri lingiga parooli määramiseks.", @@ -334,9 +337,6 @@ "Disabled" : "Keelatud", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Palun sisesta mahupiir (nt: \"512 MB\" või \"12 GB\")", "Other" : "Muu", - "Quota" : "Mahupiir", - "Storage location" : "Salvestusruumi asukoht", - "Last login" : "Viimane sisselogimine", "change full name" : "Muuda täispikka nime", "set new password" : "määra uus parool", "change email address" : "muuda e-posti aadressi", diff --git a/settings/l10n/eu.js b/settings/l10n/eu.js index 4e80e431162..3d9e6b3c124 100644 --- a/settings/l10n/eu.js +++ b/settings/l10n/eu.js @@ -104,31 +104,48 @@ OC.L10N.register( "Select a profile picture" : "Profilaren irudia aukeratu", "Groups" : "Taldeak", "Limit to groups" : "Taldeetara mugatu", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikazio ofizialak komunitateak eta komunitatean garatzen dira. Funtzionalak dira eta produkziorako gertu daude.", "Official" : "Ofiziala", + "Remove" : "Ezabatu", + "Disable" : "Ez-gaitu", + "All" : "Denak", + "View in store" : "Dendan ikusi", "Visit website" : "Web orria ikusi", + "Report a bug" : "Akats baten berri eman", "User documentation" : "Erabiltzailearen dokumentazioa", + "Admin documentation" : "Administratzailearen dokumentazioa", "Developer documentation" : "Garatzailearen dokumentazioa", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:", + "No apps found for your version" : "Ez dira aplikaziorik aurkitu zure bertsiorako", "Enable all" : "Gaitu denak", "Enable" : "Gaitu", "The app will be downloaded from the app store" : "Aplikazioa aplikazio dendatik deskargatuko da", + "New password" : "Pasahitz berria", "{size} used" : "{size} erabilita", + "Username" : "Erabiltzaile izena", + "Password" : "Pasahitza", "Email" : "E-posta", "Group admin for" : "Talde honen administratzailea", + "Quota" : "Kuota", "Language" : "Hizkuntza", + "Storage location" : "Biltegiratze kokapena", "User backend" : "Erabiltzaile jatorria", + "Last login" : "Azken saioa", "Unlimited" : "Mugarik gabe", "Default quota" : "Kuota lehenetsia", - "App update" : "Aplikazioaren eguneraketa", - "Error: This app can not be enabled because it makes the server unstable" : "Errorea: aplikazioa hau ezin da gaitu zerbitzaria ezegonkor izatea egiten duelako", "Your apps" : "Zure aplikazioak", "Disabled apps" : "Gaitu gabeko aplikazioak", "Updates" : "Eguneraketak", "App bundles" : "Aplikazio sortak", + "Show last login" : "Azken izen ematea erakutsi", + "Show user backend" : "Bistaratu erabiltzaile motorra", "Admins" : "Administratzaileak", "Everyone" : "Edonor", "Add group" : "Taldea gehitu", + "App update" : "Aplikazioaren eguneraketa", + "Error: This app can not be enabled because it makes the server unstable" : "Errorea: aplikazioa hau ezin da gaitu zerbitzaria ezegonkor izatea egiten duelako", "SSL Root Certificates" : "SSL Root Certificates", "Common Name" : "Izen arrunta", "Valid until" : "Data hau arte baliogarria", @@ -233,9 +250,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Twitter heldulekua @...", "Help translate" : "Lagundu itzultzen", - "Password" : "Pasahitza", "Current password" : "Uneko pasahitza", - "New password" : "Pasahitz berria", "Change password" : "Aldatu pasahitza", "Web, desktop and mobile clients currently logged in to your account." : "Web-gune, mahaigain eta mugikorrean zure kontuan saioa hasita dago.", "Device" : "Gailu", @@ -244,7 +259,6 @@ OC.L10N.register( "Create new app password" : "Sortu app pasahitza berria", "Use the credentials below to configure your app or device." : "Erabili kredentzialak beheko zure aplikazioa edo gailua konfiguratzeko.", "For security reasons this password will only be shown once." : "Segurtasun arrazoiengatik, pasahitz hau behin soilik erakutsiko da.", - "Username" : "Erabiltzaile izena", "Done" : "Egina", "Enabled apps" : "Gaitutako aplikazioak", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL eguneratu gabeko %s bertsioa erabiltzen ari da (%s). Eguneratu zure sistema eragilea edo %s bezalako elementuek ez dute segurtasunez ibiliko.", @@ -269,22 +283,17 @@ OC.L10N.register( "Password confirmation is required" : "Pasahitza konfirmatzea beharrezkoa da", "Are you really sure you want add {domain} as trusted domain?" : "Benetan ziur zaude {domain} gehitu domeinu fidagarri gisa nahi duzula?", "Add trusted domain" : "Gehitu domeinu fidagarria", - "All" : "Denak", "Update to %s" : "Eguneratu %sra", - "No apps found for your version" : "Ez dira aplikaziorik aurkitu zure bertsiorako", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikazio ofizialak komunitateak eta komunitatean garatzen dira. Funtzionalak dira eta produkziorako gertu daude.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Onartutako aplikazioak konfiantzazko garatzaileek eginak dira eta segurtasun proba gainditu dute. Kode irekiko biltegian eta era iraunkorrean mantentzen dira eta euren mantentzaileek uste dute egonkorrak direla noizbehinkako erabileran zein jarraiko erabileran.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Apiikazio honen segurtasuna ez da probatu eta berria da edo jakina da ezegonkorra dela. Instalatu zure ardurapean.", "Disabling app …" : "Aplikazioa desgaitzen...", "Error while disabling app" : "Erroea izan da aplikazioa desgaitzerakoan", - "Disable" : "Ez-gaitu", "Enabling app …" : "Aplikazioa gaitzen...", "Error while enabling app" : "Erroea izan da aplikazioa gaitzerakoan", "Error: Could not disable broken app" : "Errorea: ezin da hondatutako aplikazioa desgaitu", "Error while disabling broken app" : "Errorea hondatutako aplikazioa desgaitzerakoan", "Updated" : "Eguneratuta", "Removing …" : "Ezabatzen...", - "Remove" : "Ezabatu", "Approved" : "Onartuta", "Experimental" : "Esperimentala", "No apps found for {query}" : "{query}-ren aplikaziorik ez da aurkitu", @@ -318,16 +327,12 @@ OC.L10N.register( "Improving the config.php" : "config.php hobetzen", "Theming" : "Itxura", "Hardening and security guidance" : "Gogortze eta segurtasun gida", - "View in store" : "Dendan ikusi", "This app has an update available." : "Aplikazio honek eguneraketa bat eskuragarri ditu.", "by %s" : "by %s", "%s-licensed" : "%s-lizentziapean", "Documentation:" : "Dokumentazioa:", - "Admin documentation" : "Administratzailearen dokumentazioa", - "Report a bug" : "Akats baten berri eman", "Show description …" : "Erakutsi deskribapena ...", "Hide description …" : "Ezkutatu deskribapena ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako", "Online documentation" : "Online dokumentazioa", "Getting help" : "Laguntza lortzen", @@ -338,8 +343,6 @@ OC.L10N.register( "iOS app" : "iOS aplikazioa", "Settings" : "Ezarpenak", "Show storage location" : "Erakutsi biltegiaren kokapena", - "Show user backend" : "Bistaratu erabiltzaile motorra", - "Show last login" : "Azken izen ematea erakutsi", "Show email address" : "Bistaratu eposta helbidea", "Send email to new user" : "Bidali eposta erabiltzaile berriari", "E-Mail" : "E-posta", @@ -349,9 +352,6 @@ OC.L10N.register( "Group name" : "Taldearen izena", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")", "Other" : "Bestelakoa", - "Quota" : "Kuota", - "Storage location" : "Biltegiratze kokapena", - "Last login" : "Azken saioa", "change full name" : "aldatu izena", "set new password" : "ezarri pasahitz berria", "change email address" : "aldatu eposta helbidea", diff --git a/settings/l10n/eu.json b/settings/l10n/eu.json index d2a55e63137..92ef5ef2286 100644 --- a/settings/l10n/eu.json +++ b/settings/l10n/eu.json @@ -102,31 +102,48 @@ "Select a profile picture" : "Profilaren irudia aukeratu", "Groups" : "Taldeak", "Limit to groups" : "Taldeetara mugatu", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikazio ofizialak komunitateak eta komunitatean garatzen dira. Funtzionalak dira eta produkziorako gertu daude.", "Official" : "Ofiziala", + "Remove" : "Ezabatu", + "Disable" : "Ez-gaitu", + "All" : "Denak", + "View in store" : "Dendan ikusi", "Visit website" : "Web orria ikusi", + "Report a bug" : "Akats baten berri eman", "User documentation" : "Erabiltzailearen dokumentazioa", + "Admin documentation" : "Administratzailearen dokumentazioa", "Developer documentation" : "Garatzailearen dokumentazioa", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "This app has no minimum Nextcloud version assigned. This will be an error in the future.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aplikazioa ezin da instalatu hurrengo menpekotasunak betetzen ez direlako:", + "No apps found for your version" : "Ez dira aplikaziorik aurkitu zure bertsiorako", "Enable all" : "Gaitu denak", "Enable" : "Gaitu", "The app will be downloaded from the app store" : "Aplikazioa aplikazio dendatik deskargatuko da", + "New password" : "Pasahitz berria", "{size} used" : "{size} erabilita", + "Username" : "Erabiltzaile izena", + "Password" : "Pasahitza", "Email" : "E-posta", "Group admin for" : "Talde honen administratzailea", + "Quota" : "Kuota", "Language" : "Hizkuntza", + "Storage location" : "Biltegiratze kokapena", "User backend" : "Erabiltzaile jatorria", + "Last login" : "Azken saioa", "Unlimited" : "Mugarik gabe", "Default quota" : "Kuota lehenetsia", - "App update" : "Aplikazioaren eguneraketa", - "Error: This app can not be enabled because it makes the server unstable" : "Errorea: aplikazioa hau ezin da gaitu zerbitzaria ezegonkor izatea egiten duelako", "Your apps" : "Zure aplikazioak", "Disabled apps" : "Gaitu gabeko aplikazioak", "Updates" : "Eguneraketak", "App bundles" : "Aplikazio sortak", + "Show last login" : "Azken izen ematea erakutsi", + "Show user backend" : "Bistaratu erabiltzaile motorra", "Admins" : "Administratzaileak", "Everyone" : "Edonor", "Add group" : "Taldea gehitu", + "App update" : "Aplikazioaren eguneraketa", + "Error: This app can not be enabled because it makes the server unstable" : "Errorea: aplikazioa hau ezin da gaitu zerbitzaria ezegonkor izatea egiten duelako", "SSL Root Certificates" : "SSL Root Certificates", "Common Name" : "Izen arrunta", "Valid until" : "Data hau arte baliogarria", @@ -231,9 +248,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Twitter heldulekua @...", "Help translate" : "Lagundu itzultzen", - "Password" : "Pasahitza", "Current password" : "Uneko pasahitza", - "New password" : "Pasahitz berria", "Change password" : "Aldatu pasahitza", "Web, desktop and mobile clients currently logged in to your account." : "Web-gune, mahaigain eta mugikorrean zure kontuan saioa hasita dago.", "Device" : "Gailu", @@ -242,7 +257,6 @@ "Create new app password" : "Sortu app pasahitza berria", "Use the credentials below to configure your app or device." : "Erabili kredentzialak beheko zure aplikazioa edo gailua konfiguratzeko.", "For security reasons this password will only be shown once." : "Segurtasun arrazoiengatik, pasahitz hau behin soilik erakutsiko da.", - "Username" : "Erabiltzaile izena", "Done" : "Egina", "Enabled apps" : "Gaitutako aplikazioak", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL eguneratu gabeko %s bertsioa erabiltzen ari da (%s). Eguneratu zure sistema eragilea edo %s bezalako elementuek ez dute segurtasunez ibiliko.", @@ -267,22 +281,17 @@ "Password confirmation is required" : "Pasahitza konfirmatzea beharrezkoa da", "Are you really sure you want add {domain} as trusted domain?" : "Benetan ziur zaude {domain} gehitu domeinu fidagarri gisa nahi duzula?", "Add trusted domain" : "Gehitu domeinu fidagarria", - "All" : "Denak", "Update to %s" : "Eguneratu %sra", - "No apps found for your version" : "Ez dira aplikaziorik aurkitu zure bertsiorako", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikazio ofizialak komunitateak eta komunitatean garatzen dira. Funtzionalak dira eta produkziorako gertu daude.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Onartutako aplikazioak konfiantzazko garatzaileek eginak dira eta segurtasun proba gainditu dute. Kode irekiko biltegian eta era iraunkorrean mantentzen dira eta euren mantentzaileek uste dute egonkorrak direla noizbehinkako erabileran zein jarraiko erabileran.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Apiikazio honen segurtasuna ez da probatu eta berria da edo jakina da ezegonkorra dela. Instalatu zure ardurapean.", "Disabling app …" : "Aplikazioa desgaitzen...", "Error while disabling app" : "Erroea izan da aplikazioa desgaitzerakoan", - "Disable" : "Ez-gaitu", "Enabling app …" : "Aplikazioa gaitzen...", "Error while enabling app" : "Erroea izan da aplikazioa gaitzerakoan", "Error: Could not disable broken app" : "Errorea: ezin da hondatutako aplikazioa desgaitu", "Error while disabling broken app" : "Errorea hondatutako aplikazioa desgaitzerakoan", "Updated" : "Eguneratuta", "Removing …" : "Ezabatzen...", - "Remove" : "Ezabatu", "Approved" : "Onartuta", "Experimental" : "Esperimentala", "No apps found for {query}" : "{query}-ren aplikaziorik ez da aurkitu", @@ -316,16 +325,12 @@ "Improving the config.php" : "config.php hobetzen", "Theming" : "Itxura", "Hardening and security guidance" : "Gogortze eta segurtasun gida", - "View in store" : "Dendan ikusi", "This app has an update available." : "Aplikazio honek eguneraketa bat eskuragarri ditu.", "by %s" : "by %s", "%s-licensed" : "%s-lizentziapean", "Documentation:" : "Dokumentazioa:", - "Admin documentation" : "Administratzailearen dokumentazioa", - "Report a bug" : "Akats baten berri eman", "Show description …" : "Erakutsi deskribapena ...", "Hide description …" : "Ezkutatu deskribapena ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "This app has no maximum Nextcloud version assigned. This will be an error in the future.", "Enable only for specific groups" : "Baimendu bakarri talde espezifikoetarako", "Online documentation" : "Online dokumentazioa", "Getting help" : "Laguntza lortzen", @@ -336,8 +341,6 @@ "iOS app" : "iOS aplikazioa", "Settings" : "Ezarpenak", "Show storage location" : "Erakutsi biltegiaren kokapena", - "Show user backend" : "Bistaratu erabiltzaile motorra", - "Show last login" : "Azken izen ematea erakutsi", "Show email address" : "Bistaratu eposta helbidea", "Send email to new user" : "Bidali eposta erabiltzaile berriari", "E-Mail" : "E-posta", @@ -347,9 +350,6 @@ "Group name" : "Taldearen izena", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Mesedez sartu biltegiratze kouta (adb: \"512 MB\" edo \"12 GB\")", "Other" : "Bestelakoa", - "Quota" : "Kuota", - "Storage location" : "Biltegiratze kokapena", - "Last login" : "Azken saioa", "change full name" : "aldatu izena", "set new password" : "ezarri pasahitz berria", "change email address" : "aldatu eposta helbidea", diff --git a/settings/l10n/fa.js b/settings/l10n/fa.js index c202515d2ea..f73f5eb767b 100644 --- a/settings/l10n/fa.js +++ b/settings/l10n/fa.js @@ -25,11 +25,19 @@ OC.L10N.register( "Select a profile picture" : "انتخاب تصویر پروفایل", "Groups" : "گروه ها", "Official" : "رسمی", + "Disable" : "غیرفعال", + "All" : "همه", "User documentation" : "مستندات کاربر", + "Admin documentation" : "مستندات مدیر", "Developer documentation" : "مستندات توسعهدهندگان", "This app cannot be installed because the following dependencies are not fulfilled:" : "امکان نصب این برنامه وجود ندارد، این پیشنیازها انجام نشدهاند:", + "No apps found for your version" : "هیچ برنامهای برای نسخهی شما یافت نشد", "Enable" : "فعال", + "New password" : "گذرواژه جدید", + "Username" : "نام کاربری", + "Password" : "گذرواژه", "Email" : "ایمیل", + "Quota" : "سهم", "Language" : "زبان", "Unlimited" : "نامحدود", "Admins" : "مدیران", @@ -93,11 +101,8 @@ OC.L10N.register( "Your email address" : "پست الکترونیکی شما", "No email address set" : "آدرسایمیلی تنظیم نشده است", "Help translate" : "به ترجمه آن کمک کنید", - "Password" : "گذرواژه", "Current password" : "گذرواژه کنونی", - "New password" : "گذرواژه جدید", "Change password" : "تغییر گذر واژه", - "Username" : "نام کاربری", "Group already exists." : "گروه در حال حاضر موجود است", "Unable to add group." : "افزودن گروه امکان پذیر نیست.", "Unable to delete group." : "حذف گروه امکان پذیر نیست.", @@ -110,11 +115,8 @@ OC.L10N.register( "Unable to change mail address" : "تغییر آدرس ایمیل امکانپذیر نیست", "Email saved" : "ایمیل ذخیره شد", "Add trusted domain" : "افزودن دامنه مورد اعتماد", - "All" : "همه", "Update to %s" : "بروزرسانی به %s", - "No apps found for your version" : "هیچ برنامهای برای نسخهی شما یافت نشد", "Error while disabling app" : "خطا در هنگام غیر فعال سازی برنامه", - "Disable" : "غیرفعال", "Error while enabling app" : "خطا در هنگام فعال سازی برنامه", "Updated" : "بروز رسانی انجام شد", "Approved" : "تایید شده", @@ -135,7 +137,6 @@ OC.L10N.register( "Theming" : "قالببندی", "Hardening and security guidance" : "راهنمای امنسازی", "Documentation:" : "مستند سازی:", - "Admin documentation" : "مستندات مدیر", "Show description …" : "نمایش توضیحات ...", "Hide description …" : "عدم نمایش توضیحات...", "Enable only for specific groups" : "فعال سازی تنها برای گروه های خاص", @@ -151,7 +152,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "لطفا سهمیه ذخیره سازی را وارد کنید (به عنوان مثال: \" 512MB\" یا \"12GB\")", "Other" : "دیگر", - "Quota" : "سهم", "change full name" : "تغییر نام کامل", "set new password" : "تنظیم کلمه عبور جدید", "change email address" : "تغییر آدرس ایمیل ", diff --git a/settings/l10n/fa.json b/settings/l10n/fa.json index c1d66ebf2b7..8ac8eab0c35 100644 --- a/settings/l10n/fa.json +++ b/settings/l10n/fa.json @@ -23,11 +23,19 @@ "Select a profile picture" : "انتخاب تصویر پروفایل", "Groups" : "گروه ها", "Official" : "رسمی", + "Disable" : "غیرفعال", + "All" : "همه", "User documentation" : "مستندات کاربر", + "Admin documentation" : "مستندات مدیر", "Developer documentation" : "مستندات توسعهدهندگان", "This app cannot be installed because the following dependencies are not fulfilled:" : "امکان نصب این برنامه وجود ندارد، این پیشنیازها انجام نشدهاند:", + "No apps found for your version" : "هیچ برنامهای برای نسخهی شما یافت نشد", "Enable" : "فعال", + "New password" : "گذرواژه جدید", + "Username" : "نام کاربری", + "Password" : "گذرواژه", "Email" : "ایمیل", + "Quota" : "سهم", "Language" : "زبان", "Unlimited" : "نامحدود", "Admins" : "مدیران", @@ -91,11 +99,8 @@ "Your email address" : "پست الکترونیکی شما", "No email address set" : "آدرسایمیلی تنظیم نشده است", "Help translate" : "به ترجمه آن کمک کنید", - "Password" : "گذرواژه", "Current password" : "گذرواژه کنونی", - "New password" : "گذرواژه جدید", "Change password" : "تغییر گذر واژه", - "Username" : "نام کاربری", "Group already exists." : "گروه در حال حاضر موجود است", "Unable to add group." : "افزودن گروه امکان پذیر نیست.", "Unable to delete group." : "حذف گروه امکان پذیر نیست.", @@ -108,11 +113,8 @@ "Unable to change mail address" : "تغییر آدرس ایمیل امکانپذیر نیست", "Email saved" : "ایمیل ذخیره شد", "Add trusted domain" : "افزودن دامنه مورد اعتماد", - "All" : "همه", "Update to %s" : "بروزرسانی به %s", - "No apps found for your version" : "هیچ برنامهای برای نسخهی شما یافت نشد", "Error while disabling app" : "خطا در هنگام غیر فعال سازی برنامه", - "Disable" : "غیرفعال", "Error while enabling app" : "خطا در هنگام فعال سازی برنامه", "Updated" : "بروز رسانی انجام شد", "Approved" : "تایید شده", @@ -133,7 +135,6 @@ "Theming" : "قالببندی", "Hardening and security guidance" : "راهنمای امنسازی", "Documentation:" : "مستند سازی:", - "Admin documentation" : "مستندات مدیر", "Show description …" : "نمایش توضیحات ...", "Hide description …" : "عدم نمایش توضیحات...", "Enable only for specific groups" : "فعال سازی تنها برای گروه های خاص", @@ -149,7 +150,6 @@ "Enter the recovery password in order to recover the users files during password change" : "در حین تغییر رمز عبور به منظور بازیابی فایل های کاربران، رمز عبور بازیابی را وارد کنید", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "لطفا سهمیه ذخیره سازی را وارد کنید (به عنوان مثال: \" 512MB\" یا \"12GB\")", "Other" : "دیگر", - "Quota" : "سهم", "change full name" : "تغییر نام کامل", "set new password" : "تنظیم کلمه عبور جدید", "change email address" : "تغییر آدرس ایمیل ", diff --git a/settings/l10n/fi.js b/settings/l10n/fi.js index 642914d21aa..989f239f843 100644 --- a/settings/l10n/fi.js +++ b/settings/l10n/fi.js @@ -61,6 +61,7 @@ OC.L10N.register( "Email sent" : "Sähköposti lähetetty", "Disconnect" : "Katkaise yhteys", "Revoke" : "Peru oikeus", + "Device settings" : "Laiteasetukset", "Allow filesystem access" : "Salli pääsy tiedostojärjestelmään", "Internet Explorer" : "Internet Explorer", "Edge" : "Edge", @@ -104,47 +105,75 @@ OC.L10N.register( "Groups" : "Ryhmät", "Group list is empty" : "Ryhmälista on tyhjä", "Unable to retrieve the group list" : "Ryhmälistaa ei voitu noutaa", + "Enforce two-factor authentication" : "Pakota kaksivaiheinen tunnistautuminen", "Limit to groups" : "Rajoita ryhmiin", + "Enforced groups" : "Pakotetut ryhmät", + "Save changes" : "Tallenna muutokset", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Viralliset sovellukset ovat yhteisössä kehitettyjä. Ne tarjoavat keskeistä toiminnallisuutta ja ovat valmiita tuotantokäyttöön.", "Official" : "Virallinen", + "Update to {version}" : "Päivitä versioon {version}", + "Remove" : "Poista", + "Disable" : "Poista käytöstä", + "All" : "Kaikki", + "Limit app usage to groups" : "Rajoita sovelluskäyttö ryhmiin", "No results" : "Ei tuloksia", + "View in store" : "Näytä kaupassa", "Visit website" : "Käy verkkosivustolla", + "Report a bug" : "Ilmoita viasta", "User documentation" : "Käyttäjädokumentaatio", + "Admin documentation" : "Ylläpitäjän ohjeistus", "Developer documentation" : "Kehittäjädokumentaatio", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", - "{license}-licensed" : "{license}-lisensoitu", + "Update to {update}" : "Päivitä versioon {update}", + "Results from other categories" : "Tulokset muista luokista", + "No apps found for your version" : "Sovelluksia ei löytynyt versiollesi", "Disable all" : "Poista kaikki käytöstä", "Enable all" : "Ota kaikki käyttöön", "Download and enable" : "Lataa ja ota käyttöön", "Enable" : "Käytä", "The app will be downloaded from the app store" : "Sovellus ladataan sovelluskaupasta", "You do not have permissions to see the details of this user" : "Käyttöoikeutesi eivät riitä tämän käyttäjän tietojen näkemiseen", + "New password" : "Uusi salasana", + "Select user quota" : "Valitse käyttäjäkiintiö", + "No language set" : "Kieltä ei ole asetettu", + "Never" : "Ei koskaan", "Delete user" : "Poista käyttäjä", "Disable user" : "Poista käytöstä käyttäjä", "Enable user" : "Ota käyttäjä käyttöön", "Resend welcome email" : "Lähetä uudelleen tervetuloviesti", "{size} used" : "{size} käytetty", "Welcome mail sent!" : "Tervetuloviesti lähetetty!", + "Username" : "Käyttäjätunnus", "Display name" : "Näyttönimi", + "Password" : "Salasana", "Email" : "Sähköpostiosoite", "Group admin for" : "Ryhmäylläpitäjä ryhmille", + "Quota" : "Kiintiö", "Language" : "Kieli", + "Storage location" : "Tallennustilan sijainti", "User backend" : "Käyttäjätaustaosa", + "Last login" : "Viimeisin kirjautuminen", + "Default language" : "Oletuskieli", + "Add a new user" : "Lisää uusi käyttäjä", + "No users in here" : "Täällä ei ole käyttäjiä", "Unlimited" : "Rajoittamaton", "Default quota" : "Oletuskiintiö", - "Default language" : "Oletuskieli", "Common languages" : "Yleiset kielet", "All languages" : "Kaikki kielet", - "An error occured during the request. Unable to proceed." : "Pyynnön aikana tapahtui virhe. Jatkaminen ei onnistu.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Sovellus on käytössä, mutta se tulee päivittää. Sinut ohjataan sovelluksen päivityssivulle viiden sekunnin kuluttua.", - "App update" : "Sovelluspäivitys", - "Error: This app can not be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", "Your apps" : "Sovelluksesi", "Active apps" : "Aktiiviset sovellukset", "Disabled apps" : "Käytöstä poistetut sovellukset", "Updates" : "Päivitykset", "App bundles" : "Sovelluskokoelmat", + "{license}-licensed" : "{license}-lisensoitu", "Default quota:" : "Oletuskiintiö:", + "Select default quota" : "Valitse oletuskiintiö", + "Show Languages" : "Näytä kielet", + "Show last login" : "Näytä viimeisin sisäänkirjautuminen", + "Show user backend" : "Näytä käyttäjätaustaosa", + "Show storage path" : "Näytä tallennustilan polku", "You are about to remove the group {group}. The users will NOT be deleted." : "Olet aikeissa poistaa ryhmän {group}. Käyttäjiä EI poisteta!", "Please confirm the group removal " : "Vahvista ryhmän poistaminen", "Remove group" : "Poista ryhmä", @@ -153,6 +182,10 @@ OC.L10N.register( "Everyone" : "Kaikki", "Add group" : "Lisää ryhmä", "New user" : "Uusi käyttäjä", + "An error occured during the request. Unable to proceed." : "Pyynnön aikana tapahtui virhe. Jatkaminen ei onnistu.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Sovellus on käytössä, mutta se tulee päivittää. Sinut ohjataan sovelluksen päivityssivulle viiden sekunnin kuluttua.", + "App update" : "Sovelluspäivitys", + "Error: This app can not be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", "SSL Root Certificates" : "SSL-juurivarmenteet", "Common Name" : "Yleinen nimi", "Valid until" : "Kelvollinen", @@ -270,9 +303,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter-tunnus @…", "Help translate" : "Auta kääntämisessä", "Locale" : "Aluekohtainen asetus", - "Password" : "Salasana", "Current password" : "Nykyinen salasana", - "New password" : "Uusi salasana", "Change password" : "Vaihda salasana", "Devices & sessions" : "Laitteet ja istunnot", "Web, desktop and mobile clients currently logged in to your account." : "Verkko-, työpöytä- ja mobiililaitteet, jotka ovat parhaillaan kirjautuneet tilillesi.", @@ -282,7 +313,6 @@ OC.L10N.register( "Create new app password" : "Luo uusi sovellussalasana", "Use the credentials below to configure your app or device." : "Käytä oheista tunnusta ja salasanaa konfiguroidessasi sovelluksen tai laitteen.", "For security reasons this password will only be shown once." : "Turvallisuussyistä tämä salasana näytetään vain kerran.", - "Username" : "Käyttäjätunnus", "Done" : "Valmis", "Enabled apps" : "Käytössä olevat sovellukset", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL käyttää vanhentunutta %s-versiota (%s). Päivitä käyttöjärjestelmäsi tai ominaisuudet kuten %s eivät toimi luotettavasti.", @@ -307,16 +337,12 @@ OC.L10N.register( "Password confirmation is required" : "Salasanavahvistus vaaditaan", "Are you really sure you want add {domain} as trusted domain?" : "Oletko aivan varma, että haluat lisätä verkkotunnuksen {domain} luotetuksi verkkotunnukseksi?", "Add trusted domain" : "Lisää luotettu verkkotunnus", - "All" : "Kaikki", "Update to %s" : "Päivitä versioon %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n odottava sovelluspäivitys","%n odottavaa sovelluspäivitystä"], - "No apps found for your version" : "Sovelluksia ei löytynyt versiollesi", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Viralliset sovellukset ovat yhteisössä kehitettyjä. Ne tarjoavat keskeistä toiminnallisuutta ja ovat valmiita tuotantokäyttöön.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Hyväksytyt sovellukset on kehitetty luotettujen kehittäjien toimesta. Hyväksytyille sovelluksille on suoritettu pintapuolinen turvallisuustarkastus. Sovelluksia ylläpidetään avoimen koodin tietovarastoissa. Sovellusten kehittäjät mieltävät sovellukset vakaiksi ja valmiiksi tavalliseen käyttöön.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Tätä sovellusta ei ole tarkistettu tietoturvauhkien varalta. Sovellus on uusi ja mahdollisesti tiedostettu epävakaaksi. Asenna omalla vastuulla.", "Disabling app …" : "Poistetaan sovellusta käytöstä...", "Error while disabling app" : "Virhe poistaessa sovellusta käytöstä", - "Disable" : "Poista käytöstä", "Enabling app …" : "Otetaan sovellusta käyttöön...", "Error while enabling app" : "Virhe ottaessa sovellusta käyttöön", "Error while disabling broken app" : "Virhe rikkinäistä sovellusta käytöstä poistaessa", @@ -325,7 +351,6 @@ OC.L10N.register( "Updated" : "Päivitetty", "Removing …" : "Poistetaan…", "Error while removing app" : "Virhe sovellusta poistaessa", - "Remove" : "Poista", "Approved" : "Hyväksytty", "Experimental" : "Kokeellinen", "No apps found for {query}" : "Haulla {query} ei löytynyt sovelluksia", @@ -366,16 +391,12 @@ OC.L10N.register( "Theming" : "Teemojen käyttö", "Check the security of your Nextcloud over our security scan" : "Tarkista Nextcloudisi tietoturva käyttäen tietoturvatarkistustamme", "Hardening and security guidance" : "Turvaamis- ja tietoturvaopas", - "View in store" : "Näytä kaupassa", "This app has an update available." : "Tähän sovellukseen on päivitys saatavilla.", "by %s" : "tekijä %s", "%s-licensed" : "%s-lisensoitu", "Documentation:" : "Ohjeistus:", - "Admin documentation" : "Ylläpitäjän ohjeistus", - "Report a bug" : "Ilmoita viasta", "Show description …" : "Näytä kuvaus…", "Hide description …" : "Piilota kuvaus…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "Enable only for specific groups" : "Salli vain tietyille ryhmille", "Online documentation" : "Verkkodokumentaatio", "Getting help" : "Apua", @@ -399,8 +420,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Tilaa uutiskirjeemme!", "Settings" : "Asetukset", "Show storage location" : "Näytä tallennustilan sijainti", - "Show user backend" : "Näytä käyttäjätaustaosa", - "Show last login" : "Näytä viimeisin sisäänkirjautuminen", "Show email address" : "Näytä sähköpostiosoite", "Send email to new user" : "Lähetä sähköpostia uudelle käyttäjälle", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kun uuden käyttäjän salasana jätetään tyhjäksi, hänelle lähetetään aktivointisähköpostiviesti, joka sisältää linkin salasanan luomiseksi.", @@ -412,9 +431,6 @@ OC.L10N.register( "Disabled" : "Poistettu käytöstä", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")", "Other" : "Muu", - "Quota" : "Kiintiö", - "Storage location" : "Tallennustilan sijainti", - "Last login" : "Viimeisin kirjautuminen", "change full name" : "muuta koko nimi", "set new password" : "aseta uusi salasana", "change email address" : "vaihda sähköpostiosoite", diff --git a/settings/l10n/fi.json b/settings/l10n/fi.json index d1346d1afe5..ce030e59c51 100644 --- a/settings/l10n/fi.json +++ b/settings/l10n/fi.json @@ -59,6 +59,7 @@ "Email sent" : "Sähköposti lähetetty", "Disconnect" : "Katkaise yhteys", "Revoke" : "Peru oikeus", + "Device settings" : "Laiteasetukset", "Allow filesystem access" : "Salli pääsy tiedostojärjestelmään", "Internet Explorer" : "Internet Explorer", "Edge" : "Edge", @@ -102,47 +103,75 @@ "Groups" : "Ryhmät", "Group list is empty" : "Ryhmälista on tyhjä", "Unable to retrieve the group list" : "Ryhmälistaa ei voitu noutaa", + "Enforce two-factor authentication" : "Pakota kaksivaiheinen tunnistautuminen", "Limit to groups" : "Rajoita ryhmiin", + "Enforced groups" : "Pakotetut ryhmät", + "Save changes" : "Tallenna muutokset", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Viralliset sovellukset ovat yhteisössä kehitettyjä. Ne tarjoavat keskeistä toiminnallisuutta ja ovat valmiita tuotantokäyttöön.", "Official" : "Virallinen", + "Update to {version}" : "Päivitä versioon {version}", + "Remove" : "Poista", + "Disable" : "Poista käytöstä", + "All" : "Kaikki", + "Limit app usage to groups" : "Rajoita sovelluskäyttö ryhmiin", "No results" : "Ei tuloksia", + "View in store" : "Näytä kaupassa", "Visit website" : "Käy verkkosivustolla", + "Report a bug" : "Ilmoita viasta", "User documentation" : "Käyttäjädokumentaatio", + "Admin documentation" : "Ylläpitäjän ohjeistus", "Developer documentation" : "Kehittäjädokumentaatio", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt minimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Tätä sovellusta ei voi asentaa, koska seuraavat riippuvuudet eivät täyty:", - "{license}-licensed" : "{license}-lisensoitu", + "Update to {update}" : "Päivitä versioon {update}", + "Results from other categories" : "Tulokset muista luokista", + "No apps found for your version" : "Sovelluksia ei löytynyt versiollesi", "Disable all" : "Poista kaikki käytöstä", "Enable all" : "Ota kaikki käyttöön", "Download and enable" : "Lataa ja ota käyttöön", "Enable" : "Käytä", "The app will be downloaded from the app store" : "Sovellus ladataan sovelluskaupasta", "You do not have permissions to see the details of this user" : "Käyttöoikeutesi eivät riitä tämän käyttäjän tietojen näkemiseen", + "New password" : "Uusi salasana", + "Select user quota" : "Valitse käyttäjäkiintiö", + "No language set" : "Kieltä ei ole asetettu", + "Never" : "Ei koskaan", "Delete user" : "Poista käyttäjä", "Disable user" : "Poista käytöstä käyttäjä", "Enable user" : "Ota käyttäjä käyttöön", "Resend welcome email" : "Lähetä uudelleen tervetuloviesti", "{size} used" : "{size} käytetty", "Welcome mail sent!" : "Tervetuloviesti lähetetty!", + "Username" : "Käyttäjätunnus", "Display name" : "Näyttönimi", + "Password" : "Salasana", "Email" : "Sähköpostiosoite", "Group admin for" : "Ryhmäylläpitäjä ryhmille", + "Quota" : "Kiintiö", "Language" : "Kieli", + "Storage location" : "Tallennustilan sijainti", "User backend" : "Käyttäjätaustaosa", + "Last login" : "Viimeisin kirjautuminen", + "Default language" : "Oletuskieli", + "Add a new user" : "Lisää uusi käyttäjä", + "No users in here" : "Täällä ei ole käyttäjiä", "Unlimited" : "Rajoittamaton", "Default quota" : "Oletuskiintiö", - "Default language" : "Oletuskieli", "Common languages" : "Yleiset kielet", "All languages" : "Kaikki kielet", - "An error occured during the request. Unable to proceed." : "Pyynnön aikana tapahtui virhe. Jatkaminen ei onnistu.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Sovellus on käytössä, mutta se tulee päivittää. Sinut ohjataan sovelluksen päivityssivulle viiden sekunnin kuluttua.", - "App update" : "Sovelluspäivitys", - "Error: This app can not be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", "Your apps" : "Sovelluksesi", "Active apps" : "Aktiiviset sovellukset", "Disabled apps" : "Käytöstä poistetut sovellukset", "Updates" : "Päivitykset", "App bundles" : "Sovelluskokoelmat", + "{license}-licensed" : "{license}-lisensoitu", "Default quota:" : "Oletuskiintiö:", + "Select default quota" : "Valitse oletuskiintiö", + "Show Languages" : "Näytä kielet", + "Show last login" : "Näytä viimeisin sisäänkirjautuminen", + "Show user backend" : "Näytä käyttäjätaustaosa", + "Show storage path" : "Näytä tallennustilan polku", "You are about to remove the group {group}. The users will NOT be deleted." : "Olet aikeissa poistaa ryhmän {group}. Käyttäjiä EI poisteta!", "Please confirm the group removal " : "Vahvista ryhmän poistaminen", "Remove group" : "Poista ryhmä", @@ -151,6 +180,10 @@ "Everyone" : "Kaikki", "Add group" : "Lisää ryhmä", "New user" : "Uusi käyttäjä", + "An error occured during the request. Unable to proceed." : "Pyynnön aikana tapahtui virhe. Jatkaminen ei onnistu.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Sovellus on käytössä, mutta se tulee päivittää. Sinut ohjataan sovelluksen päivityssivulle viiden sekunnin kuluttua.", + "App update" : "Sovelluspäivitys", + "Error: This app can not be enabled because it makes the server unstable" : "Virhe: tätä sovellusta ei voi ottaa käyttöön, koska se tekee palvelimesta epävakaan", "SSL Root Certificates" : "SSL-juurivarmenteet", "Common Name" : "Yleinen nimi", "Valid until" : "Kelvollinen", @@ -268,9 +301,7 @@ "Twitter handle @…" : "Twitter-tunnus @…", "Help translate" : "Auta kääntämisessä", "Locale" : "Aluekohtainen asetus", - "Password" : "Salasana", "Current password" : "Nykyinen salasana", - "New password" : "Uusi salasana", "Change password" : "Vaihda salasana", "Devices & sessions" : "Laitteet ja istunnot", "Web, desktop and mobile clients currently logged in to your account." : "Verkko-, työpöytä- ja mobiililaitteet, jotka ovat parhaillaan kirjautuneet tilillesi.", @@ -280,7 +311,6 @@ "Create new app password" : "Luo uusi sovellussalasana", "Use the credentials below to configure your app or device." : "Käytä oheista tunnusta ja salasanaa konfiguroidessasi sovelluksen tai laitteen.", "For security reasons this password will only be shown once." : "Turvallisuussyistä tämä salasana näytetään vain kerran.", - "Username" : "Käyttäjätunnus", "Done" : "Valmis", "Enabled apps" : "Käytössä olevat sovellukset", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL käyttää vanhentunutta %s-versiota (%s). Päivitä käyttöjärjestelmäsi tai ominaisuudet kuten %s eivät toimi luotettavasti.", @@ -305,16 +335,12 @@ "Password confirmation is required" : "Salasanavahvistus vaaditaan", "Are you really sure you want add {domain} as trusted domain?" : "Oletko aivan varma, että haluat lisätä verkkotunnuksen {domain} luotetuksi verkkotunnukseksi?", "Add trusted domain" : "Lisää luotettu verkkotunnus", - "All" : "Kaikki", "Update to %s" : "Päivitä versioon %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n odottava sovelluspäivitys","%n odottavaa sovelluspäivitystä"], - "No apps found for your version" : "Sovelluksia ei löytynyt versiollesi", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Viralliset sovellukset ovat yhteisössä kehitettyjä. Ne tarjoavat keskeistä toiminnallisuutta ja ovat valmiita tuotantokäyttöön.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Hyväksytyt sovellukset on kehitetty luotettujen kehittäjien toimesta. Hyväksytyille sovelluksille on suoritettu pintapuolinen turvallisuustarkastus. Sovelluksia ylläpidetään avoimen koodin tietovarastoissa. Sovellusten kehittäjät mieltävät sovellukset vakaiksi ja valmiiksi tavalliseen käyttöön.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Tätä sovellusta ei ole tarkistettu tietoturvauhkien varalta. Sovellus on uusi ja mahdollisesti tiedostettu epävakaaksi. Asenna omalla vastuulla.", "Disabling app …" : "Poistetaan sovellusta käytöstä...", "Error while disabling app" : "Virhe poistaessa sovellusta käytöstä", - "Disable" : "Poista käytöstä", "Enabling app …" : "Otetaan sovellusta käyttöön...", "Error while enabling app" : "Virhe ottaessa sovellusta käyttöön", "Error while disabling broken app" : "Virhe rikkinäistä sovellusta käytöstä poistaessa", @@ -323,7 +349,6 @@ "Updated" : "Päivitetty", "Removing …" : "Poistetaan…", "Error while removing app" : "Virhe sovellusta poistaessa", - "Remove" : "Poista", "Approved" : "Hyväksytty", "Experimental" : "Kokeellinen", "No apps found for {query}" : "Haulla {query} ei löytynyt sovelluksia", @@ -364,16 +389,12 @@ "Theming" : "Teemojen käyttö", "Check the security of your Nextcloud over our security scan" : "Tarkista Nextcloudisi tietoturva käyttäen tietoturvatarkistustamme", "Hardening and security guidance" : "Turvaamis- ja tietoturvaopas", - "View in store" : "Näytä kaupassa", "This app has an update available." : "Tähän sovellukseen on päivitys saatavilla.", "by %s" : "tekijä %s", "%s-licensed" : "%s-lisensoitu", "Documentation:" : "Ohjeistus:", - "Admin documentation" : "Ylläpitäjän ohjeistus", - "Report a bug" : "Ilmoita viasta", "Show description …" : "Näytä kuvaus…", "Hide description …" : "Piilota kuvaus…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Tämä sovellus ei ole määritellyt maksimi Nextcloud-versiota. Tämä tulee olemaan ongelma tulevaisuudessa.", "Enable only for specific groups" : "Salli vain tietyille ryhmille", "Online documentation" : "Verkkodokumentaatio", "Getting help" : "Apua", @@ -397,8 +418,6 @@ "Subscribe to our newsletter!" : "Tilaa uutiskirjeemme!", "Settings" : "Asetukset", "Show storage location" : "Näytä tallennustilan sijainti", - "Show user backend" : "Näytä käyttäjätaustaosa", - "Show last login" : "Näytä viimeisin sisäänkirjautuminen", "Show email address" : "Näytä sähköpostiosoite", "Send email to new user" : "Lähetä sähköpostia uudelle käyttäjälle", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kun uuden käyttäjän salasana jätetään tyhjäksi, hänelle lähetetään aktivointisähköpostiviesti, joka sisältää linkin salasanan luomiseksi.", @@ -410,9 +429,6 @@ "Disabled" : "Poistettu käytöstä", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Määritä tallennustilan kiintiö (esim. \"512 MB\" tai \"12 GB\")", "Other" : "Muu", - "Quota" : "Kiintiö", - "Storage location" : "Tallennustilan sijainti", - "Last login" : "Viimeisin kirjautuminen", "change full name" : "muuta koko nimi", "set new password" : "aseta uusi salasana", "change email address" : "vaihda sähköpostiosoite", diff --git a/settings/l10n/fr.js b/settings/l10n/fr.js index d5ad27b11f2..146f2862d82 100644 --- a/settings/l10n/fr.js +++ b/settings/l10n/fr.js @@ -115,47 +115,70 @@ OC.L10N.register( "Enforce two-factor authentication" : "Imposer l'authentification à deux facteurs", "Limit to groups" : "Limiter aux groupes", "Two-factor authentication is not enforced for\tmembers of the following groups." : "L'authentification à deux facteurs n'est pas appliquée aux \tutilisateurs des groupes suivants.", + "Save changes" : "Enregistrer les modifications", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications officielles sont développées par et dans la communauté. Elles offrent les fonctionnalités indispensables et sont prêtes pour être utilisées en production.", "Official" : "Officielle", + "by" : "par", + "Update to {version}" : "Mise à jour vers {version}", + "Remove" : "Supprimer", + "Disable" : "Désactiver", + "All" : "Tous", "No results" : "Aucun résultat", + "View in store" : "Afficher dans le magasin d'application", "Visit website" : "Visiter le site web", + "Report a bug" : "Signaler un bogue", "User documentation" : "Documentation utilisateur", + "Admin documentation" : "Documentation administrateur", "Developer documentation" : "Documentation pour développeurs", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", - "{license}-licensed" : "{license}-Sous licence", + "Update to {update}" : "Mise à jour vers {update}", + "No apps found for your version" : "Pas d'application trouvée pour votre version", "Disable all" : "Tout désactiver", "Enable all" : "Tout activer", "Download and enable" : "Télécharger et activer", "Enable" : "Activer", "The app will be downloaded from the app store" : "Cette application va être téléchargée depuis l'app store", "You do not have permissions to see the details of this user" : "Vous n'avez pas les autorisations pour voir le détail de cet utilisateur", + "New password" : "Nouveau mot de passe", + "Select user quota" : "Sélectionner le quota de l'utilisateur ", + "No language set" : "Aucune langue définie", + "Never" : "Jamais", "Delete user" : "Supprimer l'utilisateur", "Disable user" : "Désactiver l'utilisateur", "Enable user" : "Activer l'utilisateur", "Resend welcome email" : "Renvoyer l'e-mail de bienvenue", "{size} used" : "{size} utilisé", "Welcome mail sent!" : "E-mail de bienvenue envoyé !", + "Username" : "Nom d'utilisateur", "Display name" : "Afficher le nom", + "Password" : "Mot de passe", "Email" : "Adresse e-mail", "Group admin for" : "Administrateur de groupe pour", + "Quota" : "Quota", "Language" : "Langue", + "Storage location" : "Emplacement du stockage", "User backend" : "Retour utilisateur", + "Last login" : "Dernière connexion", + "Default language" : "Langue par défaut", + "Add a new user" : "Ajouter un nouvel utilisateur", + "No users in here" : "Aucun utilisateur", "Unlimited" : "Illimité", "Default quota" : "Quota par défaut", - "Default language" : "Langue par défaut", "Password change is disabled because the master key is disabled" : "Le changement de mot de passe est désactivé car la clé principale est désactivée", "Common languages" : "Langues communes", "All languages" : "Toutes les langues", - "An error occured during the request. Unable to proceed." : "Une erreur est survenue durant la requête. Impossible de traiter la demande.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", - "App update" : "Mise à jour de l'application", - "Error: This app can not be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activée car cela rend le serveur instable.", "Your apps" : "Vos applications", "Active apps" : "Applications actives", "Disabled apps" : "Applications désactivées", "Updates" : "Mises à jour", "App bundles" : "Pack d'applications", + "{license}-licensed" : "{license}-Sous licence", "Default quota:" : "Quota par défaut :", + "Select default quota" : "Sélectionner le quota par défaut", + "Show last login" : "Montrer la dernière connexion", + "Show user backend" : "Montrer la source de l'identifiant", "You are about to remove the group {group}. The users will NOT be deleted." : "Vous êtes sur le point de supprimer le groupe {group}. Les utilisateurs ne seront PAS supprimés.", "Please confirm the group removal " : "Veuillez confirmer la suppression du groupe", "Remove group" : "Supprimer le groupe", @@ -164,6 +187,10 @@ OC.L10N.register( "Everyone" : "Tout le monde", "Add group" : "Ajouter un groupe", "New user" : "Nouvel utilisateur", + "An error occured during the request. Unable to proceed." : "Une erreur est survenue durant la requête. Impossible de traiter la demande.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", + "App update" : "Mise à jour de l'application", + "Error: This app can not be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activée car cela rend le serveur instable.", "SSL Root Certificates" : "Certificats Racines SSL", "Common Name" : "Nom d'usage", "Valid until" : "Valide jusqu'à", @@ -288,9 +315,7 @@ OC.L10N.register( "Twitter handle @…" : "Pseudo Twitter @...", "Help translate" : "Aidez à traduire", "Locale" : "Paramètres régionaux", - "Password" : "Mot de passe", "Current password" : "Mot de passe actuel", - "New password" : "Nouveau mot de passe", "Change password" : "Changer de mot de passe", "Devices & sessions" : "Appareils & sessions", "Web, desktop and mobile clients currently logged in to your account." : "Clients web, desktop et mobiles actuellement connectés sur votre compte.", @@ -300,7 +325,6 @@ OC.L10N.register( "Create new app password" : "Créer un nouveau mot de passe d'application", "Use the credentials below to configure your app or device." : "Utilisez les informations d'identification ci-dessous pour configurer votre application ou appareil.", "For security reasons this password will only be shown once." : "Pour des raisons de sécurité, ce mot de passe ne sera affiché qu'une seule fois.", - "Username" : "Nom d'utilisateur", "Done" : "Terminé", "Enabled apps" : "Applications activées", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilise %s %s, qui est une version obsolète. Veuillez mettre à jour votre système d'exploitation, ou des fonctionnalités telles que %s ne fonctionneront pas correctement.", @@ -325,16 +349,12 @@ OC.L10N.register( "Password confirmation is required" : "Confirmation par mot de passe est requise", "Are you really sure you want add {domain} as trusted domain?" : "Êtes-vous vraiment sûr de vouloir ajouter {domain} comme domaine de confiance ?", "Add trusted domain" : "Ajouter un domaine de confiance", - "All" : "Tous", "Update to %s" : "Mettre à niveau vers la version %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Vous avez %n application en attente de mise à jour","Vous avez %n applications en attente de mise à jour"], - "No apps found for your version" : "Pas d'application trouvée pour votre version", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications officielles sont développées par et dans la communauté. Elles offrent les fonctionnalités indispensables et sont prêtes pour être utilisées en production.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les applications approuvées sont créées par des développeurs de confiance et ont passé les tests de sécurité. Elles sont activement maintenues et leur code source est ouvert. Leurs développeurs les considèrent stables pour une utilisation normale.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Cette application est nouvelle ou instable, et sa sécurité n'a pas été vérifiée. Installez-la à vos risques et périls!", "Disabling app …" : "Désactivation de l'application...", "Error while disabling app" : "Erreur lors de la désactivation de l'application", - "Disable" : "Désactiver", "Enabling app …" : "Activation de l'application...", "Error while enabling app" : "Erreur lors de l'activation de l'application", "Error: Could not disable broken app" : "Erreur : Impossible de désactiver l’application cassé", @@ -344,7 +364,6 @@ OC.L10N.register( "Updated" : "Mise à jour terminée", "Removing …" : "Suppression...", "Error while removing app" : "Erreur lors de la suppression de l'application", - "Remove" : "Supprimer", "Approved" : "Approuvée", "Experimental" : "Expérimentale", "No apps found for {query}" : "Aucune application trouvée pour {query}", @@ -401,16 +420,12 @@ OC.L10N.register( "Theming" : "Personnalisation de l'apparence", "Check the security of your Nextcloud over our security scan" : "Vérifier la sécurité de votre Nextcloud grâce à notre scan de sécurité", "Hardening and security guidance" : "Guide pour le renforcement et la sécurité", - "View in store" : "Afficher dans le magasin d'application", "This app has an update available." : "Cette application a une mise à jour disponible.", "by %s" : "par %s", "%s-licensed" : "Sous licence %s", "Documentation:" : "Documentation :", - "Admin documentation" : "Documentation administrateur", - "Report a bug" : "Signaler un bogue", "Show description …" : "Afficher la description...", "Hide description …" : "Masquer la description", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "Enable only for specific groups" : "Activer uniquement pour certains groupes", "Online documentation" : "Documentation en ligne", "Getting help" : "Obtenir de l'aide", @@ -434,8 +449,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Abonnez-vous à notre newsletter!", "Settings" : "Paramètres", "Show storage location" : "Afficher l'emplacement du stockage", - "Show user backend" : "Montrer la source de l'identifiant", - "Show last login" : "Montrer la dernière connexion", "Show email address" : "Afficher l'adresse e-mail", "Send email to new user" : "Envoyer un e-mail aux utilisateurs créés", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quand le mot de passe d'un nouvel utilisateur est laissé vide, un mail d'activation avec un lien pour configurer le mot de passe est envoyé.", @@ -447,9 +460,6 @@ OC.L10N.register( "Disabled" : "Désactivé", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")", "Other" : "Autre", - "Quota" : "Quota", - "Storage location" : "Emplacement du stockage", - "Last login" : "Dernière connexion", "change full name" : "Modifier le nom complet", "set new password" : "Changer le mot de passe", "change email address" : "changer l'adresse e-mail", diff --git a/settings/l10n/fr.json b/settings/l10n/fr.json index 9e188d7c9b2..f0805b4a890 100644 --- a/settings/l10n/fr.json +++ b/settings/l10n/fr.json @@ -113,47 +113,70 @@ "Enforce two-factor authentication" : "Imposer l'authentification à deux facteurs", "Limit to groups" : "Limiter aux groupes", "Two-factor authentication is not enforced for\tmembers of the following groups." : "L'authentification à deux facteurs n'est pas appliquée aux \tutilisateurs des groupes suivants.", + "Save changes" : "Enregistrer les modifications", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications officielles sont développées par et dans la communauté. Elles offrent les fonctionnalités indispensables et sont prêtes pour être utilisées en production.", "Official" : "Officielle", + "by" : "par", + "Update to {version}" : "Mise à jour vers {version}", + "Remove" : "Supprimer", + "Disable" : "Désactiver", + "All" : "Tous", "No results" : "Aucun résultat", + "View in store" : "Afficher dans le magasin d'application", "Visit website" : "Visiter le site web", + "Report a bug" : "Signaler un bogue", "User documentation" : "Documentation utilisateur", + "Admin documentation" : "Documentation administrateur", "Developer documentation" : "Documentation pour développeurs", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version minimum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Cette application ne peut être installée à cause de ces dépendances non satisfaites :", - "{license}-licensed" : "{license}-Sous licence", + "Update to {update}" : "Mise à jour vers {update}", + "No apps found for your version" : "Pas d'application trouvée pour votre version", "Disable all" : "Tout désactiver", "Enable all" : "Tout activer", "Download and enable" : "Télécharger et activer", "Enable" : "Activer", "The app will be downloaded from the app store" : "Cette application va être téléchargée depuis l'app store", "You do not have permissions to see the details of this user" : "Vous n'avez pas les autorisations pour voir le détail de cet utilisateur", + "New password" : "Nouveau mot de passe", + "Select user quota" : "Sélectionner le quota de l'utilisateur ", + "No language set" : "Aucune langue définie", + "Never" : "Jamais", "Delete user" : "Supprimer l'utilisateur", "Disable user" : "Désactiver l'utilisateur", "Enable user" : "Activer l'utilisateur", "Resend welcome email" : "Renvoyer l'e-mail de bienvenue", "{size} used" : "{size} utilisé", "Welcome mail sent!" : "E-mail de bienvenue envoyé !", + "Username" : "Nom d'utilisateur", "Display name" : "Afficher le nom", + "Password" : "Mot de passe", "Email" : "Adresse e-mail", "Group admin for" : "Administrateur de groupe pour", + "Quota" : "Quota", "Language" : "Langue", + "Storage location" : "Emplacement du stockage", "User backend" : "Retour utilisateur", + "Last login" : "Dernière connexion", + "Default language" : "Langue par défaut", + "Add a new user" : "Ajouter un nouvel utilisateur", + "No users in here" : "Aucun utilisateur", "Unlimited" : "Illimité", "Default quota" : "Quota par défaut", - "Default language" : "Langue par défaut", "Password change is disabled because the master key is disabled" : "Le changement de mot de passe est désactivé car la clé principale est désactivée", "Common languages" : "Langues communes", "All languages" : "Toutes les langues", - "An error occured during the request. Unable to proceed." : "Une erreur est survenue durant la requête. Impossible de traiter la demande.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", - "App update" : "Mise à jour de l'application", - "Error: This app can not be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activée car cela rend le serveur instable.", "Your apps" : "Vos applications", "Active apps" : "Applications actives", "Disabled apps" : "Applications désactivées", "Updates" : "Mises à jour", "App bundles" : "Pack d'applications", + "{license}-licensed" : "{license}-Sous licence", "Default quota:" : "Quota par défaut :", + "Select default quota" : "Sélectionner le quota par défaut", + "Show last login" : "Montrer la dernière connexion", + "Show user backend" : "Montrer la source de l'identifiant", "You are about to remove the group {group}. The users will NOT be deleted." : "Vous êtes sur le point de supprimer le groupe {group}. Les utilisateurs ne seront PAS supprimés.", "Please confirm the group removal " : "Veuillez confirmer la suppression du groupe", "Remove group" : "Supprimer le groupe", @@ -162,6 +185,10 @@ "Everyone" : "Tout le monde", "Add group" : "Ajouter un groupe", "New user" : "Nouvel utilisateur", + "An error occured during the request. Unable to proceed." : "Une erreur est survenue durant la requête. Impossible de traiter la demande.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'application a été activée mais doit être mise à jour. Vous allez être redirigé vers la page des mises à jour dans 5 secondes.", + "App update" : "Mise à jour de l'application", + "Error: This app can not be enabled because it makes the server unstable" : "Erreur : Cette application ne peut pas être activée car cela rend le serveur instable.", "SSL Root Certificates" : "Certificats Racines SSL", "Common Name" : "Nom d'usage", "Valid until" : "Valide jusqu'à", @@ -286,9 +313,7 @@ "Twitter handle @…" : "Pseudo Twitter @...", "Help translate" : "Aidez à traduire", "Locale" : "Paramètres régionaux", - "Password" : "Mot de passe", "Current password" : "Mot de passe actuel", - "New password" : "Nouveau mot de passe", "Change password" : "Changer de mot de passe", "Devices & sessions" : "Appareils & sessions", "Web, desktop and mobile clients currently logged in to your account." : "Clients web, desktop et mobiles actuellement connectés sur votre compte.", @@ -298,7 +323,6 @@ "Create new app password" : "Créer un nouveau mot de passe d'application", "Use the credentials below to configure your app or device." : "Utilisez les informations d'identification ci-dessous pour configurer votre application ou appareil.", "For security reasons this password will only be shown once." : "Pour des raisons de sécurité, ce mot de passe ne sera affiché qu'une seule fois.", - "Username" : "Nom d'utilisateur", "Done" : "Terminé", "Enabled apps" : "Applications activées", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilise %s %s, qui est une version obsolète. Veuillez mettre à jour votre système d'exploitation, ou des fonctionnalités telles que %s ne fonctionneront pas correctement.", @@ -323,16 +347,12 @@ "Password confirmation is required" : "Confirmation par mot de passe est requise", "Are you really sure you want add {domain} as trusted domain?" : "Êtes-vous vraiment sûr de vouloir ajouter {domain} comme domaine de confiance ?", "Add trusted domain" : "Ajouter un domaine de confiance", - "All" : "Tous", "Update to %s" : "Mettre à niveau vers la version %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Vous avez %n application en attente de mise à jour","Vous avez %n applications en attente de mise à jour"], - "No apps found for your version" : "Pas d'application trouvée pour votre version", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Les applications officielles sont développées par et dans la communauté. Elles offrent les fonctionnalités indispensables et sont prêtes pour être utilisées en production.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Les applications approuvées sont créées par des développeurs de confiance et ont passé les tests de sécurité. Elles sont activement maintenues et leur code source est ouvert. Leurs développeurs les considèrent stables pour une utilisation normale.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Cette application est nouvelle ou instable, et sa sécurité n'a pas été vérifiée. Installez-la à vos risques et périls!", "Disabling app …" : "Désactivation de l'application...", "Error while disabling app" : "Erreur lors de la désactivation de l'application", - "Disable" : "Désactiver", "Enabling app …" : "Activation de l'application...", "Error while enabling app" : "Erreur lors de l'activation de l'application", "Error: Could not disable broken app" : "Erreur : Impossible de désactiver l’application cassé", @@ -342,7 +362,6 @@ "Updated" : "Mise à jour terminée", "Removing …" : "Suppression...", "Error while removing app" : "Erreur lors de la suppression de l'application", - "Remove" : "Supprimer", "Approved" : "Approuvée", "Experimental" : "Expérimentale", "No apps found for {query}" : "Aucune application trouvée pour {query}", @@ -399,16 +418,12 @@ "Theming" : "Personnalisation de l'apparence", "Check the security of your Nextcloud over our security scan" : "Vérifier la sécurité de votre Nextcloud grâce à notre scan de sécurité", "Hardening and security guidance" : "Guide pour le renforcement et la sécurité", - "View in store" : "Afficher dans le magasin d'application", "This app has an update available." : "Cette application a une mise à jour disponible.", "by %s" : "par %s", "%s-licensed" : "Sous licence %s", "Documentation:" : "Documentation :", - "Admin documentation" : "Documentation administrateur", - "Report a bug" : "Signaler un bogue", "Show description …" : "Afficher la description...", "Hide description …" : "Masquer la description", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Cette application n'a pas de version maximum Nextcloud exigée. Ce sera considéré comme une erreur à l'avenir.", "Enable only for specific groups" : "Activer uniquement pour certains groupes", "Online documentation" : "Documentation en ligne", "Getting help" : "Obtenir de l'aide", @@ -432,8 +447,6 @@ "Subscribe to our newsletter!" : "Abonnez-vous à notre newsletter!", "Settings" : "Paramètres", "Show storage location" : "Afficher l'emplacement du stockage", - "Show user backend" : "Montrer la source de l'identifiant", - "Show last login" : "Montrer la dernière connexion", "Show email address" : "Afficher l'adresse e-mail", "Send email to new user" : "Envoyer un e-mail aux utilisateurs créés", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quand le mot de passe d'un nouvel utilisateur est laissé vide, un mail d'activation avec un lien pour configurer le mot de passe est envoyé.", @@ -445,9 +458,6 @@ "Disabled" : "Désactivé", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Veuillez entrer le quota de stockage (ex. \"512 MB\" ou \"12 GB\")", "Other" : "Autre", - "Quota" : "Quota", - "Storage location" : "Emplacement du stockage", - "Last login" : "Dernière connexion", "change full name" : "Modifier le nom complet", "set new password" : "Changer le mot de passe", "change email address" : "changer l'adresse e-mail", diff --git a/settings/l10n/he.js b/settings/l10n/he.js index 7e34098a9f2..8bc53898cc1 100644 --- a/settings/l10n/he.js +++ b/settings/l10n/he.js @@ -105,33 +105,50 @@ OC.L10N.register( "Select a profile picture" : "יש לבחור תמונת פרופיל", "Groups" : "קבוצות", "Limit to groups" : "הגבלה לקבוצות", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "היישומונים הרשמיים מפותחים על ידי ובתוך הקהילה. הם מציעים תכונות ליבה מסוימות והן מוכנות לשימוש יומיומי.", "Official" : "רישמי", + "Remove" : "הסרה", + "Disable" : "ניטרול", + "All" : "הכל", + "View in store" : "הצגה באחסון", "Visit website" : "ביקור באתר האינטרנט", + "Report a bug" : "דיווח על באג", "User documentation" : "תיעוד משתמש", + "Admin documentation" : "תיעוד מנהל", "Developer documentation" : "תיעוד מפתח", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", + "No apps found for your version" : "לא נמצאו יישומים לגרסה שלך", "Enable all" : "הפעלת הכול", "Enable" : "הפעלה", "The app will be downloaded from the app store" : "היישום ירד מחנות היישומים", + "New password" : "סיסמא חדשה", "{size} used" : "{size} בשימוש", + "Username" : "שם משתמש", + "Password" : "סיסמא", "Email" : "דואר אלקטרוני", "Group admin for" : "מנהל הקבוצה", + "Quota" : "מכסה", "Language" : "שפה", + "Storage location" : "מיקום אחסון", "User backend" : "מנגנון משתמש", + "Last login" : "כניסה אחרונה", "Unlimited" : "ללא הגבלה", "Default quota" : "מכסת בררת מחדל", - "An error occured during the request. Unable to proceed." : "אירעה שגיאה במהלך הבקשה. לא ניתן להמשיך.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישומון הופעל אך יש לעדכן אותו. ההפניה לעמוד העדכון תחל בעוד 5 שניות.", - "App update" : "עדכון יישומן", - "Error: This app can not be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישומון זה כיוון שהוא מערער את יציבות השרת.", "Your apps" : "היישומונים שלך", "Disabled apps" : "יישומונים מושבתים", "Updates" : "עדכונים", "App bundles" : "מאגדי יישומונים", + "Show last login" : "הצגת כניסה אחרונה", + "Show user backend" : "הצגת צד אחורי למשתמש", "Admins" : "מנהלים", "Everyone" : "כולם", "Add group" : "הוספת קבוצה", + "An error occured during the request. Unable to proceed." : "אירעה שגיאה במהלך הבקשה. לא ניתן להמשיך.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישומון הופעל אך יש לעדכן אותו. ההפניה לעמוד העדכון תחל בעוד 5 שניות.", + "App update" : "עדכון יישומן", + "Error: This app can not be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישומון זה כיוון שהוא מערער את יציבות השרת.", "SSL Root Certificates" : "אישורי אבטחת SSL לנתיב יסוד", "Common Name" : "שם משותף", "Valid until" : "בתוקף עד", @@ -251,9 +268,7 @@ OC.L10N.register( "Twitter handle @…" : "כינוי בטוויטר @…", "Help translate" : "עזרה בתרגום", "Locale" : "הגדרות אזוריות", - "Password" : "סיסמא", "Current password" : "סיסמא נוכחית", - "New password" : "סיסמא חדשה", "Change password" : "שינוי סיסמא", "Devices & sessions" : "התקנים והפעלות", "Web, desktop and mobile clients currently logged in to your account." : "לקוחות שמחוברים כעת לחשבון שלך דרך דפדפן, שולחן עבודה והתקנים ניידים.", @@ -263,7 +278,6 @@ OC.L10N.register( "Create new app password" : "יצירת סיסמת יישום חדשה", "Use the credentials below to configure your app or device." : "יש להשתמש בפרטי הזיהוי שלהלן כדי להגדיר את היישומון או ההתקן שלך.", "For security reasons this password will only be shown once." : "מטעמי אבטחה הססמה תופיע פעם אחת בלבד.", - "Username" : "שם משתמש", "Done" : "הסתיים", "Enabled apps" : "יישומונים פעילים", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL משתמש בגרסה %s ישנה (%s). יש לעדכן את מערכת ההפעלה או שתכונות כדוגמת %s לא יעבדו באופן מהימן.", @@ -288,16 +302,12 @@ OC.L10N.register( "Password confirmation is required" : "נדרש אימות ססמה", "Are you really sure you want add {domain} as trusted domain?" : "להוסיף את {domain} כשם מתחם מהימן?", "Add trusted domain" : "הוספת שם מתחם מהימן", - "All" : "הכל", "Update to %s" : "עדכון ל- %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["יש לך עדכון ממתין ליישום","יש לך %n עדכוני יישום בהמתנה","יש לך %n עדכוני יישום בהמתנה","יש לך %n עדכוני יישום בהמתנה"], - "No apps found for your version" : "לא נמצאו יישומים לגרסה שלך", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "היישומונים הרשמיים מפותחים על ידי ובתוך הקהילה. הם מציעים תכונות ליבה מסוימות והן מוכנות לשימוש יומיומי.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "יישומים מאושרים מפותחים על ידי מפתחים מהימנים ועברו בדיקת הבטחה ראשונית. הם נשמרים באופן פעיל במאגר קוד פתוח והמתזקים שלהם מייעדים אותם לשימוש מזדמן ורגיל.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "יישום זה לא נבדק לבעיות אבטחה והוא חדש או ידוע כלא יציב. התקנת יישום זה הנה על אחריותך בלבד.", "Disabling app …" : "יישומון מושבת…", "Error while disabling app" : "אירעה שגיאה בעת נטרול היישום", - "Disable" : "ניטרול", "Enabling app …" : "יישומון מופעל…", "Error while enabling app" : "שגיאה בעת הפעלת יישום", "Error: Could not disable broken app" : "שגיאה: לא ניתן להשבית יישומון פגום", @@ -307,7 +317,6 @@ OC.L10N.register( "Updated" : "מעודכן", "Removing …" : "מתבצעת הסרה…", "Error while removing app" : "אירעה שגיאה בעת הסרת היישום", - "Remove" : "הסרה", "Approved" : "מאושר", "Experimental" : "ניסיוני", "No apps found for {query}" : "לא נמצא יישום עבור {query}", @@ -364,16 +373,12 @@ OC.L10N.register( "Theming" : "ערכת נושא", "Check the security of your Nextcloud over our security scan" : "בדיקת האבטחה של ה־Nextcloud שלך באמצעות סריקת האבטחה שלנו", "Hardening and security guidance" : "הדרכת הקשחה ואבטחה", - "View in store" : "הצגה באחסון", "This app has an update available." : "ליישום זה קיים עדכון זמין.", "by %s" : "על ידי %s", "%s-licensed" : "%s-בעל רישיון", "Documentation:" : "תיעוד", - "Admin documentation" : "תיעוד מנהל", - "Report a bug" : "דיווח על באג", "Show description …" : "הצגת תיאור ...", "Hide description …" : "הסתרת תיאור ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "Enable only for specific groups" : "אפשר רק לקבוצות מסויימות", "Online documentation" : "תיעוד מקוון", "Getting help" : "קבלת עזרה", @@ -397,8 +402,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "הרשמה לרשימת הדיוור שלנו!", "Settings" : "הגדרות", "Show storage location" : "הצגת מיקום אחסון", - "Show user backend" : "הצגת צד אחורי למשתמש", - "Show last login" : "הצגת כניסה אחרונה", "Show email address" : "הצגת כתובת דואר אלקטרוני", "Send email to new user" : "שליחת דואר אלקטרוני למשתמש חדש", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "כאשר הססמה של משתמש חדש נשארת ריקה, נשלחת הודעת הפעלה בדוא״ל עם קישור להגדרת הססמה.", @@ -410,9 +413,6 @@ OC.L10N.register( "Disabled" : "מושבת", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "יש להכניס מכסת אחסון (לדוגמא: \"512 MB\" or \"12 GB\")", "Other" : "אחר", - "Quota" : "מכסה", - "Storage location" : "מיקום אחסון", - "Last login" : "כניסה אחרונה", "change full name" : "שינוי שם מלא", "set new password" : "הגדרת סיסמא חדשה", "change email address" : "שינוי כתובת דואר אלקטרוני", diff --git a/settings/l10n/he.json b/settings/l10n/he.json index 9c2f9263ebf..31ab2accdcc 100644 --- a/settings/l10n/he.json +++ b/settings/l10n/he.json @@ -103,33 +103,50 @@ "Select a profile picture" : "יש לבחור תמונת פרופיל", "Groups" : "קבוצות", "Limit to groups" : "הגבלה לקבוצות", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "היישומונים הרשמיים מפותחים על ידי ובתוך הקהילה. הם מציעים תכונות ליבה מסוימות והן מוכנות לשימוש יומיומי.", "Official" : "רישמי", + "Remove" : "הסרה", + "Disable" : "ניטרול", + "All" : "הכל", + "View in store" : "הצגה באחסון", "Visit website" : "ביקור באתר האינטרנט", + "Report a bug" : "דיווח על באג", "User documentation" : "תיעוד משתמש", + "Admin documentation" : "תיעוד מנהל", "Developer documentation" : "תיעוד מפתח", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מזערית. מצב כזה עשוי להוביל לשגיאה בעתיד.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "This app cannot be installed because the following dependencies are not fulfilled:" : "לא ניתן להתקין את יישום זה כיוון שייחסי התלות הבאים לא התקיימו:", + "No apps found for your version" : "לא נמצאו יישומים לגרסה שלך", "Enable all" : "הפעלת הכול", "Enable" : "הפעלה", "The app will be downloaded from the app store" : "היישום ירד מחנות היישומים", + "New password" : "סיסמא חדשה", "{size} used" : "{size} בשימוש", + "Username" : "שם משתמש", + "Password" : "סיסמא", "Email" : "דואר אלקטרוני", "Group admin for" : "מנהל הקבוצה", + "Quota" : "מכסה", "Language" : "שפה", + "Storage location" : "מיקום אחסון", "User backend" : "מנגנון משתמש", + "Last login" : "כניסה אחרונה", "Unlimited" : "ללא הגבלה", "Default quota" : "מכסת בררת מחדל", - "An error occured during the request. Unable to proceed." : "אירעה שגיאה במהלך הבקשה. לא ניתן להמשיך.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישומון הופעל אך יש לעדכן אותו. ההפניה לעמוד העדכון תחל בעוד 5 שניות.", - "App update" : "עדכון יישומן", - "Error: This app can not be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישומון זה כיוון שהוא מערער את יציבות השרת.", "Your apps" : "היישומונים שלך", "Disabled apps" : "יישומונים מושבתים", "Updates" : "עדכונים", "App bundles" : "מאגדי יישומונים", + "Show last login" : "הצגת כניסה אחרונה", + "Show user backend" : "הצגת צד אחורי למשתמש", "Admins" : "מנהלים", "Everyone" : "כולם", "Add group" : "הוספת קבוצה", + "An error occured during the request. Unable to proceed." : "אירעה שגיאה במהלך הבקשה. לא ניתן להמשיך.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "היישומון הופעל אך יש לעדכן אותו. ההפניה לעמוד העדכון תחל בעוד 5 שניות.", + "App update" : "עדכון יישומן", + "Error: This app can not be enabled because it makes the server unstable" : "שגיאה: לא ניתן להפעיל יישומון זה כיוון שהוא מערער את יציבות השרת.", "SSL Root Certificates" : "אישורי אבטחת SSL לנתיב יסוד", "Common Name" : "שם משותף", "Valid until" : "בתוקף עד", @@ -249,9 +266,7 @@ "Twitter handle @…" : "כינוי בטוויטר @…", "Help translate" : "עזרה בתרגום", "Locale" : "הגדרות אזוריות", - "Password" : "סיסמא", "Current password" : "סיסמא נוכחית", - "New password" : "סיסמא חדשה", "Change password" : "שינוי סיסמא", "Devices & sessions" : "התקנים והפעלות", "Web, desktop and mobile clients currently logged in to your account." : "לקוחות שמחוברים כעת לחשבון שלך דרך דפדפן, שולחן עבודה והתקנים ניידים.", @@ -261,7 +276,6 @@ "Create new app password" : "יצירת סיסמת יישום חדשה", "Use the credentials below to configure your app or device." : "יש להשתמש בפרטי הזיהוי שלהלן כדי להגדיר את היישומון או ההתקן שלך.", "For security reasons this password will only be shown once." : "מטעמי אבטחה הססמה תופיע פעם אחת בלבד.", - "Username" : "שם משתמש", "Done" : "הסתיים", "Enabled apps" : "יישומונים פעילים", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL משתמש בגרסה %s ישנה (%s). יש לעדכן את מערכת ההפעלה או שתכונות כדוגמת %s לא יעבדו באופן מהימן.", @@ -286,16 +300,12 @@ "Password confirmation is required" : "נדרש אימות ססמה", "Are you really sure you want add {domain} as trusted domain?" : "להוסיף את {domain} כשם מתחם מהימן?", "Add trusted domain" : "הוספת שם מתחם מהימן", - "All" : "הכל", "Update to %s" : "עדכון ל- %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["יש לך עדכון ממתין ליישום","יש לך %n עדכוני יישום בהמתנה","יש לך %n עדכוני יישום בהמתנה","יש לך %n עדכוני יישום בהמתנה"], - "No apps found for your version" : "לא נמצאו יישומים לגרסה שלך", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "היישומונים הרשמיים מפותחים על ידי ובתוך הקהילה. הם מציעים תכונות ליבה מסוימות והן מוכנות לשימוש יומיומי.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "יישומים מאושרים מפותחים על ידי מפתחים מהימנים ועברו בדיקת הבטחה ראשונית. הם נשמרים באופן פעיל במאגר קוד פתוח והמתזקים שלהם מייעדים אותם לשימוש מזדמן ורגיל.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "יישום זה לא נבדק לבעיות אבטחה והוא חדש או ידוע כלא יציב. התקנת יישום זה הנה על אחריותך בלבד.", "Disabling app …" : "יישומון מושבת…", "Error while disabling app" : "אירעה שגיאה בעת נטרול היישום", - "Disable" : "ניטרול", "Enabling app …" : "יישומון מופעל…", "Error while enabling app" : "שגיאה בעת הפעלת יישום", "Error: Could not disable broken app" : "שגיאה: לא ניתן להשבית יישומון פגום", @@ -305,7 +315,6 @@ "Updated" : "מעודכן", "Removing …" : "מתבצעת הסרה…", "Error while removing app" : "אירעה שגיאה בעת הסרת היישום", - "Remove" : "הסרה", "Approved" : "מאושר", "Experimental" : "ניסיוני", "No apps found for {query}" : "לא נמצא יישום עבור {query}", @@ -362,16 +371,12 @@ "Theming" : "ערכת נושא", "Check the security of your Nextcloud over our security scan" : "בדיקת האבטחה של ה־Nextcloud שלך באמצעות סריקת האבטחה שלנו", "Hardening and security guidance" : "הדרכת הקשחה ואבטחה", - "View in store" : "הצגה באחסון", "This app has an update available." : "ליישום זה קיים עדכון זמין.", "by %s" : "על ידי %s", "%s-licensed" : "%s-בעל רישיון", "Documentation:" : "תיעוד", - "Admin documentation" : "תיעוד מנהל", - "Report a bug" : "דיווח על באג", "Show description …" : "הצגת תיאור ...", "Hide description …" : "הסתרת תיאור ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ליישומון זה לא מוקצית גרסת Nextcloud מרבית. מצב כזה עשוי להוביל לשגיאה בעתיד.", "Enable only for specific groups" : "אפשר רק לקבוצות מסויימות", "Online documentation" : "תיעוד מקוון", "Getting help" : "קבלת עזרה", @@ -395,8 +400,6 @@ "Subscribe to our newsletter!" : "הרשמה לרשימת הדיוור שלנו!", "Settings" : "הגדרות", "Show storage location" : "הצגת מיקום אחסון", - "Show user backend" : "הצגת צד אחורי למשתמש", - "Show last login" : "הצגת כניסה אחרונה", "Show email address" : "הצגת כתובת דואר אלקטרוני", "Send email to new user" : "שליחת דואר אלקטרוני למשתמש חדש", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "כאשר הססמה של משתמש חדש נשארת ריקה, נשלחת הודעת הפעלה בדוא״ל עם קישור להגדרת הססמה.", @@ -408,9 +411,6 @@ "Disabled" : "מושבת", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "יש להכניס מכסת אחסון (לדוגמא: \"512 MB\" or \"12 GB\")", "Other" : "אחר", - "Quota" : "מכסה", - "Storage location" : "מיקום אחסון", - "Last login" : "כניסה אחרונה", "change full name" : "שינוי שם מלא", "set new password" : "הגדרת סיסמא חדשה", "change email address" : "שינוי כתובת דואר אלקטרוני", diff --git a/settings/l10n/hr.js b/settings/l10n/hr.js index 28c71365f38..9e9c8fa763f 100644 --- a/settings/l10n/hr.js +++ b/settings/l10n/hr.js @@ -21,8 +21,14 @@ OC.L10N.register( "Strong password" : "Lozinka snažna", "Select a profile picture" : "Odaberite sliku profila", "Groups" : "Grupe", + "Disable" : "Onemogućite", + "All" : "Sve", "Enable" : "Omogućite", + "New password" : "Nova lozinka", + "Username" : "Korisničko ime", + "Password" : "Lozinka", "Email" : "E-pošta", + "Quota" : "Kvota", "Language" : "Jezik", "Unlimited" : "Neograničeno", "Admins" : "Admins", @@ -70,17 +76,12 @@ OC.L10N.register( "Cancel" : "Odustanite", "Your email address" : "Vaša adresa e-pošte", "Help translate" : "Pomozite prevesti", - "Password" : "Lozinka", "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", "Change password" : "Promijenite lozinku", - "Username" : "Korisničko ime", "Your full name has been changed." : "Vaše puno ime je promijenjeno.", "Email saved" : "E-pošta spremljena", "Add trusted domain" : "Dodajte pouzdanu domenu", - "All" : "Sve", "Error while disabling app" : "Pogreška pri onemogućavanju app", - "Disable" : "Onemogućite", "Error while enabling app" : "Pogreška pri omogućavanju app", "Updated" : "Ažurirano", "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", @@ -101,7 +102,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tijekom promjene lozinke", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molimo unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", "Other" : "Ostalo", - "Quota" : "Kvota", "change full name" : "promijenite puno ime", "set new password" : "postavite novu lozinku", "Default" : "Zadano" diff --git a/settings/l10n/hr.json b/settings/l10n/hr.json index 8139df2b3f8..0035f6d402c 100644 --- a/settings/l10n/hr.json +++ b/settings/l10n/hr.json @@ -19,8 +19,14 @@ "Strong password" : "Lozinka snažna", "Select a profile picture" : "Odaberite sliku profila", "Groups" : "Grupe", + "Disable" : "Onemogućite", + "All" : "Sve", "Enable" : "Omogućite", + "New password" : "Nova lozinka", + "Username" : "Korisničko ime", + "Password" : "Lozinka", "Email" : "E-pošta", + "Quota" : "Kvota", "Language" : "Jezik", "Unlimited" : "Neograničeno", "Admins" : "Admins", @@ -68,17 +74,12 @@ "Cancel" : "Odustanite", "Your email address" : "Vaša adresa e-pošte", "Help translate" : "Pomozite prevesti", - "Password" : "Lozinka", "Current password" : "Trenutna lozinka", - "New password" : "Nova lozinka", "Change password" : "Promijenite lozinku", - "Username" : "Korisničko ime", "Your full name has been changed." : "Vaše puno ime je promijenjeno.", "Email saved" : "E-pošta spremljena", "Add trusted domain" : "Dodajte pouzdanu domenu", - "All" : "Sve", "Error while disabling app" : "Pogreška pri onemogućavanju app", - "Disable" : "Onemogućite", "Error while enabling app" : "Pogreška pri omogućavanju app", "Updated" : "Ažurirano", "Unable to delete {objName}" : "Nije moguće izbrisati {objName}", @@ -99,7 +100,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Unesite lozinku za oporavak da biste oporavili korisničke datoteke tijekom promjene lozinke", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Molimo unesite kvotu za spremanje (npr: \"512 MB\" ili \"12 GB\")", "Other" : "Ostalo", - "Quota" : "Kvota", "change full name" : "promijenite puno ime", "set new password" : "postavite novu lozinku", "Default" : "Zadano" diff --git a/settings/l10n/hu.js b/settings/l10n/hu.js index 9ff1e763dfc..a8f6be160f4 100644 --- a/settings/l10n/hu.js +++ b/settings/l10n/hu.js @@ -110,46 +110,59 @@ OC.L10N.register( "Group list is empty" : "Csoport lista üres", "Unable to retrieve the group list" : "Csoportlista betöltése sikertelen", "Limit to groups" : "Csoportokra korlátozás", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.", "Official" : "Hivatalos", + "Remove" : "Eltávolítás", + "Disable" : "Letiltás", + "All" : "Mind", "No results" : "Nincsenek eredmények", + "View in store" : "Megtekintés a tárban", "Visit website" : "Weboldal meglátogatása", + "Report a bug" : "Hiba bejelentése", "User documentation" : "Felhasználói dokumentáció", + "Admin documentation" : "Rendszergazdai dokumentáció", "Developer documentation" : "Fejlesztői dokumentáció", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az alkalmazást nem lehet telepíteni, mert a következő függőségek hiányoznak:", - "{license}-licensed" : "{license}-licencelt", + "No apps found for your version" : "Nem található alkalmazás a verziód számára", "Disable all" : "Összes tiltása", "Enable all" : "Mind engedélyezése", "Download and enable" : "Letöltés és engedélyezés", "Enable" : "Engedélyezés", "The app will be downloaded from the app store" : "Az alkalmazás letöltésre kerül az alkalmazástárból", "You do not have permissions to see the details of this user" : "Nincs jogosultságod megnézni ennek a felhasználónak a részleteit.", + "New password" : "Az új jelszó", "Delete user" : "Felhasználó törlése", "Disable user" : "Felhasználó tiltása", "Enable user" : "Felhasználó engedélyezése", "Resend welcome email" : "Üdvözlő üzenet ismételt küldése", "{size} used" : "{size} felhasználva", "Welcome mail sent!" : "Üdvöző üzenet elküldve!", + "Username" : "Felhasználónév", "Display name" : "Név megjelenítés", + "Password" : "Jelszó", "Email" : "E-mail", "Group admin for" : "Csoport Rendszergazda itt", + "Quota" : "Kvóta", "Language" : "Nyelv", + "Storage location" : "A háttértár helye", "User backend" : "Felhasználói háttér", + "Last login" : "Utolsó bejelentkezés", + "Default language" : "Alapértelmezett nyelv", "Unlimited" : "Korlátlan", "Default quota" : "Alapértelmezett kvóta", - "Default language" : "Alapértelmezett nyelv", "Password change is disabled because the master key is disabled" : "A jelszó változtatása tiltva van mert a mester kulcs tiltva van", "Common languages" : "Alapvető nyelvek", "All languages" : "Minden nyelv", - "An error occured during the request. Unable to proceed." : "Hiba lépett fel a kérés közben. Nem lehet végrehajtani.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Ez az alkalmazás engedélyezve van, de frissíteni kell. A frissítő oldalra irányítjuk 5 másodpercen belül.", - "App update" : "Alkalmazás frissítése", - "Error: This app can not be enabled because it makes the server unstable" : "Hiba: az alkalmazás nem nem engedélyezhető, mert instabillá tenné a szervert", "Your apps" : "Alkalmazásaid", "Active apps" : "Aktív alkalmazások", "Disabled apps" : "Letiltott alkalmazások", "Updates" : "Feltöltések", "App bundles" : "Alkalmazás csomagok", + "{license}-licensed" : "{license}-licencelt", + "Show last login" : "Utolsó bejelentkezés megjelenítése", + "Show user backend" : "Felhasználói háttér mutatása", "You are about to remove the group {group}. The users will NOT be deleted." : "A {group} csoportot fodja törölni. A felhasználó NEM fog törlődni.", "Please confirm the group removal " : "Kérem erősítse meg a csoport törlését", "Remove group" : "Csoport törlése", @@ -158,6 +171,10 @@ OC.L10N.register( "Everyone" : "Mindenki", "Add group" : "csoport hozzáadása", "New user" : "Új felhasználó", + "An error occured during the request. Unable to proceed." : "Hiba lépett fel a kérés közben. Nem lehet végrehajtani.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Ez az alkalmazás engedélyezve van, de frissíteni kell. A frissítő oldalra irányítjuk 5 másodpercen belül.", + "App update" : "Alkalmazás frissítése", + "Error: This app can not be enabled because it makes the server unstable" : "Hiba: az alkalmazás nem nem engedélyezhető, mert instabillá tenné a szervert", "SSL Root Certificates" : "SSL Root tanusítványok", "Common Name" : "Általános Név", "Valid until" : "Érvényes", @@ -279,9 +296,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Segítsen a fordításban!", "Locale" : "Helyi", - "Password" : "Jelszó", "Current password" : "A jelenlegi jelszó", - "New password" : "Az új jelszó", "Change password" : "A jelszó megváltoztatása", "Devices & sessions" : "Eszközök és munkamenetek", "Web, desktop and mobile clients currently logged in to your account." : "A fiókodba jelenleg bejelentkezett web, asztali és mobil kliensek.", @@ -291,7 +306,6 @@ OC.L10N.register( "Create new app password" : "Új alkalmazás jelszó létrehozása", "Use the credentials below to configure your app or device." : "Használja a lenti hitelesítő adatokat hogy beállítsa az alkalmazását vagy eszközét.", "For security reasons this password will only be shown once." : "Biztonsági okokból ez a jelszó csak egyszer jelenik meg.", - "Username" : "Felhasználónév", "Done" : "Kész", "Enabled apps" : "Engedélyezett alkalmazások", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL elavult %s verziót (%s) használ. Kérlek, frissítsd az operációs rendszert, vagy egyes funkciók (mint például a %s) megbízhatatlanul fognak működni.", @@ -316,16 +330,12 @@ OC.L10N.register( "Password confirmation is required" : "Jelszó megerősítés szükséges", "Are you really sure you want add {domain} as trusted domain?" : "Biztos, hogy hozzá akarod adni ezt a megbízható domainekhez: {domain} ?", "Add trusted domain" : "Megbízható tartomány hozzáadása", - "All" : "Mind", "Update to %s" : "Frissítés erre: %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n alkalmazás frissítése függőben van","%n alkalmazás frissítése függőben van"], - "No apps found for your version" : "Nem található alkalmazás a verziód számára", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "A jóváhagyott alkalmazásokat megbízható fejlesztők készítik, amik megfelelnek a felületes biztonsági ellenőrzésnek. Nyílt forráskódú tárolóban aktívan karbantartják és biztosítják a stabil használatot.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ez az alkalmazás még nincs biztonságilag ellenőrizve és vagy új, vagy ismert instabil. Telepítés csak saját felelősségre!", "Disabling app …" : "Alkalmazás tiltása...", "Error while disabling app" : "Hiba az alkalmazás letiltása közben", - "Disable" : "Letiltás", "Enabling app …" : "Alkalmazás engedélyezése ...", "Error while enabling app" : "Hiba az alkalmazás engedélyezése közben", "Error: Could not disable broken app" : "Hiba: a sérült alkalmazás nem volt letiltható", @@ -335,7 +345,6 @@ OC.L10N.register( "Updated" : "Frissítve", "Removing …" : "Eltávolítás...", "Error while removing app" : "Hiba az alkalmazás eltávolításakor", - "Remove" : "Eltávolítás", "Approved" : "Jóváhagyott", "Experimental" : "Kísérleti", "No apps found for {query}" : "{query} keresésre nincs találat", @@ -392,16 +401,12 @@ OC.L10N.register( "Theming" : "Témázás", "Check the security of your Nextcloud over our security scan" : "Ellenőrizze a Nextcloud biztonságát a biztonsági ellenőrzőnkkel ", "Hardening and security guidance" : "Megerősítési és biztonsági útmutató", - "View in store" : "Megtekintés a tárban", "This app has an update available." : "Frissítés érhető el az alkalmazáshoz.", "by %s" : "készítő: %s", "%s-licensed" : "%s-licencelt", "Documentation:" : "Dokumentációk:", - "Admin documentation" : "Rendszergazdai dokumentáció", - "Report a bug" : "Hiba bejelentése", "Show description …" : "Leírás megjelenítése ...", "Hide description …" : "Leírás elrejtése ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "Enable only for specific groups" : "Csak bizonyos csoportok számára tegyük elérhetővé", "Online documentation" : "Online dokumentáció", "Getting help" : "Segítség kérés", @@ -425,8 +430,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Iratkozz fel a hírlevelünkre!", "Settings" : "Beállítások", "Show storage location" : "Háttértároló helyének mutatása", - "Show user backend" : "Felhasználói háttér mutatása", - "Show last login" : "Utolsó bejelentkezés megjelenítése", "Show email address" : "E-mail cím megjelenítése", "Send email to new user" : "E-mail küldése az új felhasználónak", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Amikor egy új felhasználónál üres marad a jelszó mező, akkor egy aktivációs levél kerül kiküldésre a felhasználónak, ahol beállíthatja a jelszavát.", @@ -438,9 +441,6 @@ OC.L10N.register( "Disabled" : "Kikapcsolva", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")", "Other" : "Más", - "Quota" : "Kvóta", - "Storage location" : "A háttértár helye", - "Last login" : "Utolsó bejelentkezés", "change full name" : "a teljes név megváltoztatása", "set new password" : "új jelszó beállítása", "change email address" : "e-mail cím megváltoztatása", diff --git a/settings/l10n/hu.json b/settings/l10n/hu.json index f21a1d41f55..6c0131415d1 100644 --- a/settings/l10n/hu.json +++ b/settings/l10n/hu.json @@ -108,46 +108,59 @@ "Group list is empty" : "Csoport lista üres", "Unable to retrieve the group list" : "Csoportlista betöltése sikertelen", "Limit to groups" : "Csoportokra korlátozás", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.", "Official" : "Hivatalos", + "Remove" : "Eltávolítás", + "Disable" : "Letiltás", + "All" : "Mind", "No results" : "Nincsenek eredmények", + "View in store" : "Megtekintés a tárban", "Visit website" : "Weboldal meglátogatása", + "Report a bug" : "Hiba bejelentése", "User documentation" : "Felhasználói dokumentáció", + "Admin documentation" : "Rendszergazdai dokumentáció", "Developer documentation" : "Fejlesztői dokumentáció", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs minimum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ezt az alkalmazást nem lehet telepíteni, mert a következő függőségek hiányoznak:", - "{license}-licensed" : "{license}-licencelt", + "No apps found for your version" : "Nem található alkalmazás a verziód számára", "Disable all" : "Összes tiltása", "Enable all" : "Mind engedélyezése", "Download and enable" : "Letöltés és engedélyezés", "Enable" : "Engedélyezés", "The app will be downloaded from the app store" : "Az alkalmazás letöltésre kerül az alkalmazástárból", "You do not have permissions to see the details of this user" : "Nincs jogosultságod megnézni ennek a felhasználónak a részleteit.", + "New password" : "Az új jelszó", "Delete user" : "Felhasználó törlése", "Disable user" : "Felhasználó tiltása", "Enable user" : "Felhasználó engedélyezése", "Resend welcome email" : "Üdvözlő üzenet ismételt küldése", "{size} used" : "{size} felhasználva", "Welcome mail sent!" : "Üdvöző üzenet elküldve!", + "Username" : "Felhasználónév", "Display name" : "Név megjelenítés", + "Password" : "Jelszó", "Email" : "E-mail", "Group admin for" : "Csoport Rendszergazda itt", + "Quota" : "Kvóta", "Language" : "Nyelv", + "Storage location" : "A háttértár helye", "User backend" : "Felhasználói háttér", + "Last login" : "Utolsó bejelentkezés", + "Default language" : "Alapértelmezett nyelv", "Unlimited" : "Korlátlan", "Default quota" : "Alapértelmezett kvóta", - "Default language" : "Alapértelmezett nyelv", "Password change is disabled because the master key is disabled" : "A jelszó változtatása tiltva van mert a mester kulcs tiltva van", "Common languages" : "Alapvető nyelvek", "All languages" : "Minden nyelv", - "An error occured during the request. Unable to proceed." : "Hiba lépett fel a kérés közben. Nem lehet végrehajtani.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Ez az alkalmazás engedélyezve van, de frissíteni kell. A frissítő oldalra irányítjuk 5 másodpercen belül.", - "App update" : "Alkalmazás frissítése", - "Error: This app can not be enabled because it makes the server unstable" : "Hiba: az alkalmazás nem nem engedélyezhető, mert instabillá tenné a szervert", "Your apps" : "Alkalmazásaid", "Active apps" : "Aktív alkalmazások", "Disabled apps" : "Letiltott alkalmazások", "Updates" : "Feltöltések", "App bundles" : "Alkalmazás csomagok", + "{license}-licensed" : "{license}-licencelt", + "Show last login" : "Utolsó bejelentkezés megjelenítése", + "Show user backend" : "Felhasználói háttér mutatása", "You are about to remove the group {group}. The users will NOT be deleted." : "A {group} csoportot fodja törölni. A felhasználó NEM fog törlődni.", "Please confirm the group removal " : "Kérem erősítse meg a csoport törlését", "Remove group" : "Csoport törlése", @@ -156,6 +169,10 @@ "Everyone" : "Mindenki", "Add group" : "csoport hozzáadása", "New user" : "Új felhasználó", + "An error occured during the request. Unable to proceed." : "Hiba lépett fel a kérés közben. Nem lehet végrehajtani.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Ez az alkalmazás engedélyezve van, de frissíteni kell. A frissítő oldalra irányítjuk 5 másodpercen belül.", + "App update" : "Alkalmazás frissítése", + "Error: This app can not be enabled because it makes the server unstable" : "Hiba: az alkalmazás nem nem engedélyezhető, mert instabillá tenné a szervert", "SSL Root Certificates" : "SSL Root tanusítványok", "Common Name" : "Általános Név", "Valid until" : "Érvényes", @@ -277,9 +294,7 @@ "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Segítsen a fordításban!", "Locale" : "Helyi", - "Password" : "Jelszó", "Current password" : "A jelenlegi jelszó", - "New password" : "Az új jelszó", "Change password" : "A jelszó megváltoztatása", "Devices & sessions" : "Eszközök és munkamenetek", "Web, desktop and mobile clients currently logged in to your account." : "A fiókodba jelenleg bejelentkezett web, asztali és mobil kliensek.", @@ -289,7 +304,6 @@ "Create new app password" : "Új alkalmazás jelszó létrehozása", "Use the credentials below to configure your app or device." : "Használja a lenti hitelesítő adatokat hogy beállítsa az alkalmazását vagy eszközét.", "For security reasons this password will only be shown once." : "Biztonsági okokból ez a jelszó csak egyszer jelenik meg.", - "Username" : "Felhasználónév", "Done" : "Kész", "Enabled apps" : "Engedélyezett alkalmazások", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL elavult %s verziót (%s) használ. Kérlek, frissítsd az operációs rendszert, vagy egyes funkciók (mint például a %s) megbízhatatlanul fognak működni.", @@ -314,16 +328,12 @@ "Password confirmation is required" : "Jelszó megerősítés szükséges", "Are you really sure you want add {domain} as trusted domain?" : "Biztos, hogy hozzá akarod adni ezt a megbízható domainekhez: {domain} ?", "Add trusted domain" : "Megbízható tartomány hozzáadása", - "All" : "Mind", "Update to %s" : "Frissítés erre: %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n alkalmazás frissítése függőben van","%n alkalmazás frissítése függőben van"], - "No apps found for your version" : "Nem található alkalmazás a verziód számára", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "A hivatalos alkalmazásokat a közösség fejleszti. Ezek adják a központi funkcionalitásokat és éles rendszerekben használhatóak.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "A jóváhagyott alkalmazásokat megbízható fejlesztők készítik, amik megfelelnek a felületes biztonsági ellenőrzésnek. Nyílt forráskódú tárolóban aktívan karbantartják és biztosítják a stabil használatot.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ez az alkalmazás még nincs biztonságilag ellenőrizve és vagy új, vagy ismert instabil. Telepítés csak saját felelősségre!", "Disabling app …" : "Alkalmazás tiltása...", "Error while disabling app" : "Hiba az alkalmazás letiltása közben", - "Disable" : "Letiltás", "Enabling app …" : "Alkalmazás engedélyezése ...", "Error while enabling app" : "Hiba az alkalmazás engedélyezése közben", "Error: Could not disable broken app" : "Hiba: a sérült alkalmazás nem volt letiltható", @@ -333,7 +343,6 @@ "Updated" : "Frissítve", "Removing …" : "Eltávolítás...", "Error while removing app" : "Hiba az alkalmazás eltávolításakor", - "Remove" : "Eltávolítás", "Approved" : "Jóváhagyott", "Experimental" : "Kísérleti", "No apps found for {query}" : "{query} keresésre nincs találat", @@ -390,16 +399,12 @@ "Theming" : "Témázás", "Check the security of your Nextcloud over our security scan" : "Ellenőrizze a Nextcloud biztonságát a biztonsági ellenőrzőnkkel ", "Hardening and security guidance" : "Megerősítési és biztonsági útmutató", - "View in store" : "Megtekintés a tárban", "This app has an update available." : "Frissítés érhető el az alkalmazáshoz.", "by %s" : "készítő: %s", "%s-licensed" : "%s-licencelt", "Documentation:" : "Dokumentációk:", - "Admin documentation" : "Rendszergazdai dokumentáció", - "Report a bug" : "Hiba bejelentése", "Show description …" : "Leírás megjelenítése ...", "Hide description …" : "Leírás elrejtése ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ennek az alkalmazásnak nincs maximum szükséges Nextcloud verziója megadva. Ez hiba lesz a jövőben.", "Enable only for specific groups" : "Csak bizonyos csoportok számára tegyük elérhetővé", "Online documentation" : "Online dokumentáció", "Getting help" : "Segítség kérés", @@ -423,8 +428,6 @@ "Subscribe to our newsletter!" : "Iratkozz fel a hírlevelünkre!", "Settings" : "Beállítások", "Show storage location" : "Háttértároló helyének mutatása", - "Show user backend" : "Felhasználói háttér mutatása", - "Show last login" : "Utolsó bejelentkezés megjelenítése", "Show email address" : "E-mail cím megjelenítése", "Send email to new user" : "E-mail küldése az új felhasználónak", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Amikor egy új felhasználónál üres marad a jelszó mező, akkor egy aktivációs levél kerül kiküldésre a felhasználónak, ahol beállíthatja a jelszavát.", @@ -436,9 +439,6 @@ "Disabled" : "Kikapcsolva", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Kérjük adja meg a tárolási kvótát (pl. \"512 MB\" vagy \"12 GB\")", "Other" : "Más", - "Quota" : "Kvóta", - "Storage location" : "A háttértár helye", - "Last login" : "Utolsó bejelentkezés", "change full name" : "a teljes név megváltoztatása", "set new password" : "új jelszó beállítása", "change email address" : "e-mail cím megváltoztatása", diff --git a/settings/l10n/hy.js b/settings/l10n/hy.js index 68c0d2acacc..9fcc2dabdbe 100644 --- a/settings/l10n/hy.js +++ b/settings/l10n/hy.js @@ -11,15 +11,15 @@ OC.L10N.register( "Good password" : "Լավ գաղտնաբառ", "Strong password" : "Ուժեղ գաղտնաբառ", "Groups" : "Խմբեր", + "New password" : "Նոր գաղտնաբառ", + "Username" : "Օգտանուն", + "Password" : "Գաղտնաբառ", "Email" : "Էլ. հասցե", "Language" : "Լեզու", "days" : "օր", "Cancel" : "Չեղարկել", "Help translate" : "Օգնել թարգմանել", - "Password" : "Գաղտնաբառ", - "New password" : "Նոր գաղտնաբառ", "Change password" : "Փոխել գաղտնաբառը", - "Username" : "Օգտանուն", "never" : "երբեք", "Other" : "Այլ" }, diff --git a/settings/l10n/hy.json b/settings/l10n/hy.json index e0c9d7efd1e..dcc307eaf51 100644 --- a/settings/l10n/hy.json +++ b/settings/l10n/hy.json @@ -9,15 +9,15 @@ "Good password" : "Լավ գաղտնաբառ", "Strong password" : "Ուժեղ գաղտնաբառ", "Groups" : "Խմբեր", + "New password" : "Նոր գաղտնաբառ", + "Username" : "Օգտանուն", + "Password" : "Գաղտնաբառ", "Email" : "Էլ. հասցե", "Language" : "Լեզու", "days" : "օր", "Cancel" : "Չեղարկել", "Help translate" : "Օգնել թարգմանել", - "Password" : "Գաղտնաբառ", - "New password" : "Նոր գաղտնաբառ", "Change password" : "Փոխել գաղտնաբառը", - "Username" : "Օգտանուն", "never" : "երբեք", "Other" : "Այլ" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/ia.js b/settings/l10n/ia.js index 7bfd50fa66c..1e1f884a204 100644 --- a/settings/l10n/ia.js +++ b/settings/l10n/ia.js @@ -60,11 +60,20 @@ OC.L10N.register( "Select a profile picture" : "Selectiona un pictura de profilo", "Groups" : "Gruppos", "Official" : "Official", + "Disable" : "Disactivar", + "All" : "Tote", "Visit website" : "Visitar sito web", + "Report a bug" : "Reportar un defecto", "User documentation" : "Documentation de usator", + "Admin documentation" : "Documentation de administrator", "Developer documentation" : "Documentation de disveloppator", + "No apps found for your version" : "Nulle application trovate pro tu version", "Enable" : "Activar", + "New password" : "Nove contrasigno", + "Username" : "Nomine de usator", + "Password" : "Contrasigno", "Email" : "E-posta", + "Quota" : "Quota", "Language" : "Lingua", "Unlimited" : "Ilimitate", "Default quota" : "Quota predefinite", @@ -128,16 +137,13 @@ OC.L10N.register( "Website" : "Sito web", "Twitter" : "Twitter", "Help translate" : "Adjuta a traducer", - "Password" : "Contrasigno", "Current password" : "Contrasigno actual", - "New password" : "Nove contrasigno", "Change password" : "Cambiar contrasigno", "Device" : "Dispositivo", "Last activity" : "Ultime activitate", "App name" : "Nomine del application", "Create new app password" : "Crear un nove contrasigno pro application", "Use the credentials below to configure your app or device." : "Usa le datos de authentication infra pro configurar tu application o dispositivo.", - "Username" : "Nomine de usator", "Done" : "Preste", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL usa %s in un version obsolete (%s). Per favor, actualisa tu systema operative, o functiones tal como %s non functionara fidedignemente.", "A problem occurred, please check your log files (Error: %s)" : "Un problema occurreva, per favor verifica tu files de registro (Error: %s)", @@ -157,12 +163,9 @@ OC.L10N.register( "Password confirmation is required" : "Un confirmation del contrasigno es necessari", "Are you really sure you want add {domain} as trusted domain?" : "Esque tu es secur que tu vole adder {domain} como dominio fiduciari?", "Add trusted domain" : "Adder dominio fiduciari", - "All" : "Tote", "Update to %s" : "Actualisar a %s", - "No apps found for your version" : "Nulle application trovate pro tu version", "Disabling app …" : "Disactivante application ...", "Error while disabling app" : "Error durante disactivation del application...", - "Disable" : "Disactivar", "Enabling app …" : "Activante application...", "Error while enabling app" : "Error durante activation del application...", "Updated" : "Actualisate", @@ -195,8 +198,6 @@ OC.L10N.register( "by %s" : "per %s", "%s-licensed" : "Licentiate como %s", "Documentation:" : "Documentation:", - "Admin documentation" : "Documentation de administrator", - "Report a bug" : "Reportar un defecto", "Show description …" : "Monstrar description...", "Hide description …" : "Celar description...", "Enable only for specific groups" : "Activar solmente a gruppos specific", @@ -212,7 +213,6 @@ OC.L10N.register( "Create" : "Crear", "Admin Recovery Password" : "Recuperation de Contrasigno del Administrator", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Per favor, scribe le quota de immagazinage (p.ex. \"512 MB\" o \"12 GB\")", - "Other" : "Altere", - "Quota" : "Quota" + "Other" : "Altere" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ia.json b/settings/l10n/ia.json index 0ad3183c535..417b28be658 100644 --- a/settings/l10n/ia.json +++ b/settings/l10n/ia.json @@ -58,11 +58,20 @@ "Select a profile picture" : "Selectiona un pictura de profilo", "Groups" : "Gruppos", "Official" : "Official", + "Disable" : "Disactivar", + "All" : "Tote", "Visit website" : "Visitar sito web", + "Report a bug" : "Reportar un defecto", "User documentation" : "Documentation de usator", + "Admin documentation" : "Documentation de administrator", "Developer documentation" : "Documentation de disveloppator", + "No apps found for your version" : "Nulle application trovate pro tu version", "Enable" : "Activar", + "New password" : "Nove contrasigno", + "Username" : "Nomine de usator", + "Password" : "Contrasigno", "Email" : "E-posta", + "Quota" : "Quota", "Language" : "Lingua", "Unlimited" : "Ilimitate", "Default quota" : "Quota predefinite", @@ -126,16 +135,13 @@ "Website" : "Sito web", "Twitter" : "Twitter", "Help translate" : "Adjuta a traducer", - "Password" : "Contrasigno", "Current password" : "Contrasigno actual", - "New password" : "Nove contrasigno", "Change password" : "Cambiar contrasigno", "Device" : "Dispositivo", "Last activity" : "Ultime activitate", "App name" : "Nomine del application", "Create new app password" : "Crear un nove contrasigno pro application", "Use the credentials below to configure your app or device." : "Usa le datos de authentication infra pro configurar tu application o dispositivo.", - "Username" : "Nomine de usator", "Done" : "Preste", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL usa %s in un version obsolete (%s). Per favor, actualisa tu systema operative, o functiones tal como %s non functionara fidedignemente.", "A problem occurred, please check your log files (Error: %s)" : "Un problema occurreva, per favor verifica tu files de registro (Error: %s)", @@ -155,12 +161,9 @@ "Password confirmation is required" : "Un confirmation del contrasigno es necessari", "Are you really sure you want add {domain} as trusted domain?" : "Esque tu es secur que tu vole adder {domain} como dominio fiduciari?", "Add trusted domain" : "Adder dominio fiduciari", - "All" : "Tote", "Update to %s" : "Actualisar a %s", - "No apps found for your version" : "Nulle application trovate pro tu version", "Disabling app …" : "Disactivante application ...", "Error while disabling app" : "Error durante disactivation del application...", - "Disable" : "Disactivar", "Enabling app …" : "Activante application...", "Error while enabling app" : "Error durante activation del application...", "Updated" : "Actualisate", @@ -193,8 +196,6 @@ "by %s" : "per %s", "%s-licensed" : "Licentiate como %s", "Documentation:" : "Documentation:", - "Admin documentation" : "Documentation de administrator", - "Report a bug" : "Reportar un defecto", "Show description …" : "Monstrar description...", "Hide description …" : "Celar description...", "Enable only for specific groups" : "Activar solmente a gruppos specific", @@ -210,7 +211,6 @@ "Create" : "Crear", "Admin Recovery Password" : "Recuperation de Contrasigno del Administrator", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Per favor, scribe le quota de immagazinage (p.ex. \"512 MB\" o \"12 GB\")", - "Other" : "Altere", - "Quota" : "Quota" + "Other" : "Altere" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/id.js b/settings/l10n/id.js index 679d5710cf1..e68f664d33e 100644 --- a/settings/l10n/id.js +++ b/settings/l10n/id.js @@ -72,24 +72,39 @@ OC.L10N.register( "Strong password" : "Kata sandi kuat", "Select a profile picture" : "Pilih foto profil", "Groups" : "Grup", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi resmi dikembangkan oleh dan didalam komunitas. Mereka menawarkan fungsi sentral dan siap untuk penggunaan produksi.", "Official" : "Resmi", + "Remove" : "Hapus", + "Disable" : "Nonaktifkan", + "All" : "Semua", "Visit website" : "Kunjungi laman web", + "Report a bug" : "Laporkan kerusakan", "User documentation" : "Dokumentasi pengguna", + "Admin documentation" : "Dokumentasi admin", "Developer documentation" : "Dokumentasi pengembang", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", + "No apps found for your version" : "Aplikasi tidak ditemukan untuk versi ini", "Enable" : "Aktifkan", "The app will be downloaded from the app store" : "Aplikasi akan diunduh melalui toko aplikasi", + "New password" : "Kata sandi baru", + "Username" : "Nama pengguna", + "Password" : "Kata sandi", "Email" : "Surel", "Group admin for" : "Grup admin untuk", + "Quota" : "Kuota", "Language" : "Bahasa", + "Storage location" : "Lokasi penyimpanan", "User backend" : "Backend pengguna", + "Last login" : "Log masuk terakhir", "Unlimited" : "Tak terbatas", "Default quota" : "Kuota standar", "Your apps" : "Aplikasi anda", "Disabled apps" : "Matikan Aplikasi", "Updates" : "Pembaruan", "App bundles" : "Kumpulan Apl", + "Show user backend" : "Tampilkan pengguna backend", "Admins" : "Admin", "Everyone" : "Semua orang", "Add group" : "Tambah grup", @@ -167,9 +182,7 @@ OC.L10N.register( "Your email address" : "Alamat surel Anda", "No email address set" : "Alamat surel tidak diatur", "Help translate" : "Bantu menerjemahkan", - "Password" : "Kata sandi", "Current password" : "Kata sandi saat ini", - "New password" : "Kata sandi baru", "Change password" : "Ubah kata sandi", "Web, desktop and mobile clients currently logged in to your account." : "Klien web, desktop dan mobile yang sedang login di akun Anda.", "Device" : "Perangkat", @@ -178,7 +191,6 @@ OC.L10N.register( "Create new app password" : "Buat kata sandi aplikasi baru", "Use the credentials below to configure your app or device." : "Gunakan kredensial berikut untuk mengkonfigurasi aplikasi atau perangkat.", "For security reasons this password will only be shown once." : "Untuk alasan keamanan kata sandi ini akan ditunjukkan hanya sekali.", - "Username" : "Nama pengguna", "Done" : "Selesai", "Enabled apps" : "Aktifkan Aplikasi", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL menggunakan versi lawas %s (%s). Silakan perbarui sistem operasi Anda atau fitur-fitur seperti %s tidak akan dapat bekerja dengan benar.", @@ -197,18 +209,13 @@ OC.L10N.register( "Unable to change mail address" : "Tidak dapat mengubah alamat surel", "Email saved" : "Surel disimpan", "Add trusted domain" : "Tambah domain terpercaya", - "All" : "Semua", "Update to %s" : "Perbarui ke %s", - "No apps found for your version" : "Aplikasi tidak ditemukan untuk versi ini", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi resmi dikembangkan oleh dan didalam komunitas. Mereka menawarkan fungsi sentral dan siap untuk penggunaan produksi.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikasi tersetujui dikembangkan oleh pengembang terpercaya dan telah lulus pemeriksaan keamanan. Mereka secara aktif dipelihara direpositori kode terbuka dan pemelihara sudah memastikan mereka stabil untuk penggunaan normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Apl ini belum diperiksa masalah keamanannya dan masih baru atau biasanya tidak stabil. Instal dengan resiko Anda sendiri.", "Error while disabling app" : "Terjadi kesalahan saat menonaktifkan aplikasi", - "Disable" : "Nonaktifkan", "Error while enabling app" : "Terjadi kesalahan saat mengakifkan aplikasi", "Error while disabling broken app" : "Terjadi kesalahan saat menonaktifkan aplikasi rusak", "Updated" : "Diperbarui", - "Remove" : "Hapus", "Approved" : "Disetujui", "Experimental" : "Uji Coba", "No apps found for {query}" : "Tidak ditemukan aplikasi untuk {query}", @@ -240,18 +247,14 @@ OC.L10N.register( "by %s" : "oleh %s", "%s-licensed" : "dilisensikan %s", "Documentation:" : "Dokumentasi:", - "Admin documentation" : "Dokumentasi admin", - "Report a bug" : "Laporkan kerusakan", "Show description …" : "Tampilkan deskripsi …", "Hide description …" : "Sembunyikan deskripsi …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu", "Online documentation" : "Dokumentasi online", "Commercial support" : "Dukungan komersial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Anda sedang menggunakan <strong>%s</strong> dari <strong>%s</strong>", "You are member of the following groups:" : "Anda adalah anggota dari grup berikut:", "Show storage location" : "Tampilkan kolasi penyimpanan", - "Show user backend" : "Tampilkan pengguna backend", "Show email address" : "Tampilkan alamat surel", "Send email to new user" : "Kirim surel kepada pengguna baru", "E-Mail" : "E-Mail", @@ -260,9 +263,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Masukkan kata sandi pemulihan untuk memulihkan berkas pengguna saat penggantian kata sandi", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")", "Other" : "Lainnya", - "Quota" : "Kuota", - "Storage location" : "Lokasi penyimpanan", - "Last login" : "Log masuk terakhir", "change full name" : "ubah nama lengkap", "set new password" : "setel kata sandi baru", "change email address" : "ubah alamat surel", diff --git a/settings/l10n/id.json b/settings/l10n/id.json index 7a17813ea41..8184b4c6a93 100644 --- a/settings/l10n/id.json +++ b/settings/l10n/id.json @@ -70,24 +70,39 @@ "Strong password" : "Kata sandi kuat", "Select a profile picture" : "Pilih foto profil", "Groups" : "Grup", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi resmi dikembangkan oleh dan didalam komunitas. Mereka menawarkan fungsi sentral dan siap untuk penggunaan produksi.", "Official" : "Resmi", + "Remove" : "Hapus", + "Disable" : "Nonaktifkan", + "All" : "Semua", "Visit website" : "Kunjungi laman web", + "Report a bug" : "Laporkan kerusakan", "User documentation" : "Dokumentasi pengguna", + "Admin documentation" : "Dokumentasi admin", "Developer documentation" : "Dokumentasi pengembang", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi minimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Apl ini tidak dapat diinstal karena ketergantungan berikut belum terpenuhi:", + "No apps found for your version" : "Aplikasi tidak ditemukan untuk versi ini", "Enable" : "Aktifkan", "The app will be downloaded from the app store" : "Aplikasi akan diunduh melalui toko aplikasi", + "New password" : "Kata sandi baru", + "Username" : "Nama pengguna", + "Password" : "Kata sandi", "Email" : "Surel", "Group admin for" : "Grup admin untuk", + "Quota" : "Kuota", "Language" : "Bahasa", + "Storage location" : "Lokasi penyimpanan", "User backend" : "Backend pengguna", + "Last login" : "Log masuk terakhir", "Unlimited" : "Tak terbatas", "Default quota" : "Kuota standar", "Your apps" : "Aplikasi anda", "Disabled apps" : "Matikan Aplikasi", "Updates" : "Pembaruan", "App bundles" : "Kumpulan Apl", + "Show user backend" : "Tampilkan pengguna backend", "Admins" : "Admin", "Everyone" : "Semua orang", "Add group" : "Tambah grup", @@ -165,9 +180,7 @@ "Your email address" : "Alamat surel Anda", "No email address set" : "Alamat surel tidak diatur", "Help translate" : "Bantu menerjemahkan", - "Password" : "Kata sandi", "Current password" : "Kata sandi saat ini", - "New password" : "Kata sandi baru", "Change password" : "Ubah kata sandi", "Web, desktop and mobile clients currently logged in to your account." : "Klien web, desktop dan mobile yang sedang login di akun Anda.", "Device" : "Perangkat", @@ -176,7 +189,6 @@ "Create new app password" : "Buat kata sandi aplikasi baru", "Use the credentials below to configure your app or device." : "Gunakan kredensial berikut untuk mengkonfigurasi aplikasi atau perangkat.", "For security reasons this password will only be shown once." : "Untuk alasan keamanan kata sandi ini akan ditunjukkan hanya sekali.", - "Username" : "Nama pengguna", "Done" : "Selesai", "Enabled apps" : "Aktifkan Aplikasi", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL menggunakan versi lawas %s (%s). Silakan perbarui sistem operasi Anda atau fitur-fitur seperti %s tidak akan dapat bekerja dengan benar.", @@ -195,18 +207,13 @@ "Unable to change mail address" : "Tidak dapat mengubah alamat surel", "Email saved" : "Surel disimpan", "Add trusted domain" : "Tambah domain terpercaya", - "All" : "Semua", "Update to %s" : "Perbarui ke %s", - "No apps found for your version" : "Aplikasi tidak ditemukan untuk versi ini", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikasi resmi dikembangkan oleh dan didalam komunitas. Mereka menawarkan fungsi sentral dan siap untuk penggunaan produksi.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikasi tersetujui dikembangkan oleh pengembang terpercaya dan telah lulus pemeriksaan keamanan. Mereka secara aktif dipelihara direpositori kode terbuka dan pemelihara sudah memastikan mereka stabil untuk penggunaan normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Apl ini belum diperiksa masalah keamanannya dan masih baru atau biasanya tidak stabil. Instal dengan resiko Anda sendiri.", "Error while disabling app" : "Terjadi kesalahan saat menonaktifkan aplikasi", - "Disable" : "Nonaktifkan", "Error while enabling app" : "Terjadi kesalahan saat mengakifkan aplikasi", "Error while disabling broken app" : "Terjadi kesalahan saat menonaktifkan aplikasi rusak", "Updated" : "Diperbarui", - "Remove" : "Hapus", "Approved" : "Disetujui", "Experimental" : "Uji Coba", "No apps found for {query}" : "Tidak ditemukan aplikasi untuk {query}", @@ -238,18 +245,14 @@ "by %s" : "oleh %s", "%s-licensed" : "dilisensikan %s", "Documentation:" : "Dokumentasi:", - "Admin documentation" : "Dokumentasi admin", - "Report a bug" : "Laporkan kerusakan", "Show description …" : "Tampilkan deskripsi …", "Hide description …" : "Sembunyikan deskripsi …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Aplikasi ini tidak mempunyai versi maksimum Nextcloud yang ditetapkan. Di masa depan nanti ini akan menjadi kesalahan.", "Enable only for specific groups" : "Aktifkan hanya untuk grup tertentu", "Online documentation" : "Dokumentasi online", "Commercial support" : "Dukungan komersial", "You are using <strong>%s</strong> of <strong>%s</strong>" : "Anda sedang menggunakan <strong>%s</strong> dari <strong>%s</strong>", "You are member of the following groups:" : "Anda adalah anggota dari grup berikut:", "Show storage location" : "Tampilkan kolasi penyimpanan", - "Show user backend" : "Tampilkan pengguna backend", "Show email address" : "Tampilkan alamat surel", "Send email to new user" : "Kirim surel kepada pengguna baru", "E-Mail" : "E-Mail", @@ -258,9 +261,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Masukkan kata sandi pemulihan untuk memulihkan berkas pengguna saat penggantian kata sandi", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Silakan masukkan jumlah penyimpanan (contoh: \"512 MB\" atau \"12 GB\")", "Other" : "Lainnya", - "Quota" : "Kuota", - "Storage location" : "Lokasi penyimpanan", - "Last login" : "Log masuk terakhir", "change full name" : "ubah nama lengkap", "set new password" : "setel kata sandi baru", "change email address" : "ubah alamat surel", diff --git a/settings/l10n/is.js b/settings/l10n/is.js index 08f39bcfa1d..8ab75d2e912 100644 --- a/settings/l10n/is.js +++ b/settings/l10n/is.js @@ -115,47 +115,60 @@ OC.L10N.register( "Enforce two-factor authentication" : "Þvinga fram tveggja-þrepa auðkenningu", "Limit to groups" : "Takmarka við hópa", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Tveggja-þrepa auðkenning er ekki þvinguð fram\tfyrir meðlimi eftirfarandi hópa.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Opinber forrit eru þróuð af og innan samfélagsins. Þau bjóða upp á ýmsa kjarnaeiginleika og eru tilbúin til notkunar í raunvinnslu.", "Official" : "Opinbert", + "Remove" : "Fjarlægja", + "Disable" : "Gera óvirkt", + "All" : "Allt", "No results" : "Engar niðurstöður", + "View in store" : "Skoða í hugbúnaðarsafni", "Visit website" : "Heimsækja vefsvæðið", + "Report a bug" : "Tilkynna um villu", "User documentation" : "Hjálparskjöl notenda", + "Admin documentation" : "Hjálparskjöl kerfisstjóra", "Developer documentation" : "Skjölun fyrir þróunaraðila", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", - "{license}-licensed" : "{license}-notkunarleyfi", + "No apps found for your version" : "Engin forrit fundust fyrir útgáfuna þína", "Disable all" : "Gera allt óvirkt", "Enable all" : "Virkja allt", "Download and enable" : "Sækja og virkja", "Enable" : "Virkja", "The app will be downloaded from the app store" : "Forritinu verður hlaðið niður úr forritabúðinni", "You do not have permissions to see the details of this user" : "Þú hefur ekki réttindi til að skoða ítarupplýsingar um þennan notanda", + "New password" : "Nýtt lykilorð", "Delete user" : "Eyða notanda", "Disable user" : "Gera notanda óvirkan", "Enable user" : "Virkja notanda", "Resend welcome email" : "Endursenda kveðjupóst", "{size} used" : "{size} notað", "Welcome mail sent!" : "Kveðjupóstur sendur!", + "Username" : "Notandanafn", "Display name" : "Birtingarnafn", + "Password" : "Lykilorð", "Email" : "Netfang", "Group admin for" : "Hópstjóri fyrir", + "Quota" : "Kvóti", "Language" : "Tungumál", + "Storage location" : "Staðsetning gagnageymslu", "User backend" : "Bakendi notanda", + "Last login" : "Síðasta innskráning", + "Default language" : "Sjálfgefið tungumál", "Unlimited" : "ótakmörkuðu", "Default quota" : "Sjálfgefinn kvóti", - "Default language" : "Sjálfgefið tungumál", "Password change is disabled because the master key is disabled" : "Lykilorðabreyting er óvirk vegna þess að aðallykill er óvirkur", "Common languages" : "Algeng tungumál", "All languages" : "Öll tungumál", - "An error occured during the request. Unable to proceed." : "Villa kom upp við beiðnina. Get ekki haldið áfram.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", - "App update" : "Endurnýjun forrits", - "Error: This app can not be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan.", "Your apps" : "Forritin þín", "Active apps" : "Virk forrit", "Disabled apps" : "Óvirk forrit", "Updates" : "Uppfærslur", "App bundles" : "Forritavöndlar", + "{license}-licensed" : "{license}-notkunarleyfi", "Default quota:" : "Sjálfgefinn kvóti:", + "Show last login" : "Birta síðustu innskráningu", + "Show user backend" : "Birta bakenda notanda", "You are about to remove the group {group}. The users will NOT be deleted." : "Þú er í þann mund að fara að fjarlægja hópinn {group}. Notendunum verður EKKI eytt.", "Please confirm the group removal " : "Staðfestu fjarlægingu hópsins", "Remove group" : "Fjarlægja hóp", @@ -164,6 +177,10 @@ OC.L10N.register( "Everyone" : "Allir", "Add group" : "Bæta við hópi", "New user" : "Nýr notandi", + "An error occured during the request. Unable to proceed." : "Villa kom upp við beiðnina. Get ekki haldið áfram.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", + "App update" : "Endurnýjun forrits", + "Error: This app can not be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan.", "SSL Root Certificates" : "SSL-rótarskilríki", "Common Name" : "Almennt heiti", "Valid until" : "Gildir til", @@ -288,9 +305,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter notandanafn @…", "Help translate" : "Hjálpa við þýðingu", "Locale" : "Staðfærsla", - "Password" : "Lykilorð", "Current password" : "Núverandi lykilorð", - "New password" : "Nýtt lykilorð", "Change password" : "Breyta lykilorði", "Devices & sessions" : "Tæki og setur", "Web, desktop and mobile clients currently logged in to your account." : "Veftól, tölvur og símar sem núna eru skráð inn á aðganginn þinn.", @@ -300,7 +315,6 @@ OC.L10N.register( "Create new app password" : "Búa til nýtt lykilorð forrits", "Use the credentials below to configure your app or device." : "Notaðu auðkennin hér fyrir neðan til að stilla forritið eða tækið.", "For security reasons this password will only be shown once." : "Af öryggisástæðum er þetta lykilorð einungis birt einu sinni.", - "Username" : "Notandanafn", "Done" : "Lokið", "Enabled apps" : "Virk forrit", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL er að nota úrelda útgáfu af %s (%s). Uppfærðu stýrikerfið þitt, annars er hætt við að eiginleikar á borð við %s virki ekki sem skyldi.", @@ -325,16 +339,12 @@ OC.L10N.register( "Password confirmation is required" : "Þörf á staðfestingu lykilorðs", "Are you really sure you want add {domain} as trusted domain?" : "Ertu viss um að þú viljir bæta \"{domain}\" við sem treystu léni?", "Add trusted domain" : "Bæta við treystu léni", - "All" : "Allt", "Update to %s" : "Uppfæra í %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Það er %n forritsuppfærsla í bið","Það eru %n forritauppfærslur í bið"], - "No apps found for your version" : "Engin forrit fundust fyrir útgáfuna þína", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Opinber forrit eru þróuð af og innan samfélagsins. Þau bjóða upp á ýmsa kjarnaeiginleika og eru tilbúin til notkunar í raunvinnslu.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Samþykkt forrit eru þróuð af treystum forriturum og hafa gengist undir lauslegar öryggisprófanir. Þau eru í virku viðhaldi í opnum hugbúnaðarsöfnum og umsjónarmenn þeirra dæma þau nógu stöðug til notkunar í allri venjulegri vinnslu.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Þetta forrit hefur ekki verið öryggisprófað, er nýtt erða þekkt fyrir ótöðugleika við vissar aðstæður. Uppsetning er á þína ábyrgð.", "Disabling app …" : "Geri forrit óvirkt …", "Error while disabling app" : "Villa við að afvirkja forrit", - "Disable" : "Gera óvirkt", "Enabling app …" : "Virkja forrit …", "Error while enabling app" : "Villa við að virkja forrit", "Error: Could not disable broken app" : "Villa: gat ekki gert bilaða forritið óvirkt", @@ -344,7 +354,6 @@ OC.L10N.register( "Updated" : "Uppfært", "Removing …" : "Fjarlægi ...", "Error while removing app" : "Villa við að fjarlægja forrit", - "Remove" : "Fjarlægja", "Approved" : "Samþykkt", "Experimental" : "Á tilraunastigi", "No apps found for {query}" : "Engin forrit fundust fyrir \"{query}", @@ -401,16 +410,12 @@ OC.L10N.register( "Theming" : "Þemu", "Check the security of your Nextcloud over our security scan" : "Athugaðu öryggi Nextcloud-skýsins með öryggisskönnun okkar", "Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar", - "View in store" : "Skoða í hugbúnaðarsafni", "This app has an update available." : "Uppfærsla er tiltæk fyrir þetta forrit.", "by %s" : "frá %s", "%s-licensed" : "%s-notkunarleyfi", "Documentation:" : "Hjálparskjöl:", - "Admin documentation" : "Hjálparskjöl kerfisstjóra", - "Report a bug" : "Tilkynna um villu", "Show description …" : "Birta lýsingu …", "Hide description …" : "Fela lýsingu …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "Enable only for specific groups" : "Einungis fyrir sérstaka hópa", "Online documentation" : "Handbækur/skjölun á netinu", "Getting help" : "Til að fá hjálp", @@ -434,8 +439,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Gerstu áskrifandi að fréttabréfinu okkar!", "Settings" : "Stillingar", "Show storage location" : "Birta staðsetningu gagnageymslu", - "Show user backend" : "Birta bakenda notanda", - "Show last login" : "Birta síðustu innskráningu", "Show email address" : "Birta tölvupóstfang", "Send email to new user" : "Senda tölvupóst til nýs notanda", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Þegar lykilorð nýs notanda er skilið eftir autt, mun honum verða sendur tölvupóstur með tengli til að virkja aðganginn sinn.", @@ -447,9 +450,6 @@ OC.L10N.register( "Disabled" : "Óvirkt", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Settu inn geymslukvóta (t.d.: \"512 MB\" eða \"12 GB\")", "Other" : "Annað", - "Quota" : "Kvóti", - "Storage location" : "Staðsetning gagnageymslu", - "Last login" : "Síðasta innskráning", "change full name" : "breyta fullu nafni", "set new password" : "setja nýtt lykilorð", "change email address" : "breyta tölvupóstfangi", diff --git a/settings/l10n/is.json b/settings/l10n/is.json index 660069f5bd9..7baed526842 100644 --- a/settings/l10n/is.json +++ b/settings/l10n/is.json @@ -113,47 +113,60 @@ "Enforce two-factor authentication" : "Þvinga fram tveggja-þrepa auðkenningu", "Limit to groups" : "Takmarka við hópa", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Tveggja-þrepa auðkenning er ekki þvinguð fram\tfyrir meðlimi eftirfarandi hópa.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Opinber forrit eru þróuð af og innan samfélagsins. Þau bjóða upp á ýmsa kjarnaeiginleika og eru tilbúin til notkunar í raunvinnslu.", "Official" : "Opinbert", + "Remove" : "Fjarlægja", + "Disable" : "Gera óvirkt", + "All" : "Allt", "No results" : "Engar niðurstöður", + "View in store" : "Skoða í hugbúnaðarsafni", "Visit website" : "Heimsækja vefsvæðið", + "Report a bug" : "Tilkynna um villu", "User documentation" : "Hjálparskjöl notenda", + "Admin documentation" : "Hjálparskjöl kerfisstjóra", "Developer documentation" : "Skjölun fyrir þróunaraðila", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina lágmarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ekki var hægt að setja upp forritið þar sem eftirfarandi kerfiskröfur eru ekki uppfylltar:", - "{license}-licensed" : "{license}-notkunarleyfi", + "No apps found for your version" : "Engin forrit fundust fyrir útgáfuna þína", "Disable all" : "Gera allt óvirkt", "Enable all" : "Virkja allt", "Download and enable" : "Sækja og virkja", "Enable" : "Virkja", "The app will be downloaded from the app store" : "Forritinu verður hlaðið niður úr forritabúðinni", "You do not have permissions to see the details of this user" : "Þú hefur ekki réttindi til að skoða ítarupplýsingar um þennan notanda", + "New password" : "Nýtt lykilorð", "Delete user" : "Eyða notanda", "Disable user" : "Gera notanda óvirkan", "Enable user" : "Virkja notanda", "Resend welcome email" : "Endursenda kveðjupóst", "{size} used" : "{size} notað", "Welcome mail sent!" : "Kveðjupóstur sendur!", + "Username" : "Notandanafn", "Display name" : "Birtingarnafn", + "Password" : "Lykilorð", "Email" : "Netfang", "Group admin for" : "Hópstjóri fyrir", + "Quota" : "Kvóti", "Language" : "Tungumál", + "Storage location" : "Staðsetning gagnageymslu", "User backend" : "Bakendi notanda", + "Last login" : "Síðasta innskráning", + "Default language" : "Sjálfgefið tungumál", "Unlimited" : "ótakmörkuðu", "Default quota" : "Sjálfgefinn kvóti", - "Default language" : "Sjálfgefið tungumál", "Password change is disabled because the master key is disabled" : "Lykilorðabreyting er óvirk vegna þess að aðallykill er óvirkur", "Common languages" : "Algeng tungumál", "All languages" : "Öll tungumál", - "An error occured during the request. Unable to proceed." : "Villa kom upp við beiðnina. Get ekki haldið áfram.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", - "App update" : "Endurnýjun forrits", - "Error: This app can not be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan.", "Your apps" : "Forritin þín", "Active apps" : "Virk forrit", "Disabled apps" : "Óvirk forrit", "Updates" : "Uppfærslur", "App bundles" : "Forritavöndlar", + "{license}-licensed" : "{license}-notkunarleyfi", "Default quota:" : "Sjálfgefinn kvóti:", + "Show last login" : "Birta síðustu innskráningu", + "Show user backend" : "Birta bakenda notanda", "You are about to remove the group {group}. The users will NOT be deleted." : "Þú er í þann mund að fara að fjarlægja hópinn {group}. Notendunum verður EKKI eytt.", "Please confirm the group removal " : "Staðfestu fjarlægingu hópsins", "Remove group" : "Fjarlægja hóp", @@ -162,6 +175,10 @@ "Everyone" : "Allir", "Add group" : "Bæta við hópi", "New user" : "Nýr notandi", + "An error occured during the request. Unable to proceed." : "Villa kom upp við beiðnina. Get ekki haldið áfram.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Forritið hefur verið virkjað, en það þarf að uppfæra það. Þú verður áframsendur á uppfærslusíðuna eftir 5 sekúndur.", + "App update" : "Endurnýjun forrits", + "Error: This app can not be enabled because it makes the server unstable" : "Villa: ekki er hægt að virkja þetta forrit því það gerir þjóninn óstöðugan.", "SSL Root Certificates" : "SSL-rótarskilríki", "Common Name" : "Almennt heiti", "Valid until" : "Gildir til", @@ -286,9 +303,7 @@ "Twitter handle @…" : "Twitter notandanafn @…", "Help translate" : "Hjálpa við þýðingu", "Locale" : "Staðfærsla", - "Password" : "Lykilorð", "Current password" : "Núverandi lykilorð", - "New password" : "Nýtt lykilorð", "Change password" : "Breyta lykilorði", "Devices & sessions" : "Tæki og setur", "Web, desktop and mobile clients currently logged in to your account." : "Veftól, tölvur og símar sem núna eru skráð inn á aðganginn þinn.", @@ -298,7 +313,6 @@ "Create new app password" : "Búa til nýtt lykilorð forrits", "Use the credentials below to configure your app or device." : "Notaðu auðkennin hér fyrir neðan til að stilla forritið eða tækið.", "For security reasons this password will only be shown once." : "Af öryggisástæðum er þetta lykilorð einungis birt einu sinni.", - "Username" : "Notandanafn", "Done" : "Lokið", "Enabled apps" : "Virk forrit", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL er að nota úrelda útgáfu af %s (%s). Uppfærðu stýrikerfið þitt, annars er hætt við að eiginleikar á borð við %s virki ekki sem skyldi.", @@ -323,16 +337,12 @@ "Password confirmation is required" : "Þörf á staðfestingu lykilorðs", "Are you really sure you want add {domain} as trusted domain?" : "Ertu viss um að þú viljir bæta \"{domain}\" við sem treystu léni?", "Add trusted domain" : "Bæta við treystu léni", - "All" : "Allt", "Update to %s" : "Uppfæra í %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Það er %n forritsuppfærsla í bið","Það eru %n forritauppfærslur í bið"], - "No apps found for your version" : "Engin forrit fundust fyrir útgáfuna þína", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Opinber forrit eru þróuð af og innan samfélagsins. Þau bjóða upp á ýmsa kjarnaeiginleika og eru tilbúin til notkunar í raunvinnslu.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Samþykkt forrit eru þróuð af treystum forriturum og hafa gengist undir lauslegar öryggisprófanir. Þau eru í virku viðhaldi í opnum hugbúnaðarsöfnum og umsjónarmenn þeirra dæma þau nógu stöðug til notkunar í allri venjulegri vinnslu.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Þetta forrit hefur ekki verið öryggisprófað, er nýtt erða þekkt fyrir ótöðugleika við vissar aðstæður. Uppsetning er á þína ábyrgð.", "Disabling app …" : "Geri forrit óvirkt …", "Error while disabling app" : "Villa við að afvirkja forrit", - "Disable" : "Gera óvirkt", "Enabling app …" : "Virkja forrit …", "Error while enabling app" : "Villa við að virkja forrit", "Error: Could not disable broken app" : "Villa: gat ekki gert bilaða forritið óvirkt", @@ -342,7 +352,6 @@ "Updated" : "Uppfært", "Removing …" : "Fjarlægi ...", "Error while removing app" : "Villa við að fjarlægja forrit", - "Remove" : "Fjarlægja", "Approved" : "Samþykkt", "Experimental" : "Á tilraunastigi", "No apps found for {query}" : "Engin forrit fundust fyrir \"{query}", @@ -399,16 +408,12 @@ "Theming" : "Þemu", "Check the security of your Nextcloud over our security scan" : "Athugaðu öryggi Nextcloud-skýsins með öryggisskönnun okkar", "Hardening and security guidance" : "Brynjun og öryggisleiðbeiningar", - "View in store" : "Skoða í hugbúnaðarsafni", "This app has an update available." : "Uppfærsla er tiltæk fyrir þetta forrit.", "by %s" : "frá %s", "%s-licensed" : "%s-notkunarleyfi", "Documentation:" : "Hjálparskjöl:", - "Admin documentation" : "Hjálparskjöl kerfisstjóra", - "Report a bug" : "Tilkynna um villu", "Show description …" : "Birta lýsingu …", "Hide description …" : "Fela lýsingu …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Þetta vorrit er ekki með tiltekna neina hámarksútgáfu Nextcloud. Þetta mun gefa villu í framtíðinni.", "Enable only for specific groups" : "Einungis fyrir sérstaka hópa", "Online documentation" : "Handbækur/skjölun á netinu", "Getting help" : "Til að fá hjálp", @@ -432,8 +437,6 @@ "Subscribe to our newsletter!" : "Gerstu áskrifandi að fréttabréfinu okkar!", "Settings" : "Stillingar", "Show storage location" : "Birta staðsetningu gagnageymslu", - "Show user backend" : "Birta bakenda notanda", - "Show last login" : "Birta síðustu innskráningu", "Show email address" : "Birta tölvupóstfang", "Send email to new user" : "Senda tölvupóst til nýs notanda", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Þegar lykilorð nýs notanda er skilið eftir autt, mun honum verða sendur tölvupóstur með tengli til að virkja aðganginn sinn.", @@ -445,9 +448,6 @@ "Disabled" : "Óvirkt", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Settu inn geymslukvóta (t.d.: \"512 MB\" eða \"12 GB\")", "Other" : "Annað", - "Quota" : "Kvóti", - "Storage location" : "Staðsetning gagnageymslu", - "Last login" : "Síðasta innskráning", "change full name" : "breyta fullu nafni", "set new password" : "setja nýtt lykilorð", "change email address" : "breyta tölvupóstfangi", diff --git a/settings/l10n/it.js b/settings/l10n/it.js index e6bb6f21dbe..5b77dab1fdf 100644 --- a/settings/l10n/it.js +++ b/settings/l10n/it.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "L'autenticazione a due fattori può essere imposta per tutti gli\tutenti e gruppi specifici. Se non hanno un fornitore a due fattori configurato, non saranno in grado di accedere al sistema.", "Enforce two-factor authentication" : "Applica l'autenticazione a due fattori", "Limit to groups" : "Limita a gruppi", + "Enforcement of two-factor authentication can be set for certain groups only." : "L'applicazione dell'autenticazione a due fattori può essere impostata solo per determinati gruppi.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "L'autenticazione a due fattori è applicata per tutti\ti membri dei gruppi seguenti.", + "Enforced groups" : "Gruppi imposti", "Two-factor authentication is not enforced for\tmembers of the following groups." : "L'autenticazione a due fattori non è applicata per\ti membri dei gruppi seguenti.", + "Excluded groups" : "Gruppi esclusi", + "Save changes" : "Salva le modifiche", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni ufficiali sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", "Official" : "Ufficiale", + "by" : "di", + "Update to {version}" : "Aggiorna a {version}", + "Remove" : "Rimuovi", + "Disable" : "Disabilita", + "All" : "Tutti", + "Limit app usage to groups" : "Limita l'utilizzo dell'applicazione a gruppi", "No results" : "Nessun risultato", + "View in store" : "Visualizza nell'archivio", "Visit website" : "Visita il sito web", + "Report a bug" : "Segnala un bug", "User documentation" : "Documentazione utente", + "Admin documentation" : "Documentazione di amministrazione", "Developer documentation" : "Documentazione dello sviluppatore", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", - "{license}-licensed" : "sotto licenza {license}", + "Update to {update}" : "Aggiorna a {update}", + "Results from other categories" : "Risultati da altre categorie", + "No apps found for your version" : "Nessuna applicazione trovata per la tua versione", "Disable all" : "Disabilita tutto", "Enable all" : "Abilita tutto", "Download and enable" : "Scarica e abilita", "Enable" : "Abilita", "The app will be downloaded from the app store" : "L'applicazione sarà scaricata dallo store delle applicazioni", "You do not have permissions to see the details of this user" : "Non hai i permessi per vedere i dettagli di questo utente", + "The backend does not support changing the display name" : "Il motore non supporta la modifica del nome visualizzato", + "New password" : "Nuova password", + "Add user in group" : "Aggiungi utente a gruppo", + "Set user as admin for" : "Imposta utente come amministratore per", + "Select user quota" : "Seleziona quota utente", + "No language set" : "Nessuna lingua impostata", + "Never" : "Mai", "Delete user" : "Elimina utente", "Disable user" : "Disabilita utente", "Enable user" : "Abilita utente", "Resend welcome email" : "Invia nuovamente email di benvenuto", "{size} used" : "{size} utilizzati", "Welcome mail sent!" : "Email di benvenuto inviata!", + "Username" : "Nome utente", "Display name" : "Nome visualizzato", + "Password" : "Password", "Email" : "Posta elettronica", "Group admin for" : "Amministratore per il gruppo", + "Quota" : "Quote", "Language" : "Lingua", + "Storage location" : "Posizione di archiviazione", "User backend" : "Motore utente", + "Last login" : "Ultimo accesso", + "Default language" : "Lingua predefinita", + "Add a new user" : "Aggiungi un nuovo utente", + "No users in here" : "Non ci sono utenti qui", "Unlimited" : "Illimitata", "Default quota" : "Quota predefinita", - "Default language" : "Lingua predefinita", "Password change is disabled because the master key is disabled" : "La modifica della password è disabilitata poiché la chiave principale è disabilitata", "Common languages" : "Lingue comuni", "All languages" : "Tutte le lingue", - "An error occured during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare..", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", - "App update" : "Aggiornamento applicazione", - "Error: This app can not be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile", "Your apps" : "Le tue applicazioni", "Active apps" : "Applicazioni attive", "Disabled apps" : "Applicazioni disabilitate", "Updates" : "Aggiornamenti", "App bundles" : "Pacchetti di applicazioni", + "{license}-licensed" : "sotto licenza {license}", "Default quota:" : "Quota predefinita:", + "Select default quota" : "Seleziona la quota predefinita", + "Show Languages" : "Mostra lingue", + "Show last login" : "Mostra ultimo accesso", + "Show user backend" : "Mostra il motore utente", + "Show storage path" : "Mostra percorso di archiviazione", "You are about to remove the group {group}. The users will NOT be deleted." : "Stai per rimuovere il gruppo {group}. Gli utenti NON saranno eliminati.", "Please confirm the group removal " : "Conferma la rimozione del gruppo", "Remove group" : "Rimuovi gruppo", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Chiunque", "Add group" : "Aggiungi gruppo", "New user" : "Nuovo utente", + "An error occured during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare..", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", + "App update" : "Aggiornamento applicazione", + "Error: This app can not be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile", "SSL Root Certificates" : "Certificati radice SSL", "Common Name" : "Nome comune", "Valid until" : "Valido fino al", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Nome utente Twitter @...", "Help translate" : "Migliora la traduzione", "Locale" : "Localizzazione", - "Password" : "Password", "Current password" : "Password attuale", - "New password" : "Nuova password", "Change password" : "Modifica password", "Devices & sessions" : "Dispositivi e sessioni", "Web, desktop and mobile clients currently logged in to your account." : "Client web, desktop e mobile attualmente connessi al tuo account.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Crea nuova password di applicazione", "Use the credentials below to configure your app or device." : "Utilizza le credenziali in basso per configurare la tua applicazione o dispositivo.", "For security reasons this password will only be shown once." : "Per motivi di sicurezza questa password sarà mostra solo una volta.", - "Username" : "Nome utente", "Done" : "Completato", "Enabled apps" : "Applicazioni abilitate", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilizza una versione %s datata (%s). Aggiorna il tuo sistema operativo o funzionalità come %s non funzioneranno correttamente.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "La conferma della password è richiesta", "Are you really sure you want add {domain} as trusted domain?" : "Sei davvero sicuro di voler aggiungere {domain} come dominio attendibile?", "Add trusted domain" : "Aggiungi dominio attendibile", - "All" : "Tutti", "Update to %s" : "Aggiorna a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Hai %n aggiornamento di applicazione in corso","Hai %n aggiornamenti di applicazione in corso"], - "No apps found for your version" : "Nessuna applicazione trovata per la tua versione", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni ufficiali sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.", "Disabling app …" : "Disabilitazione applicazione...", "Error while disabling app" : "Errore durante la disattivazione", - "Disable" : "Disabilita", "Enabling app …" : "Abilitazione applicazione...", "Error while enabling app" : "Errore durante l'attivazione", "Error: Could not disable broken app" : "Errore: impossibile disabilitare l'applicazione danneggiata", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Aggiornato", "Removing …" : "Rimozione in corso...", "Error while removing app" : "Errore durante la rimozione dell'applicazione", - "Remove" : "Rimuovi", "Approved" : "Approvata", "Experimental" : "Sperimentale", "No apps found for {query}" : "Nessuna applicazione trovata per {query}", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Temi", "Check the security of your Nextcloud over our security scan" : "Controlla la sicurezza del tuo Nextcloud con la nostra scansione di sicurezza", "Hardening and security guidance" : "Guida alla messa in sicurezza", - "View in store" : "Visualizza nell'archivio", "This app has an update available." : "Un aggiornamento di questa applicazione è disponibile.", "by %s" : "di %s", "%s-licensed" : "sotto licenza %s", "Documentation:" : "Documentazione:", - "Admin documentation" : "Documentazione di amministrazione", - "Report a bug" : "Segnala un bug", "Show description …" : "Mostra descrizione...", "Hide description …" : "Nascondi descrizione...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "Enable only for specific groups" : "Abilita solo per gruppi specifici", "Online documentation" : "Documentazione in linea", "Getting help" : "Ottenere aiuto", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Iscriviti alla nostra newsletter!", "Settings" : "Impostazioni", "Show storage location" : "Mostra posizione di archiviazione", - "Show user backend" : "Mostra il motore utente", - "Show last login" : "Mostra ultimo accesso", "Show email address" : "Mostra l'indirizzo email", "Send email to new user" : "Invia email al nuovo utente", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quando la password del nuovo utente è lasciata vuota, un'email di attivazione con un collegamento per impostare la password è inviata all'utente.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Disabilitati", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Digita la quota di archiviazione (ad es.: \"512 MB\" o \"12 GB\")", "Other" : "Altro", - "Quota" : "Quote", - "Storage location" : "Posizione di archiviazione", - "Last login" : "Ultimo accesso", "change full name" : "modica nome completo", "set new password" : "imposta una nuova password", "change email address" : "cambia l'indirizzo email", diff --git a/settings/l10n/it.json b/settings/l10n/it.json index a16975d206a..5d83a1eed9b 100644 --- a/settings/l10n/it.json +++ b/settings/l10n/it.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "L'autenticazione a due fattori può essere imposta per tutti gli\tutenti e gruppi specifici. Se non hanno un fornitore a due fattori configurato, non saranno in grado di accedere al sistema.", "Enforce two-factor authentication" : "Applica l'autenticazione a due fattori", "Limit to groups" : "Limita a gruppi", + "Enforcement of two-factor authentication can be set for certain groups only." : "L'applicazione dell'autenticazione a due fattori può essere impostata solo per determinati gruppi.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "L'autenticazione a due fattori è applicata per tutti\ti membri dei gruppi seguenti.", + "Enforced groups" : "Gruppi imposti", "Two-factor authentication is not enforced for\tmembers of the following groups." : "L'autenticazione a due fattori non è applicata per\ti membri dei gruppi seguenti.", + "Excluded groups" : "Gruppi esclusi", + "Save changes" : "Salva le modifiche", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni ufficiali sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", "Official" : "Ufficiale", + "by" : "di", + "Update to {version}" : "Aggiorna a {version}", + "Remove" : "Rimuovi", + "Disable" : "Disabilita", + "All" : "Tutti", + "Limit app usage to groups" : "Limita l'utilizzo dell'applicazione a gruppi", "No results" : "Nessun risultato", + "View in store" : "Visualizza nell'archivio", "Visit website" : "Visita il sito web", + "Report a bug" : "Segnala un bug", "User documentation" : "Documentazione utente", + "Admin documentation" : "Documentazione di amministrazione", "Developer documentation" : "Documentazione dello sviluppatore", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione minima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Questa applicazione non può essere installata perché le seguenti dipendenze non sono soddisfatte:", - "{license}-licensed" : "sotto licenza {license}", + "Update to {update}" : "Aggiorna a {update}", + "Results from other categories" : "Risultati da altre categorie", + "No apps found for your version" : "Nessuna applicazione trovata per la tua versione", "Disable all" : "Disabilita tutto", "Enable all" : "Abilita tutto", "Download and enable" : "Scarica e abilita", "Enable" : "Abilita", "The app will be downloaded from the app store" : "L'applicazione sarà scaricata dallo store delle applicazioni", "You do not have permissions to see the details of this user" : "Non hai i permessi per vedere i dettagli di questo utente", + "The backend does not support changing the display name" : "Il motore non supporta la modifica del nome visualizzato", + "New password" : "Nuova password", + "Add user in group" : "Aggiungi utente a gruppo", + "Set user as admin for" : "Imposta utente come amministratore per", + "Select user quota" : "Seleziona quota utente", + "No language set" : "Nessuna lingua impostata", + "Never" : "Mai", "Delete user" : "Elimina utente", "Disable user" : "Disabilita utente", "Enable user" : "Abilita utente", "Resend welcome email" : "Invia nuovamente email di benvenuto", "{size} used" : "{size} utilizzati", "Welcome mail sent!" : "Email di benvenuto inviata!", + "Username" : "Nome utente", "Display name" : "Nome visualizzato", + "Password" : "Password", "Email" : "Posta elettronica", "Group admin for" : "Amministratore per il gruppo", + "Quota" : "Quote", "Language" : "Lingua", + "Storage location" : "Posizione di archiviazione", "User backend" : "Motore utente", + "Last login" : "Ultimo accesso", + "Default language" : "Lingua predefinita", + "Add a new user" : "Aggiungi un nuovo utente", + "No users in here" : "Non ci sono utenti qui", "Unlimited" : "Illimitata", "Default quota" : "Quota predefinita", - "Default language" : "Lingua predefinita", "Password change is disabled because the master key is disabled" : "La modifica della password è disabilitata poiché la chiave principale è disabilitata", "Common languages" : "Lingue comuni", "All languages" : "Tutte le lingue", - "An error occured during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare..", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", - "App update" : "Aggiornamento applicazione", - "Error: This app can not be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile", "Your apps" : "Le tue applicazioni", "Active apps" : "Applicazioni attive", "Disabled apps" : "Applicazioni disabilitate", "Updates" : "Aggiornamenti", "App bundles" : "Pacchetti di applicazioni", + "{license}-licensed" : "sotto licenza {license}", "Default quota:" : "Quota predefinita:", + "Select default quota" : "Seleziona la quota predefinita", + "Show Languages" : "Mostra lingue", + "Show last login" : "Mostra ultimo accesso", + "Show user backend" : "Mostra il motore utente", + "Show storage path" : "Mostra percorso di archiviazione", "You are about to remove the group {group}. The users will NOT be deleted." : "Stai per rimuovere il gruppo {group}. Gli utenti NON saranno eliminati.", "Please confirm the group removal " : "Conferma la rimozione del gruppo", "Remove group" : "Rimuovi gruppo", @@ -162,6 +196,10 @@ "Everyone" : "Chiunque", "Add group" : "Aggiungi gruppo", "New user" : "Nuovo utente", + "An error occured during the request. Unable to proceed." : "Si è verificato un errore durante la richiesta. Impossibile continuare..", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "L'applicazione è stata abilitata, ma deve essere aggiornata. Sarai rediretto alla pagina di aggiornamento in 5 secondi.", + "App update" : "Aggiornamento applicazione", + "Error: This app can not be enabled because it makes the server unstable" : "Errore: questa applicazione non può essere abilitata perché rende il server instabile", "SSL Root Certificates" : "Certificati radice SSL", "Common Name" : "Nome comune", "Valid until" : "Valido fino al", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Nome utente Twitter @...", "Help translate" : "Migliora la traduzione", "Locale" : "Localizzazione", - "Password" : "Password", "Current password" : "Password attuale", - "New password" : "Nuova password", "Change password" : "Modifica password", "Devices & sessions" : "Dispositivi e sessioni", "Web, desktop and mobile clients currently logged in to your account." : "Client web, desktop e mobile attualmente connessi al tuo account.", @@ -298,7 +334,6 @@ "Create new app password" : "Crea nuova password di applicazione", "Use the credentials below to configure your app or device." : "Utilizza le credenziali in basso per configurare la tua applicazione o dispositivo.", "For security reasons this password will only be shown once." : "Per motivi di sicurezza questa password sarà mostra solo una volta.", - "Username" : "Nome utente", "Done" : "Completato", "Enabled apps" : "Applicazioni abilitate", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL utilizza una versione %s datata (%s). Aggiorna il tuo sistema operativo o funzionalità come %s non funzioneranno correttamente.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "La conferma della password è richiesta", "Are you really sure you want add {domain} as trusted domain?" : "Sei davvero sicuro di voler aggiungere {domain} come dominio attendibile?", "Add trusted domain" : "Aggiungi dominio attendibile", - "All" : "Tutti", "Update to %s" : "Aggiorna a %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Hai %n aggiornamento di applicazione in corso","Hai %n aggiornamenti di applicazione in corso"], - "No apps found for your version" : "Nessuna applicazione trovata per la tua versione", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Le applicazioni ufficiali sono sviluppate dalla comunità. Esse offrono nuove funzionalità e sono pronte per l'uso in produzione.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Le applicazioni approvate sono sviluppate da sviluppatori affidabili e hanno passato un rapido controllo di sicurezza. Sono attivamente mantenute in un deposito aperto del codice e i loro responsabili le ritengono pronte sia per un utilizzo casuale che per un utilizzo continuativo.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Questa applicazione non è stata sottoposta a controlli di sicurezza, è nuova o notoriamente instabile. Installala a tuo rischio.", "Disabling app …" : "Disabilitazione applicazione...", "Error while disabling app" : "Errore durante la disattivazione", - "Disable" : "Disabilita", "Enabling app …" : "Abilitazione applicazione...", "Error while enabling app" : "Errore durante l'attivazione", "Error: Could not disable broken app" : "Errore: impossibile disabilitare l'applicazione danneggiata", @@ -342,7 +373,6 @@ "Updated" : "Aggiornato", "Removing …" : "Rimozione in corso...", "Error while removing app" : "Errore durante la rimozione dell'applicazione", - "Remove" : "Rimuovi", "Approved" : "Approvata", "Experimental" : "Sperimentale", "No apps found for {query}" : "Nessuna applicazione trovata per {query}", @@ -399,16 +429,12 @@ "Theming" : "Temi", "Check the security of your Nextcloud over our security scan" : "Controlla la sicurezza del tuo Nextcloud con la nostra scansione di sicurezza", "Hardening and security guidance" : "Guida alla messa in sicurezza", - "View in store" : "Visualizza nell'archivio", "This app has an update available." : "Un aggiornamento di questa applicazione è disponibile.", "by %s" : "di %s", "%s-licensed" : "sotto licenza %s", "Documentation:" : "Documentazione:", - "Admin documentation" : "Documentazione di amministrazione", - "Report a bug" : "Segnala un bug", "Show description …" : "Mostra descrizione...", "Hide description …" : "Nascondi descrizione...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Questa applicazione non contiene l'informazione della versione massima di Nextcloud richiesta. In futuro ciò sarà considerato un errore.", "Enable only for specific groups" : "Abilita solo per gruppi specifici", "Online documentation" : "Documentazione in linea", "Getting help" : "Ottenere aiuto", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Iscriviti alla nostra newsletter!", "Settings" : "Impostazioni", "Show storage location" : "Mostra posizione di archiviazione", - "Show user backend" : "Mostra il motore utente", - "Show last login" : "Mostra ultimo accesso", "Show email address" : "Mostra l'indirizzo email", "Send email to new user" : "Invia email al nuovo utente", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quando la password del nuovo utente è lasciata vuota, un'email di attivazione con un collegamento per impostare la password è inviata all'utente.", @@ -445,9 +469,6 @@ "Disabled" : "Disabilitati", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Digita la quota di archiviazione (ad es.: \"512 MB\" o \"12 GB\")", "Other" : "Altro", - "Quota" : "Quote", - "Storage location" : "Posizione di archiviazione", - "Last login" : "Ultimo accesso", "change full name" : "modica nome completo", "set new password" : "imposta una nuova password", "change email address" : "cambia l'indirizzo email", diff --git a/settings/l10n/ja.js b/settings/l10n/ja.js index 62e7cbb95ca..9f4a9f99c6d 100644 --- a/settings/l10n/ja.js +++ b/settings/l10n/ja.js @@ -112,47 +112,60 @@ OC.L10N.register( "Enforce two-factor authentication" : "二要素認証を実施する", "Limit to groups" : "次のグループに制限", "Two-factor authentication is not enforced for\tmembers of the following groups." : "以下のグループのメンバーの場合、二要素認証は強制されません。", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "公式アプリは Nextcloud コミュニティにより開発されています。公式アプリは Nextcloud の中心的な機能を提供し、製品として可能です。", "Official" : "公式", + "Remove" : "削除", + "Disable" : "無効にする", + "All" : "すべて", "No results" : "該当なし", + "View in store" : "ストア内で表示", "Visit website" : "ウェブサイトを表示", + "Report a bug" : "バグを報告", "User documentation" : "ユーザードキュメント", + "Admin documentation" : "管理者ドキュメント", "Developer documentation" : "開発者ドキュメント", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "This app cannot be installed because the following dependencies are not fulfilled:" : "次の依存関係が満たされないためこのアプリをインストールできません:", - "{license}-licensed" : "{license}-ライセンス", + "No apps found for your version" : "現在のバージョンに対応するアプリはありません", "Disable all" : "すべて無効にする", "Enable all" : "すべて有効にする", "Download and enable" : "ダウンロードして有効にする", "Enable" : "有効にする", "The app will be downloaded from the app store" : "このアプリは、アプリストアからダウンロードできます。", "You do not have permissions to see the details of this user" : "このユーザーの詳細を表示する権限がありません", + "New password" : "新しいパスワード", "Delete user" : "ユーザーを削除", "Disable user" : "ユーザーを無効", "Enable user" : "ユーザーを有効", "Resend welcome email" : "ウェルカムメールを再送する", "{size} used" : "{size} を使用中", "Welcome mail sent!" : "ウェルカムメールを送信しました!", + "Username" : "ユーザーID", "Display name" : "表示名", + "Password" : "パスワード", "Email" : "メール", "Group admin for" : "グループの管理者", + "Quota" : "クォータ", "Language" : "言語", + "Storage location" : "データの保存場所", "User backend" : "ユーザーバックエンド", + "Last login" : "最終ログイン", + "Default language" : "既定の言語", "Unlimited" : "無制限", "Default quota" : "デフォルトのクォータ", - "Default language" : "既定の言語", "Password change is disabled because the master key is disabled" : "マスターキーが無効になっているため、パスワードの変更は無効です", "Common languages" : "共通言語", "All languages" : "すべての言語", - "An error occured during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", - "App update" : "アプリのアップデート", - "Error: This app can not be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。", "Your apps" : "あなたのアプリ", "Active apps" : "アクティブなアプリ", "Disabled apps" : "無効なアプリ", "Updates" : "アップデート", "App bundles" : "アプリバンドル", + "{license}-licensed" : "{license}-ライセンス", "Default quota:" : "デフォルトのクォータ :", + "Show last login" : "最終ログインを表示", + "Show user backend" : "ユーザーバックエンドを表示", "You are about to remove the group {group}. The users will NOT be deleted." : "{group}グループを削除しようとしています。 ユーザーは削除されません。", "Please confirm the group removal " : "グループの削除を確認してください", "Remove group" : "グループを削除", @@ -161,6 +174,10 @@ OC.L10N.register( "Everyone" : "すべてのユーザー", "Add group" : "グループを追加する", "New user" : "新しいユーザー", + "An error occured during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", + "App update" : "アプリのアップデート", + "Error: This app can not be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。", "SSL Root Certificates" : "SSLルート証明書", "Common Name" : "コモンネーム", "Valid until" : "有効期限", @@ -284,9 +301,7 @@ OC.L10N.register( "Twitter handle @…" : "あなたのTwitter ID @...", "Help translate" : "翻訳に協力する", "Locale" : "ロケール", - "Password" : "パスワード", "Current password" : "現在のパスワード", - "New password" : "新しいパスワード", "Change password" : "パスワードを変更", "Devices & sessions" : "デバイスとセッション", "Web, desktop and mobile clients currently logged in to your account." : "現在、Web、デスクトップ、モバイルアプリであなたのアカウントにログインしている端末一覧です。", @@ -296,7 +311,6 @@ OC.L10N.register( "Create new app password" : "新しいアプリパスワードを作成", "Use the credentials below to configure your app or device." : "アプリや端末を設定するのに以下の認証情報を使用する。", "For security reasons this password will only be shown once." : "セキュリティ上の理由から、このパスワードは一度しか表示されません。", - "Username" : "ユーザーID", "Done" : "完了", "Enabled apps" : "有効なアプリ", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "%s バージョン (%s) の古い cURL を使っています。OSを更新するか、この機能 %s が正しく動くアプリに更新してください。", @@ -321,16 +335,12 @@ OC.L10N.register( "Password confirmation is required" : "パスワードの確認が必要です", "Are you really sure you want add {domain} as trusted domain?" : "{domain} を信頼できるドメインとして追加してもよろしいですか?", "Add trusted domain" : "信頼するドメイン名に追加", - "All" : "すべて", "Update to %s" : "%sにアップデート", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 個のアプリのアップデートを保留中"], - "No apps found for your version" : "現在のバージョンに対応するアプリはありません", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "公式アプリは Nextcloud コミュニティにより開発されています。公式アプリは Nextcloud の中心的な機能を提供し、製品として可能です。", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "承認されたアプリは信頼された開発者により開発され、大まかなセキュリティチェックに合格しています。アプリは積極的にオープンソースコードレポジトリでメンテナンスされ、メンテナは通常の用途では安定していると考えます。", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "このアプリはセキュリティチェックされていません、新規アプリか安定性が確認されていないアプリです。自己責任でインストールしてください。", "Disabling app …" : "アプリを無効にします …", "Error while disabling app" : "アプリの無効化中にエラーが発生しました", - "Disable" : "無効にする", "Enabling app …" : "アプリを有効 ...", "Error while enabling app" : "アプリを有効にする際にエラーが発生しました", "Error: Could not disable broken app" : "エラー: 壊れたアプリを無効にできませんでした", @@ -340,7 +350,6 @@ OC.L10N.register( "Updated" : "アップデート済み", "Removing …" : "削除中 ...", "Error while removing app" : "アプリの削除中にエラーが発生しました", - "Remove" : "削除", "Approved" : "承認済み", "Experimental" : "実験的", "No apps found for {query}" : "{query} に対応するアプリはありません", @@ -397,16 +406,12 @@ OC.L10N.register( "Theming" : "テーマ", "Check the security of your Nextcloud over our security scan" : "セキュリティスキャンで、Nextcloudのセキュリティをチェックする", "Hardening and security guidance" : "堅牢化とセキュリティガイダンス", - "View in store" : "ストア内で表示", "This app has an update available." : "このアプリでアップデートが利用できます.", "by %s" : "%s による", "%s-licensed" : "%s ライセンス", "Documentation:" : "ドキュメント:", - "Admin documentation" : "管理者ドキュメント", - "Report a bug" : "バグを報告", "Show description …" : "詳細を表示 ...", "Hide description …" : "説明を隠す ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "Enable only for specific groups" : "特定のグループのみ有効に", "Online documentation" : "オンラインドキュメント", "Getting help" : "ヘルプの入手", @@ -430,8 +435,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "ニュースレターを購読する!", "Settings" : "設定", "Show storage location" : "データの保存場所を表示", - "Show user backend" : "ユーザーバックエンドを表示", - "Show last login" : "最終ログインを表示", "Show email address" : "メールアドレスを表示", "Send email to new user" : "新規ユーザーにメールを送信", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "新しいユーザーのパスワードを空のままにすると、パスワードを設定するためのリンクを含むアクティベーションのメールが送信されます", @@ -443,9 +446,6 @@ OC.L10N.register( "Disabled" : "無効なユーザー", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "ストレージのクォータを入力してください (例: \"512MB\" や \"12 GB\")", "Other" : "その他", - "Quota" : "クォータ", - "Storage location" : "データの保存場所", - "Last login" : "最終ログイン", "change full name" : "名前を変更", "set new password" : "新しいパスワードを設定", "change email address" : "メールアドレスを変更", diff --git a/settings/l10n/ja.json b/settings/l10n/ja.json index ca162c04640..effa2982700 100644 --- a/settings/l10n/ja.json +++ b/settings/l10n/ja.json @@ -110,47 +110,60 @@ "Enforce two-factor authentication" : "二要素認証を実施する", "Limit to groups" : "次のグループに制限", "Two-factor authentication is not enforced for\tmembers of the following groups." : "以下のグループのメンバーの場合、二要素認証は強制されません。", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "公式アプリは Nextcloud コミュニティにより開発されています。公式アプリは Nextcloud の中心的な機能を提供し、製品として可能です。", "Official" : "公式", + "Remove" : "削除", + "Disable" : "無効にする", + "All" : "すべて", "No results" : "該当なし", + "View in store" : "ストア内で表示", "Visit website" : "ウェブサイトを表示", + "Report a bug" : "バグを報告", "User documentation" : "ユーザードキュメント", + "Admin documentation" : "管理者ドキュメント", "Developer documentation" : "開発者ドキュメント", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud の最小バージョンが指定されていません.将来、エラーが発生する可能性があります.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "This app cannot be installed because the following dependencies are not fulfilled:" : "次の依存関係が満たされないためこのアプリをインストールできません:", - "{license}-licensed" : "{license}-ライセンス", + "No apps found for your version" : "現在のバージョンに対応するアプリはありません", "Disable all" : "すべて無効にする", "Enable all" : "すべて有効にする", "Download and enable" : "ダウンロードして有効にする", "Enable" : "有効にする", "The app will be downloaded from the app store" : "このアプリは、アプリストアからダウンロードできます。", "You do not have permissions to see the details of this user" : "このユーザーの詳細を表示する権限がありません", + "New password" : "新しいパスワード", "Delete user" : "ユーザーを削除", "Disable user" : "ユーザーを無効", "Enable user" : "ユーザーを有効", "Resend welcome email" : "ウェルカムメールを再送する", "{size} used" : "{size} を使用中", "Welcome mail sent!" : "ウェルカムメールを送信しました!", + "Username" : "ユーザーID", "Display name" : "表示名", + "Password" : "パスワード", "Email" : "メール", "Group admin for" : "グループの管理者", + "Quota" : "クォータ", "Language" : "言語", + "Storage location" : "データの保存場所", "User backend" : "ユーザーバックエンド", + "Last login" : "最終ログイン", + "Default language" : "既定の言語", "Unlimited" : "無制限", "Default quota" : "デフォルトのクォータ", - "Default language" : "既定の言語", "Password change is disabled because the master key is disabled" : "マスターキーが無効になっているため、パスワードの変更は無効です", "Common languages" : "共通言語", "All languages" : "すべての言語", - "An error occured during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", - "App update" : "アプリのアップデート", - "Error: This app can not be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。", "Your apps" : "あなたのアプリ", "Active apps" : "アクティブなアプリ", "Disabled apps" : "無効なアプリ", "Updates" : "アップデート", "App bundles" : "アプリバンドル", + "{license}-licensed" : "{license}-ライセンス", "Default quota:" : "デフォルトのクォータ :", + "Show last login" : "最終ログインを表示", + "Show user backend" : "ユーザーバックエンドを表示", "You are about to remove the group {group}. The users will NOT be deleted." : "{group}グループを削除しようとしています。 ユーザーは削除されません。", "Please confirm the group removal " : "グループの削除を確認してください", "Remove group" : "グループを削除", @@ -159,6 +172,10 @@ "Everyone" : "すべてのユーザー", "Add group" : "グループを追加する", "New user" : "新しいユーザー", + "An error occured during the request. Unable to proceed." : "要求中にエラーが発生しました。 続行できません。", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "アプリは有効ですが、更新が必要です。5秒後に更新ページにリダイレクトします。", + "App update" : "アプリのアップデート", + "Error: This app can not be enabled because it makes the server unstable" : "エラー:このアプリは、サーバーを不安定にするため、有効にすることができません。", "SSL Root Certificates" : "SSLルート証明書", "Common Name" : "コモンネーム", "Valid until" : "有効期限", @@ -282,9 +299,7 @@ "Twitter handle @…" : "あなたのTwitter ID @...", "Help translate" : "翻訳に協力する", "Locale" : "ロケール", - "Password" : "パスワード", "Current password" : "現在のパスワード", - "New password" : "新しいパスワード", "Change password" : "パスワードを変更", "Devices & sessions" : "デバイスとセッション", "Web, desktop and mobile clients currently logged in to your account." : "現在、Web、デスクトップ、モバイルアプリであなたのアカウントにログインしている端末一覧です。", @@ -294,7 +309,6 @@ "Create new app password" : "新しいアプリパスワードを作成", "Use the credentials below to configure your app or device." : "アプリや端末を設定するのに以下の認証情報を使用する。", "For security reasons this password will only be shown once." : "セキュリティ上の理由から、このパスワードは一度しか表示されません。", - "Username" : "ユーザーID", "Done" : "完了", "Enabled apps" : "有効なアプリ", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "%s バージョン (%s) の古い cURL を使っています。OSを更新するか、この機能 %s が正しく動くアプリに更新してください。", @@ -319,16 +333,12 @@ "Password confirmation is required" : "パスワードの確認が必要です", "Are you really sure you want add {domain} as trusted domain?" : "{domain} を信頼できるドメインとして追加してもよろしいですか?", "Add trusted domain" : "信頼するドメイン名に追加", - "All" : "すべて", "Update to %s" : "%sにアップデート", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 個のアプリのアップデートを保留中"], - "No apps found for your version" : "現在のバージョンに対応するアプリはありません", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "公式アプリは Nextcloud コミュニティにより開発されています。公式アプリは Nextcloud の中心的な機能を提供し、製品として可能です。", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "承認されたアプリは信頼された開発者により開発され、大まかなセキュリティチェックに合格しています。アプリは積極的にオープンソースコードレポジトリでメンテナンスされ、メンテナは通常の用途では安定していると考えます。", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "このアプリはセキュリティチェックされていません、新規アプリか安定性が確認されていないアプリです。自己責任でインストールしてください。", "Disabling app …" : "アプリを無効にします …", "Error while disabling app" : "アプリの無効化中にエラーが発生しました", - "Disable" : "無効にする", "Enabling app …" : "アプリを有効 ...", "Error while enabling app" : "アプリを有効にする際にエラーが発生しました", "Error: Could not disable broken app" : "エラー: 壊れたアプリを無効にできませんでした", @@ -338,7 +348,6 @@ "Updated" : "アップデート済み", "Removing …" : "削除中 ...", "Error while removing app" : "アプリの削除中にエラーが発生しました", - "Remove" : "削除", "Approved" : "承認済み", "Experimental" : "実験的", "No apps found for {query}" : "{query} に対応するアプリはありません", @@ -395,16 +404,12 @@ "Theming" : "テーマ", "Check the security of your Nextcloud over our security scan" : "セキュリティスキャンで、Nextcloudのセキュリティをチェックする", "Hardening and security guidance" : "堅牢化とセキュリティガイダンス", - "View in store" : "ストア内で表示", "This app has an update available." : "このアプリでアップデートが利用できます.", "by %s" : "%s による", "%s-licensed" : "%s ライセンス", "Documentation:" : "ドキュメント:", - "Admin documentation" : "管理者ドキュメント", - "Report a bug" : "バグを報告", "Show description …" : "詳細を表示 ...", "Hide description …" : "説明を隠す ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "このアプリは Nextcloud バージョンの上限が指定されていません.将来、エラーが発生する可能性があります.", "Enable only for specific groups" : "特定のグループのみ有効に", "Online documentation" : "オンラインドキュメント", "Getting help" : "ヘルプの入手", @@ -428,8 +433,6 @@ "Subscribe to our newsletter!" : "ニュースレターを購読する!", "Settings" : "設定", "Show storage location" : "データの保存場所を表示", - "Show user backend" : "ユーザーバックエンドを表示", - "Show last login" : "最終ログインを表示", "Show email address" : "メールアドレスを表示", "Send email to new user" : "新規ユーザーにメールを送信", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "新しいユーザーのパスワードを空のままにすると、パスワードを設定するためのリンクを含むアクティベーションのメールが送信されます", @@ -441,9 +444,6 @@ "Disabled" : "無効なユーザー", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "ストレージのクォータを入力してください (例: \"512MB\" や \"12 GB\")", "Other" : "その他", - "Quota" : "クォータ", - "Storage location" : "データの保存場所", - "Last login" : "最終ログイン", "change full name" : "名前を変更", "set new password" : "新しいパスワードを設定", "change email address" : "メールアドレスを変更", diff --git a/settings/l10n/ka_GE.js b/settings/l10n/ka_GE.js index cf228ace0ee..54761e01012 100644 --- a/settings/l10n/ka_GE.js +++ b/settings/l10n/ka_GE.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "აირჩიეთ პროფილის სურათი", "Groups" : "ჯგუფები", "Limit to groups" : "ლიმიტი ჯგუფებზე", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "ოფიციალური აპლიკაციები განვითარებულია და მოქცეულია ჩვენს საზოგადოებაში. ისინი გთავაზობენ ცენტრალურ ფუნქციონირებას და საწარმოო გამოყენებისათვის მზადყოფნაში არიან.", "Official" : "ოფიციალური", + "Remove" : "წაშლა", + "Disable" : "გამორთვა", + "All" : "ყველა", + "View in store" : "იხილეთ store-ში", "Visit website" : "საიტზე სტუმრობა", + "Report a bug" : "განაცხადეთ შეცდომის შესახებ", "User documentation" : "მომხმარებლის დოკუმენტაცია", + "Admin documentation" : "ადმინისტრატორის დოკუმენტაცია", "Developer documentation" : "დეველოპერის დოკუმენტაცია", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მინიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "This app cannot be installed because the following dependencies are not fulfilled:" : "ეს აპლიკაცია ვერ დაყენდა რადგან შემდეგი დამოკიდებულებები არაა დაკმაყოფილებული:", + "No apps found for your version" : "აპლიკაციები თქვენი ვერსიისთვის ვერ იქნა ნაპოვნი", "Enable all" : "ყველას ამოქმედება", "Enable" : "ჩართვა", "The app will be downloaded from the app store" : "აპლიკაცია გადმოწერილ იქნება app store-იდან", + "New password" : "ახალი პაროლი", "{size} used" : "მოხმარებულია {size}", + "Username" : "მომხმარებლის სახელი", + "Password" : "პაროლი", "Email" : "ელ-ფოსტა", "Group admin for" : "ადმინისტრატორის შეჯგუფება", + "Quota" : "ქვოტა", "Language" : "ენა", + "Storage location" : "საცავის ადგილმდებარეობა", "User backend" : "მომხმარებელის ბექენდი", + "Last login" : "ბოლო ავტორიზაცია", "Unlimited" : "ულიმიტო", "Default quota" : "საწყისი კვოტა", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "აპლიკაცია ამოქმედდა, თუმცა საჭიროებს განახლებას. 5 წამში გადამისამართდებით განახლების გვერდზე.", - "App update" : "აპლიკაციის განახლება", - "Error: This app can not be enabled because it makes the server unstable" : "შეცდომა: ეს აპლიკაცია ვერ მოქმედდება რადგანაც სერვერს ხდის არასტაბილურს", "Your apps" : "თქვენი აპლიკაციები", "Disabled apps" : "არამოქმედი აპლიკაციები", "Updates" : "განახლებები", "App bundles" : "აპლიკაციის შეკვრები", + "Show last login" : "ბოლო ავტორიზაციის ჩვენება", + "Show user backend" : "მომხმარებლის ბექენდის ჩვენება", "Admins" : "ადმინისტრატორები", "Everyone" : "ყველა", "Add group" : "ჯგუფის დამატება", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "აპლიკაცია ამოქმედდა, თუმცა საჭიროებს განახლებას. 5 წამში გადამისამართდებით განახლების გვერდზე.", + "App update" : "აპლიკაციის განახლება", + "Error: This app can not be enabled because it makes the server unstable" : "შეცდომა: ეს აპლიკაცია ვერ მოქმედდება რადგანაც სერვერს ხდის არასტაბილურს", "SSL Root Certificates" : "SSL Root სერტიფიკატები", "Common Name" : "საზოგადო სახელი", "Valid until" : "ვარგისია", @@ -241,9 +258,7 @@ OC.L10N.register( "Twitter" : "Twitter-ი", "Twitter handle @…" : "Twitter @…", "Help translate" : "თარგმნის დახმარება", - "Password" : "პაროლი", "Current password" : "მიმდინარე პაროლი", - "New password" : "ახალი პაროლი", "Change password" : "პაროლის შეცვლა", "Web, desktop and mobile clients currently logged in to your account." : "ვებ, დესკტოპ და მობილური კლიენტები ამჟამად ავტორიზირებული თქვენს ანგარიშზე.", "Device" : "მოწყობილობა", @@ -252,7 +267,6 @@ OC.L10N.register( "Create new app password" : "ახალი აპლიკაციის პაროლის შექმნა", "Use the credentials below to configure your app or device." : "ქვემოთ მოცემული უფლებამოსილებანის გამოყენება აპლიკაციისა თუ მოწყობილობისთვის.", "For security reasons this password will only be shown once." : "უსაფრთხოების მიზნით ეს პაროლი გამოჩნდება მხოლოდ ერთხელ.", - "Username" : "მომხმარებლის სახელი", "Done" : "დასრულებულია", "Enabled apps" : "მოქმედი აპლიკაციები", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL მოძველებულია %s ვერსია (%s). გთხოვთ განაახლოთ თქვენი ოპერაციული სისტემა, წინნაღმდეგ შემთხვევაში ისეთი ფუნქციები როგორებიცაა %s კარგად არ იმუშავებენ.", @@ -277,16 +291,12 @@ OC.L10N.register( "Password confirmation is required" : "საჭიროა პაროლის დამოწმება", "Are you really sure you want add {domain} as trusted domain?" : "დამდვილად გსურთ {domain}-ის დამატება სანდო დომენად?", "Add trusted domain" : "სანდო დომენის დამატება", - "All" : "ყველა", "Update to %s" : "განახლდეს %s-ზე", "_You have %n app update pending_::_You have %n app updates pending_" : ["თქვენ მოლოდინში გაქვთ %n აპლიკაციის განახლება","თქვენ მოლოდინში გაქვთ %n აპლიკაციის განახლება"], - "No apps found for your version" : "აპლიკაციები თქვენი ვერსიისთვის ვერ იქნა ნაპოვნი", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "ოფიციალური აპლიკაციები განვითარებულია და მოქცეულია ჩვენს საზოგადოებაში. ისინი გთავაზობენ ცენტრალურ ფუნქციონირებას და საწარმოო გამოყენებისათვის მზადყოფნაში არიან.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "დამოწმებული აპლიკაციები განვითარებულია სანდო დეველოპერების მიერ, მათ გავლილი აქვთ მრავალი უსაფრთხოების ტესტი. ისინი აქტიურად ნარჩუნდებიან ღია კოდის საცავში და მათ შემნარჩუნებლებს მიაჩნიათ, რომ ისინი სტაბულარად მუშაობენ.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "აპლიკაცია არაა შემოწმებული უსაფრთხოების პრობელემებზე და ახალია, ან ცნობილია რომ არაა სტაბილური. დააყენეთ თქვენი რისკით.", "Disabling app …" : "აპლიკაციის დეაქტივაცია …", "Error while disabling app" : "აპლიკაციის დეაქტივაციისას წარმოიქმნა შეცდომა", - "Disable" : "გამორთვა", "Enabling app …" : "აპლიკაციის ამოქმედება …", "Error while enabling app" : "აპლიკაციის ამოქმედებისას წარმოიქმნა შეცდომა", "Error: Could not disable broken app" : "შეცდომა: გაფუჭებული აპლიკაციის დეაქტივაცია ვერ მოხერხდა", @@ -296,7 +306,6 @@ OC.L10N.register( "Updated" : "განახლებულია", "Removing …" : "იშლება …", "Error while removing app" : "აპლიკაციის წაშლისას წარმოიშვა შეცდომა", - "Remove" : "წაშლა", "Approved" : "დამოწმებულია", "Experimental" : "ექსპერიმენტალურია", "No apps found for {query}" : "აპლიკაციები {query}-სთვის ვერ მოძებნა", @@ -353,16 +362,12 @@ OC.L10N.register( "Theming" : "ვიზუალური თემები", "Check the security of your Nextcloud over our security scan" : "შეამოწმეთ თქვენი Nextcloud ჩვენი უსფრთხოების შემოწმებით", "Hardening and security guidance" : "განმტკიცებისა და უსაფრთხოების სახელმძღვანელო", - "View in store" : "იხილეთ store-ში", "This app has an update available." : "აპლიკაციას გააჩნია ხელმისაწვდომი განახლება.", "by %s" : "%s-ს მიერ", "%s-licensed" : "%s-ლიცენზირებული", "Documentation:" : "დოკუმენტაცია", - "Admin documentation" : "ადმინისტრატორის დოკუმენტაცია", - "Report a bug" : "განაცხადეთ შეცდომის შესახებ", "Show description …" : "აღწერილობის ჩვენება …", "Hide description …" : "არწერილობის დამალვა …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "Enable only for specific groups" : "ამოქმედება მხოლოდ სპეციფიური ჯგუფებისათვის", "Online documentation" : "ონლაინ დოკუმენტაცია", "Getting help" : "დახმარების მიღება", @@ -386,8 +391,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "გამოიწერეთ ჩვენი სიახლეები!", "Settings" : "პარამეტრები", "Show storage location" : "საცავის ადგილმდებარეობის ჩვენება", - "Show user backend" : "მომხმარებლის ბექენდის ჩვენება", - "Show last login" : "ბოლო ავტორიზაციის ჩვენება", "Show email address" : "მოხმარებლის ელ-ფოსტის მისამართის ჩვენება", "Send email to new user" : "გაუგზავნეთ ელ-წერილი ახალ მომხმარებელს", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "როდესაც ახალი მომხმარებლის პაროლი არაა მითითებული, მომხმარებელს ელ-ფოსტაზე ეგზავნება აქტივაციის წერილი პროლის დაყენების ბმულით.", @@ -399,9 +402,6 @@ OC.L10N.register( "Disabled" : "გათიშული", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "შეიყვანეთ მოცულობის კვოტა (მაგ.: \"512 მბ\" ან \"12 გბ\")", "Other" : "სხვა", - "Quota" : "ქვოტა", - "Storage location" : "საცავის ადგილმდებარეობა", - "Last login" : "ბოლო ავტორიზაცია", "change full name" : "სრული სახელის ცვლილება", "set new password" : "დააყენეთ ახალი პაროლი", "change email address" : "ელ-ფოსტის მისამართის ცვლილება", diff --git a/settings/l10n/ka_GE.json b/settings/l10n/ka_GE.json index fe6d6291df2..816c1813cb5 100644 --- a/settings/l10n/ka_GE.json +++ b/settings/l10n/ka_GE.json @@ -103,32 +103,49 @@ "Select a profile picture" : "აირჩიეთ პროფილის სურათი", "Groups" : "ჯგუფები", "Limit to groups" : "ლიმიტი ჯგუფებზე", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "ოფიციალური აპლიკაციები განვითარებულია და მოქცეულია ჩვენს საზოგადოებაში. ისინი გთავაზობენ ცენტრალურ ფუნქციონირებას და საწარმოო გამოყენებისათვის მზადყოფნაში არიან.", "Official" : "ოფიციალური", + "Remove" : "წაშლა", + "Disable" : "გამორთვა", + "All" : "ყველა", + "View in store" : "იხილეთ store-ში", "Visit website" : "საიტზე სტუმრობა", + "Report a bug" : "განაცხადეთ შეცდომის შესახებ", "User documentation" : "მომხმარებლის დოკუმენტაცია", + "Admin documentation" : "ადმინისტრატორის დოკუმენტაცია", "Developer documentation" : "დეველოპერის დოკუმენტაცია", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მინიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "This app cannot be installed because the following dependencies are not fulfilled:" : "ეს აპლიკაცია ვერ დაყენდა რადგან შემდეგი დამოკიდებულებები არაა დაკმაყოფილებული:", + "No apps found for your version" : "აპლიკაციები თქვენი ვერსიისთვის ვერ იქნა ნაპოვნი", "Enable all" : "ყველას ამოქმედება", "Enable" : "ჩართვა", "The app will be downloaded from the app store" : "აპლიკაცია გადმოწერილ იქნება app store-იდან", + "New password" : "ახალი პაროლი", "{size} used" : "მოხმარებულია {size}", + "Username" : "მომხმარებლის სახელი", + "Password" : "პაროლი", "Email" : "ელ-ფოსტა", "Group admin for" : "ადმინისტრატორის შეჯგუფება", + "Quota" : "ქვოტა", "Language" : "ენა", + "Storage location" : "საცავის ადგილმდებარეობა", "User backend" : "მომხმარებელის ბექენდი", + "Last login" : "ბოლო ავტორიზაცია", "Unlimited" : "ულიმიტო", "Default quota" : "საწყისი კვოტა", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "აპლიკაცია ამოქმედდა, თუმცა საჭიროებს განახლებას. 5 წამში გადამისამართდებით განახლების გვერდზე.", - "App update" : "აპლიკაციის განახლება", - "Error: This app can not be enabled because it makes the server unstable" : "შეცდომა: ეს აპლიკაცია ვერ მოქმედდება რადგანაც სერვერს ხდის არასტაბილურს", "Your apps" : "თქვენი აპლიკაციები", "Disabled apps" : "არამოქმედი აპლიკაციები", "Updates" : "განახლებები", "App bundles" : "აპლიკაციის შეკვრები", + "Show last login" : "ბოლო ავტორიზაციის ჩვენება", + "Show user backend" : "მომხმარებლის ბექენდის ჩვენება", "Admins" : "ადმინისტრატორები", "Everyone" : "ყველა", "Add group" : "ჯგუფის დამატება", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "აპლიკაცია ამოქმედდა, თუმცა საჭიროებს განახლებას. 5 წამში გადამისამართდებით განახლების გვერდზე.", + "App update" : "აპლიკაციის განახლება", + "Error: This app can not be enabled because it makes the server unstable" : "შეცდომა: ეს აპლიკაცია ვერ მოქმედდება რადგანაც სერვერს ხდის არასტაბილურს", "SSL Root Certificates" : "SSL Root სერტიფიკატები", "Common Name" : "საზოგადო სახელი", "Valid until" : "ვარგისია", @@ -239,9 +256,7 @@ "Twitter" : "Twitter-ი", "Twitter handle @…" : "Twitter @…", "Help translate" : "თარგმნის დახმარება", - "Password" : "პაროლი", "Current password" : "მიმდინარე პაროლი", - "New password" : "ახალი პაროლი", "Change password" : "პაროლის შეცვლა", "Web, desktop and mobile clients currently logged in to your account." : "ვებ, დესკტოპ და მობილური კლიენტები ამჟამად ავტორიზირებული თქვენს ანგარიშზე.", "Device" : "მოწყობილობა", @@ -250,7 +265,6 @@ "Create new app password" : "ახალი აპლიკაციის პაროლის შექმნა", "Use the credentials below to configure your app or device." : "ქვემოთ მოცემული უფლებამოსილებანის გამოყენება აპლიკაციისა თუ მოწყობილობისთვის.", "For security reasons this password will only be shown once." : "უსაფრთხოების მიზნით ეს პაროლი გამოჩნდება მხოლოდ ერთხელ.", - "Username" : "მომხმარებლის სახელი", "Done" : "დასრულებულია", "Enabled apps" : "მოქმედი აპლიკაციები", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL მოძველებულია %s ვერსია (%s). გთხოვთ განაახლოთ თქვენი ოპერაციული სისტემა, წინნაღმდეგ შემთხვევაში ისეთი ფუნქციები როგორებიცაა %s კარგად არ იმუშავებენ.", @@ -275,16 +289,12 @@ "Password confirmation is required" : "საჭიროა პაროლის დამოწმება", "Are you really sure you want add {domain} as trusted domain?" : "დამდვილად გსურთ {domain}-ის დამატება სანდო დომენად?", "Add trusted domain" : "სანდო დომენის დამატება", - "All" : "ყველა", "Update to %s" : "განახლდეს %s-ზე", "_You have %n app update pending_::_You have %n app updates pending_" : ["თქვენ მოლოდინში გაქვთ %n აპლიკაციის განახლება","თქვენ მოლოდინში გაქვთ %n აპლიკაციის განახლება"], - "No apps found for your version" : "აპლიკაციები თქვენი ვერსიისთვის ვერ იქნა ნაპოვნი", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "ოფიციალური აპლიკაციები განვითარებულია და მოქცეულია ჩვენს საზოგადოებაში. ისინი გთავაზობენ ცენტრალურ ფუნქციონირებას და საწარმოო გამოყენებისათვის მზადყოფნაში არიან.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "დამოწმებული აპლიკაციები განვითარებულია სანდო დეველოპერების მიერ, მათ გავლილი აქვთ მრავალი უსაფრთხოების ტესტი. ისინი აქტიურად ნარჩუნდებიან ღია კოდის საცავში და მათ შემნარჩუნებლებს მიაჩნიათ, რომ ისინი სტაბულარად მუშაობენ.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "აპლიკაცია არაა შემოწმებული უსაფრთხოების პრობელემებზე და ახალია, ან ცნობილია რომ არაა სტაბილური. დააყენეთ თქვენი რისკით.", "Disabling app …" : "აპლიკაციის დეაქტივაცია …", "Error while disabling app" : "აპლიკაციის დეაქტივაციისას წარმოიქმნა შეცდომა", - "Disable" : "გამორთვა", "Enabling app …" : "აპლიკაციის ამოქმედება …", "Error while enabling app" : "აპლიკაციის ამოქმედებისას წარმოიქმნა შეცდომა", "Error: Could not disable broken app" : "შეცდომა: გაფუჭებული აპლიკაციის დეაქტივაცია ვერ მოხერხდა", @@ -294,7 +304,6 @@ "Updated" : "განახლებულია", "Removing …" : "იშლება …", "Error while removing app" : "აპლიკაციის წაშლისას წარმოიშვა შეცდომა", - "Remove" : "წაშლა", "Approved" : "დამოწმებულია", "Experimental" : "ექსპერიმენტალურია", "No apps found for {query}" : "აპლიკაციები {query}-სთვის ვერ მოძებნა", @@ -351,16 +360,12 @@ "Theming" : "ვიზუალური თემები", "Check the security of your Nextcloud over our security scan" : "შეამოწმეთ თქვენი Nextcloud ჩვენი უსფრთხოების შემოწმებით", "Hardening and security guidance" : "განმტკიცებისა და უსაფრთხოების სახელმძღვანელო", - "View in store" : "იხილეთ store-ში", "This app has an update available." : "აპლიკაციას გააჩნია ხელმისაწვდომი განახლება.", "by %s" : "%s-ს მიერ", "%s-licensed" : "%s-ლიცენზირებული", "Documentation:" : "დოკუმენტაცია", - "Admin documentation" : "ადმინისტრატორის დოკუმენტაცია", - "Report a bug" : "განაცხადეთ შეცდომის შესახებ", "Show description …" : "აღწერილობის ჩვენება …", "Hide description …" : "არწერილობის დამალვა …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "ეს აპლიკაცია არ საზღვრავს Nextcloud-ის მაქსიმალურ ვერსიას. სამომავლოდ ეს ჩაითვლება შეცდომად.", "Enable only for specific groups" : "ამოქმედება მხოლოდ სპეციფიური ჯგუფებისათვის", "Online documentation" : "ონლაინ დოკუმენტაცია", "Getting help" : "დახმარების მიღება", @@ -384,8 +389,6 @@ "Subscribe to our newsletter!" : "გამოიწერეთ ჩვენი სიახლეები!", "Settings" : "პარამეტრები", "Show storage location" : "საცავის ადგილმდებარეობის ჩვენება", - "Show user backend" : "მომხმარებლის ბექენდის ჩვენება", - "Show last login" : "ბოლო ავტორიზაციის ჩვენება", "Show email address" : "მოხმარებლის ელ-ფოსტის მისამართის ჩვენება", "Send email to new user" : "გაუგზავნეთ ელ-წერილი ახალ მომხმარებელს", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "როდესაც ახალი მომხმარებლის პაროლი არაა მითითებული, მომხმარებელს ელ-ფოსტაზე ეგზავნება აქტივაციის წერილი პროლის დაყენების ბმულით.", @@ -397,9 +400,6 @@ "Disabled" : "გათიშული", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "შეიყვანეთ მოცულობის კვოტა (მაგ.: \"512 მბ\" ან \"12 გბ\")", "Other" : "სხვა", - "Quota" : "ქვოტა", - "Storage location" : "საცავის ადგილმდებარეობა", - "Last login" : "ბოლო ავტორიზაცია", "change full name" : "სრული სახელის ცვლილება", "set new password" : "დააყენეთ ახალი პაროლი", "change email address" : "ელ-ფოსტის მისამართის ცვლილება", diff --git a/settings/l10n/km.js b/settings/l10n/km.js index b8318eee889..94fbe80ce29 100644 --- a/settings/l10n/km.js +++ b/settings/l10n/km.js @@ -15,7 +15,12 @@ OC.L10N.register( "Strong password" : "ពាក្យសម្ងាត់ខ្លាំង", "Select a profile picture" : "ជ្រើសរូបភាពប្រវត្តិរូប", "Groups" : "ក្រុ", + "Disable" : "បិទ", + "All" : "ទាំងអស់", "Enable" : "បើក", + "New password" : "ពាក្យសម្ងាត់ថ្មី", + "Username" : "ឈ្មោះអ្នកប្រើ", + "Password" : "ពាក្យសម្ងាត់", "Email" : "អ៊ីមែល", "Language" : "ភាសា", "Unlimited" : "មិនកំណត់", @@ -38,15 +43,10 @@ OC.L10N.register( "Cancel" : "លើកលែង", "Your email address" : "អ៊ីម៉ែលរបស់អ្នក", "Help translate" : "ជួយបកប្រែ", - "Password" : "ពាក្យសម្ងាត់", "Current password" : "ពាក្យសម្ងាត់បច្ចុប្បន្ន", - "New password" : "ពាក្យសម្ងាត់ថ្មី", "Change password" : "ប្តូរពាក្យសម្ងាត់", - "Username" : "ឈ្មោះអ្នកប្រើ", "Email saved" : "បានរក្សាទុកអ៊ីមែល", - "All" : "ទាំងអស់", "Error while disabling app" : "មានកំហុសពេលកំពុងបិទកម្មវិធី", - "Disable" : "បិទ", "Updated" : "បានធ្វើបច្ចុប្បន្នភាព", "undo" : "មិនធ្វើវិញ", "never" : "មិនដែរ", diff --git a/settings/l10n/km.json b/settings/l10n/km.json index 41223c338ac..5ae8dd66829 100644 --- a/settings/l10n/km.json +++ b/settings/l10n/km.json @@ -13,7 +13,12 @@ "Strong password" : "ពាក្យសម្ងាត់ខ្លាំង", "Select a profile picture" : "ជ្រើសរូបភាពប្រវត្តិរូប", "Groups" : "ក្រុ", + "Disable" : "បិទ", + "All" : "ទាំងអស់", "Enable" : "បើក", + "New password" : "ពាក្យសម្ងាត់ថ្មី", + "Username" : "ឈ្មោះអ្នកប្រើ", + "Password" : "ពាក្យសម្ងាត់", "Email" : "អ៊ីមែល", "Language" : "ភាសា", "Unlimited" : "មិនកំណត់", @@ -36,15 +41,10 @@ "Cancel" : "លើកលែង", "Your email address" : "អ៊ីម៉ែលរបស់អ្នក", "Help translate" : "ជួយបកប្រែ", - "Password" : "ពាក្យសម្ងាត់", "Current password" : "ពាក្យសម្ងាត់បច្ចុប្បន្ន", - "New password" : "ពាក្យសម្ងាត់ថ្មី", "Change password" : "ប្តូរពាក្យសម្ងាត់", - "Username" : "ឈ្មោះអ្នកប្រើ", "Email saved" : "បានរក្សាទុកអ៊ីមែល", - "All" : "ទាំងអស់", "Error while disabling app" : "មានកំហុសពេលកំពុងបិទកម្មវិធី", - "Disable" : "បិទ", "Updated" : "បានធ្វើបច្ចុប្បន្នភាព", "undo" : "មិនធ្វើវិញ", "never" : "មិនដែរ", diff --git a/settings/l10n/kn.js b/settings/l10n/kn.js index 7e9994d186a..50391f12294 100644 --- a/settings/l10n/kn.js +++ b/settings/l10n/kn.js @@ -22,8 +22,14 @@ OC.L10N.register( "Strong password" : "ಪ್ರಬಲ ಗುಪ್ತಪದ", "Select a profile picture" : "ಸಂಕ್ಷಿಪ್ತ ವ್ಯಕ್ತಿಚಿತ್ರ ಒಂದನ್ನು ಆಯ್ಕೆ ಮಾಡಿ", "Groups" : "ಗುಂಪುಗಳು", + "Disable" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ", + "All" : "ಎಲ್ಲಾ", "Enable" : "ಸಕ್ರಿಯಗೊಳಿಸು", + "New password" : "ಹೊಸ ಗುಪ್ತಪದ", + "Username" : "ಬಳಕೆಯ ಹೆಸರು", + "Password" : "ಗುಪ್ತ ಪದ", "Email" : "ಇ-ಅಂಚೆ", + "Quota" : "ಪಾಲು", "Language" : "ಭಾಷೆ", "Admins" : "ನಿರ್ವಾಹಕರು", "Everyone" : "ಪ್ರತಿಯೊಬ್ಬರೂ", @@ -51,11 +57,8 @@ OC.L10N.register( "Cancel" : "ರದ್ದು", "Your email address" : "ನಿಮ್ಮ ಇ-ಅಂಚೆ ವಿಳಾಸ", "Help translate" : "ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ", - "Password" : "ಗುಪ್ತ ಪದ", "Current password" : "ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ", - "New password" : "ಹೊಸ ಗುಪ್ತಪದ", "Change password" : "ಗುಪ್ತ ಪದವನ್ನು ಬದಲಾಯಿಸಿ", - "Username" : "ಬಳಕೆಯ ಹೆಸರು", "Group already exists." : "ಗುಂಪು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ.", "Unable to add group." : "ಗುಂಪುನ್ನು ಸೇರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ.", "Unable to delete group." : "ಗುಂಪುನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.", @@ -66,9 +69,7 @@ OC.L10N.register( "Invalid user" : "ಅಮಾನ್ಯ ಬಳಕೆದಾರ", "Unable to change mail address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", "Email saved" : "ಇ-ಅಂಚೆಯನ್ನು ಉಳಿಸಿದೆ", - "All" : "ಎಲ್ಲಾ", "Error while disabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Disable" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ", "Error while enabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", "Updated" : "ಆಧುನೀಕರಿಸಲಾಗಿದೆ", "Unable to delete {objName}" : "{objName} ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ", @@ -85,7 +86,6 @@ OC.L10N.register( "E-Mail" : "ಇ-ಅಂಚೆ ವಿಳಾಸ", "Create" : "ಸೃಷ್ಟಿಸಿ", "Other" : "ಇತರೆ", - "Quota" : "ಪಾಲು", "change full name" : "ಪೂರ್ಣ ಹೆಸರು ಬದಲಾಯಿಸಬಹುದು", "set new password" : "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸಿ", "change email address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಿ", diff --git a/settings/l10n/kn.json b/settings/l10n/kn.json index 55932e4fdf6..1110d693320 100644 --- a/settings/l10n/kn.json +++ b/settings/l10n/kn.json @@ -20,8 +20,14 @@ "Strong password" : "ಪ್ರಬಲ ಗುಪ್ತಪದ", "Select a profile picture" : "ಸಂಕ್ಷಿಪ್ತ ವ್ಯಕ್ತಿಚಿತ್ರ ಒಂದನ್ನು ಆಯ್ಕೆ ಮಾಡಿ", "Groups" : "ಗುಂಪುಗಳು", + "Disable" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ", + "All" : "ಎಲ್ಲಾ", "Enable" : "ಸಕ್ರಿಯಗೊಳಿಸು", + "New password" : "ಹೊಸ ಗುಪ್ತಪದ", + "Username" : "ಬಳಕೆಯ ಹೆಸರು", + "Password" : "ಗುಪ್ತ ಪದ", "Email" : "ಇ-ಅಂಚೆ", + "Quota" : "ಪಾಲು", "Language" : "ಭಾಷೆ", "Admins" : "ನಿರ್ವಾಹಕರು", "Everyone" : "ಪ್ರತಿಯೊಬ್ಬರೂ", @@ -49,11 +55,8 @@ "Cancel" : "ರದ್ದು", "Your email address" : "ನಿಮ್ಮ ಇ-ಅಂಚೆ ವಿಳಾಸ", "Help translate" : "ಭಾಷಾಂತರಿಸಲು ಸಹಾಯ ಮಾಡಿ", - "Password" : "ಗುಪ್ತ ಪದ", "Current password" : "ಪ್ರಸ್ತುತ ಗುಪ್ತಪದ", - "New password" : "ಹೊಸ ಗುಪ್ತಪದ", "Change password" : "ಗುಪ್ತ ಪದವನ್ನು ಬದಲಾಯಿಸಿ", - "Username" : "ಬಳಕೆಯ ಹೆಸರು", "Group already exists." : "ಗುಂಪು ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ.", "Unable to add group." : "ಗುಂಪುನ್ನು ಸೇರಿಸಲು ಸಾಧ್ಯವಾಗುತ್ತಿಲ್ಲ.", "Unable to delete group." : "ಗುಂಪುನ್ನು ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ.", @@ -64,9 +67,7 @@ "Invalid user" : "ಅಮಾನ್ಯ ಬಳಕೆದಾರ", "Unable to change mail address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ", "Email saved" : "ಇ-ಅಂಚೆಯನ್ನು ಉಳಿಸಿದೆ", - "All" : "ಎಲ್ಲಾ", "Error while disabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", - "Disable" : "ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿ", "Error while enabling app" : "ಕಾರ್ಯಕ್ರಮವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿಸುವಾಗ ಏನೊ ಲೋಪವಾಗಿದೆ", "Updated" : "ಆಧುನೀಕರಿಸಲಾಗಿದೆ", "Unable to delete {objName}" : "{objName} ಅಳಿಸಲು ಸಾಧ್ಯವಿಲ್ಲ ", @@ -83,7 +84,6 @@ "E-Mail" : "ಇ-ಅಂಚೆ ವಿಳಾಸ", "Create" : "ಸೃಷ್ಟಿಸಿ", "Other" : "ಇತರೆ", - "Quota" : "ಪಾಲು", "change full name" : "ಪೂರ್ಣ ಹೆಸರು ಬದಲಾಯಿಸಬಹುದು", "set new password" : "ಹೊಸ ಗುಪ್ತಪದವನ್ನು ಹೊಂದಿಸಿ", "change email address" : "ಇ-ಅಂಚೆ ವಿಳಾಸ ಬದಲಾಯಿಸಿ", diff --git a/settings/l10n/ko.js b/settings/l10n/ko.js index de2ab834a2b..82fe7c247d1 100644 --- a/settings/l10n/ko.js +++ b/settings/l10n/ko.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "프로필 사진 선택", "Groups" : "그룹", "Limit to groups" : "그룹으로 제한", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "커뮤니티가 개발한 공식 앱입니다. 이 앱은 Nextcloud의 핵심 기능이며 프로덕션 환경에서 사용할 수 있습니다.", "Official" : "공식", + "Remove" : "삭제", + "Disable" : "사용 안함", + "All" : "모두", + "View in store" : "스토어에서 보기", "Visit website" : "웹 사이트 방문", + "Report a bug" : "버그 신고", "User documentation" : "사용자 문서", + "Admin documentation" : "관리 문서", "Developer documentation" : "개발자 문서", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", + "No apps found for your version" : "설치된 버전에 대한 앱 없음", "Enable all" : "모두 활성화", "Enable" : "사용함", "The app will be downloaded from the app store" : "이 앱을 앱 스토어에서 다운로드합니다", + "New password" : "새 암호", "{size} used" : "{size} 사용됨", + "Username" : "사용자 이름", + "Password" : "암호", "Email" : "이메일", "Group admin for" : "다음 그룹의 관리자:", + "Quota" : "할당량", "Language" : "언어", + "Storage location" : "저장소 위치", "User backend" : "사용자 백엔드", + "Last login" : "마지막 로그인", "Unlimited" : "무제한", "Default quota" : "기본 할당량", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "앱이 활성화되었지만, 앱을 업데이트해야 합니다. 5초 후 앱 업데이트 페이지로 넘어갑니다.", - "App update" : "앱 업데이트", - "Error: This app can not be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다", "Your apps" : "내 앱", "Disabled apps" : "비활성화된 앱", "Updates" : "업데이트", "App bundles" : "앱 번들", + "Show last login" : "마지막 로그인 보이기", + "Show user backend" : "사용자 백엔드 보이기", "Admins" : "관리자", "Everyone" : "모두", "Add group" : "그룹 추가", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "앱이 활성화되었지만, 앱을 업데이트해야 합니다. 5초 후 앱 업데이트 페이지로 넘어갑니다.", + "App update" : "앱 업데이트", + "Error: This app can not be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다", "SSL Root Certificates" : "SSL 루트 인증서", "Common Name" : "공통 이름", "Valid until" : "만료 기간:", @@ -240,9 +257,7 @@ OC.L10N.register( "Twitter" : "트위터", "Twitter handle @…" : "트위터 핸들 @…", "Help translate" : "번역 돕기", - "Password" : "암호", "Current password" : "현재 암호", - "New password" : "새 암호", "Change password" : "암호 변경", "Web, desktop and mobile clients currently logged in to your account." : "사용자 계정으로 로그인된 웹, 데스크톱, 모바일 클라이언트 목록입니다.", "Device" : "장치", @@ -251,7 +266,6 @@ OC.L10N.register( "Create new app password" : "새로운 앱 암호 만들기", "Use the credentials below to configure your app or device." : "앱 또는 장치를 구성하는 아래의 자격 증명을 사용합니다.", "For security reasons this password will only be shown once." : "보안상의 이유로 이 암호는 한 번만 표시됩니다.", - "Username" : "사용자 이름", "Done" : "완료", "Enabled apps" : "활성화된 앱", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL이 오래된 %s 버전을 사용하고 있습니다(%s). 운영 체제나 기능을 업데이트하지 않으면 %s 등을 안정적으로 사용할 수 없습니다.", @@ -276,16 +290,12 @@ OC.L10N.register( "Password confirmation is required" : "암호 확인이 필요합니다", "Are you really sure you want add {domain} as trusted domain?" : "신뢰할 수 있는 도메인 목록에 {domain}을(를) 추가하시겠습니까?", "Add trusted domain" : "신뢰할 수 있는 도메인 추가", - "All" : "모두", "Update to %s" : "%s(으)로 업데이트", "_You have %n app update pending_::_You have %n app updates pending_" : ["앱 %n개 업데이트 대기 중"], - "No apps found for your version" : "설치된 버전에 대한 앱 없음", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "커뮤니티가 개발한 공식 앱입니다. 이 앱은 Nextcloud의 핵심 기능이며 프로덕션 환경에서 사용할 수 있습니다.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "승인된 앱은 신뢰할 수 있는 개발자가 개발하며 보안 검사를 통과했습니다. 열린 코드 저장소에서 관리되며 일반적인 환경에서 사용할 수 있는 수준으로 관리됩니다.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "이 앱의 보안 문제가 점검되지 않았고, 출시된 지 얼마 지나지 않았거나 아직 불안정합니다. 본인 책임 하에 설치하십시오.", "Disabling app …" : "앱 비활성화 중…", "Error while disabling app" : "앱을 비활성화하는 중 오류 발생", - "Disable" : "사용 안함", "Enabling app …" : "앱 활성화 중…", "Error while enabling app" : "앱을 활성화하는 중 오류 발생", "Error: Could not disable broken app" : "오류: 망가진 앱을 비활성화할 수 없음", @@ -295,7 +305,6 @@ OC.L10N.register( "Updated" : "업데이트됨", "Removing …" : "삭제 중 …", "Error while removing app" : "앱을 삭제하는 중 오류 발생", - "Remove" : "삭제", "Approved" : "승인됨", "Experimental" : "실험적", "No apps found for {query}" : "{query} 앱을 찾을 수 없음", @@ -352,16 +361,12 @@ OC.L10N.register( "Theming" : "테마 꾸미기", "Check the security of your Nextcloud over our security scan" : "Nextcloud의 보안 상태 검사하기", "Hardening and security guidance" : "보안 강화 지침", - "View in store" : "스토어에서 보기", "This app has an update available." : "이 앱을 업데이트할 수 있습니다.", "by %s" : "%s 개발", "%s-licensed" : "%s 라이선스", "Documentation:" : "문서:", - "Admin documentation" : "관리 문서", - "Report a bug" : "버그 신고", "Show description …" : "설명 보기 …", "Hide description …" : "설명 숨기기 …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "Enable only for specific groups" : "특정 그룹에만 허용", "Online documentation" : "온라인 문서", "Getting help" : "도움 얻기", @@ -385,8 +390,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "뉴스레터를 구독하세요!", "Settings" : "설정", "Show storage location" : "저장소 위치 보이기", - "Show user backend" : "사용자 백엔드 보이기", - "Show last login" : "마지막 로그인 보이기", "Show email address" : "이메일 주소 보이기", "Send email to new user" : "새 사용자에게 이메일 보내기", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "새 사용자의 암호가 비어 있으면 암호를 설정하는 링크가 포함된 활성화 이메일을 보냅니다다.", @@ -398,9 +401,6 @@ OC.L10N.register( "Disabled" : "비활성화됨", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")", "Other" : "기타", - "Quota" : "할당량", - "Storage location" : "저장소 위치", - "Last login" : "마지막 로그인", "change full name" : "전체 이름 변경", "set new password" : "새 암호 설정", "change email address" : "이메일 주소 변경", diff --git a/settings/l10n/ko.json b/settings/l10n/ko.json index 9ddb62fcd89..68681e5d28f 100644 --- a/settings/l10n/ko.json +++ b/settings/l10n/ko.json @@ -103,32 +103,49 @@ "Select a profile picture" : "프로필 사진 선택", "Groups" : "그룹", "Limit to groups" : "그룹으로 제한", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "커뮤니티가 개발한 공식 앱입니다. 이 앱은 Nextcloud의 핵심 기능이며 프로덕션 환경에서 사용할 수 있습니다.", "Official" : "공식", + "Remove" : "삭제", + "Disable" : "사용 안함", + "All" : "모두", + "View in store" : "스토어에서 보기", "Visit website" : "웹 사이트 방문", + "Report a bug" : "버그 신고", "User documentation" : "사용자 문서", + "Admin documentation" : "관리 문서", "Developer documentation" : "개발자 문서", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최소 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "This app cannot be installed because the following dependencies are not fulfilled:" : "다음 의존성을 만족할 수 없기 때문에 이 앱을 설치할 수 없습니다:", + "No apps found for your version" : "설치된 버전에 대한 앱 없음", "Enable all" : "모두 활성화", "Enable" : "사용함", "The app will be downloaded from the app store" : "이 앱을 앱 스토어에서 다운로드합니다", + "New password" : "새 암호", "{size} used" : "{size} 사용됨", + "Username" : "사용자 이름", + "Password" : "암호", "Email" : "이메일", "Group admin for" : "다음 그룹의 관리자:", + "Quota" : "할당량", "Language" : "언어", + "Storage location" : "저장소 위치", "User backend" : "사용자 백엔드", + "Last login" : "마지막 로그인", "Unlimited" : "무제한", "Default quota" : "기본 할당량", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "앱이 활성화되었지만, 앱을 업데이트해야 합니다. 5초 후 앱 업데이트 페이지로 넘어갑니다.", - "App update" : "앱 업데이트", - "Error: This app can not be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다", "Your apps" : "내 앱", "Disabled apps" : "비활성화된 앱", "Updates" : "업데이트", "App bundles" : "앱 번들", + "Show last login" : "마지막 로그인 보이기", + "Show user backend" : "사용자 백엔드 보이기", "Admins" : "관리자", "Everyone" : "모두", "Add group" : "그룹 추가", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "앱이 활성화되었지만, 앱을 업데이트해야 합니다. 5초 후 앱 업데이트 페이지로 넘어갑니다.", + "App update" : "앱 업데이트", + "Error: This app can not be enabled because it makes the server unstable" : "오류: 이 앱은 서버를 불안정하게 만들 수 있어서 활성화할 수 없습니다", "SSL Root Certificates" : "SSL 루트 인증서", "Common Name" : "공통 이름", "Valid until" : "만료 기간:", @@ -238,9 +255,7 @@ "Twitter" : "트위터", "Twitter handle @…" : "트위터 핸들 @…", "Help translate" : "번역 돕기", - "Password" : "암호", "Current password" : "현재 암호", - "New password" : "새 암호", "Change password" : "암호 변경", "Web, desktop and mobile clients currently logged in to your account." : "사용자 계정으로 로그인된 웹, 데스크톱, 모바일 클라이언트 목록입니다.", "Device" : "장치", @@ -249,7 +264,6 @@ "Create new app password" : "새로운 앱 암호 만들기", "Use the credentials below to configure your app or device." : "앱 또는 장치를 구성하는 아래의 자격 증명을 사용합니다.", "For security reasons this password will only be shown once." : "보안상의 이유로 이 암호는 한 번만 표시됩니다.", - "Username" : "사용자 이름", "Done" : "완료", "Enabled apps" : "활성화된 앱", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL이 오래된 %s 버전을 사용하고 있습니다(%s). 운영 체제나 기능을 업데이트하지 않으면 %s 등을 안정적으로 사용할 수 없습니다.", @@ -274,16 +288,12 @@ "Password confirmation is required" : "암호 확인이 필요합니다", "Are you really sure you want add {domain} as trusted domain?" : "신뢰할 수 있는 도메인 목록에 {domain}을(를) 추가하시겠습니까?", "Add trusted domain" : "신뢰할 수 있는 도메인 추가", - "All" : "모두", "Update to %s" : "%s(으)로 업데이트", "_You have %n app update pending_::_You have %n app updates pending_" : ["앱 %n개 업데이트 대기 중"], - "No apps found for your version" : "설치된 버전에 대한 앱 없음", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "커뮤니티가 개발한 공식 앱입니다. 이 앱은 Nextcloud의 핵심 기능이며 프로덕션 환경에서 사용할 수 있습니다.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "승인된 앱은 신뢰할 수 있는 개발자가 개발하며 보안 검사를 통과했습니다. 열린 코드 저장소에서 관리되며 일반적인 환경에서 사용할 수 있는 수준으로 관리됩니다.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "이 앱의 보안 문제가 점검되지 않았고, 출시된 지 얼마 지나지 않았거나 아직 불안정합니다. 본인 책임 하에 설치하십시오.", "Disabling app …" : "앱 비활성화 중…", "Error while disabling app" : "앱을 비활성화하는 중 오류 발생", - "Disable" : "사용 안함", "Enabling app …" : "앱 활성화 중…", "Error while enabling app" : "앱을 활성화하는 중 오류 발생", "Error: Could not disable broken app" : "오류: 망가진 앱을 비활성화할 수 없음", @@ -293,7 +303,6 @@ "Updated" : "업데이트됨", "Removing …" : "삭제 중 …", "Error while removing app" : "앱을 삭제하는 중 오류 발생", - "Remove" : "삭제", "Approved" : "승인됨", "Experimental" : "실험적", "No apps found for {query}" : "{query} 앱을 찾을 수 없음", @@ -350,16 +359,12 @@ "Theming" : "테마 꾸미기", "Check the security of your Nextcloud over our security scan" : "Nextcloud의 보안 상태 검사하기", "Hardening and security guidance" : "보안 강화 지침", - "View in store" : "스토어에서 보기", "This app has an update available." : "이 앱을 업데이트할 수 있습니다.", "by %s" : "%s 개발", "%s-licensed" : "%s 라이선스", "Documentation:" : "문서:", - "Admin documentation" : "관리 문서", - "Report a bug" : "버그 신고", "Show description …" : "설명 보기 …", "Hide description …" : "설명 숨기기 …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "이 앱은 Nextcloud 최대 버전을 지정하지 않았습니다. 차후 버전에서는 오류로 처리됩니다.", "Enable only for specific groups" : "특정 그룹에만 허용", "Online documentation" : "온라인 문서", "Getting help" : "도움 얻기", @@ -383,8 +388,6 @@ "Subscribe to our newsletter!" : "뉴스레터를 구독하세요!", "Settings" : "설정", "Show storage location" : "저장소 위치 보이기", - "Show user backend" : "사용자 백엔드 보이기", - "Show last login" : "마지막 로그인 보이기", "Show email address" : "이메일 주소 보이기", "Send email to new user" : "새 사용자에게 이메일 보내기", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "새 사용자의 암호가 비어 있으면 암호를 설정하는 링크가 포함된 활성화 이메일을 보냅니다다.", @@ -396,9 +399,6 @@ "Disabled" : "비활성화됨", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "저장소 할당량을 입력하십시오 (예: \"512 MB\", \"12 GB\")", "Other" : "기타", - "Quota" : "할당량", - "Storage location" : "저장소 위치", - "Last login" : "마지막 로그인", "change full name" : "전체 이름 변경", "set new password" : "새 암호 설정", "change email address" : "이메일 주소 변경", diff --git a/settings/l10n/lb.js b/settings/l10n/lb.js index 95f5aac3466..4533684909e 100644 --- a/settings/l10n/lb.js +++ b/settings/l10n/lb.js @@ -8,9 +8,15 @@ OC.L10N.register( "Email sent" : "Email geschéckt", "Delete" : "Läschen", "Groups" : "Gruppen", + "Disable" : "Ofschalten", + "All" : "All", "Enable" : "Aschalten", "The app will be downloaded from the app store" : "D'App gett aus dem App Store erofgelueden", + "New password" : "Neit Passwuert", + "Username" : "Benotzernumm", + "Password" : "Passwuert", "Email" : "Email", + "Quota" : "Quota", "Language" : "Sprooch", "None" : "Keng", "Login" : "Login", @@ -25,20 +31,14 @@ OC.L10N.register( "Cancel" : "Ofbriechen", "Your email address" : "Deng Email Adress", "Help translate" : "Hëllef iwwersetzen", - "Password" : "Passwuert", "Current password" : "Momentan 't Passwuert", - "New password" : "Neit Passwuert", "Change password" : "Passwuert änneren", - "Username" : "Benotzernumm", "Email saved" : "E-mail gespäichert", - "All" : "All", - "Disable" : "Ofschalten", "Error while enabling app" : "Fehler beim Aktivéieren vun der App", "undo" : "réckgängeg man", "never" : "ni", "E-Mail" : "E-Mail", "Create" : "Erstellen", - "Other" : "Aner", - "Quota" : "Quota" + "Other" : "Aner" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/lb.json b/settings/l10n/lb.json index 3ecbd097fed..36ca65a19f6 100644 --- a/settings/l10n/lb.json +++ b/settings/l10n/lb.json @@ -6,9 +6,15 @@ "Email sent" : "Email geschéckt", "Delete" : "Läschen", "Groups" : "Gruppen", + "Disable" : "Ofschalten", + "All" : "All", "Enable" : "Aschalten", "The app will be downloaded from the app store" : "D'App gett aus dem App Store erofgelueden", + "New password" : "Neit Passwuert", + "Username" : "Benotzernumm", + "Password" : "Passwuert", "Email" : "Email", + "Quota" : "Quota", "Language" : "Sprooch", "None" : "Keng", "Login" : "Login", @@ -23,20 +29,14 @@ "Cancel" : "Ofbriechen", "Your email address" : "Deng Email Adress", "Help translate" : "Hëllef iwwersetzen", - "Password" : "Passwuert", "Current password" : "Momentan 't Passwuert", - "New password" : "Neit Passwuert", "Change password" : "Passwuert änneren", - "Username" : "Benotzernumm", "Email saved" : "E-mail gespäichert", - "All" : "All", - "Disable" : "Ofschalten", "Error while enabling app" : "Fehler beim Aktivéieren vun der App", "undo" : "réckgängeg man", "never" : "ni", "E-Mail" : "E-Mail", "Create" : "Erstellen", - "Other" : "Aner", - "Quota" : "Quota" + "Other" : "Aner" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/lt_LT.js b/settings/l10n/lt_LT.js index dcf972b95f1..39bbf3941de 100644 --- a/settings/l10n/lt_LT.js +++ b/settings/l10n/lt_LT.js @@ -80,24 +80,35 @@ OC.L10N.register( "Select a profile picture" : "Pasirinkite profilio paveikslą", "Week starts on {fdow}" : "Savaitės pradžia yra {fdow}", "Groups" : "Grupės", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficialios programėlės yra kuriamos bendruomenės viduje ir jas kuria bendruomenė. Šios programėlės siūlo centrinį funkcionalumą ir yra paruoštos kasdieniam naudojimui.", "Official" : "Oficiali", + "Remove" : "Šalinti", + "Disable" : "Išjungti", + "All" : "Viskas", "Visit website" : "Aplankyti svetainę", + "Report a bug" : "Pranešti apie klaidą", "User documentation" : "Naudotojo dokumentacija", + "Admin documentation" : "Administratoriaus dokumentacija", "Developer documentation" : "Kūrėjo dokumentacija", "Enable" : "Įjungti", + "New password" : "Naujas slaptažodis", "Delete user" : "Ištrinti naudotoją", "Disable user" : "Išjungti naudotoją", "Enable user" : "Įjungti naudotoją", + "Username" : "Naudotojo vardas", + "Password" : "Slaptažodis", "Email" : "El. paštas", + "Quota" : "Limitas", "Language" : "Kalba", + "Default language" : "Numatytoji kalba", "Unlimited" : "Neribotai", "Default quota" : "Numatytasis leidžiamas duomenų kiekis", - "Default language" : "Numatytoji kalba", "All languages" : "Visos kalbos", "Your apps" : "Jūsų programėlės", "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", "App bundles" : "Programėlių rinkiniai", + "Show last login" : "Rodyti paskutinį prisijungimą", "Please confirm the group removal " : "Patvirtinkite grupės pašalinimą", "Remove group" : "Šalinti grupę", "Add group" : "Pridėti grupę", @@ -174,9 +185,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Help translate" : "Padėkite išversti", "Locale" : "Lokalė", - "Password" : "Slaptažodis", "Current password" : "Dabartinis slaptažodis", - "New password" : "Naujas slaptažodis", "Change password" : "Pakeisti slaptažodį", "Devices & sessions" : "Įrenginiai ir seansai", "Web, desktop and mobile clients currently logged in to your account." : "Saityno, darbalaukio ir mobilieji klientai, kurie šiuo metu yra prisijungę prie jūsų paskyros.", @@ -185,7 +194,6 @@ OC.L10N.register( "App name" : "Programėlės pavadinimas", "Create new app password" : "Sukurti naują programėlės slaptažodį", "For security reasons this password will only be shown once." : "Saugumo sumetimais šis slaptažodis bus parodytas tik vieną kartą.", - "Username" : "Naudotojo vardas", "Done" : "Atlikta", "Enabled apps" : "Įjungtos programėlės", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL naudoja pasenusią %s versiją (%s). Atnaujinkite savo operacinę sistemą, arba tokios ypatybės kaip %s neveiks patikimai.", @@ -208,12 +216,9 @@ OC.L10N.register( "Email saved" : "El. paštas įrašytas", "Password confirmation is required" : "Reikalingas slaptažodžio patvirtinimas", "Add trusted domain" : "Pridėti patikimą domeną", - "All" : "Viskas", "Update to %s" : "Atnaujinti į %s", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficialios programėlės yra kuriamos bendruomenės viduje ir jas kuria bendruomenė. Šios programėlės siūlo centrinį funkcionalumą ir yra paruoštos kasdieniam naudojimui.", "Disabling app …" : "Išjungiama programėlė …", "Error while disabling app" : "Klaida, išjungiant programėlę", - "Disable" : "Išjungti", "Enabling app …" : "Programėlė įjungiama", "Error while enabling app" : "Klaida, įjungiant programėlę", "Updating...." : "Atnaujinama...", @@ -221,7 +226,6 @@ OC.L10N.register( "Updated" : "Atnaujinta", "Removing …" : "Šalinama …", "Error while removing app" : "Klaida, šalinant programėlę", - "Remove" : "Šalinti", "Approved" : "Patvirtinta", "Experimental" : "Eksperimentinė", "Unable to delete {objName}" : "Nepavyko ištrinti {objName}", @@ -243,8 +247,6 @@ OC.L10N.register( "How to do backups" : "Kaip daryti atsargines kopijas", "This app has an update available." : "Šiai programėlei yra prieinamas atnaujinimas.", "Documentation:" : "Dokumentacija:", - "Admin documentation" : "Administratoriaus dokumentacija", - "Report a bug" : "Pranešti apie klaidą", "Show description …" : "Rodyti aprašą …", "Hide description …" : "Slėpti aprašą …", "Online documentation" : "Dokumentacija internete", @@ -261,7 +263,6 @@ OC.L10N.register( "Follow us on Twitter!" : "Sekite mus Twitter!", "Subscribe to our newsletter!" : "Prenumeruokite mūsų naujienlaiškį!", "Settings" : "Nustatymai", - "Show last login" : "Rodyti paskutinį prisijungimą", "Show email address" : "Rodyti el. pašto adresą", "E-Mail" : "El. paštas", "Create" : "Sukurti", @@ -270,7 +271,6 @@ OC.L10N.register( "Disabled" : "Išjungta", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Įveskite saugyklos leidžiamą duomenų kiekį (pvz.: \"512 MB\" ar \"12 GB\")", "Other" : "Kita", - "Quota" : "Limitas", "change full name" : "keisti pilną vardą", "set new password" : "nustatyti naują slaptažodį", "Default" : "Numatytasis", diff --git a/settings/l10n/lt_LT.json b/settings/l10n/lt_LT.json index f719f6e3f2c..3f2949c4e4e 100644 --- a/settings/l10n/lt_LT.json +++ b/settings/l10n/lt_LT.json @@ -78,24 +78,35 @@ "Select a profile picture" : "Pasirinkite profilio paveikslą", "Week starts on {fdow}" : "Savaitės pradžia yra {fdow}", "Groups" : "Grupės", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficialios programėlės yra kuriamos bendruomenės viduje ir jas kuria bendruomenė. Šios programėlės siūlo centrinį funkcionalumą ir yra paruoštos kasdieniam naudojimui.", "Official" : "Oficiali", + "Remove" : "Šalinti", + "Disable" : "Išjungti", + "All" : "Viskas", "Visit website" : "Aplankyti svetainę", + "Report a bug" : "Pranešti apie klaidą", "User documentation" : "Naudotojo dokumentacija", + "Admin documentation" : "Administratoriaus dokumentacija", "Developer documentation" : "Kūrėjo dokumentacija", "Enable" : "Įjungti", + "New password" : "Naujas slaptažodis", "Delete user" : "Ištrinti naudotoją", "Disable user" : "Išjungti naudotoją", "Enable user" : "Įjungti naudotoją", + "Username" : "Naudotojo vardas", + "Password" : "Slaptažodis", "Email" : "El. paštas", + "Quota" : "Limitas", "Language" : "Kalba", + "Default language" : "Numatytoji kalba", "Unlimited" : "Neribotai", "Default quota" : "Numatytasis leidžiamas duomenų kiekis", - "Default language" : "Numatytoji kalba", "All languages" : "Visos kalbos", "Your apps" : "Jūsų programėlės", "Disabled apps" : "Išjungtos programėlės", "Updates" : "Atnaujinimai", "App bundles" : "Programėlių rinkiniai", + "Show last login" : "Rodyti paskutinį prisijungimą", "Please confirm the group removal " : "Patvirtinkite grupės pašalinimą", "Remove group" : "Šalinti grupę", "Add group" : "Pridėti grupę", @@ -172,9 +183,7 @@ "Twitter" : "Twitter", "Help translate" : "Padėkite išversti", "Locale" : "Lokalė", - "Password" : "Slaptažodis", "Current password" : "Dabartinis slaptažodis", - "New password" : "Naujas slaptažodis", "Change password" : "Pakeisti slaptažodį", "Devices & sessions" : "Įrenginiai ir seansai", "Web, desktop and mobile clients currently logged in to your account." : "Saityno, darbalaukio ir mobilieji klientai, kurie šiuo metu yra prisijungę prie jūsų paskyros.", @@ -183,7 +192,6 @@ "App name" : "Programėlės pavadinimas", "Create new app password" : "Sukurti naują programėlės slaptažodį", "For security reasons this password will only be shown once." : "Saugumo sumetimais šis slaptažodis bus parodytas tik vieną kartą.", - "Username" : "Naudotojo vardas", "Done" : "Atlikta", "Enabled apps" : "Įjungtos programėlės", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL naudoja pasenusią %s versiją (%s). Atnaujinkite savo operacinę sistemą, arba tokios ypatybės kaip %s neveiks patikimai.", @@ -206,12 +214,9 @@ "Email saved" : "El. paštas įrašytas", "Password confirmation is required" : "Reikalingas slaptažodžio patvirtinimas", "Add trusted domain" : "Pridėti patikimą domeną", - "All" : "Viskas", "Update to %s" : "Atnaujinti į %s", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficialios programėlės yra kuriamos bendruomenės viduje ir jas kuria bendruomenė. Šios programėlės siūlo centrinį funkcionalumą ir yra paruoštos kasdieniam naudojimui.", "Disabling app …" : "Išjungiama programėlė …", "Error while disabling app" : "Klaida, išjungiant programėlę", - "Disable" : "Išjungti", "Enabling app …" : "Programėlė įjungiama", "Error while enabling app" : "Klaida, įjungiant programėlę", "Updating...." : "Atnaujinama...", @@ -219,7 +224,6 @@ "Updated" : "Atnaujinta", "Removing …" : "Šalinama …", "Error while removing app" : "Klaida, šalinant programėlę", - "Remove" : "Šalinti", "Approved" : "Patvirtinta", "Experimental" : "Eksperimentinė", "Unable to delete {objName}" : "Nepavyko ištrinti {objName}", @@ -241,8 +245,6 @@ "How to do backups" : "Kaip daryti atsargines kopijas", "This app has an update available." : "Šiai programėlei yra prieinamas atnaujinimas.", "Documentation:" : "Dokumentacija:", - "Admin documentation" : "Administratoriaus dokumentacija", - "Report a bug" : "Pranešti apie klaidą", "Show description …" : "Rodyti aprašą …", "Hide description …" : "Slėpti aprašą …", "Online documentation" : "Dokumentacija internete", @@ -259,7 +261,6 @@ "Follow us on Twitter!" : "Sekite mus Twitter!", "Subscribe to our newsletter!" : "Prenumeruokite mūsų naujienlaiškį!", "Settings" : "Nustatymai", - "Show last login" : "Rodyti paskutinį prisijungimą", "Show email address" : "Rodyti el. pašto adresą", "E-Mail" : "El. paštas", "Create" : "Sukurti", @@ -268,7 +269,6 @@ "Disabled" : "Išjungta", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Įveskite saugyklos leidžiamą duomenų kiekį (pvz.: \"512 MB\" ar \"12 GB\")", "Other" : "Kita", - "Quota" : "Limitas", "change full name" : "keisti pilną vardą", "set new password" : "nustatyti naują slaptažodį", "Default" : "Numatytasis", diff --git a/settings/l10n/lv.js b/settings/l10n/lv.js index d0532de04d1..5a94bccd877 100644 --- a/settings/l10n/lv.js +++ b/settings/l10n/lv.js @@ -58,13 +58,24 @@ OC.L10N.register( "Strong password" : "Lieliska parole", "Select a profile picture" : "Izvēlieties profila attēlu", "Groups" : "Grupas", + "Disable" : "Deaktivēt", + "All" : "Visi", "Visit website" : "Apmeklējiet vietni", + "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", + "Admin documentation" : "Administratora dokumentācija", "Developer documentation" : "Izstrādātāja dokumentācija", + "No apps found for your version" : "Neatrada programmu jūsu versijai", "Enable" : "Aktivēt", + "New password" : "Jauna parole", + "Username" : "Lietotājvārds", + "Password" : "Parole", "Email" : "E-pasts", "Group admin for" : "Admin grupa", + "Quota" : "Apjoms", "Language" : "Valoda", + "Storage location" : "Krātuves atrašanās vieta", + "Last login" : "Pēdējā pieteikšanās", "Unlimited" : "Neierobežota", "Default quota" : "Apjoms pēc noklusējuma", "Admins" : "Admins", @@ -147,9 +158,7 @@ OC.L10N.register( "Website" : "Mājaslapa", "Twitter" : "Twitter", "Help translate" : "Palīdzi tulkot", - "Password" : "Parole", "Current password" : "Pašreizējā parole", - "New password" : "Jauna parole", "Change password" : "Mainīt paroli", "Device" : "Ierīce", "Last activity" : "Pēdējā aktivitāte", @@ -157,7 +166,6 @@ OC.L10N.register( "Create new app password" : "Izveidot jaunu programmas paroli", "Use the credentials below to configure your app or device." : "Izmantot akreditācijas datus, lai konfigurētu savu programmu vai ierīci.", "For security reasons this password will only be shown once." : "Drošības apsvērumu dēļ šī parole, tiks parādīta tikai vienreiz.", - "Username" : "Lietotājvārds", "Done" : "Pabeigts", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL izmanto novecojušu %s versiju (%s). Lūdzu, atjauniniet operētājsistēmu vai funkcijām, piem., %s nedarbosies pareizi.", "A problem occurred, please check your log files (Error: %s)" : "Radusies problēma, lūdzu, pārbaudiet žurnāla failus (Kļūda: %s)", @@ -178,11 +186,8 @@ OC.L10N.register( "Password confirmation is required" : "Nepieciešams paroles apstiprinājums", "Are you really sure you want add {domain} as trusted domain?" : "Tu tiešām esi pārliecināta, ka vēlies pievienot {domain} kā uzticamu domēnu?", "Add trusted domain" : "Pievienot uzticamu domēnu", - "All" : "Visi", "Update to %s" : "Atjaunināts uz %s", - "No apps found for your version" : "Neatrada programmu jūsu versijai", "Error while disabling app" : "Kļūda, atvienojot programmu", - "Disable" : "Deaktivēt", "Enabling app …" : "Iespējojot programmu …", "Error while enabling app" : "Kļūda, pievienojot programmu", "Updated" : "Atjaunināta", @@ -215,8 +220,6 @@ OC.L10N.register( "This app has an update available." : "Šai programmai ir pieejams jauninājums", "%s-licensed" : "%s-licencēts", "Documentation:" : "Dokumentācija:", - "Admin documentation" : "Administratora dokumentācija", - "Report a bug" : "Ziņot par kļūdu", "Show description …" : "Rādīt aprakstu …", "Hide description …" : "Slēpt aprakstu …", "Enable only for specific groups" : "Iespējot tikai konkrētām grupām", @@ -233,9 +236,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Ievadiet atgūšanas paroli, lai varētu atgūt lietotāja failus paroles maiņas laikā.", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Lūdzu, ievadiet krātuves kvotu (piem: \"512 MB\" vai \"12 GB\")", "Other" : "Cits", - "Quota" : "Apjoms", - "Storage location" : "Krātuves atrašanās vieta", - "Last login" : "Pēdējā pieteikšanās", "change full name" : "mainīt vārdu", "set new password" : "iestatīt jaunu paroli", "change email address" : "mainīt e-pasta adresi", diff --git a/settings/l10n/lv.json b/settings/l10n/lv.json index f38c629eca5..8abbadba8c5 100644 --- a/settings/l10n/lv.json +++ b/settings/l10n/lv.json @@ -56,13 +56,24 @@ "Strong password" : "Lieliska parole", "Select a profile picture" : "Izvēlieties profila attēlu", "Groups" : "Grupas", + "Disable" : "Deaktivēt", + "All" : "Visi", "Visit website" : "Apmeklējiet vietni", + "Report a bug" : "Ziņot par kļūdu", "User documentation" : "Lietotāja dokumentācija", + "Admin documentation" : "Administratora dokumentācija", "Developer documentation" : "Izstrādātāja dokumentācija", + "No apps found for your version" : "Neatrada programmu jūsu versijai", "Enable" : "Aktivēt", + "New password" : "Jauna parole", + "Username" : "Lietotājvārds", + "Password" : "Parole", "Email" : "E-pasts", "Group admin for" : "Admin grupa", + "Quota" : "Apjoms", "Language" : "Valoda", + "Storage location" : "Krātuves atrašanās vieta", + "Last login" : "Pēdējā pieteikšanās", "Unlimited" : "Neierobežota", "Default quota" : "Apjoms pēc noklusējuma", "Admins" : "Admins", @@ -145,9 +156,7 @@ "Website" : "Mājaslapa", "Twitter" : "Twitter", "Help translate" : "Palīdzi tulkot", - "Password" : "Parole", "Current password" : "Pašreizējā parole", - "New password" : "Jauna parole", "Change password" : "Mainīt paroli", "Device" : "Ierīce", "Last activity" : "Pēdējā aktivitāte", @@ -155,7 +164,6 @@ "Create new app password" : "Izveidot jaunu programmas paroli", "Use the credentials below to configure your app or device." : "Izmantot akreditācijas datus, lai konfigurētu savu programmu vai ierīci.", "For security reasons this password will only be shown once." : "Drošības apsvērumu dēļ šī parole, tiks parādīta tikai vienreiz.", - "Username" : "Lietotājvārds", "Done" : "Pabeigts", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL izmanto novecojušu %s versiju (%s). Lūdzu, atjauniniet operētājsistēmu vai funkcijām, piem., %s nedarbosies pareizi.", "A problem occurred, please check your log files (Error: %s)" : "Radusies problēma, lūdzu, pārbaudiet žurnāla failus (Kļūda: %s)", @@ -176,11 +184,8 @@ "Password confirmation is required" : "Nepieciešams paroles apstiprinājums", "Are you really sure you want add {domain} as trusted domain?" : "Tu tiešām esi pārliecināta, ka vēlies pievienot {domain} kā uzticamu domēnu?", "Add trusted domain" : "Pievienot uzticamu domēnu", - "All" : "Visi", "Update to %s" : "Atjaunināts uz %s", - "No apps found for your version" : "Neatrada programmu jūsu versijai", "Error while disabling app" : "Kļūda, atvienojot programmu", - "Disable" : "Deaktivēt", "Enabling app …" : "Iespējojot programmu …", "Error while enabling app" : "Kļūda, pievienojot programmu", "Updated" : "Atjaunināta", @@ -213,8 +218,6 @@ "This app has an update available." : "Šai programmai ir pieejams jauninājums", "%s-licensed" : "%s-licencēts", "Documentation:" : "Dokumentācija:", - "Admin documentation" : "Administratora dokumentācija", - "Report a bug" : "Ziņot par kļūdu", "Show description …" : "Rādīt aprakstu …", "Hide description …" : "Slēpt aprakstu …", "Enable only for specific groups" : "Iespējot tikai konkrētām grupām", @@ -231,9 +234,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Ievadiet atgūšanas paroli, lai varētu atgūt lietotāja failus paroles maiņas laikā.", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Lūdzu, ievadiet krātuves kvotu (piem: \"512 MB\" vai \"12 GB\")", "Other" : "Cits", - "Quota" : "Apjoms", - "Storage location" : "Krātuves atrašanās vieta", - "Last login" : "Pēdējā pieteikšanās", "change full name" : "mainīt vārdu", "set new password" : "iestatīt jaunu paroli", "change email address" : "mainīt e-pasta adresi", diff --git a/settings/l10n/mk.js b/settings/l10n/mk.js index 396525e6c7b..13d59f97083 100644 --- a/settings/l10n/mk.js +++ b/settings/l10n/mk.js @@ -26,9 +26,16 @@ OC.L10N.register( "Select a profile picture" : "Одбери фотографија за профилот", "Groups" : "Групи", "Official" : "Официјален", + "Disable" : "Оневозможи", + "All" : "Сите", "Developer documentation" : "Документација за програмери", + "No apps found for your version" : "За вашата верзија не се пронајдени апликации", "Enable" : "Овозможи", + "New password" : "Нова лозинка", + "Username" : "Корисничко име", + "Password" : "Лозинка", "Email" : "Е-пошта", + "Quota" : "Квота", "Language" : "Јазик", "Unlimited" : "Неограничено", "Admins" : "Администратори", @@ -80,11 +87,8 @@ OC.L10N.register( "Cancel" : "Откажи", "Your email address" : "Вашата адреса за е-пошта", "Help translate" : "Помогни во преводот", - "Password" : "Лозинка", "Current password" : "Моментална лозинка", - "New password" : "Нова лозинка", "Change password" : "Смени лозинка", - "Username" : "Корисничко име", "A problem occurred, please check your log files (Error: %s)" : "Се случи грешка, ве молам проверете ги вашите датотеки за логови (Грешка: %s)", "Migration Completed" : "Миграцијата заврши", "Group already exists." : "Групата веќе постои.", @@ -99,11 +103,8 @@ OC.L10N.register( "Unable to change mail address" : "Не можам да ја променам електронската адреса/пошта", "Email saved" : "Електронската пошта е снимена", "Add trusted domain" : "Додади доверлив домејн", - "All" : "Сите", "Update to %s" : "Надгради на %s", - "No apps found for your version" : "За вашата верзија не се пронајдени апликации", "Error while disabling app" : "Грешка при исклучувањето на апликацијата", - "Disable" : "Оневозможи", "Error while enabling app" : "Грешка при вклучувањето на апликацијата", "Updated" : "Надграден", "Approved" : "Одобрен", @@ -131,7 +132,6 @@ OC.L10N.register( "Admin Recovery Password" : "Обновување на Admin лозинката", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ве молам внесете квота за просторот (нпр: \"512 MB\" или \"12 GB\")", "Other" : "Останато", - "Quota" : "Квота", "change full name" : "промена на целото име", "set new password" : "постави нова лозинка", "Default" : "Предефиниран" diff --git a/settings/l10n/mk.json b/settings/l10n/mk.json index 18893280daa..89e1f353a1d 100644 --- a/settings/l10n/mk.json +++ b/settings/l10n/mk.json @@ -24,9 +24,16 @@ "Select a profile picture" : "Одбери фотографија за профилот", "Groups" : "Групи", "Official" : "Официјален", + "Disable" : "Оневозможи", + "All" : "Сите", "Developer documentation" : "Документација за програмери", + "No apps found for your version" : "За вашата верзија не се пронајдени апликации", "Enable" : "Овозможи", + "New password" : "Нова лозинка", + "Username" : "Корисничко име", + "Password" : "Лозинка", "Email" : "Е-пошта", + "Quota" : "Квота", "Language" : "Јазик", "Unlimited" : "Неограничено", "Admins" : "Администратори", @@ -78,11 +85,8 @@ "Cancel" : "Откажи", "Your email address" : "Вашата адреса за е-пошта", "Help translate" : "Помогни во преводот", - "Password" : "Лозинка", "Current password" : "Моментална лозинка", - "New password" : "Нова лозинка", "Change password" : "Смени лозинка", - "Username" : "Корисничко име", "A problem occurred, please check your log files (Error: %s)" : "Се случи грешка, ве молам проверете ги вашите датотеки за логови (Грешка: %s)", "Migration Completed" : "Миграцијата заврши", "Group already exists." : "Групата веќе постои.", @@ -97,11 +101,8 @@ "Unable to change mail address" : "Не можам да ја променам електронската адреса/пошта", "Email saved" : "Електронската пошта е снимена", "Add trusted domain" : "Додади доверлив домејн", - "All" : "Сите", "Update to %s" : "Надгради на %s", - "No apps found for your version" : "За вашата верзија не се пронајдени апликации", "Error while disabling app" : "Грешка при исклучувањето на апликацијата", - "Disable" : "Оневозможи", "Error while enabling app" : "Грешка при вклучувањето на апликацијата", "Updated" : "Надграден", "Approved" : "Одобрен", @@ -129,7 +130,6 @@ "Admin Recovery Password" : "Обновување на Admin лозинката", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ве молам внесете квота за просторот (нпр: \"512 MB\" или \"12 GB\")", "Other" : "Останато", - "Quota" : "Квота", "change full name" : "промена на целото име", "set new password" : "постави нова лозинка", "Default" : "Предефиниран" diff --git a/settings/l10n/mn.js b/settings/l10n/mn.js index 13b54c029f6..cf19c4cec69 100644 --- a/settings/l10n/mn.js +++ b/settings/l10n/mn.js @@ -25,8 +25,13 @@ OC.L10N.register( "Groups" : "Бүлгүүд", "Visit website" : "Цахим хуудсаар зочлох", "User documentation" : "Хэрэглэгчийн баримт бичиг", + "Admin documentation" : "Админы баримт бичиг", + "New password" : "Шинэ нууц үг", + "Username" : "Хэрэглэгчийн нэр", + "Password" : "Нууц үг", "Email" : "Цахим шуудан", "Language" : "Хэл", + "Last login" : "Сүүлд нэвтэрсэн огноо", "Your apps" : "Таны аппликэйшнүүд", "Disabled apps" : "Идэвхижээгүй аппликэйшнүүд", "App bundles" : "Аппликэйшны багц", @@ -53,14 +58,11 @@ OC.L10N.register( "Address" : "Хаяг", "Your postal address" : "Таны шуудангийн хаяг", "Website" : "Цахим хуудас", - "Password" : "Нууц үг", "Current password" : "Одоогийн нууц үг", - "New password" : "Шинэ нууц үг", "Change password" : "Нууц үг солих", "Device" : "Төхөөрөмж", "Last activity" : "Хамгийн сүүлийн үйлдэл", "App name" : "Аппликэйшны нэр", - "Username" : "Хэрэглэгчийн нэр", "Done" : "Дууссан", "Enabled apps" : "Идэвхижүүлсэн аппликэйшнүүд", "Group already exists." : "Бүлэг аль хэдийн үүссэн байна", @@ -79,7 +81,6 @@ OC.L10N.register( "never" : "хэзээ ч үгүй", "Tips & tricks" : "Заавар зөвөлгөө", "Documentation:" : "Баримт бичиг:", - "Admin documentation" : "Админы баримт бичиг", "Show description …" : "Тайлбарыг харуулах", "Hide description …" : "Тайлбарыг нуух", "Online documentation" : "Онлайн баримт бичиг", @@ -92,7 +93,6 @@ OC.L10N.register( "Create" : "Шинээр үүсгэх", "Disabled" : "Идэвхигүй", "Other" : "Бусад", - "Last login" : "Сүүлд нэвтэрсэн огноо", "set new password" : "шинэ нууц үг тохируулах", "change email address" : "цахим шуудангийн хаягийг өөрчлөх" }, diff --git a/settings/l10n/mn.json b/settings/l10n/mn.json index d4167f55f53..c4d5231f2e5 100644 --- a/settings/l10n/mn.json +++ b/settings/l10n/mn.json @@ -23,8 +23,13 @@ "Groups" : "Бүлгүүд", "Visit website" : "Цахим хуудсаар зочлох", "User documentation" : "Хэрэглэгчийн баримт бичиг", + "Admin documentation" : "Админы баримт бичиг", + "New password" : "Шинэ нууц үг", + "Username" : "Хэрэглэгчийн нэр", + "Password" : "Нууц үг", "Email" : "Цахим шуудан", "Language" : "Хэл", + "Last login" : "Сүүлд нэвтэрсэн огноо", "Your apps" : "Таны аппликэйшнүүд", "Disabled apps" : "Идэвхижээгүй аппликэйшнүүд", "App bundles" : "Аппликэйшны багц", @@ -51,14 +56,11 @@ "Address" : "Хаяг", "Your postal address" : "Таны шуудангийн хаяг", "Website" : "Цахим хуудас", - "Password" : "Нууц үг", "Current password" : "Одоогийн нууц үг", - "New password" : "Шинэ нууц үг", "Change password" : "Нууц үг солих", "Device" : "Төхөөрөмж", "Last activity" : "Хамгийн сүүлийн үйлдэл", "App name" : "Аппликэйшны нэр", - "Username" : "Хэрэглэгчийн нэр", "Done" : "Дууссан", "Enabled apps" : "Идэвхижүүлсэн аппликэйшнүүд", "Group already exists." : "Бүлэг аль хэдийн үүссэн байна", @@ -77,7 +79,6 @@ "never" : "хэзээ ч үгүй", "Tips & tricks" : "Заавар зөвөлгөө", "Documentation:" : "Баримт бичиг:", - "Admin documentation" : "Админы баримт бичиг", "Show description …" : "Тайлбарыг харуулах", "Hide description …" : "Тайлбарыг нуух", "Online documentation" : "Онлайн баримт бичиг", @@ -90,7 +91,6 @@ "Create" : "Шинээр үүсгэх", "Disabled" : "Идэвхигүй", "Other" : "Бусад", - "Last login" : "Сүүлд нэвтэрсэн огноо", "set new password" : "шинэ нууц үг тохируулах", "change email address" : "цахим шуудангийн хаягийг өөрчлөх" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/ms_MY.js b/settings/l10n/ms_MY.js index a2b69a88b2a..33166a7aba2 100644 --- a/settings/l10n/ms_MY.js +++ b/settings/l10n/ms_MY.js @@ -4,8 +4,13 @@ OC.L10N.register( "Authentication error" : "Ralat pengesahan", "Delete" : "Padam", "Groups" : "Kumpulan", + "Disable" : "Nyahaktif", "Enable" : "Aktif", + "New password" : "Kata laluan baru", + "Username" : "Nama pengguna", + "Password" : "Kata laluan", "Email" : "Email", + "Quota" : "Kuota", "Language" : "Bahasa", "Login" : "Log masuk", "Server address" : "Alamat pelayan", @@ -13,16 +18,11 @@ OC.L10N.register( "Cancel" : "Batal", "Your email address" : "Alamat emel anda", "Help translate" : "Bantu terjemah", - "Password" : "Kata laluan", "Current password" : "Kata laluan semasa", - "New password" : "Kata laluan baru", "Change password" : "Ubah kata laluan", - "Username" : "Nama pengguna", "Email saved" : "Emel disimpan", - "Disable" : "Nyahaktif", "never" : "jangan", "Create" : "Buat", - "Other" : "Lain", - "Quota" : "Kuota" + "Other" : "Lain" }, "nplurals=1; plural=0;"); diff --git a/settings/l10n/ms_MY.json b/settings/l10n/ms_MY.json index 5842da8e3d2..4cd1eb6edb2 100644 --- a/settings/l10n/ms_MY.json +++ b/settings/l10n/ms_MY.json @@ -2,8 +2,13 @@ "Authentication error" : "Ralat pengesahan", "Delete" : "Padam", "Groups" : "Kumpulan", + "Disable" : "Nyahaktif", "Enable" : "Aktif", + "New password" : "Kata laluan baru", + "Username" : "Nama pengguna", + "Password" : "Kata laluan", "Email" : "Email", + "Quota" : "Kuota", "Language" : "Bahasa", "Login" : "Log masuk", "Server address" : "Alamat pelayan", @@ -11,16 +16,11 @@ "Cancel" : "Batal", "Your email address" : "Alamat emel anda", "Help translate" : "Bantu terjemah", - "Password" : "Kata laluan", "Current password" : "Kata laluan semasa", - "New password" : "Kata laluan baru", "Change password" : "Ubah kata laluan", - "Username" : "Nama pengguna", "Email saved" : "Emel disimpan", - "Disable" : "Nyahaktif", "never" : "jangan", "Create" : "Buat", - "Other" : "Lain", - "Quota" : "Kuota" + "Other" : "Lain" },"pluralForm" :"nplurals=1; plural=0;" }
\ No newline at end of file diff --git a/settings/l10n/nb.js b/settings/l10n/nb.js index 9a309efbd80..0f9aa469a2f 100644 --- a/settings/l10n/nb.js +++ b/settings/l10n/nb.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Velg et profilbilde", "Groups" : "Grupper", "Limit to groups" : "Begrens til grupper", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offisielle programmer utvikles av og innenfor miljøet, de byr på sentral funksjonalitet og er klare for bruk i produksjon.", "Official" : "Offisiell", + "Remove" : "Fjern", + "Disable" : "Deaktiver ", + "All" : "Alle", + "View in store" : "Vis i butikk", "Visit website" : "Besøk nettsiden", + "Report a bug" : "Rapporter en feil", "User documentation" : "Brukerdokumentasjon", + "Admin documentation" : "Admin-dokumentasjon", "Developer documentation" : "Utviklerdokumentasjon", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen laveste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette programmet kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", + "No apps found for your version" : "Ingen programmer funnet for din versjon", "Enable all" : "Skru på alle", "Enable" : "Aktiver", "The app will be downloaded from the app store" : "Denne appen blir lastet ned fra program-butikken", + "New password" : "Nytt passord", "{size} used" : "{size} brukt", + "Username" : "Brukernavn", + "Password" : "Passord", "Email" : "E-post", "Group admin for" : "Gruppeadministrator for", + "Quota" : "Kvote", "Language" : "Språk", + "Storage location" : "Lagringsplassering", "User backend" : "Bruker-tjener", + "Last login" : "Siste innlogging", "Unlimited" : "Ubegrenset", "Default quota" : "Standard kvote", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Programmet er aktivert men må oppdateres. Du vil bli videresendt til oppdateringssiden om 5 sekunder.", - "App update" : "Programoppdatering", - "Error: This app can not be enabled because it makes the server unstable" : "Feil: Dette programmet kan ikke aktiveres fordi det gjør tjeneren ustabil", "Your apps" : "Dine programmer", "Disabled apps" : "Avskrudde programmer", "Updates" : "Oppdateringer", "App bundles" : "Programpakker", + "Show last login" : "Vis siste innlogging", + "Show user backend" : "Vis bruker-bakende", "Admins" : "Administratorer", "Everyone" : "Alle", "Add group" : "Legg til gruppe", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Programmet er aktivert men må oppdateres. Du vil bli videresendt til oppdateringssiden om 5 sekunder.", + "App update" : "Programoppdatering", + "Error: This app can not be enabled because it makes the server unstable" : "Feil: Dette programmet kan ikke aktiveres fordi det gjør tjeneren ustabil", "SSL Root Certificates" : "SSL-rotsertifikater", "Common Name" : "Vanlig navn", "Valid until" : "Gyldig til", @@ -241,9 +258,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Twitter-konto @ …", "Help translate" : "Bidra til oversettelsen", - "Password" : "Passord", "Current password" : "Nåværende passord", - "New password" : "Nytt passord", "Change password" : "Endre passord", "Web, desktop and mobile clients currently logged in to your account." : "Følgende nett, skrivebord og mobile klienter er for øyeblikket logget på din konto.", "Device" : "Enhet", @@ -252,7 +267,6 @@ OC.L10N.register( "Create new app password" : "Lag nytt programpassord", "Use the credentials below to configure your app or device." : "Bruk påloggingsinformasjonen under for å sette opp programmet på din mobile enhet.", "For security reasons this password will only be shown once." : "For sikkerhetens skyld vil dette passordet kun vises en gang.", - "Username" : "Brukernavn", "Done" : "Ferdig", "Enabled apps" : "Påskrudde programmer", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruker en utdatert %s-versjon (%s). Oppdater operativsystemet ditt; ellers vil ikke funksjoner som %s virke korrekt.", @@ -277,16 +291,12 @@ OC.L10N.register( "Password confirmation is required" : "Passord bekreftelse er nødvendig", "Are you really sure you want add {domain} as trusted domain?" : "Er du virkelig sikker på du vil legge til {domain} som klarert domene?", "Add trusted domain" : "Legg til et klarert domene", - "All" : "Alle", "Update to %s" : "Oppdater til %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n programoppgradering som venter","Du har %n programoppgraderinger som venter"], - "No apps found for your version" : "Ingen programmer funnet for din versjon", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offisielle programmer utvikles av og innenfor miljøet, de byr på sentral funksjonalitet og er klare for bruk i produksjon.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkjente programm er utviklet av tiltrodde utviklere og har gjennomgått en rask sikkerhetssjekk. De vedlikeholdes aktivt i et åpent kode-depot og utviklerne anser dem for å være stabile for tidvis eller normal bruk.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Dette programmet er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.", "Disabling app …" : "Skrur av program…", "Error while disabling app" : "Deaktivering av program mislyktes", - "Disable" : "Deaktiver ", "Enabling app …" : "Aktiverer program…", "Error while enabling app" : "Aktivering av program mislyktes", "Error: Could not disable broken app" : "Feil: Kunne ikke deaktivere ustabilt program", @@ -296,7 +306,6 @@ OC.L10N.register( "Updated" : "Oppdatert", "Removing …" : "Fjerner…", "Error while removing app" : "Feil under fjerning av program", - "Remove" : "Fjern", "Approved" : "Godkjent", "Experimental" : "Eksperimentell", "No apps found for {query}" : "Ingen programmer funnet for {query}", @@ -353,16 +362,12 @@ OC.L10N.register( "Theming" : "Drakter", "Check the security of your Nextcloud over our security scan" : "Sjekk sikkerheten på din Nextcloud over vår sikkerhetsskanning", "Hardening and security guidance" : "Herding og sikkerhetsveiledning", - "View in store" : "Vis i butikk", "This app has an update available." : "En oppdatering er tilgjengelig for dette programmet.", "by %s" : "av %s", "%s-licensed" : "%s-lisensiert", "Documentation:" : "Dokumentasjon:", - "Admin documentation" : "Admin-dokumentasjon", - "Report a bug" : "Rapporter en feil", "Show description …" : "Vis beskrivelse…", "Hide description …" : "Skjul beskrivelse…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "Enable only for specific groups" : "Aktiver kun for gitte grupper", "Online documentation" : "Elektronisk dokumentasjon", "Getting help" : "Skaffe hjelp", @@ -386,8 +391,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Abonner på vårt nyhetsbrev!", "Settings" : "Innstillinger", "Show storage location" : "Vis lagringssted", - "Show user backend" : "Vis bruker-bakende", - "Show last login" : "Vis siste innlogging", "Show email address" : "Vis e-postadresse", "Send email to new user" : "Send e-post til ny bruker", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Når passordet til en ny brukeren er utelatt, vil vedkommnende bli sendt en aktiveringslenke.", @@ -399,9 +402,6 @@ OC.L10N.register( "Disabled" : "Avskrudd", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")", "Other" : "Annet", - "Quota" : "Kvote", - "Storage location" : "Lagringsplassering", - "Last login" : "Siste innlogging", "change full name" : "endre fullt navn", "set new password" : "sett nytt passord", "change email address" : "endre e-postadresse", diff --git a/settings/l10n/nb.json b/settings/l10n/nb.json index e075de6cc20..7f185b4650b 100644 --- a/settings/l10n/nb.json +++ b/settings/l10n/nb.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Velg et profilbilde", "Groups" : "Grupper", "Limit to groups" : "Begrens til grupper", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offisielle programmer utvikles av og innenfor miljøet, de byr på sentral funksjonalitet og er klare for bruk i produksjon.", "Official" : "Offisiell", + "Remove" : "Fjern", + "Disable" : "Deaktiver ", + "All" : "Alle", + "View in store" : "Vis i butikk", "Visit website" : "Besøk nettsiden", + "Report a bug" : "Rapporter en feil", "User documentation" : "Brukerdokumentasjon", + "Admin documentation" : "Admin-dokumentasjon", "Developer documentation" : "Utviklerdokumentasjon", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen laveste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Dette programmet kan ikke installeres fordi følgende avhengigheter ikke er tilfredsstilt:", + "No apps found for your version" : "Ingen programmer funnet for din versjon", "Enable all" : "Skru på alle", "Enable" : "Aktiver", "The app will be downloaded from the app store" : "Denne appen blir lastet ned fra program-butikken", + "New password" : "Nytt passord", "{size} used" : "{size} brukt", + "Username" : "Brukernavn", + "Password" : "Passord", "Email" : "E-post", "Group admin for" : "Gruppeadministrator for", + "Quota" : "Kvote", "Language" : "Språk", + "Storage location" : "Lagringsplassering", "User backend" : "Bruker-tjener", + "Last login" : "Siste innlogging", "Unlimited" : "Ubegrenset", "Default quota" : "Standard kvote", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Programmet er aktivert men må oppdateres. Du vil bli videresendt til oppdateringssiden om 5 sekunder.", - "App update" : "Programoppdatering", - "Error: This app can not be enabled because it makes the server unstable" : "Feil: Dette programmet kan ikke aktiveres fordi det gjør tjeneren ustabil", "Your apps" : "Dine programmer", "Disabled apps" : "Avskrudde programmer", "Updates" : "Oppdateringer", "App bundles" : "Programpakker", + "Show last login" : "Vis siste innlogging", + "Show user backend" : "Vis bruker-bakende", "Admins" : "Administratorer", "Everyone" : "Alle", "Add group" : "Legg til gruppe", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Programmet er aktivert men må oppdateres. Du vil bli videresendt til oppdateringssiden om 5 sekunder.", + "App update" : "Programoppdatering", + "Error: This app can not be enabled because it makes the server unstable" : "Feil: Dette programmet kan ikke aktiveres fordi det gjør tjeneren ustabil", "SSL Root Certificates" : "SSL-rotsertifikater", "Common Name" : "Vanlig navn", "Valid until" : "Gyldig til", @@ -239,9 +256,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Twitter-konto @ …", "Help translate" : "Bidra til oversettelsen", - "Password" : "Passord", "Current password" : "Nåværende passord", - "New password" : "Nytt passord", "Change password" : "Endre passord", "Web, desktop and mobile clients currently logged in to your account." : "Følgende nett, skrivebord og mobile klienter er for øyeblikket logget på din konto.", "Device" : "Enhet", @@ -250,7 +265,6 @@ "Create new app password" : "Lag nytt programpassord", "Use the credentials below to configure your app or device." : "Bruk påloggingsinformasjonen under for å sette opp programmet på din mobile enhet.", "For security reasons this password will only be shown once." : "For sikkerhetens skyld vil dette passordet kun vises en gang.", - "Username" : "Brukernavn", "Done" : "Ferdig", "Enabled apps" : "Påskrudde programmer", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL bruker en utdatert %s-versjon (%s). Oppdater operativsystemet ditt; ellers vil ikke funksjoner som %s virke korrekt.", @@ -275,16 +289,12 @@ "Password confirmation is required" : "Passord bekreftelse er nødvendig", "Are you really sure you want add {domain} as trusted domain?" : "Er du virkelig sikker på du vil legge til {domain} som klarert domene?", "Add trusted domain" : "Legg til et klarert domene", - "All" : "Alle", "Update to %s" : "Oppdater til %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n programoppgradering som venter","Du har %n programoppgraderinger som venter"], - "No apps found for your version" : "Ingen programmer funnet for din versjon", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Offisielle programmer utvikles av og innenfor miljøet, de byr på sentral funksjonalitet og er klare for bruk i produksjon.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkjente programm er utviklet av tiltrodde utviklere og har gjennomgått en rask sikkerhetssjekk. De vedlikeholdes aktivt i et åpent kode-depot og utviklerne anser dem for å være stabile for tidvis eller normal bruk.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Dette programmet er ikke sjekket for sikkerhetsproblemer og er ny eller ansett for å være ustabil. Installer på egen risiko.", "Disabling app …" : "Skrur av program…", "Error while disabling app" : "Deaktivering av program mislyktes", - "Disable" : "Deaktiver ", "Enabling app …" : "Aktiverer program…", "Error while enabling app" : "Aktivering av program mislyktes", "Error: Could not disable broken app" : "Feil: Kunne ikke deaktivere ustabilt program", @@ -294,7 +304,6 @@ "Updated" : "Oppdatert", "Removing …" : "Fjerner…", "Error while removing app" : "Feil under fjerning av program", - "Remove" : "Fjern", "Approved" : "Godkjent", "Experimental" : "Eksperimentell", "No apps found for {query}" : "Ingen programmer funnet for {query}", @@ -351,16 +360,12 @@ "Theming" : "Drakter", "Check the security of your Nextcloud over our security scan" : "Sjekk sikkerheten på din Nextcloud over vår sikkerhetsskanning", "Hardening and security guidance" : "Herding og sikkerhetsveiledning", - "View in store" : "Vis i butikk", "This app has an update available." : "En oppdatering er tilgjengelig for dette programmet.", "by %s" : "av %s", "%s-licensed" : "%s-lisensiert", "Documentation:" : "Dokumentasjon:", - "Admin documentation" : "Admin-dokumentasjon", - "Report a bug" : "Rapporter en feil", "Show description …" : "Vis beskrivelse…", "Hide description …" : "Skjul beskrivelse…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Dette programmet har ingen høyeste versjon av Nextcloud definert. Dette vil være en feil i fremtiden.", "Enable only for specific groups" : "Aktiver kun for gitte grupper", "Online documentation" : "Elektronisk dokumentasjon", "Getting help" : "Skaffe hjelp", @@ -384,8 +389,6 @@ "Subscribe to our newsletter!" : "Abonner på vårt nyhetsbrev!", "Settings" : "Innstillinger", "Show storage location" : "Vis lagringssted", - "Show user backend" : "Vis bruker-bakende", - "Show last login" : "Vis siste innlogging", "Show email address" : "Vis e-postadresse", "Send email to new user" : "Send e-post til ny bruker", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Når passordet til en ny brukeren er utelatt, vil vedkommnende bli sendt en aktiveringslenke.", @@ -397,9 +400,6 @@ "Disabled" : "Avskrudd", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Legg inn lagringskvote (f.eks. \"512 MB\" eller \"12 GB\")", "Other" : "Annet", - "Quota" : "Kvote", - "Storage location" : "Lagringsplassering", - "Last login" : "Siste innlogging", "change full name" : "endre fullt navn", "set new password" : "sett nytt passord", "change email address" : "endre e-postadresse", diff --git a/settings/l10n/nl.js b/settings/l10n/nl.js index 6135bf6bb75..42d017488ef 100644 --- a/settings/l10n/nl.js +++ b/settings/l10n/nl.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Twee-factor authenticatie kan worden afgedwongen voor alle \tgebruikers en specifieke groepen. Als ze geen twee-factor provider hebben ingesteld, dan kunnen ze niet inloggen in het systeem.", "Enforce two-factor authentication" : "Forceren gebruik tweefactor authenticatie", "Limit to groups" : "Beperk tot groepen", + "Enforcement of two-factor authentication can be set for certain groups only." : "Forceren van gebruik tweefactor authenticatie kan worden ingesteld voor bepaalde groepen", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Twee-factor authenticatie is afgedwongen voor\tleden van de volgende groepen.", + "Enforced groups" : "Afgedwongen groepen", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Twee-factor authenticatie is niet afgedwongen voor\tleden van de volgende groepen.", + "Excluded groups" : "Uitgesloten groepen", + "Save changes" : "Wijzigingen bewaren", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiële apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", "Official" : "Officieel", + "by" : "door", + "Update to {version}" : "Update naar {version}", + "Remove" : "Verwijderen", + "Disable" : "Uitschakelen", + "All" : "Alle", + "Limit app usage to groups" : "Beperk appgebruik tot groepen", "No results" : "Geen resultaten", + "View in store" : "Bekijken in store", "Visit website" : "Bezoek website", + "Report a bug" : "Rapporteer een fout", "User documentation" : "Gebruikersdocumentatie", + "Admin documentation" : "Beheerdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd, omdat de volgende afhankelijkheden niet zijn ingevuld:", - "{license}-licensed" : "{license}-gelicenseerd", + "Update to {update}" : "Update naar {update}", + "Results from other categories" : "Resultaten van andere categorieën", + "No apps found for your version" : "Geen apps gevonden voor jouw versie", "Disable all" : "Alles uitschakelen", "Enable all" : "Alles activeren", "Download and enable" : "Downloaden en inschakelen", "Enable" : "Inschakelen", "The app will be downloaded from the app store" : "De app zal worden gedownload van de app store", "You do not have permissions to see the details of this user" : "Je hebt niet de autorisaties om de details van deze gebruiekr te zien", + "The backend does not support changing the display name" : "De backend ondersteunt het wijzigen van de weergavenaam niet", + "New password" : "Nieuw wachtwoord", + "Add user in group" : "Voeg gebruiker toe aan groep", + "Set user as admin for" : "Maak gebruiker beheerder voor", + "Select user quota" : "Selecteer gebruikersquotum", + "No language set" : "Geen taal ingesteld", + "Never" : "Nooit", "Delete user" : "Verwijderen gebruiker", "Disable user" : "Gebruiker uitschakelen", "Enable user" : "Inschakelen gebruiker", "Resend welcome email" : "Verstuur verwelkomings e-mail opnieuw", "{size} used" : "{size} gebruikt", "Welcome mail sent!" : "Verwelkomings e-mail verstuurd!", + "Username" : "Gebruikersnaam", "Display name" : "Weergavenaam", + "Password" : "Wachtwoord", "Email" : "E-mailadres", "Group admin for" : "Groepsbeheerder voor", + "Quota" : "Limieten", "Language" : "Taal", + "Storage location" : "Opslag locatie", "User backend" : "Backend gebruiker", + "Last login" : "Laatste login", + "Default language" : "Standaardtaal", + "Add a new user" : "Toevoegen nieuwe gebruiker", + "No users in here" : "Hier zijn geen gebruikers", "Unlimited" : "Ongelimiteerd", "Default quota" : "Standaard quota", - "Default language" : "Standaardtaal", "Password change is disabled because the master key is disabled" : "Wachtwoordwijziging is uitgeschakeld omdat de hoofdsleutel is uitgeschakeld", "Common languages" : "Gebruikelijke talen", "All languages" : "Alle talen", - "An error occured during the request. Unable to proceed." : "Er trad een fout op bij de aanvraag. Kan niet doorgaan.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "De app is ingeschakeld maar moet worden geüpdate. Je wordt over 5 seconden doorgeleid naar de updatepagina.", - "App update" : "App update", - "Error: This app can not be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt", "Your apps" : "Je apps", "Active apps" : "Ingeschakelde apps", "Disabled apps" : "Uitgeschakelde apps", "Updates" : "Updates", "App bundles" : "App bundels", + "{license}-licensed" : "{license}-gelicenseerd", "Default quota:" : "Standaardquota:", + "Select default quota" : "Selecteer standaardquotum", + "Show Languages" : "Toon talen", + "Show last login" : "Toon laatste inlog", + "Show user backend" : "Toon backend gebruiker", + "Show storage path" : "Tonen opslagpad", "You are about to remove the group {group}. The users will NOT be deleted." : "Je gaat groep {group} verwijderen. De gebruikers worden NIET verwijderd.", "Please confirm the group removal " : "Bevestig verwijderen groep", "Remove group" : "Verwijderen groep", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Iedereen", "Add group" : "Groep toevoegen", "New user" : "Nieuwe gebruiker", + "An error occured during the request. Unable to proceed." : "Er trad een fout op bij de aanvraag. Kan niet doorgaan.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "De app is ingeschakeld maar moet worden geüpdate. Je wordt over 5 seconden doorgeleid naar de updatepagina.", + "App update" : "App update", + "Error: This app can not be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt", "SSL Root Certificates" : "SSL Root Certificaten", "Common Name" : "Common Name", "Valid until" : "Geldig tot", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter naam @…", "Help translate" : "Help met vertalen", "Locale" : "Taal", - "Password" : "Wachtwoord", "Current password" : "Huidig wachtwoord", - "New password" : "Nieuw wachtwoord", "Change password" : "Wijzig wachtwoord", "Devices & sessions" : "Apparaten & sessies", "Web, desktop and mobile clients currently logged in to your account." : "Web, desktop en mobiele clients zijn nu ingelogd op je account.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Creëer een nieuw app wachtwoord", "Use the credentials below to configure your app or device." : "Gebruik onderstaande inloggegevens om je app of apparaat te configureren.", "For security reasons this password will only be shown once." : "Vanwege beveiligingsredenen wordt dit wachtwoord maar één keer getoond.", - "Username" : "Gebruikersnaam", "Done" : "Klaar", "Enabled apps" : "Ingeschakelde apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cUrl gebruikt een verouderde %s versie (%s). Werk het besturingssysteem bij, want anders zullen functies als %s niet betrouwbaar werken.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "Wachtwoordbevestiging vereist", "Are you really sure you want add {domain} as trusted domain?" : "Weet je zeker dat je {domain} als vertrouwd domein toe wilt voegen?", "Add trusted domain" : "Vertrouwd domein toevoegen", - "All" : "Alle", "Update to %s" : "Updaten naar %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Er is %n app die bijgewerkt kan worden","Er zijn %n apps die bijgewerkt kunnen worden"], - "No apps found for your version" : "Geen apps gevonden voor jouw versie", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiële apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Goedgekeurde apps zijn ontwikkeld door vertrouwde ontwikkelaars en hebben een beveiligingscontrole ondergaan. Ze worden actief onderhouden in een open code repository en hun ontwikkelaars vinden ze stabiel genoeg voor informeel of normaal gebruik.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Deze app is niet gecontroleerd op beveiligingsproblemen en is nieuw of staat bekend als onstabiel. Installeren op eigen risico.", "Disabling app …" : "Uitschakelen app ...", "Error while disabling app" : "Fout tijdens het uitschakelen van de app", - "Disable" : "Uitschakelen", "Enabling app …" : "Inschakelen app ...", "Error while enabling app" : "Fout tijdens het inschakelen van het programma", "Error: Could not disable broken app" : "Fout: Kan de beschadigde app niet uitschakelen", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Bijgewerkt", "Removing …" : "Verwijderen ...", "Error while removing app" : "Fout tijdens het verwijderen van de app", - "Remove" : "Verwijderen", "Approved" : "Goedgekeurd", "Experimental" : "Experimenteel", "No apps found for {query}" : "Geen apps gevonden voor {query}", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Uiterlijk", "Check the security of your Nextcloud over our security scan" : "Controleer de beveiliging van je Nextcloud met onze securityscan", "Hardening and security guidance" : "Hardening en security advies", - "View in store" : "Bekijken in store", "This app has an update available." : "Er is een update beschikbaar voor deze applicatie.", "by %s" : "op %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentatie:", - "Admin documentation" : "Beheerdocumentatie", - "Report a bug" : "Rapporteer een fout", "Show description …" : "Toon beschrijving ...", "Hide description …" : "Verberg beschrijving ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", "Online documentation" : "Online documentatie", "Getting help" : "Hulp krijgen", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Abonneer jezelf op onze nieuwsbrief!", "Settings" : "Instellingen", "Show storage location" : "Toon opslaglocatie", - "Show user backend" : "Toon backend gebruiker", - "Show last login" : "Toon laatste inlog", "Show email address" : "Toon e-mailadres", "Send email to new user" : "Verstuur e-mail aan nieuwe gebruiker", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Als het wachtwoord van de nieuwe gebruiker blanco blijft wordt een activeringsmailt met link naar de gebruiker gestuurd om het wachtwoord in te stellen.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Uitgeschakeld", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")", "Other" : "Anders", - "Quota" : "Limieten", - "Storage location" : "Opslag locatie", - "Last login" : "Laatste login", "change full name" : "wijzigen volledige naam", "set new password" : "Instellen nieuw wachtwoord", "change email address" : "wijzig e-mailadres", diff --git a/settings/l10n/nl.json b/settings/l10n/nl.json index bf75ef2702d..a940177eb13 100644 --- a/settings/l10n/nl.json +++ b/settings/l10n/nl.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Twee-factor authenticatie kan worden afgedwongen voor alle \tgebruikers en specifieke groepen. Als ze geen twee-factor provider hebben ingesteld, dan kunnen ze niet inloggen in het systeem.", "Enforce two-factor authentication" : "Forceren gebruik tweefactor authenticatie", "Limit to groups" : "Beperk tot groepen", + "Enforcement of two-factor authentication can be set for certain groups only." : "Forceren van gebruik tweefactor authenticatie kan worden ingesteld voor bepaalde groepen", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Twee-factor authenticatie is afgedwongen voor\tleden van de volgende groepen.", + "Enforced groups" : "Afgedwongen groepen", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Twee-factor authenticatie is niet afgedwongen voor\tleden van de volgende groepen.", + "Excluded groups" : "Uitgesloten groepen", + "Save changes" : "Wijzigingen bewaren", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiële apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", "Official" : "Officieel", + "by" : "door", + "Update to {version}" : "Update naar {version}", + "Remove" : "Verwijderen", + "Disable" : "Uitschakelen", + "All" : "Alle", + "Limit app usage to groups" : "Beperk appgebruik tot groepen", "No results" : "Geen resultaten", + "View in store" : "Bekijken in store", "Visit website" : "Bezoek website", + "Report a bug" : "Rapporteer een fout", "User documentation" : "Gebruikersdocumentatie", + "Admin documentation" : "Beheerdocumentatie", "Developer documentation" : "Ontwikkelaarsdocumentatie", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen minimum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Deze app kan niet worden geïnstalleerd, omdat de volgende afhankelijkheden niet zijn ingevuld:", - "{license}-licensed" : "{license}-gelicenseerd", + "Update to {update}" : "Update naar {update}", + "Results from other categories" : "Resultaten van andere categorieën", + "No apps found for your version" : "Geen apps gevonden voor jouw versie", "Disable all" : "Alles uitschakelen", "Enable all" : "Alles activeren", "Download and enable" : "Downloaden en inschakelen", "Enable" : "Inschakelen", "The app will be downloaded from the app store" : "De app zal worden gedownload van de app store", "You do not have permissions to see the details of this user" : "Je hebt niet de autorisaties om de details van deze gebruiekr te zien", + "The backend does not support changing the display name" : "De backend ondersteunt het wijzigen van de weergavenaam niet", + "New password" : "Nieuw wachtwoord", + "Add user in group" : "Voeg gebruiker toe aan groep", + "Set user as admin for" : "Maak gebruiker beheerder voor", + "Select user quota" : "Selecteer gebruikersquotum", + "No language set" : "Geen taal ingesteld", + "Never" : "Nooit", "Delete user" : "Verwijderen gebruiker", "Disable user" : "Gebruiker uitschakelen", "Enable user" : "Inschakelen gebruiker", "Resend welcome email" : "Verstuur verwelkomings e-mail opnieuw", "{size} used" : "{size} gebruikt", "Welcome mail sent!" : "Verwelkomings e-mail verstuurd!", + "Username" : "Gebruikersnaam", "Display name" : "Weergavenaam", + "Password" : "Wachtwoord", "Email" : "E-mailadres", "Group admin for" : "Groepsbeheerder voor", + "Quota" : "Limieten", "Language" : "Taal", + "Storage location" : "Opslag locatie", "User backend" : "Backend gebruiker", + "Last login" : "Laatste login", + "Default language" : "Standaardtaal", + "Add a new user" : "Toevoegen nieuwe gebruiker", + "No users in here" : "Hier zijn geen gebruikers", "Unlimited" : "Ongelimiteerd", "Default quota" : "Standaard quota", - "Default language" : "Standaardtaal", "Password change is disabled because the master key is disabled" : "Wachtwoordwijziging is uitgeschakeld omdat de hoofdsleutel is uitgeschakeld", "Common languages" : "Gebruikelijke talen", "All languages" : "Alle talen", - "An error occured during the request. Unable to proceed." : "Er trad een fout op bij de aanvraag. Kan niet doorgaan.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "De app is ingeschakeld maar moet worden geüpdate. Je wordt over 5 seconden doorgeleid naar de updatepagina.", - "App update" : "App update", - "Error: This app can not be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt", "Your apps" : "Je apps", "Active apps" : "Ingeschakelde apps", "Disabled apps" : "Uitgeschakelde apps", "Updates" : "Updates", "App bundles" : "App bundels", + "{license}-licensed" : "{license}-gelicenseerd", "Default quota:" : "Standaardquota:", + "Select default quota" : "Selecteer standaardquotum", + "Show Languages" : "Toon talen", + "Show last login" : "Toon laatste inlog", + "Show user backend" : "Toon backend gebruiker", + "Show storage path" : "Tonen opslagpad", "You are about to remove the group {group}. The users will NOT be deleted." : "Je gaat groep {group} verwijderen. De gebruikers worden NIET verwijderd.", "Please confirm the group removal " : "Bevestig verwijderen groep", "Remove group" : "Verwijderen groep", @@ -162,6 +196,10 @@ "Everyone" : "Iedereen", "Add group" : "Groep toevoegen", "New user" : "Nieuwe gebruiker", + "An error occured during the request. Unable to proceed." : "Er trad een fout op bij de aanvraag. Kan niet doorgaan.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "De app is ingeschakeld maar moet worden geüpdate. Je wordt over 5 seconden doorgeleid naar de updatepagina.", + "App update" : "App update", + "Error: This app can not be enabled because it makes the server unstable" : "Fout: Deze app kan niet ingeschakeld worden, omdat die de server onstabiel maakt", "SSL Root Certificates" : "SSL Root Certificaten", "Common Name" : "Common Name", "Valid until" : "Geldig tot", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Twitter naam @…", "Help translate" : "Help met vertalen", "Locale" : "Taal", - "Password" : "Wachtwoord", "Current password" : "Huidig wachtwoord", - "New password" : "Nieuw wachtwoord", "Change password" : "Wijzig wachtwoord", "Devices & sessions" : "Apparaten & sessies", "Web, desktop and mobile clients currently logged in to your account." : "Web, desktop en mobiele clients zijn nu ingelogd op je account.", @@ -298,7 +334,6 @@ "Create new app password" : "Creëer een nieuw app wachtwoord", "Use the credentials below to configure your app or device." : "Gebruik onderstaande inloggegevens om je app of apparaat te configureren.", "For security reasons this password will only be shown once." : "Vanwege beveiligingsredenen wordt dit wachtwoord maar één keer getoond.", - "Username" : "Gebruikersnaam", "Done" : "Klaar", "Enabled apps" : "Ingeschakelde apps", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cUrl gebruikt een verouderde %s versie (%s). Werk het besturingssysteem bij, want anders zullen functies als %s niet betrouwbaar werken.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "Wachtwoordbevestiging vereist", "Are you really sure you want add {domain} as trusted domain?" : "Weet je zeker dat je {domain} als vertrouwd domein toe wilt voegen?", "Add trusted domain" : "Vertrouwd domein toevoegen", - "All" : "Alle", "Update to %s" : "Updaten naar %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Er is %n app die bijgewerkt kan worden","Er zijn %n apps die bijgewerkt kunnen worden"], - "No apps found for your version" : "Geen apps gevonden voor jouw versie", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiële apps worden ontwikkeld door en binnen de community. Ze bieden centrale functionaliteit en zijn klaar voor productie.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Goedgekeurde apps zijn ontwikkeld door vertrouwde ontwikkelaars en hebben een beveiligingscontrole ondergaan. Ze worden actief onderhouden in een open code repository en hun ontwikkelaars vinden ze stabiel genoeg voor informeel of normaal gebruik.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Deze app is niet gecontroleerd op beveiligingsproblemen en is nieuw of staat bekend als onstabiel. Installeren op eigen risico.", "Disabling app …" : "Uitschakelen app ...", "Error while disabling app" : "Fout tijdens het uitschakelen van de app", - "Disable" : "Uitschakelen", "Enabling app …" : "Inschakelen app ...", "Error while enabling app" : "Fout tijdens het inschakelen van het programma", "Error: Could not disable broken app" : "Fout: Kan de beschadigde app niet uitschakelen", @@ -342,7 +373,6 @@ "Updated" : "Bijgewerkt", "Removing …" : "Verwijderen ...", "Error while removing app" : "Fout tijdens het verwijderen van de app", - "Remove" : "Verwijderen", "Approved" : "Goedgekeurd", "Experimental" : "Experimenteel", "No apps found for {query}" : "Geen apps gevonden voor {query}", @@ -399,16 +429,12 @@ "Theming" : "Uiterlijk", "Check the security of your Nextcloud over our security scan" : "Controleer de beveiliging van je Nextcloud met onze securityscan", "Hardening and security guidance" : "Hardening en security advies", - "View in store" : "Bekijken in store", "This app has an update available." : "Er is een update beschikbaar voor deze applicatie.", "by %s" : "op %s", "%s-licensed" : "%s-licensed", "Documentation:" : "Documentatie:", - "Admin documentation" : "Beheerdocumentatie", - "Report a bug" : "Rapporteer een fout", "Show description …" : "Toon beschrijving ...", "Hide description …" : "Verberg beschrijving ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Deze app heeft geen maximum Nextcloud versie toegewezen gekregen. In de toekomst wordt dit wordt een fout.", "Enable only for specific groups" : "Alleen voor bepaalde groepen activeren", "Online documentation" : "Online documentatie", "Getting help" : "Hulp krijgen", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Abonneer jezelf op onze nieuwsbrief!", "Settings" : "Instellingen", "Show storage location" : "Toon opslaglocatie", - "Show user backend" : "Toon backend gebruiker", - "Show last login" : "Toon laatste inlog", "Show email address" : "Toon e-mailadres", "Send email to new user" : "Verstuur e-mail aan nieuwe gebruiker", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Als het wachtwoord van de nieuwe gebruiker blanco blijft wordt een activeringsmailt met link naar de gebruiker gestuurd om het wachtwoord in te stellen.", @@ -445,9 +469,6 @@ "Disabled" : "Uitgeschakeld", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Geef de opslagquotering op (bijv. \"512 MB\" of \"12 GB\")", "Other" : "Anders", - "Quota" : "Limieten", - "Storage location" : "Opslag locatie", - "Last login" : "Laatste login", "change full name" : "wijzigen volledige naam", "set new password" : "Instellen nieuw wachtwoord", "change email address" : "wijzig e-mailadres", diff --git a/settings/l10n/nn_NO.js b/settings/l10n/nn_NO.js index 34f8a4fd7f0..5ed83547a93 100644 --- a/settings/l10n/nn_NO.js +++ b/settings/l10n/nn_NO.js @@ -16,8 +16,14 @@ OC.L10N.register( "Strong password" : "Sterkt passord", "Select a profile picture" : "Vel eit profilbilete", "Groups" : "Grupper", + "Disable" : "Slå av", + "All" : "Alle", "Enable" : "Slå på", + "New password" : "Nytt passord", + "Username" : "Brukarnamn", + "Password" : "Passord", "Email" : "E-post", + "Quota" : "Kvote", "Language" : "Språk", "Unlimited" : "Ubegrensa", "Forum" : "Forum", @@ -36,15 +42,10 @@ OC.L10N.register( "Cancel" : "Avbryt", "Your email address" : "Di epost-adresse", "Help translate" : "Hjelp oss å omsetja", - "Password" : "Passord", "Current password" : "Passord", - "New password" : "Nytt passord", "Change password" : "Endra passord", - "Username" : "Brukarnamn", "Email saved" : "E-postadresse lagra", - "All" : "Alle", "Error while disabling app" : "Klarte ikkje å skru av programmet", - "Disable" : "Slå av", "Error while enabling app" : "Klarte ikkje å skru på programmet", "Updated" : "Oppdatert", "undo" : "angra", @@ -55,7 +56,6 @@ OC.L10N.register( "Admin Recovery Password" : "Gjenopprettingspassord for administrator", "Enter the recovery password in order to recover the users files during password change" : "Skriv inn gjenopprettingspassordet brukt for å gjenoppretta brukarfilene ved passordendring", "Other" : "Anna", - "Quota" : "Kvote", "set new password" : "lag nytt passord", "Default" : "Standard" }, diff --git a/settings/l10n/nn_NO.json b/settings/l10n/nn_NO.json index c26a56ba05a..41706ce57a5 100644 --- a/settings/l10n/nn_NO.json +++ b/settings/l10n/nn_NO.json @@ -14,8 +14,14 @@ "Strong password" : "Sterkt passord", "Select a profile picture" : "Vel eit profilbilete", "Groups" : "Grupper", + "Disable" : "Slå av", + "All" : "Alle", "Enable" : "Slå på", + "New password" : "Nytt passord", + "Username" : "Brukarnamn", + "Password" : "Passord", "Email" : "E-post", + "Quota" : "Kvote", "Language" : "Språk", "Unlimited" : "Ubegrensa", "Forum" : "Forum", @@ -34,15 +40,10 @@ "Cancel" : "Avbryt", "Your email address" : "Di epost-adresse", "Help translate" : "Hjelp oss å omsetja", - "Password" : "Passord", "Current password" : "Passord", - "New password" : "Nytt passord", "Change password" : "Endra passord", - "Username" : "Brukarnamn", "Email saved" : "E-postadresse lagra", - "All" : "Alle", "Error while disabling app" : "Klarte ikkje å skru av programmet", - "Disable" : "Slå av", "Error while enabling app" : "Klarte ikkje å skru på programmet", "Updated" : "Oppdatert", "undo" : "angra", @@ -53,7 +54,6 @@ "Admin Recovery Password" : "Gjenopprettingspassord for administrator", "Enter the recovery password in order to recover the users files during password change" : "Skriv inn gjenopprettingspassordet brukt for å gjenoppretta brukarfilene ved passordendring", "Other" : "Anna", - "Quota" : "Kvote", "set new password" : "lag nytt passord", "Default" : "Standard" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/settings/l10n/pl.js b/settings/l10n/pl.js index f57b3b5fdba..8b88cf0d99f 100644 --- a/settings/l10n/pl.js +++ b/settings/l10n/pl.js @@ -114,47 +114,60 @@ OC.L10N.register( "Enforce two-factor authentication" : "Wymuś uwierzytelnianie dwuskładnikowe", "Limit to groups" : "Ogranicz do group", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Uwierzytelnianie dwuskładnikowe nie jest wymuszane dla\tczłonków następujących grup.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficjalne aplikacje są tworzone przez i wewnątrz społeczności. Oferują one centralną funkcjonalność i są gotowe do użycia produkcyjnego.", "Official" : "Oficjalny", + "Remove" : "Usuń", + "Disable" : "Wyłącz", + "All" : "Wszystkie", "No results" : "Brak wyników", + "View in store" : "Zobacz w sklepie", "Visit website" : "Odwiedź stronę", + "Report a bug" : "Zgłoś błąd", "User documentation" : "Dokumentacja użytkownika", + "Admin documentation" : "Dokumentacja administratora", "Developer documentation" : "Dokumentacja dewelopera", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:", - "{license}-licensed" : "Na licencji {license}", + "No apps found for your version" : "Nie znaleziono aplikacji dla Twojej wersji", "Disable all" : "Wyłącz wszystkie", "Enable all" : "Włącz wszystko", "Download and enable" : "Zainstaluj i włącz", "Enable" : "Włącz", "The app will be downloaded from the app store" : "Aplikacja zostanie pobrana z App Store", "You do not have permissions to see the details of this user" : "Nie masz uprawnień aby zobaczyć informacje o tym użytkowniku", + "New password" : "Nowe hasło", "Delete user" : "Usuń użytkownika", "Disable user" : "Zablokuj użytkownika", "Enable user" : "Odblokuj użytkownika", "Resend welcome email" : "Wyślij wiadomość powitalną ponownie", "{size} used" : "{size} wykorzystane", "Welcome mail sent!" : "Wiadomość powitalna wysłana!", + "Username" : "Nazwa użytkownika", "Display name" : "Wyświetlana nazwa", + "Password" : "Hasło", "Email" : "E-mail", "Group admin for" : "Grupa admin dla", + "Quota" : "Udział", "Language" : "Język", + "Storage location" : "Lokalizacja magazynu", "User backend" : "Moduł użytkownika", + "Last login" : "Ostatnio zalogowany", + "Default language" : "Domyślny język", "Unlimited" : "Bez limitu", "Default quota" : "Domyślny udział", - "Default language" : "Domyślny język", "Password change is disabled because the master key is disabled" : "Zmiana hasła jest zablokowana ponieważ klucz główny jest wyłączony.", "Common languages" : "Popularne języki", "All languages" : "Wszystkie języki", - "An error occured during the request. Unable to proceed." : "Wystąpił błąd zapytania. Nie można kontynuować.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikacja została włączona, ale wymaga aktualizacji. Za 5 sekund nastąpi przekierowanie do strony aktualizacji.", - "App update" : "Aktualizacja aplikacji", - "Error: This app can not be enabled because it makes the server unstable" : "Błąd: ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera.", "Your apps" : "Twoje aplikacje", "Active apps" : "Aktywne aplikacje", "Disabled apps" : "Wyłączone aplikacje", "Updates" : "Aktualizacje", "App bundles" : "Zestawy aplikacji", + "{license}-licensed" : "Na licencji {license}", "Default quota:" : "Domyślny limit:", + "Show last login" : "Pokaż ostatnie zalogowanie", + "Show user backend" : "Pokaż moduł użytkownika", "You are about to remove the group {group}. The users will NOT be deleted." : "Grupa {group} zostanie usunięta. Użytkownicy NIE zostaną usunięci.", "Please confirm the group removal " : "Potwierdź usunięcie grupy", "Remove group" : "Usuń grupę", @@ -163,6 +176,10 @@ OC.L10N.register( "Everyone" : "Wszyscy", "Add group" : "Dodaj grupę", "New user" : "Nowy użytkownik", + "An error occured during the request. Unable to proceed." : "Wystąpił błąd zapytania. Nie można kontynuować.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikacja została włączona, ale wymaga aktualizacji. Za 5 sekund nastąpi przekierowanie do strony aktualizacji.", + "App update" : "Aktualizacja aplikacji", + "Error: This app can not be enabled because it makes the server unstable" : "Błąd: ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera.", "SSL Root Certificates" : "Korzeń certyfikatu SSL", "Common Name" : "Nazwa CN", "Valid until" : "Ważny do", @@ -287,9 +304,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter @…", "Help translate" : "Pomóż w tłumaczeniu", "Locale" : "Region", - "Password" : "Hasło", "Current password" : "Bieżące hasło", - "New password" : "Nowe hasło", "Change password" : "Zmień hasło", "Devices & sessions" : "Urządzenia i sesje", "Web, desktop and mobile clients currently logged in to your account." : "Do twojego konta zalogowane są następujące klienty www, desktopowe i mobilne.", @@ -299,7 +314,6 @@ OC.L10N.register( "Create new app password" : "Utwórz nowe hasło do aplikacji", "Use the credentials below to configure your app or device." : "Skonfiguruj aplikację lub urządzenie, aby skorzystać z poniższego poświadczenia.", "For security reasons this password will only be shown once." : "Ze względów bezpieczeństwa hasło zostanie pokazane tylko raz.", - "Username" : "Nazwa użytkownika", "Done" : "Ukończono", "Enabled apps" : "Włączone aplikacje", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL używa starej %s wersji (%s). Proszę zaktualizować swój system operacyjny albo funkcje takie jak %s nie będą działały niezawodnie.", @@ -324,16 +338,12 @@ OC.L10N.register( "Password confirmation is required" : "Wymagane jest potwierdzenie hasła", "Are you really sure you want add {domain} as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?", "Add trusted domain" : "Dodaj zaufaną domenę", - "All" : "Wszystkie", "Update to %s" : "Uaktualnij do %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Masz %n oczekującą aktualizację aplikacji","Masz %n oczekujących aktualizacji aplikacji","Masz %n oczekujących aktualizacji aplikacji","Masz %n oczekujących aktualizacji aplikacji"], - "No apps found for your version" : "Nie znaleziono aplikacji dla Twojej wersji", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficjalne aplikacje są tworzone przez i wewnątrz społeczności. Oferują one centralną funkcjonalność i są gotowe do użycia produkcyjnego.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Zaakceptowane aplikacje są wytwarzane przez zaufanych programistów i przeszły pobieżne kontrole bezpieczeństwa. Są one aktywnie utrzymywane w repozytorium otwartego kodu i ich opiekunowie uznają je za stabilne do używania sporadycznego i normalnego.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ta aplikacja nie została sprawdzona pod kątem bezpieczeństwa i jest nowa lub znana jako niestabilna. Instalujesz ją na własne ryzyko.", "Disabling app …" : "Wyłączam aplikację…", "Error while disabling app" : "Błąd podczas wyłączania aplikacji", - "Disable" : "Wyłącz", "Enabling app …" : "Włączam aplikację…", "Error while enabling app" : "Błąd podczas włączania aplikacji", "Error: Could not disable broken app" : "Błąd: Nie można wyłączyć uszkodzonej aplikacji", @@ -343,7 +353,6 @@ OC.L10N.register( "Updated" : "Zaktualizowano", "Removing …" : "Usuwanie…", "Error while removing app" : "Wystąpił błąd podczas usuwania aplikacji", - "Remove" : "Usuń", "Approved" : "Zatwierdzony", "Experimental" : "Eksperymentalny", "No apps found for {query}" : "Nie znaleziono aplikacji dla {query}", @@ -400,16 +409,12 @@ OC.L10N.register( "Theming" : "Motyw", "Check the security of your Nextcloud over our security scan" : "Sprawdź bezpieczeństwo swojego Nextclouda przez nasz skan zabezpieczeń", "Hardening and security guidance" : "Kierowanie i wzmacnianie bezpieczeństwa", - "View in store" : "Zobacz w sklepie", "This app has an update available." : "Ta aplikacja ma dostępną aktualizację.", "by %s" : "autorstwa %s", "%s-licensed" : "%s-licencjonowany", "Documentation:" : "Dokumentacja:", - "Admin documentation" : "Dokumentacja administratora", - "Report a bug" : "Zgłoś błąd", "Show description …" : "Pokaż opis…", "Hide description …" : "Ukryj opis…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "Enable only for specific groups" : "Włącz tylko dla określonych grup", "Online documentation" : "Dokumentacja Online", "Getting help" : "Otrzymać pomoc", @@ -433,8 +438,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Zapisz się na nasz biuletyn!", "Settings" : "Ustawienia", "Show storage location" : "Pokaż miejsce przechowywania", - "Show user backend" : "Pokaż moduł użytkownika", - "Show last login" : "Pokaż ostatnie zalogowanie", "Show email address" : "Pokaż adres e-mail", "Send email to new user" : "Wyślij e-mail do nowego użytkownika", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kiedy hasło nowego użytkownika nie zostanie wypełnione zostanie wysłany e-mail aktywacyjny z linkiem do ustawienia hasła.", @@ -446,9 +449,6 @@ OC.L10N.register( "Disabled" : "Wyłączone", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB\")", "Other" : "Inne", - "Quota" : "Udział", - "Storage location" : "Lokalizacja magazynu", - "Last login" : "Ostatnio zalogowany", "change full name" : "zmień pełną nazwę", "set new password" : "ustaw nowe hasło", "change email address" : "zmień adres e-mail", diff --git a/settings/l10n/pl.json b/settings/l10n/pl.json index 1c142916ad7..49a29163f4f 100644 --- a/settings/l10n/pl.json +++ b/settings/l10n/pl.json @@ -112,47 +112,60 @@ "Enforce two-factor authentication" : "Wymuś uwierzytelnianie dwuskładnikowe", "Limit to groups" : "Ogranicz do group", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Uwierzytelnianie dwuskładnikowe nie jest wymuszane dla\tczłonków następujących grup.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficjalne aplikacje są tworzone przez i wewnątrz społeczności. Oferują one centralną funkcjonalność i są gotowe do użycia produkcyjnego.", "Official" : "Oficjalny", + "Remove" : "Usuń", + "Disable" : "Wyłącz", + "All" : "Wszystkie", "No results" : "Brak wyników", + "View in store" : "Zobacz w sklepie", "Visit website" : "Odwiedź stronę", + "Report a bug" : "Zgłoś błąd", "User documentation" : "Dokumentacja użytkownika", + "Admin documentation" : "Dokumentacja administratora", "Developer documentation" : "Dokumentacja dewelopera", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej minimalnej wersji Nextcloud. W przyszłości będzie to błąd.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ta aplikacja nie może być zainstalowana, ponieważ nie są spełnione następujące zależności:", - "{license}-licensed" : "Na licencji {license}", + "No apps found for your version" : "Nie znaleziono aplikacji dla Twojej wersji", "Disable all" : "Wyłącz wszystkie", "Enable all" : "Włącz wszystko", "Download and enable" : "Zainstaluj i włącz", "Enable" : "Włącz", "The app will be downloaded from the app store" : "Aplikacja zostanie pobrana z App Store", "You do not have permissions to see the details of this user" : "Nie masz uprawnień aby zobaczyć informacje o tym użytkowniku", + "New password" : "Nowe hasło", "Delete user" : "Usuń użytkownika", "Disable user" : "Zablokuj użytkownika", "Enable user" : "Odblokuj użytkownika", "Resend welcome email" : "Wyślij wiadomość powitalną ponownie", "{size} used" : "{size} wykorzystane", "Welcome mail sent!" : "Wiadomość powitalna wysłana!", + "Username" : "Nazwa użytkownika", "Display name" : "Wyświetlana nazwa", + "Password" : "Hasło", "Email" : "E-mail", "Group admin for" : "Grupa admin dla", + "Quota" : "Udział", "Language" : "Język", + "Storage location" : "Lokalizacja magazynu", "User backend" : "Moduł użytkownika", + "Last login" : "Ostatnio zalogowany", + "Default language" : "Domyślny język", "Unlimited" : "Bez limitu", "Default quota" : "Domyślny udział", - "Default language" : "Domyślny język", "Password change is disabled because the master key is disabled" : "Zmiana hasła jest zablokowana ponieważ klucz główny jest wyłączony.", "Common languages" : "Popularne języki", "All languages" : "Wszystkie języki", - "An error occured during the request. Unable to proceed." : "Wystąpił błąd zapytania. Nie można kontynuować.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikacja została włączona, ale wymaga aktualizacji. Za 5 sekund nastąpi przekierowanie do strony aktualizacji.", - "App update" : "Aktualizacja aplikacji", - "Error: This app can not be enabled because it makes the server unstable" : "Błąd: ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera.", "Your apps" : "Twoje aplikacje", "Active apps" : "Aktywne aplikacje", "Disabled apps" : "Wyłączone aplikacje", "Updates" : "Aktualizacje", "App bundles" : "Zestawy aplikacji", + "{license}-licensed" : "Na licencji {license}", "Default quota:" : "Domyślny limit:", + "Show last login" : "Pokaż ostatnie zalogowanie", + "Show user backend" : "Pokaż moduł użytkownika", "You are about to remove the group {group}. The users will NOT be deleted." : "Grupa {group} zostanie usunięta. Użytkownicy NIE zostaną usunięci.", "Please confirm the group removal " : "Potwierdź usunięcie grupy", "Remove group" : "Usuń grupę", @@ -161,6 +174,10 @@ "Everyone" : "Wszyscy", "Add group" : "Dodaj grupę", "New user" : "Nowy użytkownik", + "An error occured during the request. Unable to proceed." : "Wystąpił błąd zapytania. Nie można kontynuować.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikacja została włączona, ale wymaga aktualizacji. Za 5 sekund nastąpi przekierowanie do strony aktualizacji.", + "App update" : "Aktualizacja aplikacji", + "Error: This app can not be enabled because it makes the server unstable" : "Błąd: ta aplikacja nie zostanie włączona ze względu na możliwość niestabilnej pracy serwera.", "SSL Root Certificates" : "Korzeń certyfikatu SSL", "Common Name" : "Nazwa CN", "Valid until" : "Ważny do", @@ -285,9 +302,7 @@ "Twitter handle @…" : "Twitter @…", "Help translate" : "Pomóż w tłumaczeniu", "Locale" : "Region", - "Password" : "Hasło", "Current password" : "Bieżące hasło", - "New password" : "Nowe hasło", "Change password" : "Zmień hasło", "Devices & sessions" : "Urządzenia i sesje", "Web, desktop and mobile clients currently logged in to your account." : "Do twojego konta zalogowane są następujące klienty www, desktopowe i mobilne.", @@ -297,7 +312,6 @@ "Create new app password" : "Utwórz nowe hasło do aplikacji", "Use the credentials below to configure your app or device." : "Skonfiguruj aplikację lub urządzenie, aby skorzystać z poniższego poświadczenia.", "For security reasons this password will only be shown once." : "Ze względów bezpieczeństwa hasło zostanie pokazane tylko raz.", - "Username" : "Nazwa użytkownika", "Done" : "Ukończono", "Enabled apps" : "Włączone aplikacje", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL używa starej %s wersji (%s). Proszę zaktualizować swój system operacyjny albo funkcje takie jak %s nie będą działały niezawodnie.", @@ -322,16 +336,12 @@ "Password confirmation is required" : "Wymagane jest potwierdzenie hasła", "Are you really sure you want add {domain} as trusted domain?" : "Czy jesteś pewien/pewna że chcesz dodać \"{domain}\" jako zaufaną domenę?", "Add trusted domain" : "Dodaj zaufaną domenę", - "All" : "Wszystkie", "Update to %s" : "Uaktualnij do %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Masz %n oczekującą aktualizację aplikacji","Masz %n oczekujących aktualizacji aplikacji","Masz %n oczekujących aktualizacji aplikacji","Masz %n oczekujących aktualizacji aplikacji"], - "No apps found for your version" : "Nie znaleziono aplikacji dla Twojej wersji", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficjalne aplikacje są tworzone przez i wewnątrz społeczności. Oferują one centralną funkcjonalność i są gotowe do użycia produkcyjnego.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Zaakceptowane aplikacje są wytwarzane przez zaufanych programistów i przeszły pobieżne kontrole bezpieczeństwa. Są one aktywnie utrzymywane w repozytorium otwartego kodu i ich opiekunowie uznają je za stabilne do używania sporadycznego i normalnego.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ta aplikacja nie została sprawdzona pod kątem bezpieczeństwa i jest nowa lub znana jako niestabilna. Instalujesz ją na własne ryzyko.", "Disabling app …" : "Wyłączam aplikację…", "Error while disabling app" : "Błąd podczas wyłączania aplikacji", - "Disable" : "Wyłącz", "Enabling app …" : "Włączam aplikację…", "Error while enabling app" : "Błąd podczas włączania aplikacji", "Error: Could not disable broken app" : "Błąd: Nie można wyłączyć uszkodzonej aplikacji", @@ -341,7 +351,6 @@ "Updated" : "Zaktualizowano", "Removing …" : "Usuwanie…", "Error while removing app" : "Wystąpił błąd podczas usuwania aplikacji", - "Remove" : "Usuń", "Approved" : "Zatwierdzony", "Experimental" : "Eksperymentalny", "No apps found for {query}" : "Nie znaleziono aplikacji dla {query}", @@ -398,16 +407,12 @@ "Theming" : "Motyw", "Check the security of your Nextcloud over our security scan" : "Sprawdź bezpieczeństwo swojego Nextclouda przez nasz skan zabezpieczeń", "Hardening and security guidance" : "Kierowanie i wzmacnianie bezpieczeństwa", - "View in store" : "Zobacz w sklepie", "This app has an update available." : "Ta aplikacja ma dostępną aktualizację.", "by %s" : "autorstwa %s", "%s-licensed" : "%s-licencjonowany", "Documentation:" : "Dokumentacja:", - "Admin documentation" : "Dokumentacja administratora", - "Report a bug" : "Zgłoś błąd", "Show description …" : "Pokaż opis…", "Hide description …" : "Ukryj opis…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ta aplikacja nie ma przypisanej maksymalnej wersji Nextcloud. W przyszłości będzie to błąd.", "Enable only for specific groups" : "Włącz tylko dla określonych grup", "Online documentation" : "Dokumentacja Online", "Getting help" : "Otrzymać pomoc", @@ -431,8 +436,6 @@ "Subscribe to our newsletter!" : "Zapisz się na nasz biuletyn!", "Settings" : "Ustawienia", "Show storage location" : "Pokaż miejsce przechowywania", - "Show user backend" : "Pokaż moduł użytkownika", - "Show last login" : "Pokaż ostatnie zalogowanie", "Show email address" : "Pokaż adres e-mail", "Send email to new user" : "Wyślij e-mail do nowego użytkownika", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kiedy hasło nowego użytkownika nie zostanie wypełnione zostanie wysłany e-mail aktywacyjny z linkiem do ustawienia hasła.", @@ -444,9 +447,6 @@ "Disabled" : "Wyłączone", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Proszę ustawić ograniczenie zasobów (np. \"512 MB\" albo \"12 GB\")", "Other" : "Inne", - "Quota" : "Udział", - "Storage location" : "Lokalizacja magazynu", - "Last login" : "Ostatnio zalogowany", "change full name" : "zmień pełną nazwę", "set new password" : "ustaw nowe hasło", "change email address" : "zmień adres e-mail", diff --git a/settings/l10n/pt_BR.js b/settings/l10n/pt_BR.js index 047ba65509e..a4cdc9c4b00 100644 --- a/settings/l10n/pt_BR.js +++ b/settings/l10n/pt_BR.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Autenticação de dois fatores pode ser aplicada para todos\tos usuários e grupos específicos. Se eles não tiverem um provedor de dois fatores configurado, eles não poderão efetuar login no sistema.", "Enforce two-factor authentication" : "Aplicar autenticação de dois fatores", "Limit to groups" : "Limitado a grupos", + "Enforcement of two-factor authentication can be set for certain groups only." : "A obrigatoriedade da autenticação de dois fatores pode ser definida para determinados grupos apenas.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "A autenticação de dois fatores é obrigatória a todos\tmembros dos seguintes grupos.", + "Enforced groups" : "Grupos obrigatórios", "Two-factor authentication is not enforced for\tmembers of the following groups." : "A autenticação de dois fatores não é aplicada para\tmembros dos seguintes grupos.", + "Excluded groups" : "Grupos excluídos", + "Save changes" : "Salvar mudanças", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos oficiais são desenvolvidos pela comunidade e dentro dela. Eles oferecem funcionalidades centrais e estão prontos para uso em produção.", "Official" : "Oficial", + "by" : "por", + "Update to {version}" : "Atualizar para {version}", + "Remove" : "Excluir", + "Disable" : "Desabilitar", + "All" : "Todos", + "Limit app usage to groups" : "Limitar o uso de aplicativos a grupos", "No results" : "Sem resultados", + "View in store" : "Ver na loja", "Visit website" : "Visitar website", + "Report a bug" : "Reportar um erro", "User documentation" : "Documentação do usuário", + "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", - "{license}-licensed" : "{license}-licenciado", + "Update to {update}" : "Atualizar para {update}", + "Results from other categories" : "Resultados de outras categorias", + "No apps found for your version" : "Nenhum aplicativo encontrado para a sua versão", "Disable all" : "Desativar tudo", "Enable all" : "Habilitar tudo", "Download and enable" : "Baixar e ativar", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "O aplicativo será baixado da loja de aplicativos", "You do not have permissions to see the details of this user" : "Você não tem permissão para ver os detalhes deste usuário", + "The backend does not support changing the display name" : "O backend não suporta a alteração do nome de exibição", + "New password" : "Nova senha", + "Add user in group" : "Adicionar o usuário no grupo", + "Set user as admin for" : "Definir o usuário como administrador para", + "Select user quota" : "Selecionar a cota de usuário", + "No language set" : "Nenhum conjunto de idiomas", + "Never" : "Nunca", "Delete user" : "Excluir usuário", "Disable user" : "Desativar usuário", "Enable user" : "Ativar usuário", "Resend welcome email" : "Reenviar e-mail de boas-vindas", "{size} used" : "{size} usado", "Welcome mail sent!" : "E-mail de boas-vindas enviado!", + "Username" : "Nome de Usuário", "Display name" : "Mostrar nome", + "Password" : "Senha", "Email" : "E-mail", "Group admin for" : "Grupo administrativo para", + "Quota" : "Cota", "Language" : "Idioma", + "Storage location" : "Local do armazenamento", "User backend" : "Plataforma de serviço de usuário", + "Last login" : "Último acesso", + "Default language" : "Idioma padrão", + "Add a new user" : "Adicione um novo usuário", + "No users in here" : "Nenhum usuário aqui", "Unlimited" : "Ilimitado", "Default quota" : "Cota padrão", - "Default language" : "Idioma padrão", "Password change is disabled because the master key is disabled" : "A alteração de senha está desativada porque a chave mestra está desativada", "Common languages" : "Idiomas comuns", "All languages" : "Todos os idiomas", - "An error occured during the request. Unable to proceed." : "Ocorreu um erro durante a requisição. Impossível continuar.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi ativado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", - "App update" : "Atualizar aplicativo", - "Error: This app can not be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser ativado porque torna o servidor instável", "Your apps" : "Seus aplicativos", "Active apps" : "Ativar aplicativos", "Disabled apps" : "Aplicativos desabilitados", "Updates" : "Atualizações", "App bundles" : "Pacotes de aplicativos", + "{license}-licensed" : "{license}-licenciado", "Default quota:" : "Cota padrão:", + "Select default quota" : "Selecionar a cota padrão", + "Show Languages" : "Mostrar idiomas", + "Show last login" : "Mostrar último login", + "Show user backend" : "Mostrar plataforma de serviço de usuário", + "Show storage path" : "Mostrar caminho de armazenamento", "You are about to remove the group {group}. The users will NOT be deleted." : "Você está prestes a excluir o grupo {group}. Os usuários NÃO serão excluídos.", "Please confirm the group removal " : "Confirme a remoção do grupo", "Remove group" : "Excluir grupo", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Para todos", "Add group" : "Adicionar grupo", "New user" : "Novo usuário", + "An error occured during the request. Unable to proceed." : "Ocorreu um erro durante a requisição. Impossível continuar.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi ativado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", + "App update" : "Atualizar aplicativo", + "Error: This app can not be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser ativado porque torna o servidor instável", "SSL Root Certificates" : "Certificados Raiz SSL", "Common Name" : "Nome comum", "Valid until" : "Válido até", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Ajude a traduzir", "Locale" : "Localização", - "Password" : "Senha", "Current password" : "Senha atual", - "New password" : "Nova senha", "Change password" : "Alterar senha", "Devices & sessions" : "Dispositivos & sessões", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, desktop e móvel que estão conectados à sua conta.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Criar nova senha de aplicativo", "Use the credentials below to configure your app or device." : "Use as credenciais abaixo para configurar seu aplicativo ou dispositivo.", "For security reasons this password will only be shown once." : "Por motivo de segurança, esta senha só será exibida uma vez.", - "Username" : "Nome de Usuário", "Done" : "Concluído", "Enabled apps" : "Aplicativos habilitados", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando uma versão %s desatualizada (%s). Por favor, atualize seu sistema operacional ou recursos como %s não funcionarão de forma confiável.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "A confirmação da senha é necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem certeza que deseja adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável", - "All" : "Todos", "Update to %s" : "Atualizar para %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Você tem %n atualização de aplicativo pendente","Você tem %n atualizações de aplicativos pendentes"], - "No apps found for your version" : "Nenhum aplicativo encontrado para a sua versão", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos oficiais são desenvolvidos pela comunidade e dentro dela. Eles oferecem funcionalidades centrais e estão prontos para uso em produção.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Os aplicativos aprovados são desenvolvidos pelos desenvolvedores confiáveis e passaram por uma verificação de segurança rápida. Eles são ativamente mantidos em um repositório de código aberto e seus mantenedores consideram que eles estejam estáveis para um uso de casual a normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Este aplicativo não foi verificado quanto às questões de segurança e é novo ou conhecido por ser instável. Instale por sua conta e risco.", "Disabling app …" : "Desabilitando aplicativo...", "Error while disabling app" : "Erro ao desabilitar o aplicativo", - "Disable" : "Desabilitar", "Enabling app …" : "Ativando aplicativo...", "Error while enabling app" : "Erro ao habilitar o aplicativo", "Error: Could not disable broken app" : "Erro: Não foi possível desativar o aplicativo defeituoso", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Atualizado", "Removing …" : "Excluindo...", "Error while removing app" : "Erro ao excluir aplicativo", - "Remove" : "Excluir", "Approved" : "Aprovado", "Experimental" : "Experimental", "No apps found for {query}" : "Nenhum aplicativo encontrado para {query}", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Criar um tema", "Check the security of your Nextcloud over our security scan" : "Verificar a segurança do Nextcloud na nossa análise de segurança", "Hardening and security guidance" : "Orientações de proteção e segurança", - "View in store" : "Ver na loja", "This app has an update available." : "Este aplicativo tem uma atualização disponível.", "by %s" : "por %s", "%s-licensed" : "%s-licenciado", "Documentation:" : "Documentação:", - "Admin documentation" : "Documentação do administrador", - "Report a bug" : "Reportar um erro", "Show description …" : "Mostrar descrição...", "Hide description …" : "Ocultar descrição...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "Enable only for specific groups" : "Ativar apenas para grupos específicos", "Online documentation" : "Documentação online", "Getting help" : "Conseguindo ajuda", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Assine nosso boletim de notícias!", "Settings" : "Configurações", "Show storage location" : "Mostrar localização do armazenamento", - "Show user backend" : "Mostrar plataforma de serviço de usuário", - "Show last login" : "Mostrar último login", "Show email address" : "Mostrar o endereço de -mail", "Send email to new user" : "Enviar um e-mail para o novo usuário", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quando a senha de um novo usuário é deixada em branco, um e-mail de ativação com um link para definir a senha é enviado.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Desabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor insira a cota de armazenamento (ex: \"512\" ou \"12 GB\")", "Other" : "Outro", - "Quota" : "Cota", - "Storage location" : "Local do armazenamento", - "Last login" : "Último acesso", "change full name" : "alterar nome completo", "set new password" : "definir uma senha nova", "change email address" : "Alterar o endereço de e-mail", diff --git a/settings/l10n/pt_BR.json b/settings/l10n/pt_BR.json index 4f5611087f5..4f29fe8c996 100644 --- a/settings/l10n/pt_BR.json +++ b/settings/l10n/pt_BR.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Autenticação de dois fatores pode ser aplicada para todos\tos usuários e grupos específicos. Se eles não tiverem um provedor de dois fatores configurado, eles não poderão efetuar login no sistema.", "Enforce two-factor authentication" : "Aplicar autenticação de dois fatores", "Limit to groups" : "Limitado a grupos", + "Enforcement of two-factor authentication can be set for certain groups only." : "A obrigatoriedade da autenticação de dois fatores pode ser definida para determinados grupos apenas.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "A autenticação de dois fatores é obrigatória a todos\tmembros dos seguintes grupos.", + "Enforced groups" : "Grupos obrigatórios", "Two-factor authentication is not enforced for\tmembers of the following groups." : "A autenticação de dois fatores não é aplicada para\tmembros dos seguintes grupos.", + "Excluded groups" : "Grupos excluídos", + "Save changes" : "Salvar mudanças", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos oficiais são desenvolvidos pela comunidade e dentro dela. Eles oferecem funcionalidades centrais e estão prontos para uso em produção.", "Official" : "Oficial", + "by" : "por", + "Update to {version}" : "Atualizar para {version}", + "Remove" : "Excluir", + "Disable" : "Desabilitar", + "All" : "Todos", + "Limit app usage to groups" : "Limitar o uso de aplicativos a grupos", "No results" : "Sem resultados", + "View in store" : "Ver na loja", "Visit website" : "Visitar website", + "Report a bug" : "Reportar um erro", "User documentation" : "Documentação do usuário", + "Admin documentation" : "Documentação do administrador", "Developer documentation" : "Documentação do desenvolvedor", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão mínima atribuída para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Este aplicativo não pode ser instalado pois as seguintes dependências não forão cumpridas:", - "{license}-licensed" : "{license}-licenciado", + "Update to {update}" : "Atualizar para {update}", + "Results from other categories" : "Resultados de outras categorias", + "No apps found for your version" : "Nenhum aplicativo encontrado para a sua versão", "Disable all" : "Desativar tudo", "Enable all" : "Habilitar tudo", "Download and enable" : "Baixar e ativar", "Enable" : "Habilitar", "The app will be downloaded from the app store" : "O aplicativo será baixado da loja de aplicativos", "You do not have permissions to see the details of this user" : "Você não tem permissão para ver os detalhes deste usuário", + "The backend does not support changing the display name" : "O backend não suporta a alteração do nome de exibição", + "New password" : "Nova senha", + "Add user in group" : "Adicionar o usuário no grupo", + "Set user as admin for" : "Definir o usuário como administrador para", + "Select user quota" : "Selecionar a cota de usuário", + "No language set" : "Nenhum conjunto de idiomas", + "Never" : "Nunca", "Delete user" : "Excluir usuário", "Disable user" : "Desativar usuário", "Enable user" : "Ativar usuário", "Resend welcome email" : "Reenviar e-mail de boas-vindas", "{size} used" : "{size} usado", "Welcome mail sent!" : "E-mail de boas-vindas enviado!", + "Username" : "Nome de Usuário", "Display name" : "Mostrar nome", + "Password" : "Senha", "Email" : "E-mail", "Group admin for" : "Grupo administrativo para", + "Quota" : "Cota", "Language" : "Idioma", + "Storage location" : "Local do armazenamento", "User backend" : "Plataforma de serviço de usuário", + "Last login" : "Último acesso", + "Default language" : "Idioma padrão", + "Add a new user" : "Adicione um novo usuário", + "No users in here" : "Nenhum usuário aqui", "Unlimited" : "Ilimitado", "Default quota" : "Cota padrão", - "Default language" : "Idioma padrão", "Password change is disabled because the master key is disabled" : "A alteração de senha está desativada porque a chave mestra está desativada", "Common languages" : "Idiomas comuns", "All languages" : "Todos os idiomas", - "An error occured during the request. Unable to proceed." : "Ocorreu um erro durante a requisição. Impossível continuar.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi ativado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", - "App update" : "Atualizar aplicativo", - "Error: This app can not be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser ativado porque torna o servidor instável", "Your apps" : "Seus aplicativos", "Active apps" : "Ativar aplicativos", "Disabled apps" : "Aplicativos desabilitados", "Updates" : "Atualizações", "App bundles" : "Pacotes de aplicativos", + "{license}-licensed" : "{license}-licenciado", "Default quota:" : "Cota padrão:", + "Select default quota" : "Selecionar a cota padrão", + "Show Languages" : "Mostrar idiomas", + "Show last login" : "Mostrar último login", + "Show user backend" : "Mostrar plataforma de serviço de usuário", + "Show storage path" : "Mostrar caminho de armazenamento", "You are about to remove the group {group}. The users will NOT be deleted." : "Você está prestes a excluir o grupo {group}. Os usuários NÃO serão excluídos.", "Please confirm the group removal " : "Confirme a remoção do grupo", "Remove group" : "Excluir grupo", @@ -162,6 +196,10 @@ "Everyone" : "Para todos", "Add group" : "Adicionar grupo", "New user" : "Novo usuário", + "An error occured during the request. Unable to proceed." : "Ocorreu um erro durante a requisição. Impossível continuar.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "O aplicativo foi ativado, mas precisa ser atualizado. Você será redirecionado para a página de atualização em 5 segundos.", + "App update" : "Atualizar aplicativo", + "Error: This app can not be enabled because it makes the server unstable" : "Erro: Este aplicativo não pode ser ativado porque torna o servidor instável", "SSL Root Certificates" : "Certificados Raiz SSL", "Common Name" : "Nome comum", "Valid until" : "Válido até", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Ajude a traduzir", "Locale" : "Localização", - "Password" : "Senha", "Current password" : "Senha atual", - "New password" : "Nova senha", "Change password" : "Alterar senha", "Devices & sessions" : "Dispositivos & sessões", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, desktop e móvel que estão conectados à sua conta.", @@ -298,7 +334,6 @@ "Create new app password" : "Criar nova senha de aplicativo", "Use the credentials below to configure your app or device." : "Use as credenciais abaixo para configurar seu aplicativo ou dispositivo.", "For security reasons this password will only be shown once." : "Por motivo de segurança, esta senha só será exibida uma vez.", - "Username" : "Nome de Usuário", "Done" : "Concluído", "Enabled apps" : "Aplicativos habilitados", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está usando uma versão %s desatualizada (%s). Por favor, atualize seu sistema operacional ou recursos como %s não funcionarão de forma confiável.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "A confirmação da senha é necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem certeza que deseja adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável", - "All" : "Todos", "Update to %s" : "Atualizar para %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Você tem %n atualização de aplicativo pendente","Você tem %n atualizações de aplicativos pendentes"], - "No apps found for your version" : "Nenhum aplicativo encontrado para a sua versão", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Os aplicativos oficiais são desenvolvidos pela comunidade e dentro dela. Eles oferecem funcionalidades centrais e estão prontos para uso em produção.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Os aplicativos aprovados são desenvolvidos pelos desenvolvedores confiáveis e passaram por uma verificação de segurança rápida. Eles são ativamente mantidos em um repositório de código aberto e seus mantenedores consideram que eles estejam estáveis para um uso de casual a normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Este aplicativo não foi verificado quanto às questões de segurança e é novo ou conhecido por ser instável. Instale por sua conta e risco.", "Disabling app …" : "Desabilitando aplicativo...", "Error while disabling app" : "Erro ao desabilitar o aplicativo", - "Disable" : "Desabilitar", "Enabling app …" : "Ativando aplicativo...", "Error while enabling app" : "Erro ao habilitar o aplicativo", "Error: Could not disable broken app" : "Erro: Não foi possível desativar o aplicativo defeituoso", @@ -342,7 +373,6 @@ "Updated" : "Atualizado", "Removing …" : "Excluindo...", "Error while removing app" : "Erro ao excluir aplicativo", - "Remove" : "Excluir", "Approved" : "Aprovado", "Experimental" : "Experimental", "No apps found for {query}" : "Nenhum aplicativo encontrado para {query}", @@ -399,16 +429,12 @@ "Theming" : "Criar um tema", "Check the security of your Nextcloud over our security scan" : "Verificar a segurança do Nextcloud na nossa análise de segurança", "Hardening and security guidance" : "Orientações de proteção e segurança", - "View in store" : "Ver na loja", "This app has an update available." : "Este aplicativo tem uma atualização disponível.", "by %s" : "por %s", "%s-licensed" : "%s-licenciado", "Documentation:" : "Documentação:", - "Admin documentation" : "Documentação do administrador", - "Report a bug" : "Reportar um erro", "Show description …" : "Mostrar descrição...", "Hide description …" : "Ocultar descrição...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Este aplicativo não possui uma versão máxima atribuida para uso no Nextcloud. Isto poderá se converter em um erro no futuro.", "Enable only for specific groups" : "Ativar apenas para grupos específicos", "Online documentation" : "Documentação online", "Getting help" : "Conseguindo ajuda", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Assine nosso boletim de notícias!", "Settings" : "Configurações", "Show storage location" : "Mostrar localização do armazenamento", - "Show user backend" : "Mostrar plataforma de serviço de usuário", - "Show last login" : "Mostrar último login", "Show email address" : "Mostrar o endereço de -mail", "Send email to new user" : "Enviar um e-mail para o novo usuário", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quando a senha de um novo usuário é deixada em branco, um e-mail de ativação com um link para definir a senha é enviado.", @@ -445,9 +469,6 @@ "Disabled" : "Desabilitado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Por favor insira a cota de armazenamento (ex: \"512\" ou \"12 GB\")", "Other" : "Outro", - "Quota" : "Cota", - "Storage location" : "Local do armazenamento", - "Last login" : "Último acesso", "change full name" : "alterar nome completo", "set new password" : "definir uma senha nova", "change email address" : "Alterar o endereço de e-mail", diff --git a/settings/l10n/pt_PT.js b/settings/l10n/pt_PT.js index 4cc2a6493df..f68d630723a 100644 --- a/settings/l10n/pt_PT.js +++ b/settings/l10n/pt_PT.js @@ -105,32 +105,49 @@ OC.L10N.register( "Select a profile picture" : "Selecione uma fotografia de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitado a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "As apps oficiais são desenvolvidas de e para a comunidade. Oferecem um repositório central de funcionalidades e estão preparadas para uso em produção.", "Official" : "Oficial", + "Remove" : "Remover", + "Disable" : "Desativar", + "All" : "Todos", + "View in store" : "Ver na loja", "Visit website" : "Visitar o website", + "Report a bug" : "Reportar um erro", "User documentation" : "Documentação de Utilizador", + "Admin documentation" : "Documentação do Administrador", "Developer documentation" : "Documentação de Programador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", + "No apps found for your version" : "Nenhuma aplicação encontrada para a sua versão", "Enable all" : "Ativar todas", "Enable" : "Ativar", "The app will be downloaded from the app store" : "A aplicação será transferida da loja de aplicações", + "New password" : "Nova palavra-passe", "{size} used" : "{size} utilizado", + "Username" : "Nome de utilizador", + "Password" : "Palavra-passe", "Email" : "Email", "Group admin for" : "Administrador de grupo para", + "Quota" : "Quota", "Language" : "Idioma", + "Storage location" : "Localização do armazenamento", "User backend" : "Backend do utilizador", + "Last login" : "Último início de sessão", "Unlimited" : "Ilimitado", "Default quota" : "Quota padrão", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "A app foi activada mas necessita ser actualizada. Irá ser redireccionado para a página de actualização em 5 segundos.", - "App update" : "Actualização de app", - "Error: This app can not be enabled because it makes the server unstable" : "Erro: Esta app não pode ser activada porque torna o servidor instável.", "Your apps" : "As suas apps", "Disabled apps" : "Apps desativadas", "Updates" : "Actualizações", "App bundles" : "Pacotes de apps", + "Show last login" : "Mostrar último login", + "Show user backend" : "Mostrar interface do utilizador", "Admins" : "Administrador", "Everyone" : "Para todos", "Add group" : "Adicionar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "A app foi activada mas necessita ser actualizada. Irá ser redireccionado para a página de actualização em 5 segundos.", + "App update" : "Actualização de app", + "Error: This app can not be enabled because it makes the server unstable" : "Erro: Esta app não pode ser activada porque torna o servidor instável.", "SSL Root Certificates" : "Certificados SSL Root", "Common Name" : "Nome Comum", "Valid until" : "Válido até", @@ -239,9 +256,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Identificador do Twitter @...", "Help translate" : "Ajude a traduzir", - "Password" : "Palavra-passe", "Current password" : "Palavra-passe atual", - "New password" : "Nova palavra-passe", "Change password" : "Alterar palavra-passe", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, desktop e clientes móveis estão actualmente autenticados na sua conta.", "Device" : "Dispositivo", @@ -250,7 +265,6 @@ OC.L10N.register( "Create new app password" : "Criar nova senha", "Use the credentials below to configure your app or device." : "Use as credenciais abaixo para configurar a sua app ou dispositivo.", "For security reasons this password will only be shown once." : "Por motivos de segurança a sua password só será mostrada uma vez.", - "Username" : "Nome de utilizador", "Done" : "Concluído", "Enabled apps" : "Apps ativas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está a usar uma versão %s desatualizada (%s). Por favor, atualize o seu sistema operativo ou algumas funcionalidades como %s não funcionarão corretamente.", @@ -275,15 +289,11 @@ OC.L10N.register( "Password confirmation is required" : "Confirmação de senha necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem a certeza que pretende adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável ", - "All" : "Todos", "Update to %s" : "Actualizar para %s", - "No apps found for your version" : "Nenhuma aplicação encontrada para a sua versão", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "As apps oficiais são desenvolvidas de e para a comunidade. Oferecem um repositório central de funcionalidades e estão preparadas para uso em produção.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicações aprovadas são desenvolvidas por developers de confiança e passaram numa verificação de segurança. São mantidas ativamente num repositório de código aberto e quem as mantém considera-as estáveis para uso casual a normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicação não foi verificada por problemas de segurança e é nova ou conhecida por ser instável. Instale-a por sua conta e risco.", "Disabling app …" : "A desactivar app...", "Error while disabling app" : "Ocorreu um erro enquanto desativava a app", - "Disable" : "Desativar", "Enabling app …" : "A activar app...", "Error while enabling app" : "Ocorreu um erro enquanto ativava a app", "Error: Could not disable broken app" : "Erro: Não pode desactivar uma app danificada.", @@ -293,7 +303,6 @@ OC.L10N.register( "Updated" : "Atualizada", "Removing …" : "A remover...", "Error while removing app" : "Erro ao remover a app", - "Remove" : "Remover", "Approved" : "Aprovado", "Experimental" : "Experimental", "No apps found for {query}" : "Não foram encontradas aplicações para {query}", @@ -341,16 +350,12 @@ OC.L10N.register( "Theming" : "Temas", "Check the security of your Nextcloud over our security scan" : "Verifique a segurança da sua Nextcloud através da nossa verificação de segurança", "Hardening and security guidance" : "Orientações de proteção e segurança", - "View in store" : "Ver na loja", "This app has an update available." : "Esta aplicação tem uma atualização disponível.", "by %s" : "por %s", "%s-licensed" : "%s-autorizado", "Documentation:" : "Documentação:", - "Admin documentation" : "Documentação do Administrador", - "Report a bug" : "Reportar um erro", "Show description …" : "Mostrar descrição ...", "Hide description …" : "Esconder descrição ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "Enable only for specific groups" : "Activar só para grupos específicos", "Online documentation" : "Documentação Online", "Getting help" : "Obtendo ajuda", @@ -374,8 +379,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Subscreva as nossas notícias!", "Settings" : "Definições", "Show storage location" : "Mostrar a localização do armazenamento", - "Show user backend" : "Mostrar interface do utilizador", - "Show last login" : "Mostrar último login", "Show email address" : "Mostrar endereço de email", "Send email to new user" : "Enviar email ao novo utilizador", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quando a palavra-passe de um novo utilizador é deixada em branco, é-lhe enviado um e-mail com uma ligação para definir a nova palavra-passe.", @@ -387,9 +390,6 @@ OC.L10N.register( "Disabled" : "Desactivado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")", "Other" : "Outro", - "Quota" : "Quota", - "Storage location" : "Localização do armazenamento", - "Last login" : "Último início de sessão", "change full name" : "alterar nome completo", "set new password" : "definir nova palavra-passe", "change email address" : "alterar endereço do correio eletrónico", diff --git a/settings/l10n/pt_PT.json b/settings/l10n/pt_PT.json index cc178a6d69a..4151db2ea46 100644 --- a/settings/l10n/pt_PT.json +++ b/settings/l10n/pt_PT.json @@ -103,32 +103,49 @@ "Select a profile picture" : "Selecione uma fotografia de perfil", "Groups" : "Grupos", "Limit to groups" : "Limitado a grupos", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "As apps oficiais são desenvolvidas de e para a comunidade. Oferecem um repositório central de funcionalidades e estão preparadas para uso em produção.", "Official" : "Oficial", + "Remove" : "Remover", + "Disable" : "Desativar", + "All" : "Todos", + "View in store" : "Ver na loja", "Visit website" : "Visitar o website", + "Report a bug" : "Reportar um erro", "User documentation" : "Documentação de Utilizador", + "Admin documentation" : "Documentação do Administrador", "Developer documentation" : "Documentação de Programador", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão mínima do Nextcloud atribuída. Isto será um erro no futuro.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Esta aplicação não pode ser instalada porque as seguintes dependências não podem ser realizadas:", + "No apps found for your version" : "Nenhuma aplicação encontrada para a sua versão", "Enable all" : "Ativar todas", "Enable" : "Ativar", "The app will be downloaded from the app store" : "A aplicação será transferida da loja de aplicações", + "New password" : "Nova palavra-passe", "{size} used" : "{size} utilizado", + "Username" : "Nome de utilizador", + "Password" : "Palavra-passe", "Email" : "Email", "Group admin for" : "Administrador de grupo para", + "Quota" : "Quota", "Language" : "Idioma", + "Storage location" : "Localização do armazenamento", "User backend" : "Backend do utilizador", + "Last login" : "Último início de sessão", "Unlimited" : "Ilimitado", "Default quota" : "Quota padrão", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "A app foi activada mas necessita ser actualizada. Irá ser redireccionado para a página de actualização em 5 segundos.", - "App update" : "Actualização de app", - "Error: This app can not be enabled because it makes the server unstable" : "Erro: Esta app não pode ser activada porque torna o servidor instável.", "Your apps" : "As suas apps", "Disabled apps" : "Apps desativadas", "Updates" : "Actualizações", "App bundles" : "Pacotes de apps", + "Show last login" : "Mostrar último login", + "Show user backend" : "Mostrar interface do utilizador", "Admins" : "Administrador", "Everyone" : "Para todos", "Add group" : "Adicionar grupo", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "A app foi activada mas necessita ser actualizada. Irá ser redireccionado para a página de actualização em 5 segundos.", + "App update" : "Actualização de app", + "Error: This app can not be enabled because it makes the server unstable" : "Erro: Esta app não pode ser activada porque torna o servidor instável.", "SSL Root Certificates" : "Certificados SSL Root", "Common Name" : "Nome Comum", "Valid until" : "Válido até", @@ -237,9 +254,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Identificador do Twitter @...", "Help translate" : "Ajude a traduzir", - "Password" : "Palavra-passe", "Current password" : "Palavra-passe atual", - "New password" : "Nova palavra-passe", "Change password" : "Alterar palavra-passe", "Web, desktop and mobile clients currently logged in to your account." : "Clientes web, desktop e clientes móveis estão actualmente autenticados na sua conta.", "Device" : "Dispositivo", @@ -248,7 +263,6 @@ "Create new app password" : "Criar nova senha", "Use the credentials below to configure your app or device." : "Use as credenciais abaixo para configurar a sua app ou dispositivo.", "For security reasons this password will only be shown once." : "Por motivos de segurança a sua password só será mostrada uma vez.", - "Username" : "Nome de utilizador", "Done" : "Concluído", "Enabled apps" : "Apps ativas", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL está a usar uma versão %s desatualizada (%s). Por favor, atualize o seu sistema operativo ou algumas funcionalidades como %s não funcionarão corretamente.", @@ -273,15 +287,11 @@ "Password confirmation is required" : "Confirmação de senha necessária", "Are you really sure you want add {domain} as trusted domain?" : "Tem a certeza que pretende adicionar {domain} como um domínio confiável?", "Add trusted domain" : "Adicionar domínio confiável ", - "All" : "Todos", "Update to %s" : "Actualizar para %s", - "No apps found for your version" : "Nenhuma aplicação encontrada para a sua versão", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "As apps oficiais são desenvolvidas de e para a comunidade. Oferecem um repositório central de funcionalidades e estão preparadas para uso em produção.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "As aplicações aprovadas são desenvolvidas por developers de confiança e passaram numa verificação de segurança. São mantidas ativamente num repositório de código aberto e quem as mantém considera-as estáveis para uso casual a normal.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Esta aplicação não foi verificada por problemas de segurança e é nova ou conhecida por ser instável. Instale-a por sua conta e risco.", "Disabling app …" : "A desactivar app...", "Error while disabling app" : "Ocorreu um erro enquanto desativava a app", - "Disable" : "Desativar", "Enabling app …" : "A activar app...", "Error while enabling app" : "Ocorreu um erro enquanto ativava a app", "Error: Could not disable broken app" : "Erro: Não pode desactivar uma app danificada.", @@ -291,7 +301,6 @@ "Updated" : "Atualizada", "Removing …" : "A remover...", "Error while removing app" : "Erro ao remover a app", - "Remove" : "Remover", "Approved" : "Aprovado", "Experimental" : "Experimental", "No apps found for {query}" : "Não foram encontradas aplicações para {query}", @@ -339,16 +348,12 @@ "Theming" : "Temas", "Check the security of your Nextcloud over our security scan" : "Verifique a segurança da sua Nextcloud através da nossa verificação de segurança", "Hardening and security guidance" : "Orientações de proteção e segurança", - "View in store" : "Ver na loja", "This app has an update available." : "Esta aplicação tem uma atualização disponível.", "by %s" : "por %s", "%s-licensed" : "%s-autorizado", "Documentation:" : "Documentação:", - "Admin documentation" : "Documentação do Administrador", - "Report a bug" : "Reportar um erro", "Show description …" : "Mostrar descrição ...", "Hide description …" : "Esconder descrição ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Esta app não tem a versão máxima do Nextcloud atribuída. Isto será um erro no futuro.", "Enable only for specific groups" : "Activar só para grupos específicos", "Online documentation" : "Documentação Online", "Getting help" : "Obtendo ajuda", @@ -372,8 +377,6 @@ "Subscribe to our newsletter!" : "Subscreva as nossas notícias!", "Settings" : "Definições", "Show storage location" : "Mostrar a localização do armazenamento", - "Show user backend" : "Mostrar interface do utilizador", - "Show last login" : "Mostrar último login", "Show email address" : "Mostrar endereço de email", "Send email to new user" : "Enviar email ao novo utilizador", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Quando a palavra-passe de um novo utilizador é deixada em branco, é-lhe enviado um e-mail com uma ligação para definir a nova palavra-passe.", @@ -385,9 +388,6 @@ "Disabled" : "Desactivado", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Insira a quota de armazenamento (ex: \"512 MB\" ou \"12 GB\")", "Other" : "Outro", - "Quota" : "Quota", - "Storage location" : "Localização do armazenamento", - "Last login" : "Último início de sessão", "change full name" : "alterar nome completo", "set new password" : "definir nova palavra-passe", "change email address" : "alterar endereço do correio eletrónico", diff --git a/settings/l10n/ro.js b/settings/l10n/ro.js index 0c0cfdd15f9..b030b9b4015 100644 --- a/settings/l10n/ro.js +++ b/settings/l10n/ro.js @@ -60,18 +60,28 @@ OC.L10N.register( "Select a profile picture" : "Selectează o imagine de profil", "Groups" : "Grupuri", "Official" : "Oficial", + "Disable" : "Dezactivați", + "All" : "Toate ", "Visit website" : "Viziteaza pagina web", + "Report a bug" : "Raportează un defect", "User documentation" : "Documentație utilizator", + "Admin documentation" : "Documentație pentru administrare", "Developer documentation" : "Documentație pentru dezvoltatori", + "No apps found for your version" : "Nu au fost găsite aplicații pentru versiunea ta", "Enable" : "Activare", "The app will be downloaded from the app store" : "Aplicația va fi descărcată din magazin", + "New password" : "Noua parolă", "{size} used" : "{size} folosită", + "Username" : "Nume utilizator", + "Password" : "Parolă", "Email" : "Email", + "Quota" : "Cotă", "Language" : "Limba", "Unlimited" : "Nelimitată", "Your apps" : "Aplicațiile tale", "Disabled apps" : "Aplicații inactive", "Updates" : "Actualizări", + "Show user backend" : "Arată administrare utilizator", "Admins" : "Administratori", "Everyone" : "Toți", "Add group" : "Adaugă grup", @@ -146,14 +156,11 @@ OC.L10N.register( "Link https://…" : "Link https://…", "Twitter" : "Twitter", "Help translate" : "Ajută la traducere", - "Password" : "Parolă", "Current password" : "Parola curentă", - "New password" : "Noua parolă", "Change password" : "Schimbă parola", "Device" : "Dispozitiv", "App name" : "Numele aplicației", "Create new app password" : "Crează o nouă parolă pentru aplicație", - "Username" : "Nume utilizator", "Done" : "Realizat", "Enabled apps" : "Aplicații active", "A problem occurred, please check your log files (Error: %s)" : "A apărut o problemă, te rugăm verifică fișierele tale de log (Eroare: %s)", @@ -175,11 +182,8 @@ OC.L10N.register( "Password confirmation is required" : "Confirmarea parolei este necesară", "Are you really sure you want add {domain} as trusted domain?" : "Ești sigur că vrei sa adaugi {domain} ca domeniu de încredere?", "Add trusted domain" : "Adaugă domeniu de încredere", - "All" : "Toate ", "Update to %s" : "Actualizat la %s", - "No apps found for your version" : "Nu au fost găsite aplicații pentru versiunea ta", "Error while disabling app" : "Eroare în timpul dezactivării aplicației", - "Disable" : "Dezactivați", "Error while enabling app" : "Eroare în timpul activării applicației", "Updated" : "Actualizat", "Approved" : "Aprobat", @@ -209,8 +213,6 @@ OC.L10N.register( "by %s" : "de %s", "%s-licensed" : "%s-licențiat", "Documentation:" : "Documentație:", - "Admin documentation" : "Documentație pentru administrare", - "Report a bug" : "Raportează un defect", "Show description …" : "Arată descriere ...", "Hide description …" : "Ascunde descriere ...", "Enable only for specific groups" : "Activează doar pentru grupuri specifice", @@ -220,7 +222,6 @@ OC.L10N.register( "You are member of the following groups:" : "Ești membru a următoarelor grupuri:", "Settings" : "Setări", "Show storage location" : "Arată localizarea stocării", - "Show user backend" : "Arată administrare utilizator", "Show email address" : "Arată adresa de email", "Send email to new user" : "Trimite email către noul utilizator", "E-Mail" : "Email", @@ -230,7 +231,6 @@ OC.L10N.register( "Disabled" : "Dezactivați", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Te rugăm introdu cota de stocare (ex: \"512 MB\" sau \"12 GB\")", "Other" : "Altele", - "Quota" : "Cotă", "change full name" : "schimbă numele complet", "set new password" : "setează parolă nouă", "change email address" : "schimbă adresa email", diff --git a/settings/l10n/ro.json b/settings/l10n/ro.json index 70d8f58d5b8..b0d94d06b97 100644 --- a/settings/l10n/ro.json +++ b/settings/l10n/ro.json @@ -58,18 +58,28 @@ "Select a profile picture" : "Selectează o imagine de profil", "Groups" : "Grupuri", "Official" : "Oficial", + "Disable" : "Dezactivați", + "All" : "Toate ", "Visit website" : "Viziteaza pagina web", + "Report a bug" : "Raportează un defect", "User documentation" : "Documentație utilizator", + "Admin documentation" : "Documentație pentru administrare", "Developer documentation" : "Documentație pentru dezvoltatori", + "No apps found for your version" : "Nu au fost găsite aplicații pentru versiunea ta", "Enable" : "Activare", "The app will be downloaded from the app store" : "Aplicația va fi descărcată din magazin", + "New password" : "Noua parolă", "{size} used" : "{size} folosită", + "Username" : "Nume utilizator", + "Password" : "Parolă", "Email" : "Email", + "Quota" : "Cotă", "Language" : "Limba", "Unlimited" : "Nelimitată", "Your apps" : "Aplicațiile tale", "Disabled apps" : "Aplicații inactive", "Updates" : "Actualizări", + "Show user backend" : "Arată administrare utilizator", "Admins" : "Administratori", "Everyone" : "Toți", "Add group" : "Adaugă grup", @@ -144,14 +154,11 @@ "Link https://…" : "Link https://…", "Twitter" : "Twitter", "Help translate" : "Ajută la traducere", - "Password" : "Parolă", "Current password" : "Parola curentă", - "New password" : "Noua parolă", "Change password" : "Schimbă parola", "Device" : "Dispozitiv", "App name" : "Numele aplicației", "Create new app password" : "Crează o nouă parolă pentru aplicație", - "Username" : "Nume utilizator", "Done" : "Realizat", "Enabled apps" : "Aplicații active", "A problem occurred, please check your log files (Error: %s)" : "A apărut o problemă, te rugăm verifică fișierele tale de log (Eroare: %s)", @@ -173,11 +180,8 @@ "Password confirmation is required" : "Confirmarea parolei este necesară", "Are you really sure you want add {domain} as trusted domain?" : "Ești sigur că vrei sa adaugi {domain} ca domeniu de încredere?", "Add trusted domain" : "Adaugă domeniu de încredere", - "All" : "Toate ", "Update to %s" : "Actualizat la %s", - "No apps found for your version" : "Nu au fost găsite aplicații pentru versiunea ta", "Error while disabling app" : "Eroare în timpul dezactivării aplicației", - "Disable" : "Dezactivați", "Error while enabling app" : "Eroare în timpul activării applicației", "Updated" : "Actualizat", "Approved" : "Aprobat", @@ -207,8 +211,6 @@ "by %s" : "de %s", "%s-licensed" : "%s-licențiat", "Documentation:" : "Documentație:", - "Admin documentation" : "Documentație pentru administrare", - "Report a bug" : "Raportează un defect", "Show description …" : "Arată descriere ...", "Hide description …" : "Ascunde descriere ...", "Enable only for specific groups" : "Activează doar pentru grupuri specifice", @@ -218,7 +220,6 @@ "You are member of the following groups:" : "Ești membru a următoarelor grupuri:", "Settings" : "Setări", "Show storage location" : "Arată localizarea stocării", - "Show user backend" : "Arată administrare utilizator", "Show email address" : "Arată adresa de email", "Send email to new user" : "Trimite email către noul utilizator", "E-Mail" : "Email", @@ -228,7 +229,6 @@ "Disabled" : "Dezactivați", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Te rugăm introdu cota de stocare (ex: \"512 MB\" sau \"12 GB\")", "Other" : "Altele", - "Quota" : "Cotă", "change full name" : "schimbă numele complet", "set new password" : "setează parolă nouă", "change email address" : "schimbă adresa email", diff --git a/settings/l10n/ru.js b/settings/l10n/ru.js index d4ce51cff04..8bed25d0975 100644 --- a/settings/l10n/ru.js +++ b/settings/l10n/ru.js @@ -115,47 +115,60 @@ OC.L10N.register( "Enforce two-factor authentication" : "Требовать двухфакторую аунтефикацию", "Limit to groups" : "Ограничить группами", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Двухфаторная аутентификация не требуется для пользователей следующих групп.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Официальные приложения разработаны вместе с сообществом. Они предлагают базовую функциональность и готовы для использования.", "Official" : "Официальное", + "Remove" : "Удалить", + "Disable" : "Отключить", + "All" : "Все", "No results" : "Результаты отсутствуют", + "View in store" : "Посмотреть в магазине приложений", "Visit website" : "Посетите веб-сайт", + "Report a bug" : "Сообщить об ошибке", "User documentation" : "Пользовательская документация", + "Admin documentation" : "Документация для администратора", "Developer documentation" : "Документация для разработчиков", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "{license}-licensed" : "Лицензия: {license}", + "No apps found for your version" : "Приложений, совместимых с установленной версией Nextcloud, не найдено", "Disable all" : "Отключить все", "Enable all" : "Включить все", "Download and enable" : "Скачать и включить", "Enable" : "Включить", "The app will be downloaded from the app store" : "Приложение будет скачано из магазина приложений", "You do not have permissions to see the details of this user" : "У вас нет прав на просмотр данных об этом пользователе", + "New password" : "Новый пароль", "Delete user" : "Удалить пользователя", "Disable user" : "Отключить пользователя", "Enable user" : "Включить пользователя", "Resend welcome email" : "Отправить приглашение ещё раз", "{size} used" : "использовано {size}", "Welcome mail sent!" : "Приглашение отправлено!", + "Username" : "Имя пользователя", "Display name" : "Отображаемое имя", + "Password" : "Пароль", "Email" : "Адрес эл. почты", "Group admin for" : "Администратор групп", + "Quota" : "Квота", "Language" : "Язык", + "Storage location" : "Расположение хранилища", "User backend" : "Механизм учёта пользователей", + "Last login" : "Последний вход", + "Default language" : "Язык по умолчанию", "Unlimited" : "Неограничено", "Default quota" : "Квота по умолчанию", - "Default language" : "Язык по умолчанию", "Password change is disabled because the master key is disabled" : "Смена пароля невозможна при отключённом мастер-ключе", "Common languages" : "Основные языки", "All languages" : "Все языки", - "An error occured during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено, но нуждается в обновлении. В течении 5 секунд будет выполнено перенаправление на страницу обновления.", - "App update" : "Обновление приложения", - "Error: This app can not be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", "Your apps" : "Ваши приложения", "Active apps" : "Активные приложения", "Disabled apps" : "Отключённые приложения", "Updates" : "Обновления", "App bundles" : "Пакеты приложений", + "{license}-licensed" : "Лицензия: {license}", "Default quota:" : "Квота по умолчанию: ", + "Show last login" : "Показывать последний вход", + "Show user backend" : "Показывать механизм учёта", "You are about to remove the group {group}. The users will NOT be deleted." : "Группа «{group}» будет удалена, но это НЕ приведёт к удалению пользователей.", "Please confirm the group removal " : "Подтвердите удаление группы", "Remove group" : "Удалить группу", @@ -164,6 +177,10 @@ OC.L10N.register( "Everyone" : "Все", "Add group" : "Добавить группу", "New user" : "Новый пользователь", + "An error occured during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено, но нуждается в обновлении. В течении 5 секунд будет выполнено перенаправление на страницу обновления.", + "App update" : "Обновление приложения", + "Error: This app can not be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", "SSL Root Certificates" : "Корневые сертификаты SSL", "Common Name" : "Общепринятое имя", "Valid until" : "Дата истечения", @@ -288,9 +305,7 @@ OC.L10N.register( "Twitter handle @…" : "Имя в Twitter @…", "Help translate" : "Помочь с переводом", "Locale" : "Региональные стандарты", - "Password" : "Пароль", "Current password" : "Текущий пароль", - "New password" : "Новый пароль", "Change password" : "Сменить пароль", "Devices & sessions" : "Активные устройства и сеансы", "Web, desktop and mobile clients currently logged in to your account." : "Веб, настольные и мобильные клиенты, которые в настоящий момент авторизованы вашей учётной записью.", @@ -300,7 +315,6 @@ OC.L10N.register( "Create new app password" : "Создать пароль приложения", "Use the credentials below to configure your app or device." : "Используйте учётные данные ниже для настройки вашего приложения или устройства.", "For security reasons this password will only be shown once." : "По соображениям безопасности этот пароль будет показан лишь один раз.", - "Username" : "Имя пользователя", "Done" : "Выполнено", "Enabled apps" : "Активные приложения", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL использует устаревшую версию %s (%s). Пожалуйста, обновите вашу операционную систему, иначе такие возможности, как %s, не будут работать корректно.", @@ -325,16 +339,12 @@ OC.L10N.register( "Password confirmation is required" : "Требуется подтверждение пароля", "Are you really sure you want add {domain} as trusted domain?" : "Вы действительно хотите добавить домен {domain} как доверенный?", "Add trusted domain" : "Добавить доверенный домен", - "All" : "Все", "Update to %s" : "Обновить до %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Доступно обновление для %n приложения","Доступны обновления для %n приложений","Доступны обновления для %n приложений","Доступны обновления для %nприложений"], - "No apps found for your version" : "Приложений, совместимых с установленной версией Nextcloud, не найдено", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Официальные приложения разработаны вместе с сообществом. Они предлагают базовую функциональность и готовы для использования.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Подтвержденные приложения разработаны доверенными разработчиками и прошли краткую проверку на наличие проблем с безопасностью. Они активно поддерживаются в открытых репозиториях и сопровождающие их разработчики подтверждают, что приложения достаточно стабильны для нормальной работы.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Это приложение не проверялось на наличие проблем с безопасностью, также оно может работать нестабильно. Устанавливайте на свой страх и риск.", "Disabling app …" : "Отключение приложения…", "Error while disabling app" : "Ошибка отключения приложения", - "Disable" : "Отключить", "Enabling app …" : "Включение приложения…", "Error while enabling app" : "Ошибка включения приложения", "Error: Could not disable broken app" : "Ошибка: невозможно отключить «сломанное» приложение", @@ -344,7 +354,6 @@ OC.L10N.register( "Updated" : "Обновлено", "Removing …" : "Удаление…", "Error while removing app" : "Ошибка удаления приложения", - "Remove" : "Удалить", "Approved" : "Подтвержденное", "Experimental" : "Экспериментальное", "No apps found for {query}" : "По запросу «{query}» не найдено ни одного приложения", @@ -401,16 +410,12 @@ OC.L10N.register( "Theming" : "Темы оформления", "Check the security of your Nextcloud over our security scan" : "Проверить безопасность вашего Nextcloud нашем сканером", "Hardening and security guidance" : "Руководство по безопасности и защите", - "View in store" : "Посмотреть в магазине приложений", "This app has an update available." : "Для этого приложения доступно обновление.", "by %s" : "от %s", "%s-licensed" : "Лицензия %s", "Documentation:" : "Документация:", - "Admin documentation" : "Документация для администратора", - "Report a bug" : "Сообщить об ошибке", "Show description …" : "Показать описание…", "Hide description …" : "Скрыть описание…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "Enable only for specific groups" : "Включить только для определенных групп", "Online documentation" : "Online-документация", "Getting help" : "Помощь", @@ -434,8 +439,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Подпишитесь на нашу рассылку!", "Settings" : "Параметры", "Show storage location" : "Показывать расположение хранилища", - "Show user backend" : "Показывать механизм учёта", - "Show last login" : "Показывать последний вход", "Show email address" : "Показывать адрес электронной почты", "Send email to new user" : "Отправлять письмо новому пользователю", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Если поле пароля нового пользователя оставить пустым, то пользователю будет отправлено эл.письмо, содержащее ссылку на страницу установки пароля.", @@ -447,9 +450,6 @@ OC.L10N.register( "Disabled" : "Отключено", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")", "Other" : "Другая", - "Quota" : "Квота", - "Storage location" : "Расположение хранилища", - "Last login" : "Последний вход", "change full name" : "изменить полное имя", "set new password" : "задать новый пароль", "change email address" : "изменить адрес почты", diff --git a/settings/l10n/ru.json b/settings/l10n/ru.json index 3ce44ad0f1e..97f288df953 100644 --- a/settings/l10n/ru.json +++ b/settings/l10n/ru.json @@ -113,47 +113,60 @@ "Enforce two-factor authentication" : "Требовать двухфакторую аунтефикацию", "Limit to groups" : "Ограничить группами", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Двухфаторная аутентификация не требуется для пользователей следующих групп.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Официальные приложения разработаны вместе с сообществом. Они предлагают базовую функциональность и готовы для использования.", "Official" : "Официальное", + "Remove" : "Удалить", + "Disable" : "Отключить", + "All" : "Все", "No results" : "Результаты отсутствуют", + "View in store" : "Посмотреть в магазине приложений", "Visit website" : "Посетите веб-сайт", + "Report a bug" : "Сообщить об ошибке", "User documentation" : "Пользовательская документация", + "Admin documentation" : "Документация для администратора", "Developer documentation" : "Документация для разработчиков", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана минимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Приложение не может быть установлено, следующие зависимости не удовлетворены:", - "{license}-licensed" : "Лицензия: {license}", + "No apps found for your version" : "Приложений, совместимых с установленной версией Nextcloud, не найдено", "Disable all" : "Отключить все", "Enable all" : "Включить все", "Download and enable" : "Скачать и включить", "Enable" : "Включить", "The app will be downloaded from the app store" : "Приложение будет скачано из магазина приложений", "You do not have permissions to see the details of this user" : "У вас нет прав на просмотр данных об этом пользователе", + "New password" : "Новый пароль", "Delete user" : "Удалить пользователя", "Disable user" : "Отключить пользователя", "Enable user" : "Включить пользователя", "Resend welcome email" : "Отправить приглашение ещё раз", "{size} used" : "использовано {size}", "Welcome mail sent!" : "Приглашение отправлено!", + "Username" : "Имя пользователя", "Display name" : "Отображаемое имя", + "Password" : "Пароль", "Email" : "Адрес эл. почты", "Group admin for" : "Администратор групп", + "Quota" : "Квота", "Language" : "Язык", + "Storage location" : "Расположение хранилища", "User backend" : "Механизм учёта пользователей", + "Last login" : "Последний вход", + "Default language" : "Язык по умолчанию", "Unlimited" : "Неограничено", "Default quota" : "Квота по умолчанию", - "Default language" : "Язык по умолчанию", "Password change is disabled because the master key is disabled" : "Смена пароля невозможна при отключённом мастер-ключе", "Common languages" : "Основные языки", "All languages" : "Все языки", - "An error occured during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено, но нуждается в обновлении. В течении 5 секунд будет выполнено перенаправление на страницу обновления.", - "App update" : "Обновление приложения", - "Error: This app can not be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", "Your apps" : "Ваши приложения", "Active apps" : "Активные приложения", "Disabled apps" : "Отключённые приложения", "Updates" : "Обновления", "App bundles" : "Пакеты приложений", + "{license}-licensed" : "Лицензия: {license}", "Default quota:" : "Квота по умолчанию: ", + "Show last login" : "Показывать последний вход", + "Show user backend" : "Показывать механизм учёта", "You are about to remove the group {group}. The users will NOT be deleted." : "Группа «{group}» будет удалена, но это НЕ приведёт к удалению пользователей.", "Please confirm the group removal " : "Подтвердите удаление группы", "Remove group" : "Удалить группу", @@ -162,6 +175,10 @@ "Everyone" : "Все", "Add group" : "Добавить группу", "New user" : "Новый пользователь", + "An error occured during the request. Unable to proceed." : "Во время запроса произошла ошибка. Продолжение невозможно", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Приложение было включено, но нуждается в обновлении. В течении 5 секунд будет выполнено перенаправление на страницу обновления.", + "App update" : "Обновление приложения", + "Error: This app can not be enabled because it makes the server unstable" : "Ошибка: это приложение не может быть включено, так как оно сделает сервер нестабильным", "SSL Root Certificates" : "Корневые сертификаты SSL", "Common Name" : "Общепринятое имя", "Valid until" : "Дата истечения", @@ -286,9 +303,7 @@ "Twitter handle @…" : "Имя в Twitter @…", "Help translate" : "Помочь с переводом", "Locale" : "Региональные стандарты", - "Password" : "Пароль", "Current password" : "Текущий пароль", - "New password" : "Новый пароль", "Change password" : "Сменить пароль", "Devices & sessions" : "Активные устройства и сеансы", "Web, desktop and mobile clients currently logged in to your account." : "Веб, настольные и мобильные клиенты, которые в настоящий момент авторизованы вашей учётной записью.", @@ -298,7 +313,6 @@ "Create new app password" : "Создать пароль приложения", "Use the credentials below to configure your app or device." : "Используйте учётные данные ниже для настройки вашего приложения или устройства.", "For security reasons this password will only be shown once." : "По соображениям безопасности этот пароль будет показан лишь один раз.", - "Username" : "Имя пользователя", "Done" : "Выполнено", "Enabled apps" : "Активные приложения", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL использует устаревшую версию %s (%s). Пожалуйста, обновите вашу операционную систему, иначе такие возможности, как %s, не будут работать корректно.", @@ -323,16 +337,12 @@ "Password confirmation is required" : "Требуется подтверждение пароля", "Are you really sure you want add {domain} as trusted domain?" : "Вы действительно хотите добавить домен {domain} как доверенный?", "Add trusted domain" : "Добавить доверенный домен", - "All" : "Все", "Update to %s" : "Обновить до %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Доступно обновление для %n приложения","Доступны обновления для %n приложений","Доступны обновления для %n приложений","Доступны обновления для %nприложений"], - "No apps found for your version" : "Приложений, совместимых с установленной версией Nextcloud, не найдено", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Официальные приложения разработаны вместе с сообществом. Они предлагают базовую функциональность и готовы для использования.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Подтвержденные приложения разработаны доверенными разработчиками и прошли краткую проверку на наличие проблем с безопасностью. Они активно поддерживаются в открытых репозиториях и сопровождающие их разработчики подтверждают, что приложения достаточно стабильны для нормальной работы.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Это приложение не проверялось на наличие проблем с безопасностью, также оно может работать нестабильно. Устанавливайте на свой страх и риск.", "Disabling app …" : "Отключение приложения…", "Error while disabling app" : "Ошибка отключения приложения", - "Disable" : "Отключить", "Enabling app …" : "Включение приложения…", "Error while enabling app" : "Ошибка включения приложения", "Error: Could not disable broken app" : "Ошибка: невозможно отключить «сломанное» приложение", @@ -342,7 +352,6 @@ "Updated" : "Обновлено", "Removing …" : "Удаление…", "Error while removing app" : "Ошибка удаления приложения", - "Remove" : "Удалить", "Approved" : "Подтвержденное", "Experimental" : "Экспериментальное", "No apps found for {query}" : "По запросу «{query}» не найдено ни одного приложения", @@ -399,16 +408,12 @@ "Theming" : "Темы оформления", "Check the security of your Nextcloud over our security scan" : "Проверить безопасность вашего Nextcloud нашем сканером", "Hardening and security guidance" : "Руководство по безопасности и защите", - "View in store" : "Посмотреть в магазине приложений", "This app has an update available." : "Для этого приложения доступно обновление.", "by %s" : "от %s", "%s-licensed" : "Лицензия %s", "Documentation:" : "Документация:", - "Admin documentation" : "Документация для администратора", - "Report a bug" : "Сообщить об ошибке", "Show description …" : "Показать описание…", "Hide description …" : "Скрыть описание…", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Для этого приложения не указана максимальная поддерживаемая версия Nextcloud, в будущем это будет считаться ошибкой.", "Enable only for specific groups" : "Включить только для определенных групп", "Online documentation" : "Online-документация", "Getting help" : "Помощь", @@ -432,8 +437,6 @@ "Subscribe to our newsletter!" : "Подпишитесь на нашу рассылку!", "Settings" : "Параметры", "Show storage location" : "Показывать расположение хранилища", - "Show user backend" : "Показывать механизм учёта", - "Show last login" : "Показывать последний вход", "Show email address" : "Показывать адрес электронной почты", "Send email to new user" : "Отправлять письмо новому пользователю", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Если поле пароля нового пользователя оставить пустым, то пользователю будет отправлено эл.письмо, содержащее ссылку на страницу установки пароля.", @@ -445,9 +448,6 @@ "Disabled" : "Отключено", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Пожалуйста, введите квоту на хранилище (например: \"512 MB\" или \"12 GB\")", "Other" : "Другая", - "Quota" : "Квота", - "Storage location" : "Расположение хранилища", - "Last login" : "Последний вход", "change full name" : "изменить полное имя", "set new password" : "задать новый пароль", "change email address" : "изменить адрес почты", diff --git a/settings/l10n/si_LK.js b/settings/l10n/si_LK.js index 489af462f62..2672c6e4007 100644 --- a/settings/l10n/si_LK.js +++ b/settings/l10n/si_LK.js @@ -4,8 +4,14 @@ OC.L10N.register( "Authentication error" : "සත්යාපන දෝෂයක්", "Delete" : "මකා දමන්න", "Groups" : "කණ්ඩායම්", + "Disable" : "අක්රිය කරන්න", + "All" : "සියල්ල", "Enable" : "සක්රිය කරන්න", + "New password" : "නව මුරපදය", + "Username" : "පරිශීලක නම", + "Password" : "මුර පදය", "Email" : "විද්යුත් තැපෑල", + "Quota" : "සලාකය", "Language" : "භාෂාව", "None" : "කිසිවක් නැත", "Login" : "ප්රවිශ්ටය", @@ -17,18 +23,12 @@ OC.L10N.register( "Cancel" : "එපා", "Your email address" : "ඔබගේ විද්යුත් තැපෑල", "Help translate" : "පරිවර්ථන සහය", - "Password" : "මුර පදය", "Current password" : "වත්මන් මුරපදය", - "New password" : "නව මුරපදය", "Change password" : "මුරපදය වෙනස් කිරීම", - "Username" : "පරිශීලක නම", "Email saved" : "වි-තැපෑල සුරකින ලදී", - "All" : "සියල්ල", - "Disable" : "අක්රිය කරන්න", "undo" : "නිෂ්ප්රභ කරන්න", "never" : "කවදාවත්", "Create" : "තනන්න", - "Other" : "වෙනත්", - "Quota" : "සලාකය" + "Other" : "වෙනත්" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/si_LK.json b/settings/l10n/si_LK.json index 35be9c3c15d..42140acfb0a 100644 --- a/settings/l10n/si_LK.json +++ b/settings/l10n/si_LK.json @@ -2,8 +2,14 @@ "Authentication error" : "සත්යාපන දෝෂයක්", "Delete" : "මකා දමන්න", "Groups" : "කණ්ඩායම්", + "Disable" : "අක්රිය කරන්න", + "All" : "සියල්ල", "Enable" : "සක්රිය කරන්න", + "New password" : "නව මුරපදය", + "Username" : "පරිශීලක නම", + "Password" : "මුර පදය", "Email" : "විද්යුත් තැපෑල", + "Quota" : "සලාකය", "Language" : "භාෂාව", "None" : "කිසිවක් නැත", "Login" : "ප්රවිශ්ටය", @@ -15,18 +21,12 @@ "Cancel" : "එපා", "Your email address" : "ඔබගේ විද්යුත් තැපෑල", "Help translate" : "පරිවර්ථන සහය", - "Password" : "මුර පදය", "Current password" : "වත්මන් මුරපදය", - "New password" : "නව මුරපදය", "Change password" : "මුරපදය වෙනස් කිරීම", - "Username" : "පරිශීලක නම", "Email saved" : "වි-තැපෑල සුරකින ලදී", - "All" : "සියල්ල", - "Disable" : "අක්රිය කරන්න", "undo" : "නිෂ්ප්රභ කරන්න", "never" : "කවදාවත්", "Create" : "තනන්න", - "Other" : "වෙනත්", - "Quota" : "සලාකය" + "Other" : "වෙනත්" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/sk.js b/settings/l10n/sk.js index e1677b2949a..f12c43302d6 100644 --- a/settings/l10n/sk.js +++ b/settings/l10n/sk.js @@ -113,47 +113,60 @@ OC.L10N.register( "Enforce two-factor authentication" : "Vynútiť dvojzložkové overovanie", "Limit to groups" : "Povoľ len pre skupiny", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Dvojzložkové overovanie nie je povinné pre\tčlenov nasledovných skupín.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiálne aplikácie sú vyvíjané komunitou. Poskytujú centrálnu funkcionalitu a sú pripravené pre produkčné nasadenie.", "Official" : "Oficiálny", + "Remove" : "Odstrániť", + "Disable" : "Zakázať", + "All" : "Všetky", "No results" : "Žiadne výsledky", + "View in store" : "Zobraz v obchode", "Visit website" : "Navštíviť webstránku", + "Report a bug" : "Nahlásiť chybu", "User documentation" : "Príručka používateľa", + "Admin documentation" : "Príručka administrátora", "Developer documentation" : "Dokumentácia vývojára", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:", - "{license}-licensed" : "{license}-licencovaný", + "No apps found for your version" : "Aplikácie pre vašu verziu sa nenašli", "Disable all" : "Zakázať všetko", "Enable all" : "Povoliť všetko", "Download and enable" : "Stiahnuť a povoliť", "Enable" : "Zapnúť", "The app will be downloaded from the app store" : "Aplikácia bude stiahnutá z obchodu", "You do not have permissions to see the details of this user" : "Nemáte oprávnenie vidieť detaily tohoto používateľa", + "New password" : "Nové heslo", "Delete user" : "Zmazať používateľa", "Disable user" : "Zablokovať používateľa", "Enable user" : "Odblokovať používateľa", "Resend welcome email" : "Znova odoslať privítací email", "{size} used" : "{size} použité", "Welcome mail sent!" : "Privítací email odoslaný", + "Username" : "Používateľské meno", "Display name" : "Zobrazované meno", + "Password" : "Heslo", "Email" : "Email", "Group admin for" : "Administrátor skupiny pre", + "Quota" : "Kvóta", "Language" : "Jazyk", + "Storage location" : "Umiestnenie úložiska", "User backend" : "Backend používateľa", + "Last login" : "Posledné prihlásenie", + "Default language" : "Predvolený jazyk", "Unlimited" : "Nelimitované", "Default quota" : "Predvolená kvóta", - "Default language" : "Predvolený jazyk", "Password change is disabled because the master key is disabled" : "Zmena hesla je zablokovaná pretože hlavný kľúč je vypnutý", "Common languages" : "Spoločné jazyky", "All languages" : "Všetky jazyky", - "An error occured during the request. Unable to proceed." : "Počas vykonania požiadavky nastala chyba. Nie je možné pokračovať.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikácia bola povolená, ale vyžaduje sa aktualizácia. Presmerovanie na stránku aktualizácie o 5 sekúnd.", - "App update" : "Aktualizácia aplikácie", - "Error: This app can not be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", "Your apps" : "Vaše aplikácie", "Active apps" : "Aktívne aplikácie", "Disabled apps" : "Zakázané aplikácie", "Updates" : "Aktualizácie", "App bundles" : "Aplikačné balíky", + "{license}-licensed" : "{license}-licencovaný", "Default quota:" : "Predvolená kvóta:", + "Show last login" : "Zobraziť posledné prihlásenie", + "Show user backend" : "Zobraziť backend používateľa", "You are about to remove the group {group}. The users will NOT be deleted." : "Chystáte sa odstrániť skupinu {group}. Používatelia NEBUDÚ vymazaní.", "Please confirm the group removal " : "Prosím potvrďte vymazanie skupiny.", "Remove group" : "Odstrániť skupinu", @@ -162,6 +175,10 @@ OC.L10N.register( "Everyone" : "Všetci", "Add group" : "Pridať skupinu", "New user" : "Nový používateľ", + "An error occured during the request. Unable to proceed." : "Počas vykonania požiadavky nastala chyba. Nie je možné pokračovať.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikácia bola povolená, ale vyžaduje sa aktualizácia. Presmerovanie na stránku aktualizácie o 5 sekúnd.", + "App update" : "Aktualizácia aplikácie", + "Error: This app can not be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", "SSL Root Certificates" : "Koreňové certifikáty SSL", "Common Name" : "Bežný názov", "Valid until" : "Platný do", @@ -281,9 +298,7 @@ OC.L10N.register( "Twitter handle @…" : "Prezývka na Twitteri @…", "Help translate" : "Pomôcť s prekladom", "Locale" : "Miestne nastavenie", - "Password" : "Heslo", "Current password" : "Aktuálne heslo", - "New password" : "Nové heslo", "Change password" : "Zmeniť heslo", "Devices & sessions" : "Zariadenia a relácie", "Web, desktop and mobile clients currently logged in to your account." : "Weboví, desktopoví, alebo mobilní klienti práve prihlásení na váš účet.", @@ -293,7 +308,6 @@ OC.L10N.register( "Create new app password" : "Vytvoriť nové heslo aplikácie", "Use the credentials below to configure your app or device." : "Pre konfiguráciu vašej aplikácie, alebo zariadenia použite nižšie uvedené prihlasovacie údaje.", "For security reasons this password will only be shown once." : "Z dôvodu bezpečnosti toto heslo bude zobrazené iba jeden krát.", - "Username" : "Používateľské meno", "Done" : "Hotovo", "Enabled apps" : "Povolené aplikácie", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL používa zastaralú %s verziu (%s). Prosím aktualizujte si operačný systém pretože %s nebude fungovať spoľahlivo.", @@ -318,16 +332,12 @@ OC.L10N.register( "Password confirmation is required" : "Vyžaduje sa overenie heslom", "Are you really sure you want add {domain} as trusted domain?" : "Ste si istí, že chcete pridať {domain} medzi dôveryhodné domény?", "Add trusted domain" : "Pridať dôveryhodnú doménu", - "All" : "Všetky", "Update to %s" : "Aktualizovať na %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Prebieha aktualizácia %n aplikácie","Prebieha aktualizácia %n aplikácií","Prebieha aktualizácia %n aplikácií","Prebieha aktualizácia %n aplikácií"], - "No apps found for your version" : "Aplikácie pre vašu verziu sa nenašli", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiálne aplikácie sú vyvíjané komunitou. Poskytujú centrálnu funkcionalitu a sú pripravené pre produkčné nasadenie.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Schválené aplikácie sú vyvíjané dôveryhodnými vývojármi a prešli zbežnou kontrolou bezpečnosti. Sú aktívne udržiavané v otvorenom repozitári a ich udržovatelia ich považujú za stabilné pre bežné použitie.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Táto aplikácia nie je skontrolovaná na bezpečnostné chyby, je nová, alebo patrí medzi nestabilné. Inštalácia na vlastné riziko.", "Disabling app …" : "Vypínanie aplikácie ...", "Error while disabling app" : "Chyba pri zakázaní aplikácie", - "Disable" : "Zakázať", "Enabling app …" : "Povoľujem aplikáciu …", "Error while enabling app" : "Chyba pri povoľovaní aplikácie", "Error: Could not disable broken app" : "Chyba: nebolo možné zakázať poškodenú aplikáciu", @@ -337,7 +347,6 @@ OC.L10N.register( "Updated" : "Aktualizované", "Removing …" : "Odstraňujem ...", "Error while removing app" : "Chyba pri odstraňovaní aplikácie", - "Remove" : "Odstrániť", "Approved" : "Schválené", "Experimental" : "Experimentálny", "No apps found for {query}" : "Žiadna aplikácia nebola nájdená pre {query}", @@ -394,16 +403,12 @@ OC.L10N.register( "Theming" : "Vzhľady tém", "Check the security of your Nextcloud over our security scan" : "Skontrolujte bezpečnosť Vášho Nextcloud-u s pomocou bezpečnostného scan-u", "Hardening and security guidance" : "Sprievodca vylepšením bezpečnosti", - "View in store" : "Zobraz v obchode", "This app has an update available." : "Pre túto aplikáciu je dostupná aktualizácia.", "by %s" : "od %s", "%s-licensed" : "%s-licencovaný", "Documentation:" : "Dokumentácia:", - "Admin documentation" : "Príručka administrátora", - "Report a bug" : "Nahlásiť chybu", "Show description …" : "Zobraziť popis …", "Hide description …" : "Skryť popis …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "Enable only for specific groups" : "Povoliť len pre vybrané skupiny", "Online documentation" : "Online príručka", "Getting help" : "Získať pomoc", @@ -427,8 +432,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Prihlás sa na odber noviniek emailom!", "Settings" : "Nastavenia", "Show storage location" : "Zobraziť umiestnenie úložiska", - "Show user backend" : "Zobraziť backend používateľa", - "Show last login" : "Zobraziť posledné prihlásenie", "Show email address" : "Zobraziť emailovú adresu", "Send email to new user" : "Odoslať email novému používateľovi", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Ak je heslo pre nového používateľa prázdne, odošle sa aktivačný email s linkou na nastavenie hesla.", @@ -440,9 +443,6 @@ OC.L10N.register( "Disabled" : "Zakázaný", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB\" alebo \"12 GB\")", "Other" : "Iné", - "Quota" : "Kvóta", - "Storage location" : "Umiestnenie úložiska", - "Last login" : "Posledné prihlásenie", "change full name" : "zmeniť meno a priezvisko", "set new password" : "nastaviť nové heslo", "change email address" : "zmeniť emailovú adresu", diff --git a/settings/l10n/sk.json b/settings/l10n/sk.json index 9e154a28c15..b591e8e5896 100644 --- a/settings/l10n/sk.json +++ b/settings/l10n/sk.json @@ -111,47 +111,60 @@ "Enforce two-factor authentication" : "Vynútiť dvojzložkové overovanie", "Limit to groups" : "Povoľ len pre skupiny", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Dvojzložkové overovanie nie je povinné pre\tčlenov nasledovných skupín.", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiálne aplikácie sú vyvíjané komunitou. Poskytujú centrálnu funkcionalitu a sú pripravené pre produkčné nasadenie.", "Official" : "Oficiálny", + "Remove" : "Odstrániť", + "Disable" : "Zakázať", + "All" : "Všetky", "No results" : "Žiadne výsledky", + "View in store" : "Zobraz v obchode", "Visit website" : "Navštíviť webstránku", + "Report a bug" : "Nahlásiť chybu", "User documentation" : "Príručka používateľa", + "Admin documentation" : "Príručka administrátora", "Developer documentation" : "Dokumentácia vývojára", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná minimálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Túto aplikáciu nemožno nainštalovať, pretože nie sú splnené nasledovné závislosti:", - "{license}-licensed" : "{license}-licencovaný", + "No apps found for your version" : "Aplikácie pre vašu verziu sa nenašli", "Disable all" : "Zakázať všetko", "Enable all" : "Povoliť všetko", "Download and enable" : "Stiahnuť a povoliť", "Enable" : "Zapnúť", "The app will be downloaded from the app store" : "Aplikácia bude stiahnutá z obchodu", "You do not have permissions to see the details of this user" : "Nemáte oprávnenie vidieť detaily tohoto používateľa", + "New password" : "Nové heslo", "Delete user" : "Zmazať používateľa", "Disable user" : "Zablokovať používateľa", "Enable user" : "Odblokovať používateľa", "Resend welcome email" : "Znova odoslať privítací email", "{size} used" : "{size} použité", "Welcome mail sent!" : "Privítací email odoslaný", + "Username" : "Používateľské meno", "Display name" : "Zobrazované meno", + "Password" : "Heslo", "Email" : "Email", "Group admin for" : "Administrátor skupiny pre", + "Quota" : "Kvóta", "Language" : "Jazyk", + "Storage location" : "Umiestnenie úložiska", "User backend" : "Backend používateľa", + "Last login" : "Posledné prihlásenie", + "Default language" : "Predvolený jazyk", "Unlimited" : "Nelimitované", "Default quota" : "Predvolená kvóta", - "Default language" : "Predvolený jazyk", "Password change is disabled because the master key is disabled" : "Zmena hesla je zablokovaná pretože hlavný kľúč je vypnutý", "Common languages" : "Spoločné jazyky", "All languages" : "Všetky jazyky", - "An error occured during the request. Unable to proceed." : "Počas vykonania požiadavky nastala chyba. Nie je možné pokračovať.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikácia bola povolená, ale vyžaduje sa aktualizácia. Presmerovanie na stránku aktualizácie o 5 sekúnd.", - "App update" : "Aktualizácia aplikácie", - "Error: This app can not be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", "Your apps" : "Vaše aplikácie", "Active apps" : "Aktívne aplikácie", "Disabled apps" : "Zakázané aplikácie", "Updates" : "Aktualizácie", "App bundles" : "Aplikačné balíky", + "{license}-licensed" : "{license}-licencovaný", "Default quota:" : "Predvolená kvóta:", + "Show last login" : "Zobraziť posledné prihlásenie", + "Show user backend" : "Zobraziť backend používateľa", "You are about to remove the group {group}. The users will NOT be deleted." : "Chystáte sa odstrániť skupinu {group}. Používatelia NEBUDÚ vymazaní.", "Please confirm the group removal " : "Prosím potvrďte vymazanie skupiny.", "Remove group" : "Odstrániť skupinu", @@ -160,6 +173,10 @@ "Everyone" : "Všetci", "Add group" : "Pridať skupinu", "New user" : "Nový používateľ", + "An error occured during the request. Unable to proceed." : "Počas vykonania požiadavky nastala chyba. Nie je možné pokračovať.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Aplikácia bola povolená, ale vyžaduje sa aktualizácia. Presmerovanie na stránku aktualizácie o 5 sekúnd.", + "App update" : "Aktualizácia aplikácie", + "Error: This app can not be enabled because it makes the server unstable" : "Chyba: aplikáciu nie je možné povoliť, lebo naruší stabilitu servera", "SSL Root Certificates" : "Koreňové certifikáty SSL", "Common Name" : "Bežný názov", "Valid until" : "Platný do", @@ -279,9 +296,7 @@ "Twitter handle @…" : "Prezývka na Twitteri @…", "Help translate" : "Pomôcť s prekladom", "Locale" : "Miestne nastavenie", - "Password" : "Heslo", "Current password" : "Aktuálne heslo", - "New password" : "Nové heslo", "Change password" : "Zmeniť heslo", "Devices & sessions" : "Zariadenia a relácie", "Web, desktop and mobile clients currently logged in to your account." : "Weboví, desktopoví, alebo mobilní klienti práve prihlásení na váš účet.", @@ -291,7 +306,6 @@ "Create new app password" : "Vytvoriť nové heslo aplikácie", "Use the credentials below to configure your app or device." : "Pre konfiguráciu vašej aplikácie, alebo zariadenia použite nižšie uvedené prihlasovacie údaje.", "For security reasons this password will only be shown once." : "Z dôvodu bezpečnosti toto heslo bude zobrazené iba jeden krát.", - "Username" : "Používateľské meno", "Done" : "Hotovo", "Enabled apps" : "Povolené aplikácie", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL používa zastaralú %s verziu (%s). Prosím aktualizujte si operačný systém pretože %s nebude fungovať spoľahlivo.", @@ -316,16 +330,12 @@ "Password confirmation is required" : "Vyžaduje sa overenie heslom", "Are you really sure you want add {domain} as trusted domain?" : "Ste si istí, že chcete pridať {domain} medzi dôveryhodné domény?", "Add trusted domain" : "Pridať dôveryhodnú doménu", - "All" : "Všetky", "Update to %s" : "Aktualizovať na %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Prebieha aktualizácia %n aplikácie","Prebieha aktualizácia %n aplikácií","Prebieha aktualizácia %n aplikácií","Prebieha aktualizácia %n aplikácií"], - "No apps found for your version" : "Aplikácie pre vašu verziu sa nenašli", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Oficiálne aplikácie sú vyvíjané komunitou. Poskytujú centrálnu funkcionalitu a sú pripravené pre produkčné nasadenie.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Schválené aplikácie sú vyvíjané dôveryhodnými vývojármi a prešli zbežnou kontrolou bezpečnosti. Sú aktívne udržiavané v otvorenom repozitári a ich udržovatelia ich považujú za stabilné pre bežné použitie.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Táto aplikácia nie je skontrolovaná na bezpečnostné chyby, je nová, alebo patrí medzi nestabilné. Inštalácia na vlastné riziko.", "Disabling app …" : "Vypínanie aplikácie ...", "Error while disabling app" : "Chyba pri zakázaní aplikácie", - "Disable" : "Zakázať", "Enabling app …" : "Povoľujem aplikáciu …", "Error while enabling app" : "Chyba pri povoľovaní aplikácie", "Error: Could not disable broken app" : "Chyba: nebolo možné zakázať poškodenú aplikáciu", @@ -335,7 +345,6 @@ "Updated" : "Aktualizované", "Removing …" : "Odstraňujem ...", "Error while removing app" : "Chyba pri odstraňovaní aplikácie", - "Remove" : "Odstrániť", "Approved" : "Schválené", "Experimental" : "Experimentálny", "No apps found for {query}" : "Žiadna aplikácia nebola nájdená pre {query}", @@ -392,16 +401,12 @@ "Theming" : "Vzhľady tém", "Check the security of your Nextcloud over our security scan" : "Skontrolujte bezpečnosť Vášho Nextcloud-u s pomocou bezpečnostného scan-u", "Hardening and security guidance" : "Sprievodca vylepšením bezpečnosti", - "View in store" : "Zobraz v obchode", "This app has an update available." : "Pre túto aplikáciu je dostupná aktualizácia.", "by %s" : "od %s", "%s-licensed" : "%s-licencovaný", "Documentation:" : "Dokumentácia:", - "Admin documentation" : "Príručka administrátora", - "Report a bug" : "Nahlásiť chybu", "Show description …" : "Zobraziť popis …", "Hide description …" : "Skryť popis …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Pre túto aplikáciu nie je zadaná maximálna verzia Nextcloudu. Toto v budúcnosti spôsobí chybu.", "Enable only for specific groups" : "Povoliť len pre vybrané skupiny", "Online documentation" : "Online príručka", "Getting help" : "Získať pomoc", @@ -425,8 +430,6 @@ "Subscribe to our newsletter!" : "Prihlás sa na odber noviniek emailom!", "Settings" : "Nastavenia", "Show storage location" : "Zobraziť umiestnenie úložiska", - "Show user backend" : "Zobraziť backend používateľa", - "Show last login" : "Zobraziť posledné prihlásenie", "Show email address" : "Zobraziť emailovú adresu", "Send email to new user" : "Odoslať email novému používateľovi", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Ak je heslo pre nového používateľa prázdne, odošle sa aktivačný email s linkou na nastavenie hesla.", @@ -438,9 +441,6 @@ "Disabled" : "Zakázaný", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Prosím zadajte kvótu úložného priestoru (napr.: \"512 MB\" alebo \"12 GB\")", "Other" : "Iné", - "Quota" : "Kvóta", - "Storage location" : "Umiestnenie úložiska", - "Last login" : "Posledné prihlásenie", "change full name" : "zmeniť meno a priezvisko", "set new password" : "nastaviť nové heslo", "change email address" : "zmeniť emailovú adresu", diff --git a/settings/l10n/sl.js b/settings/l10n/sl.js index 45fd12e1061..2fe4cda4db2 100644 --- a/settings/l10n/sl.js +++ b/settings/l10n/sl.js @@ -69,26 +69,40 @@ OC.L10N.register( "Week starts on {fdow}" : "Začetek tedna je {fdow}", "Groups" : "Skupine", "Limit to groups" : "Omeji na skupine", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki na odprt način sodelujejo s skupnostjo. V kodo so vključene bistvene zmožnosti programa, uporaba je namenjena široki skupini uporabnikov.", "Official" : "Uradno", + "Disable" : "Onemogoči", + "All" : "Vsi", "No results" : "Ni zadetkov", + "View in store" : "Pokaži v trgovini", "Visit website" : "Odpri spletno stran", + "Report a bug" : "Pošlji poročilo o hrošču", "User documentation" : "Uporabniška dokumentacija", + "Admin documentation" : "Skrbniška dokumentacija", "Developer documentation" : "Dokumentacija za razvijalce", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja NextCloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja NextCloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:", + "No apps found for your version" : "Za to različico ni na voljo noben vstavek", "Disable all" : "Onemogoči vse", "Enable all" : "Omogoči vse", "Download and enable" : "Prejmi in omogoči", "Enable" : "Omogoči", "The app will be downloaded from the app store" : "Program bo prejet iz zbirke programov", + "New password" : "Novo geslo", "Delete user" : "Izbriši uporabnika", "Disable user" : "Onemogoči uporabnika", "Enable user" : "Omogoči uporabnika", + "Username" : "Uporabniško ime", + "Password" : "Geslo", "Email" : "Elektronski naslov", + "Quota" : "Količinska omejitev", "Language" : "Jezik", + "Last login" : "Zadnja prijava", "Unlimited" : "Neomejeno", "Default quota" : "Privzeta količinska omejitev", "Your apps" : "Vsi programi", + "Show user backend" : "Pokaži ozadnji program", "Admins" : "Skrbniki", "Everyone" : "Vsi", "Add group" : "Dodaj skupino", @@ -178,9 +192,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter @ …", "Help translate" : "Sodelujte pri prevajanju", "Locale" : "Jezikovne nastavitve", - "Password" : "Geslo", "Current password" : "Trenutno geslo", - "New password" : "Novo geslo", "Change password" : "Spremeni geslo", "Devices & sessions" : "Naprave in seje", "Web, desktop and mobile clients currently logged in to your account." : "Spletne, namizne in mobilne naprave, ki so trenutno povezane z računom.", @@ -188,7 +200,6 @@ OC.L10N.register( "Last activity" : "Zadnja dejavnost", "App name" : "Ime programa", "Create new app password" : "Ustvari novo geslo programa", - "Username" : "Uporabniško ime", "Done" : "Končano", "Enabled apps" : "Omogočeni programi", "A problem occurred, please check your log files (Error: %s)" : "Prišlo je do napake. Preverite dnevniške zapise (napaka: %s).", @@ -205,13 +216,9 @@ OC.L10N.register( "Unable to change mail address" : "Ni mogoče spremeniti naslova elektronske pošte.", "Email saved" : "Elektronski naslov je shranjen", "Add trusted domain" : "Dodaj varno domeno", - "All" : "Vsi", "Update to %s" : "Posodobi na %s", - "No apps found for your version" : "Za to različico ni na voljo noben vstavek", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki na odprt način sodelujejo s skupnostjo. V kodo so vključene bistvene zmožnosti programa, uporaba je namenjena široki skupini uporabnikov.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Odobrene programe razvijajo izbrani razvijalci, vključena koda je tudi varnostno pregledana. Programe vzdržuje skupnost v odprtokodnem skladišču, upravljalci posameznih projektov pa skrbijo za stabilnost in enostavnost uporabe. ", "Error while disabling app" : "Napaka onemogočanja programa", - "Disable" : "Onemogoči", "Error while enabling app" : "Napaka omogočanja programa", "Error while disabling broken app" : "Napaka onemogočanja okvarjenega programa", "Updated" : "Posodobljeno", @@ -239,15 +246,11 @@ OC.L10N.register( "Improving the config.php" : "Izboljšave v config.php", "Theming" : "Teme", "Hardening and security guidance" : "Varnost in varnostni napotki", - "View in store" : "Pokaži v trgovini", "This app has an update available." : "Za program so na voljo posodobitve.", "%s-licensed" : "dovoljenje-%s", "Documentation:" : "Dokumentacija:", - "Admin documentation" : "Skrbniška dokumentacija", - "Report a bug" : "Pošlji poročilo o hrošču", "Show description …" : "Pokaži opis ...", "Hide description …" : "Skrij opis ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja NextCloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "Enable only for specific groups" : "Omogoči le za posamezne skupine", "Online documentation" : "Spletna dokumentacija", "Commercial support" : "Podpora strankam", @@ -260,7 +263,6 @@ OC.L10N.register( "Follow us on Twitter!" : "Sledite nam na Twitter!", "Settings" : "Nastavitve", "Show storage location" : "Pokaži mesto shrambe", - "Show user backend" : "Pokaži ozadnji program", "Show email address" : "Pokaži naslov elektronske pošte", "Send email to new user" : "Pošlji sporočilo novemu uporabniku", "E-Mail" : "Elektronska pošta", @@ -269,8 +271,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")", "Other" : "Drugo", - "Quota" : "Količinska omejitev", - "Last login" : "Zadnja prijava", "change full name" : "Spremeni polno ime", "set new password" : "nastavi novo geslo", "change email address" : "spremeni naslov elektronske pošte", diff --git a/settings/l10n/sl.json b/settings/l10n/sl.json index ea466c92657..3a1a0ff341d 100644 --- a/settings/l10n/sl.json +++ b/settings/l10n/sl.json @@ -67,26 +67,40 @@ "Week starts on {fdow}" : "Začetek tedna je {fdow}", "Groups" : "Skupine", "Limit to groups" : "Omeji na skupine", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki na odprt način sodelujejo s skupnostjo. V kodo so vključene bistvene zmožnosti programa, uporaba je namenjena široki skupini uporabnikov.", "Official" : "Uradno", + "Disable" : "Onemogoči", + "All" : "Vsi", "No results" : "Ni zadetkov", + "View in store" : "Pokaži v trgovini", "Visit website" : "Odpri spletno stran", + "Report a bug" : "Pošlji poročilo o hrošču", "User documentation" : "Uporabniška dokumentacija", + "Admin documentation" : "Skrbniška dokumentacija", "Developer documentation" : "Dokumentacija za razvijalce", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja NextCloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja NextCloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Programa ni mogoče namestiti zaradi nerešenih odvisnosti:", + "No apps found for your version" : "Za to različico ni na voljo noben vstavek", "Disable all" : "Onemogoči vse", "Enable all" : "Omogoči vse", "Download and enable" : "Prejmi in omogoči", "Enable" : "Omogoči", "The app will be downloaded from the app store" : "Program bo prejet iz zbirke programov", + "New password" : "Novo geslo", "Delete user" : "Izbriši uporabnika", "Disable user" : "Onemogoči uporabnika", "Enable user" : "Omogoči uporabnika", + "Username" : "Uporabniško ime", + "Password" : "Geslo", "Email" : "Elektronski naslov", + "Quota" : "Količinska omejitev", "Language" : "Jezik", + "Last login" : "Zadnja prijava", "Unlimited" : "Neomejeno", "Default quota" : "Privzeta količinska omejitev", "Your apps" : "Vsi programi", + "Show user backend" : "Pokaži ozadnji program", "Admins" : "Skrbniki", "Everyone" : "Vsi", "Add group" : "Dodaj skupino", @@ -176,9 +190,7 @@ "Twitter handle @…" : "Twitter @ …", "Help translate" : "Sodelujte pri prevajanju", "Locale" : "Jezikovne nastavitve", - "Password" : "Geslo", "Current password" : "Trenutno geslo", - "New password" : "Novo geslo", "Change password" : "Spremeni geslo", "Devices & sessions" : "Naprave in seje", "Web, desktop and mobile clients currently logged in to your account." : "Spletne, namizne in mobilne naprave, ki so trenutno povezane z računom.", @@ -186,7 +198,6 @@ "Last activity" : "Zadnja dejavnost", "App name" : "Ime programa", "Create new app password" : "Ustvari novo geslo programa", - "Username" : "Uporabniško ime", "Done" : "Končano", "Enabled apps" : "Omogočeni programi", "A problem occurred, please check your log files (Error: %s)" : "Prišlo je do napake. Preverite dnevniške zapise (napaka: %s).", @@ -203,13 +214,9 @@ "Unable to change mail address" : "Ni mogoče spremeniti naslova elektronske pošte.", "Email saved" : "Elektronski naslov je shranjen", "Add trusted domain" : "Dodaj varno domeno", - "All" : "Vsi", "Update to %s" : "Posodobi na %s", - "No apps found for your version" : "Za to različico ni na voljo noben vstavek", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Uradne programe razvijajo posamezniki, ki na odprt način sodelujejo s skupnostjo. V kodo so vključene bistvene zmožnosti programa, uporaba je namenjena široki skupini uporabnikov.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Odobrene programe razvijajo izbrani razvijalci, vključena koda je tudi varnostno pregledana. Programe vzdržuje skupnost v odprtokodnem skladišču, upravljalci posameznih projektov pa skrbijo za stabilnost in enostavnost uporabe. ", "Error while disabling app" : "Napaka onemogočanja programa", - "Disable" : "Onemogoči", "Error while enabling app" : "Napaka omogočanja programa", "Error while disabling broken app" : "Napaka onemogočanja okvarjenega programa", "Updated" : "Posodobljeno", @@ -237,15 +244,11 @@ "Improving the config.php" : "Izboljšave v config.php", "Theming" : "Teme", "Hardening and security guidance" : "Varnost in varnostni napotki", - "View in store" : "Pokaži v trgovini", "This app has an update available." : "Za program so na voljo posodobitve.", "%s-licensed" : "dovoljenje-%s", "Documentation:" : "Dokumentacija:", - "Admin documentation" : "Skrbniška dokumentacija", - "Report a bug" : "Pošlji poročilo o hrošču", "Show description …" : "Pokaži opis ...", "Hide description …" : "Skrij opis ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Program nima določene omejitve različice okolja NextCloud. V prihodnosti se bo manjkajoči podatek pokazal kot napaka.", "Enable only for specific groups" : "Omogoči le za posamezne skupine", "Online documentation" : "Spletna dokumentacija", "Commercial support" : "Podpora strankam", @@ -258,7 +261,6 @@ "Follow us on Twitter!" : "Sledite nam na Twitter!", "Settings" : "Nastavitve", "Show storage location" : "Pokaži mesto shrambe", - "Show user backend" : "Pokaži ozadnji program", "Show email address" : "Pokaži naslov elektronske pošte", "Send email to new user" : "Pošlji sporočilo novemu uporabniku", "E-Mail" : "Elektronska pošta", @@ -267,8 +269,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Vnesite geslo, ki omogoča obnovitev uporabniških datotek med spreminjanjem gesla", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Vnesite količinsko omejitev prostora (na primer: \"512 MB\" ali \"12 GB\")", "Other" : "Drugo", - "Quota" : "Količinska omejitev", - "Last login" : "Zadnja prijava", "change full name" : "Spremeni polno ime", "set new password" : "nastavi novo geslo", "change email address" : "spremeni naslov elektronske pošte", diff --git a/settings/l10n/sq.js b/settings/l10n/sq.js index 8af03a7048e..14fe35839dc 100644 --- a/settings/l10n/sq.js +++ b/settings/l10n/sq.js @@ -104,29 +104,46 @@ OC.L10N.register( "Select a profile picture" : "Përzgjidhni një foto profili", "Groups" : "Grupe", "Limit to groups" : "Kufizo grupet", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikacionet zyrtare zhvillohen nga komuniteti dhe brenta tij. Ato ofrojnë funksionalitet qëndror dhe janë gati për përdorim.", "Official" : "Zyrtare", + "Remove" : "Hiqe", + "Disable" : "Çaktivizoje", + "All" : "Krejt", + "View in store" : "Shiko në dyqan", "Visit website" : "Vizitoni sajtin", + "Report a bug" : "Njoftoni një të metë", "User documentation" : "Dokumentim për përdoruesit", + "Admin documentation" : "Dokumentim për përgjegjësit", "Developer documentation" : "Dokumentim për zhvillues", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një minimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ky aplikacion s’mund të instalohet, ngaqë për të nuk plotësohen varësitë vijuese:", + "No apps found for your version" : "S’u gjetën aplikacione për versionin tuaj", "Enable all" : "Aktivizoi të gjitha", "Enable" : "Aktivizoje", "The app will be downloaded from the app store" : "Aplikacioni do të shkarkohet nga shitorja e aplikacioneve", + "New password" : "Fjalëkalimi i ri", "{size} used" : "{madhësia} e përdorur", + "Username" : "Emër përdoruesi", + "Password" : "Fjalëkalim", "Email" : "Email", "Group admin for" : "Administratori i grupit për", + "Quota" : "Kuota", "Language" : "Gjuhë", + "Storage location" : "Vendndodhje Depozite", "User backend" : "Program klient i përdoruesit", + "Last login" : "Hyrja e fundit", "Unlimited" : "E pakufizuar", "Default quota" : "Kuota Parazgjedhje", - "Error: This app can not be enabled because it makes the server unstable" : "Gabim: Ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", "Your apps" : "Aplikacionet tuaja ", "Disabled apps" : "Aplikacionet pa aftësi ", "App bundles" : "Pako e aplikacionit ", + "Show last login" : "Shfaq hyrjen e fundit", + "Show user backend" : "Shfaq programin klient të përdoruesit", "Admins" : "Administratorë", "Everyone" : "Kushdo", "Add group" : "Shto grup", + "Error: This app can not be enabled because it makes the server unstable" : "Gabim: Ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", "SSL Root Certificates" : "Dëshmi SSL Rrënjë", "Common Name" : "Emër i Rëndomtë", "Valid until" : "E vlefshme deri më", @@ -236,9 +253,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Përdoruesi i Twitter @ ...", "Help translate" : "Ndihmoni në përkthim", - "Password" : "Fjalëkalim", "Current password" : "Fjalëkalimi i tanishëm", - "New password" : "Fjalëkalimi i ri", "Change password" : "Ndrysho fjalëkalimin", "Web, desktop and mobile clients currently logged in to your account." : "Klientë në rrjet, desktop dhe celular kanë hyrë aktualisht në llogarinë tuaj.", "Device" : "Pajisje", @@ -247,7 +262,6 @@ OC.L10N.register( "Create new app password" : "Krijoni fjalëkalim aplikacioni të ri", "Use the credentials below to configure your app or device." : "Përdorni kredencialet e mëposhtme për të konfiguruar aplikacionin apo pajisjen tuaj.", "For security reasons this password will only be shown once." : "Për arsye siguri ky fjalëkalim do të shofaqet vetëm një herv.", - "Username" : "Emër përdoruesi", "Done" : "U bë", "Enabled apps" : "Lejo aplikacionet", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL-ja po përdor një version %s të vjetruar (%s). Ju lutemi, përditësoni sistemin tuaj operativ ose përndryshe veçori të tilla si %s nuk do të punojnë në mënyrë të qëndrueshme.", @@ -272,22 +286,17 @@ OC.L10N.register( "Password confirmation is required" : "Kërkohet konfirmimi i fjalëkalimit", "Are you really sure you want add {domain} as trusted domain?" : "Jeni i sigurt se doni ta shtoni {domain} si një domain të besuar?", "Add trusted domain" : "Shtoni përkatësi të besuar", - "All" : "Krejt", "Update to %s" : "Përditësoje me %s", - "No apps found for your version" : "S’u gjetën aplikacione për versionin tuaj", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikacionet zyrtare zhvillohen nga komuniteti dhe brenta tij. Ato ofrojnë funksionalitet qëndror dhe janë gati për përdorim.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikacionet e miratuara ndërtohen nga zhvillues të besuar dhe kanë kaluar një kontroll të përciptë sigurie. Mirëmbahen aktivisht në një depo të hapur kodi dhe mirëmbajtësit e tyre i konsiderojnë të qëndrueshme për përdorime nga të rastit deri në ato normale.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ky aplikacion s’është kontrolluar për probleme sigurie dhe është i ri ose i njohur si i paqëndrueshëm. Instalojeni duke e mbajtur vetë përgjegjësinë.", "Disabling app …" : "Çaktivizo aplikacionin ...", "Error while disabling app" : "Gabim në çaktivizimin e aplikacionit", - "Disable" : "Çaktivizoje", "Enabling app …" : "Duke aktivizuar aplikacionin ...", "Error while enabling app" : "Gabim në aktivizimin e aplikacionit", "Error: Could not disable broken app" : "Gabim: S’u çaktivizua dot aplikacioni i dëmtuar", "Error while disabling broken app" : "Gabim teka çaktivizohej aplikacion i dëmtuar", "Updated" : "U përditësua", "Removing …" : "Duke hequr ...", - "Remove" : "Hiqe", "Approved" : "Të miratuara", "Experimental" : "Eksperimentale", "No apps found for {query}" : "S’u gjetën aplikacione për {query}", @@ -326,16 +335,12 @@ OC.L10N.register( "Theming" : "Ndryshim teme grafike", "Check the security of your Nextcloud over our security scan" : "Kontrolloni sigurinë e Nextcloud tuaj mbi skanimin tonë të sigurisë", "Hardening and security guidance" : "Udhëzime për forcim dhe siguri", - "View in store" : "Shiko në dyqan", "This app has an update available." : "Ka gati një përditësim për këtë aplikacion.", "by %s" : "nga %s", "%s-licensed" : "licencuar prej %s", "Documentation:" : "Dokumentim:", - "Admin documentation" : "Dokumentim për përgjegjësit", - "Report a bug" : "Njoftoni një të metë", "Show description …" : "Shfaq përshkrim …", "Hide description …" : "Fshihe përshkrimin …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "Enable only for specific groups" : "Aktivizoje vetëm për grupe të veçantë", "Online documentation" : "Dokumentim në Internet", "Getting help" : "Kërkoni ndihmë", @@ -345,8 +350,6 @@ OC.L10N.register( "You are member of the following groups:" : "Jeni anëtar i grupeve vijuese:", "Settings" : "Konfigurimet", "Show storage location" : "Shfaq vendndodhje depozite", - "Show user backend" : "Shfaq programin klient të përdoruesit", - "Show last login" : "Shfaq hyrjen e fundit", "Show email address" : "Shfaq adresë email", "Send email to new user" : "Dërgo email përdoruesi të ri", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kur fjalëkalimi i përdoruesit është lënë bosh, dërgohet një email me ndërlidhje për të vendosur fjalëkalimin ", @@ -357,9 +360,6 @@ OC.L10N.register( "Disabled" : "E çaktivizuar", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ju lutemi, jepni kuotë depozitimi (psh: \"512 MB\" ose \"12 GB\")", "Other" : "Tjetër", - "Quota" : "Kuota", - "Storage location" : "Vendndodhje Depozite", - "Last login" : "Hyrja e fundit", "change full name" : "ndryshoni emrin e plotë", "set new password" : "caktoni fjalëkalim të ri", "change email address" : "ndryshoni adresën email", diff --git a/settings/l10n/sq.json b/settings/l10n/sq.json index 7b90ee7c98c..3de0aa2a51a 100644 --- a/settings/l10n/sq.json +++ b/settings/l10n/sq.json @@ -102,29 +102,46 @@ "Select a profile picture" : "Përzgjidhni një foto profili", "Groups" : "Grupe", "Limit to groups" : "Kufizo grupet", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikacionet zyrtare zhvillohen nga komuniteti dhe brenta tij. Ato ofrojnë funksionalitet qëndror dhe janë gati për përdorim.", "Official" : "Zyrtare", + "Remove" : "Hiqe", + "Disable" : "Çaktivizoje", + "All" : "Krejt", + "View in store" : "Shiko në dyqan", "Visit website" : "Vizitoni sajtin", + "Report a bug" : "Njoftoni një të metë", "User documentation" : "Dokumentim për përdoruesit", + "Admin documentation" : "Dokumentim për përgjegjësit", "Developer documentation" : "Dokumentim për zhvillues", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një minimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ky aplikacion s’mund të instalohet, ngaqë për të nuk plotësohen varësitë vijuese:", + "No apps found for your version" : "S’u gjetën aplikacione për versionin tuaj", "Enable all" : "Aktivizoi të gjitha", "Enable" : "Aktivizoje", "The app will be downloaded from the app store" : "Aplikacioni do të shkarkohet nga shitorja e aplikacioneve", + "New password" : "Fjalëkalimi i ri", "{size} used" : "{madhësia} e përdorur", + "Username" : "Emër përdoruesi", + "Password" : "Fjalëkalim", "Email" : "Email", "Group admin for" : "Administratori i grupit për", + "Quota" : "Kuota", "Language" : "Gjuhë", + "Storage location" : "Vendndodhje Depozite", "User backend" : "Program klient i përdoruesit", + "Last login" : "Hyrja e fundit", "Unlimited" : "E pakufizuar", "Default quota" : "Kuota Parazgjedhje", - "Error: This app can not be enabled because it makes the server unstable" : "Gabim: Ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", "Your apps" : "Aplikacionet tuaja ", "Disabled apps" : "Aplikacionet pa aftësi ", "App bundles" : "Pako e aplikacionit ", + "Show last login" : "Shfaq hyrjen e fundit", + "Show user backend" : "Shfaq programin klient të përdoruesit", "Admins" : "Administratorë", "Everyone" : "Kushdo", "Add group" : "Shto grup", + "Error: This app can not be enabled because it makes the server unstable" : "Gabim: Ky aplikacion s’u aktivizua dot, ngaqë e bën shërbyesin të paqëndrueshëm.", "SSL Root Certificates" : "Dëshmi SSL Rrënjë", "Common Name" : "Emër i Rëndomtë", "Valid until" : "E vlefshme deri më", @@ -234,9 +251,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Përdoruesi i Twitter @ ...", "Help translate" : "Ndihmoni në përkthim", - "Password" : "Fjalëkalim", "Current password" : "Fjalëkalimi i tanishëm", - "New password" : "Fjalëkalimi i ri", "Change password" : "Ndrysho fjalëkalimin", "Web, desktop and mobile clients currently logged in to your account." : "Klientë në rrjet, desktop dhe celular kanë hyrë aktualisht në llogarinë tuaj.", "Device" : "Pajisje", @@ -245,7 +260,6 @@ "Create new app password" : "Krijoni fjalëkalim aplikacioni të ri", "Use the credentials below to configure your app or device." : "Përdorni kredencialet e mëposhtme për të konfiguruar aplikacionin apo pajisjen tuaj.", "For security reasons this password will only be shown once." : "Për arsye siguri ky fjalëkalim do të shofaqet vetëm një herv.", - "Username" : "Emër përdoruesi", "Done" : "U bë", "Enabled apps" : "Lejo aplikacionet", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL-ja po përdor një version %s të vjetruar (%s). Ju lutemi, përditësoni sistemin tuaj operativ ose përndryshe veçori të tilla si %s nuk do të punojnë në mënyrë të qëndrueshme.", @@ -270,22 +284,17 @@ "Password confirmation is required" : "Kërkohet konfirmimi i fjalëkalimit", "Are you really sure you want add {domain} as trusted domain?" : "Jeni i sigurt se doni ta shtoni {domain} si një domain të besuar?", "Add trusted domain" : "Shtoni përkatësi të besuar", - "All" : "Krejt", "Update to %s" : "Përditësoje me %s", - "No apps found for your version" : "S’u gjetën aplikacione për versionin tuaj", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Aplikacionet zyrtare zhvillohen nga komuniteti dhe brenta tij. Ato ofrojnë funksionalitet qëndror dhe janë gati për përdorim.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Aplikacionet e miratuara ndërtohen nga zhvillues të besuar dhe kanë kaluar një kontroll të përciptë sigurie. Mirëmbahen aktivisht në një depo të hapur kodi dhe mirëmbajtësit e tyre i konsiderojnë të qëndrueshme për përdorime nga të rastit deri në ato normale.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ky aplikacion s’është kontrolluar për probleme sigurie dhe është i ri ose i njohur si i paqëndrueshëm. Instalojeni duke e mbajtur vetë përgjegjësinë.", "Disabling app …" : "Çaktivizo aplikacionin ...", "Error while disabling app" : "Gabim në çaktivizimin e aplikacionit", - "Disable" : "Çaktivizoje", "Enabling app …" : "Duke aktivizuar aplikacionin ...", "Error while enabling app" : "Gabim në aktivizimin e aplikacionit", "Error: Could not disable broken app" : "Gabim: S’u çaktivizua dot aplikacioni i dëmtuar", "Error while disabling broken app" : "Gabim teka çaktivizohej aplikacion i dëmtuar", "Updated" : "U përditësua", "Removing …" : "Duke hequr ...", - "Remove" : "Hiqe", "Approved" : "Të miratuara", "Experimental" : "Eksperimentale", "No apps found for {query}" : "S’u gjetën aplikacione për {query}", @@ -324,16 +333,12 @@ "Theming" : "Ndryshim teme grafike", "Check the security of your Nextcloud over our security scan" : "Kontrolloni sigurinë e Nextcloud tuaj mbi skanimin tonë të sigurisë", "Hardening and security guidance" : "Udhëzime për forcim dhe siguri", - "View in store" : "Shiko në dyqan", "This app has an update available." : "Ka gati një përditësim për këtë aplikacion.", "by %s" : "nga %s", "%s-licensed" : "licencuar prej %s", "Documentation:" : "Dokumentim:", - "Admin documentation" : "Dokumentim për përgjegjësit", - "Report a bug" : "Njoftoni një të metë", "Show description …" : "Shfaq përshkrim …", "Hide description …" : "Fshihe përshkrimin …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ky aplikacion nuk ka të caktuar një maksimum versioni të Nextcloud. Ky do të jetë një gabim në të ardhmen.", "Enable only for specific groups" : "Aktivizoje vetëm për grupe të veçantë", "Online documentation" : "Dokumentim në Internet", "Getting help" : "Kërkoni ndihmë", @@ -343,8 +348,6 @@ "You are member of the following groups:" : "Jeni anëtar i grupeve vijuese:", "Settings" : "Konfigurimet", "Show storage location" : "Shfaq vendndodhje depozite", - "Show user backend" : "Shfaq programin klient të përdoruesit", - "Show last login" : "Shfaq hyrjen e fundit", "Show email address" : "Shfaq adresë email", "Send email to new user" : "Dërgo email përdoruesi të ri", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Kur fjalëkalimi i përdoruesit është lënë bosh, dërgohet një email me ndërlidhje për të vendosur fjalëkalimin ", @@ -355,9 +358,6 @@ "Disabled" : "E çaktivizuar", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ju lutemi, jepni kuotë depozitimi (psh: \"512 MB\" ose \"12 GB\")", "Other" : "Tjetër", - "Quota" : "Kuota", - "Storage location" : "Vendndodhje Depozite", - "Last login" : "Hyrja e fundit", "change full name" : "ndryshoni emrin e plotë", "set new password" : "caktoni fjalëkalim të ri", "change email address" : "ndryshoni adresën email", diff --git a/settings/l10n/sr.js b/settings/l10n/sr.js index 5b06c03a6ba..b82db9f04f6 100644 --- a/settings/l10n/sr.js +++ b/settings/l10n/sr.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Двофакторска провера идентитета се може захтевати свим\tкорисницима и и одређеним групама. Ако немају већ подешеног провајдера другог фактора, неће моћи да се пријаве на систем.", "Enforce two-factor authentication" : "Захтевај двофакторску проверу идентитета", "Limit to groups" : "Ограничи на групе", + "Enforcement of two-factor authentication can be set for certain groups only." : "Двофакторска провера идентитета се може захтевати за само поједине групе.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Двофакторска провера идентитета се захтева за све\tчланове следећих група.", + "Enforced groups" : "Групе којима се захтева", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Двофакторска провера идентитета се не захтева за\tчланове следећих група.", + "Excluded groups" : "Искључене групе", + "Save changes" : "Сними измене", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Званичне апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", "Official" : "Званичне", + "by" : "од", + "Update to {version}" : "Ажурирај на верзију {version}", + "Remove" : "Уклони", + "Disable" : "Искључи", + "All" : "Све", + "Limit app usage to groups" : "Ограничи коришћење апликације на групе", "No results" : "Нема резултата", + "View in store" : "Погледај у продавници", "Visit website" : "Посети веб сајт", + "Report a bug" : "Пријави проблем", "User documentation" : "Корисничка документација", + "Admin documentation" : "Администраторска документација", "Developer documentation" : "Програмерска документација", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "{license}-licensed" : "{license}-лиценцирано", + "Update to {update}" : "Ажурирај на {update}", + "Results from other categories" : "Резултати из других категорија", + "No apps found for your version" : "Нема апликација за вашу верзију", "Disable all" : "Искључи све", "Enable all" : "Укључи све", "Download and enable" : "Скини и укључи", "Enable" : "Укључи", "The app will be downloaded from the app store" : "Апликација ће бити скинута са продавнице", "You do not have permissions to see the details of this user" : "Немате дозволе да видите детаље о овом кориснику", + "The backend does not support changing the display name" : "Позадински мотор не дозвољава промену имена за приказ", + "New password" : "Нова лозинка", + "Add user in group" : "Додај корисника у групу", + "Set user as admin for" : "Додај корисника као администратора за", + "Select user quota" : "Одаберите корисничку квоту", + "No language set" : "Ниједан језик није постављен", + "Never" : "Никад", "Delete user" : "Обриши корисника", "Disable user" : "Искључи корисника", "Enable user" : "Укључи корисника", "Resend welcome email" : "Поново пошаљи е-пошту добродошлице", "{size} used" : "{size} искоршћенп", "Welcome mail sent!" : "Е-пошта добродошлице послата!", + "Username" : "Корисничко име", "Display name" : "Име за приказ", + "Password" : "Лозинка", "Email" : "Е-пошта", "Group admin for" : "Администратор групе за", + "Quota" : "Квота", "Language" : "Језик", + "Storage location" : "Локација складишта", "User backend" : "Позадина за кориснике", + "Last login" : "Последња пријава", + "Default language" : "Подразумевани језик", + "Add a new user" : "Додај новог корисника", + "No users in here" : "Овде нема корисника", "Unlimited" : "Неограничено", "Default quota" : "Подразумевана квота", - "Default language" : "Подразумевани језик", "Password change is disabled because the master key is disabled" : "Промена лозинке је искључена пошто је главни кључ искључен", "Common languages" : "Најкоришћенији језици", "All languages" : "Сви језици", - "An error occured during the request. Unable to proceed." : "Догодила се грешка за време захтева. Не може се наставити.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Апликација је укључена, али треба да се ажурира. Бићете преусмерени на страну са ажурирањем за 5 секунди.", - "App update" : "Ажурирање апликације", - "Error: This app can not be enabled because it makes the server unstable" : "Грешка: ова апликација не може да се укључи јер је због ње цео сервер нестабилан", "Your apps" : "Ваше апликације", "Active apps" : "Активне апликације", "Disabled apps" : "Искључене апликације", "Updates" : "Ажурирања", "App bundles" : "Пакети апликација", + "{license}-licensed" : "{license}-лиценцирано", "Default quota:" : "Подразумевана квота:", + "Select default quota" : "Одаберите подразумевану квоту", + "Show Languages" : "Прикажи језике", + "Show last login" : "Прикажи последњу пријаву", + "Show user backend" : "Прикажи позадину за кориснике", + "Show storage path" : "Прикажи путању до складишта", "You are about to remove the group {group}. The users will NOT be deleted." : "Управо ћете уклонити групу {group}. Корисници НЕЋЕ бити избрисани.", "Please confirm the group removal " : "Потврдите уклањање групе", "Remove group" : "Уклони групу", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Сви", "Add group" : "Додај групу", "New user" : "Нови корисник", + "An error occured during the request. Unable to proceed." : "Догодила се грешка за време захтева. Не може се наставити.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Апликација је укључена, али треба да се ажурира. Бићете преусмерени на страну са ажурирањем за 5 секунди.", + "App update" : "Ажурирање апликације", + "Error: This app can not be enabled because it makes the server unstable" : "Грешка: ова апликација не може да се укључи јер је због ње цео сервер нестабилан", "SSL Root Certificates" : "SSL корени сертификат", "Common Name" : "Уобичајено име", "Valid until" : "Важи до", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Твитер надимак @…", "Help translate" : " Помозите у превођењу", "Locale" : "Локалитет", - "Password" : "Лозинка", "Current password" : "Тренутна лозинка", - "New password" : "Нова лозинка", "Change password" : "Измени лозинку", "Devices & sessions" : "Уређаји & сесије", "Web, desktop and mobile clients currently logged in to your account." : "Веб, рачунарски и мобилни клијенти тренутно пријављени на Ваш налог.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Направите нову лозинку апликације", "Use the credentials below to configure your app or device." : "Употребите акредитиве наведене испод да подесите Вашу апликацију или уређај.", "For security reasons this password will only be shown once." : "Из безбедносних разлога, ова лозинка ће бити приказана само једном.", - "Username" : "Корисничко име", "Done" : "Завршено", "Enabled apps" : "Укључене апликације", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL користи застарелу верзију %s (%s). Ажурирајте оперативни систем или функционалности као што је %s неће радити поуздано.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "Потребна је потврда лозинке", "Are you really sure you want add {domain} as trusted domain?" : "Да ли заиста желите да додате {domain} као поуздан домен?", "Add trusted domain" : "Додај поуздан домен", - "All" : "Све", "Update to %s" : "Ажурирај на %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Имате ажурирање за %n апликацију","Имате ажурирање за %n апликације","Имате ажурирање за %n апликација"], - "No apps found for your version" : "Нема апликација за вашу верзију", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Званичне апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Одобрене апликације су развили проверени програмери и апликације су прошле основне безбедносне провере. Оне се активно одржавају у репозиторијуму за апликације отвореног кода и њихови одржаватељи сматрају да су стабилне за уобичајену употребу.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ова апликација није проверена по питању безбедности и нова је или зна да буде нестабилна. Инсталирате је на сопствену одговорност.", "Disabling app …" : "Искључујем апликацију …", "Error while disabling app" : "Грешка при искључивању апликације", - "Disable" : "Искључи", "Enabling app …" : "Укључујем апликацију …", "Error while enabling app" : "Грешка при укључивању апликације", "Error: Could not disable broken app" : "Грешка: Не могу да искључим покварену апликацију", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Ажурирано", "Removing …" : "Уклањам …", "Error while removing app" : "Грешка при уклањању апликације", - "Remove" : "Уклони", "Approved" : "Одобрене", "Experimental" : "Експерименталне", "No apps found for {query}" : "Није нађена ниједна апликација за претрагу {query}", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Теме", "Check the security of your Nextcloud over our security scan" : "Проверавање безбедности Вашег Некстклауда кроз наше безбедоносно скенирање", "Hardening and security guidance" : "Ојачавање система и безбедносне препоруке", - "View in store" : "Погледај у продавници", "This app has an update available." : "Ова апликација има доступно ажурирање.", "by %s" : "од %s", "%s-licensed" : "%s лиценцирано", "Documentation:" : "Документација:", - "Admin documentation" : "Администраторска документација", - "Report a bug" : "Пријави проблем", "Show description …" : "Прикажи опис …", "Hide description …" : "Сакриј опис …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "Enable only for specific groups" : "Укључи само за одређене групе", "Online documentation" : "Документација на мрежи", "Getting help" : "Добијање помоћи", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Пријавите се на наше новине!", "Settings" : "Подешавања", "Show storage location" : "Прикажи локацију складишта", - "Show user backend" : "Прикажи позадину за кориснике", - "Show last login" : "Прикажи последњу пријаву", "Show email address" : "Прикажи адресу е-поште", "Send email to new user" : "Пошаљи е-пошту новом кориснику", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Када се поље лозинке новог корисника остави празним, кориснику ће бити послата е-пошта са везом за постављање лозинке.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Искључено", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Унесите квоту складиштења (нпр. 512 MB или 12 GB)", "Other" : "Друго", - "Quota" : "Квота", - "Storage location" : "Локација складишта", - "Last login" : "Последња пријава", "change full name" : "измени пуно име", "set new password" : "постави нову лозинку", "change email address" : "измени адресу е-поште", diff --git a/settings/l10n/sr.json b/settings/l10n/sr.json index 4cca40c1e12..eb0b547961a 100644 --- a/settings/l10n/sr.json +++ b/settings/l10n/sr.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Двофакторска провера идентитета се може захтевати свим\tкорисницима и и одређеним групама. Ако немају већ подешеног провајдера другог фактора, неће моћи да се пријаве на систем.", "Enforce two-factor authentication" : "Захтевај двофакторску проверу идентитета", "Limit to groups" : "Ограничи на групе", + "Enforcement of two-factor authentication can be set for certain groups only." : "Двофакторска провера идентитета се може захтевати за само поједине групе.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "Двофакторска провера идентитета се захтева за све\tчланове следећих група.", + "Enforced groups" : "Групе којима се захтева", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Двофакторска провера идентитета се не захтева за\tчланове следећих група.", + "Excluded groups" : "Искључене групе", + "Save changes" : "Сними измене", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Званичне апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", "Official" : "Званичне", + "by" : "од", + "Update to {version}" : "Ажурирај на верзију {version}", + "Remove" : "Уклони", + "Disable" : "Искључи", + "All" : "Све", + "Limit app usage to groups" : "Ограничи коришћење апликације на групе", "No results" : "Нема резултата", + "View in store" : "Погледај у продавници", "Visit website" : "Посети веб сајт", + "Report a bug" : "Пријави проблем", "User documentation" : "Корисничка документација", + "Admin documentation" : "Администраторска документација", "Developer documentation" : "Програмерска документација", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану минималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Апликација се не може инсталирати јер следеће зависности нису испуњене:", - "{license}-licensed" : "{license}-лиценцирано", + "Update to {update}" : "Ажурирај на {update}", + "Results from other categories" : "Резултати из других категорија", + "No apps found for your version" : "Нема апликација за вашу верзију", "Disable all" : "Искључи све", "Enable all" : "Укључи све", "Download and enable" : "Скини и укључи", "Enable" : "Укључи", "The app will be downloaded from the app store" : "Апликација ће бити скинута са продавнице", "You do not have permissions to see the details of this user" : "Немате дозволе да видите детаље о овом кориснику", + "The backend does not support changing the display name" : "Позадински мотор не дозвољава промену имена за приказ", + "New password" : "Нова лозинка", + "Add user in group" : "Додај корисника у групу", + "Set user as admin for" : "Додај корисника као администратора за", + "Select user quota" : "Одаберите корисничку квоту", + "No language set" : "Ниједан језик није постављен", + "Never" : "Никад", "Delete user" : "Обриши корисника", "Disable user" : "Искључи корисника", "Enable user" : "Укључи корисника", "Resend welcome email" : "Поново пошаљи е-пошту добродошлице", "{size} used" : "{size} искоршћенп", "Welcome mail sent!" : "Е-пошта добродошлице послата!", + "Username" : "Корисничко име", "Display name" : "Име за приказ", + "Password" : "Лозинка", "Email" : "Е-пошта", "Group admin for" : "Администратор групе за", + "Quota" : "Квота", "Language" : "Језик", + "Storage location" : "Локација складишта", "User backend" : "Позадина за кориснике", + "Last login" : "Последња пријава", + "Default language" : "Подразумевани језик", + "Add a new user" : "Додај новог корисника", + "No users in here" : "Овде нема корисника", "Unlimited" : "Неограничено", "Default quota" : "Подразумевана квота", - "Default language" : "Подразумевани језик", "Password change is disabled because the master key is disabled" : "Промена лозинке је искључена пошто је главни кључ искључен", "Common languages" : "Најкоришћенији језици", "All languages" : "Сви језици", - "An error occured during the request. Unable to proceed." : "Догодила се грешка за време захтева. Не може се наставити.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Апликација је укључена, али треба да се ажурира. Бићете преусмерени на страну са ажурирањем за 5 секунди.", - "App update" : "Ажурирање апликације", - "Error: This app can not be enabled because it makes the server unstable" : "Грешка: ова апликација не може да се укључи јер је због ње цео сервер нестабилан", "Your apps" : "Ваше апликације", "Active apps" : "Активне апликације", "Disabled apps" : "Искључене апликације", "Updates" : "Ажурирања", "App bundles" : "Пакети апликација", + "{license}-licensed" : "{license}-лиценцирано", "Default quota:" : "Подразумевана квота:", + "Select default quota" : "Одаберите подразумевану квоту", + "Show Languages" : "Прикажи језике", + "Show last login" : "Прикажи последњу пријаву", + "Show user backend" : "Прикажи позадину за кориснике", + "Show storage path" : "Прикажи путању до складишта", "You are about to remove the group {group}. The users will NOT be deleted." : "Управо ћете уклонити групу {group}. Корисници НЕЋЕ бити избрисани.", "Please confirm the group removal " : "Потврдите уклањање групе", "Remove group" : "Уклони групу", @@ -162,6 +196,10 @@ "Everyone" : "Сви", "Add group" : "Додај групу", "New user" : "Нови корисник", + "An error occured during the request. Unable to proceed." : "Догодила се грешка за време захтева. Не може се наставити.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Апликација је укључена, али треба да се ажурира. Бићете преусмерени на страну са ажурирањем за 5 секунди.", + "App update" : "Ажурирање апликације", + "Error: This app can not be enabled because it makes the server unstable" : "Грешка: ова апликација не може да се укључи јер је због ње цео сервер нестабилан", "SSL Root Certificates" : "SSL корени сертификат", "Common Name" : "Уобичајено име", "Valid until" : "Важи до", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Твитер надимак @…", "Help translate" : " Помозите у превођењу", "Locale" : "Локалитет", - "Password" : "Лозинка", "Current password" : "Тренутна лозинка", - "New password" : "Нова лозинка", "Change password" : "Измени лозинку", "Devices & sessions" : "Уређаји & сесије", "Web, desktop and mobile clients currently logged in to your account." : "Веб, рачунарски и мобилни клијенти тренутно пријављени на Ваш налог.", @@ -298,7 +334,6 @@ "Create new app password" : "Направите нову лозинку апликације", "Use the credentials below to configure your app or device." : "Употребите акредитиве наведене испод да подесите Вашу апликацију или уређај.", "For security reasons this password will only be shown once." : "Из безбедносних разлога, ова лозинка ће бити приказана само једном.", - "Username" : "Корисничко име", "Done" : "Завршено", "Enabled apps" : "Укључене апликације", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL користи застарелу верзију %s (%s). Ажурирајте оперативни систем или функционалности као што је %s неће радити поуздано.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "Потребна је потврда лозинке", "Are you really sure you want add {domain} as trusted domain?" : "Да ли заиста желите да додате {domain} као поуздан домен?", "Add trusted domain" : "Додај поуздан домен", - "All" : "Све", "Update to %s" : "Ажурирај на %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Имате ажурирање за %n апликацију","Имате ажурирање за %n апликације","Имате ажурирање за %n апликација"], - "No apps found for your version" : "Нема апликација за вашу верзију", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Званичне апликације су развијене за и од стране заједнице. Нуде главне функционалности и спремне су за продукциону употребу.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Одобрене апликације су развили проверени програмери и апликације су прошле основне безбедносне провере. Оне се активно одржавају у репозиторијуму за апликације отвореног кода и њихови одржаватељи сматрају да су стабилне за уобичајену употребу.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ова апликација није проверена по питању безбедности и нова је или зна да буде нестабилна. Инсталирате је на сопствену одговорност.", "Disabling app …" : "Искључујем апликацију …", "Error while disabling app" : "Грешка при искључивању апликације", - "Disable" : "Искључи", "Enabling app …" : "Укључујем апликацију …", "Error while enabling app" : "Грешка при укључивању апликације", "Error: Could not disable broken app" : "Грешка: Не могу да искључим покварену апликацију", @@ -342,7 +373,6 @@ "Updated" : "Ажурирано", "Removing …" : "Уклањам …", "Error while removing app" : "Грешка при уклањању апликације", - "Remove" : "Уклони", "Approved" : "Одобрене", "Experimental" : "Експерименталне", "No apps found for {query}" : "Није нађена ниједна апликација за претрагу {query}", @@ -399,16 +429,12 @@ "Theming" : "Теме", "Check the security of your Nextcloud over our security scan" : "Проверавање безбедности Вашег Некстклауда кроз наше безбедоносно скенирање", "Hardening and security guidance" : "Ојачавање система и безбедносне препоруке", - "View in store" : "Погледај у продавници", "This app has an update available." : "Ова апликација има доступно ажурирање.", "by %s" : "од %s", "%s-licensed" : "%s лиценцирано", "Documentation:" : "Документација:", - "Admin documentation" : "Администраторска документација", - "Report a bug" : "Пријави проблем", "Show description …" : "Прикажи опис …", "Hide description …" : "Сакриј опис …", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Ова апликација нема дефинисану максималну верзију Некстклауда на којој ради. Ово ће у будућности постати грешка.", "Enable only for specific groups" : "Укључи само за одређене групе", "Online documentation" : "Документација на мрежи", "Getting help" : "Добијање помоћи", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Пријавите се на наше новине!", "Settings" : "Подешавања", "Show storage location" : "Прикажи локацију складишта", - "Show user backend" : "Прикажи позадину за кориснике", - "Show last login" : "Прикажи последњу пријаву", "Show email address" : "Прикажи адресу е-поште", "Send email to new user" : "Пошаљи е-пошту новом кориснику", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Када се поље лозинке новог корисника остави празним, кориснику ће бити послата е-пошта са везом за постављање лозинке.", @@ -445,9 +469,6 @@ "Disabled" : "Искључено", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Унесите квоту складиштења (нпр. 512 MB или 12 GB)", "Other" : "Друго", - "Quota" : "Квота", - "Storage location" : "Локација складишта", - "Last login" : "Последња пријава", "change full name" : "измени пуно име", "set new password" : "постави нову лозинку", "change email address" : "измени адресу е-поште", diff --git a/settings/l10n/sv.js b/settings/l10n/sv.js index c184f6545eb..da8af6de950 100644 --- a/settings/l10n/sv.js +++ b/settings/l10n/sv.js @@ -110,48 +110,65 @@ OC.L10N.register( "Group list is empty" : "Grupplistan är tom", "Unable to retrieve the group list" : "Kan inte hämta grupplistan", "Limit to groups" : "Begränsa till grupper", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiella appar är utvecklade av Nextclouds community. De erbjuder central funktionalitet och är redo för att användas i produktion.", "Official" : "Officiell", + "Remove" : "Ta bort", + "Disable" : "Inaktivera", + "All" : "Alla", "No results" : "Inga resultat", + "View in store" : "Visa i butik", "Visit website" : "Besök webbsida", + "Report a bug" : "Rapportera ett problem", "User documentation" : "Användardokumentation", + "Admin documentation" : "Administratörsdokumentation", "Developer documentation" : "Utvecklardokumentation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen max Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", - "{license}-licensed" : "{license}-licensierad", + "No apps found for your version" : "Inga appar funna för din version", "Disable all" : "Inaktivera alla", "Enable all" : "Aktivera alla", "Download and enable" : "Ladda ner och aktivera", "Enable" : "Aktivera", "The app will be downloaded from the app store" : "Appen kommer hämtas från appstore", "You do not have permissions to see the details of this user" : "Du har inte behörighet att se detaljerna för den här användaren", + "New password" : "Nytt lösenord", "Delete user" : "Radera användare", "Disable user" : "Stäng av användare", "Enable user" : "Aktivera användare", "Resend welcome email" : "Skicka om välkomst-mejl ", "{size} used" : "{size} använt", "Welcome mail sent!" : "Välkomst-mejl skickat!", + "Username" : "Användarnamn", "Display name" : "Visningsnamn", + "Password" : "Lösenord", "Email" : "E-post", "Group admin for" : "Gruppadministratör för", + "Quota" : "Lagringsutrymme", "Language" : "Språk", + "Storage location" : "Lagringsplats", "User backend" : "Användarbackend", + "Last login" : "Senaste inloggning", + "Default language" : "Standardspråk", "Unlimited" : "Obegränsat", "Default quota" : "Förvalt lagringsutrymme", - "Default language" : "Standardspråk", "Password change is disabled because the master key is disabled" : "Lösenordsbyte är inaktiverat eftersom huvudnyckeln är inaktiverad", "Common languages" : "Vanliga språk", "All languages" : "Alla språk", - "An error occured during the request. Unable to proceed." : "Ett fel uppstod under förfrågan. Kan inte fortsätta.", - "App update" : "Appuppdatering", - "Error: This app can not be enabled because it makes the server unstable" : "Fel: Denna app kan inte aktiveras eftersom det gör servern instabil", "Your apps" : "Dina appar", "Disabled apps" : "Inaktiverade appar", "Updates" : "Uppdateringar", "App bundles" : "App paket", + "{license}-licensed" : "{license}-licensierad", "Default quota:" : "Standardkvot:", + "Show last login" : "Visa senaste inloggning", + "Show user backend" : "Visa användar-backend", "Admins" : "Administratörer", "Everyone" : "Alla", "Add group" : "Lägg till grupp", + "An error occured during the request. Unable to proceed." : "Ett fel uppstod under förfrågan. Kan inte fortsätta.", + "App update" : "Appuppdatering", + "Error: This app can not be enabled because it makes the server unstable" : "Fel: Denna app kan inte aktiveras eftersom det gör servern instabil", "SSL Root Certificates" : "SSL Root certifikat", "Common Name" : "Vanligt namn", "Valid until" : "Giltigt till", @@ -270,9 +287,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Hjälp oss att översätta", "Locale" : "Plats", - "Password" : "Lösenord", "Current password" : "Nuvarande lösenord", - "New password" : "Nytt lösenord", "Change password" : "Ändra lösenord", "Devices & sessions" : "Enheter & sessioner", "Web, desktop and mobile clients currently logged in to your account." : "Webb, skrivbordsklienter och mobila klienter som är inloggade på ditt konto just nu.", @@ -282,7 +297,6 @@ OC.L10N.register( "Create new app password" : "Skapa nytt applösenord", "Use the credentials below to configure your app or device." : "Använd följande autentiseringsuppgifter för att konfigurera din app eller enhet", "For security reasons this password will only be shown once." : "Av säkerhetsskäl kommer lösenordet endast att visas en gång", - "Username" : "Användarnamn", "Done" : "Färdig", "Enabled apps" : "Aktiverade appar", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL använder en föråldrad %s version (%s). Var god uppdatera ditt operativsystem annars kan funktioner som %s sluta fungera pålitligt.", @@ -307,16 +321,12 @@ OC.L10N.register( "Password confirmation is required" : "Lösenordsbekräftelse krävs", "Are you really sure you want add {domain} as trusted domain?" : "Är du verkligen säker att du vill lägga till (domain) som tillförlitlig domän?", "Add trusted domain" : "Lägg till betrodd domän", - "All" : "Alla", "Update to %s" : "Uppdatera till %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n appuppdatering som väntar ","Du har %n appuppdateringar som väntar"], - "No apps found for your version" : "Inga appar funna för din version", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiella appar är utvecklade av Nextclouds community. De erbjuder central funktionalitet och är redo för att användas i produktion.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkända appar är utvecklade av betrodda utvecklare och har genomgått enklare säkerhetstester. De är aktivt utvecklade i ett öppet kodbibliotek och deras underhållare anser dom stabila nog för enklare till normalt användande.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denna applikation är ej kontrollerad för säkerhetsbrister och är ny eller känd att orsaka instabilitetsproblem. Installera på egen risk.", "Disabling app …" : "Inaktiverar app ...", "Error while disabling app" : "Fel vid inaktivering av app", - "Disable" : "Inaktivera", "Enabling app …" : "Aktiverar app ...", "Error while enabling app" : "Fel vid aktivering av app", "Error: Could not disable broken app" : "Fel: Kunde inte inaktivera trasig app", @@ -326,7 +336,6 @@ OC.L10N.register( "Updated" : "Uppdaterad", "Removing …" : "Tar bort ...", "Error while removing app" : "Fel vid borttagning av app", - "Remove" : "Ta bort", "Approved" : "Godkänd", "Experimental" : "Experimentell", "No apps found for {query}" : "Inga applikationer funna för {query}", @@ -369,16 +378,12 @@ OC.L10N.register( "Theming" : "Teman", "Check the security of your Nextcloud over our security scan" : "Kontrollera säkerheten för ditt Nextcloud med vår säkerhets-skanning", "Hardening and security guidance" : "Säkerhetsriktlinjer", - "View in store" : "Visa i butik", "This app has an update available." : "Denna applikation har en uppdatering tillgänglig.", "by %s" : "av %s", "%s-licensed" : "%s-licensierad.", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Administratörsdokumentation", - "Report a bug" : "Rapportera ett problem", "Show description …" : "Visa beskrivning", "Hide description …" : "Dölj beskrivning", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "Enable only for specific groups" : "Aktivera endast för specifika grupper", "Online documentation" : "Online-dokumentation", "Getting help" : "Få hjälp", @@ -402,8 +407,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Prenumerera på vårt nyhetsbrev!", "Settings" : "Inställningar", "Show storage location" : "Visa lagringsplats", - "Show user backend" : "Visa användar-backend", - "Show last login" : "Visa senaste inloggning", "Show email address" : "Visa e-postadress", "Send email to new user" : "Skicka e-post till ny användare", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "När lösenordet för en ny användare lämnas tomt så skickas ett aktiveringsmejl med en länk för att välja ett lösenord.", @@ -415,9 +418,6 @@ OC.L10N.register( "Disabled" : "Inaktiverad", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ange storlek på lagringsutrymmet (t.ex: \"512 MB\" eller \"12 GB\")", "Other" : "Annat", - "Quota" : "Lagringsutrymme", - "Storage location" : "Lagringsplats", - "Last login" : "Senaste inloggning", "change full name" : "ändra namn", "set new password" : "ange nytt lösenord", "change email address" : "ändra e-postadress", diff --git a/settings/l10n/sv.json b/settings/l10n/sv.json index 07b75058c01..8b06bb1f4e1 100644 --- a/settings/l10n/sv.json +++ b/settings/l10n/sv.json @@ -108,48 +108,65 @@ "Group list is empty" : "Grupplistan är tom", "Unable to retrieve the group list" : "Kan inte hämta grupplistan", "Limit to groups" : "Begränsa till grupper", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiella appar är utvecklade av Nextclouds community. De erbjuder central funktionalitet och är redo för att användas i produktion.", "Official" : "Officiell", + "Remove" : "Ta bort", + "Disable" : "Inaktivera", + "All" : "Alla", "No results" : "Inga resultat", + "View in store" : "Visa i butik", "Visit website" : "Besök webbsida", + "Report a bug" : "Rapportera ett problem", "User documentation" : "Användardokumentation", + "Admin documentation" : "Administratörsdokumentation", "Developer documentation" : "Utvecklardokumentation", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen max Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Denna applikation kan inte installeras då följande beroenden inte är uppfyllda: %s", - "{license}-licensed" : "{license}-licensierad", + "No apps found for your version" : "Inga appar funna för din version", "Disable all" : "Inaktivera alla", "Enable all" : "Aktivera alla", "Download and enable" : "Ladda ner och aktivera", "Enable" : "Aktivera", "The app will be downloaded from the app store" : "Appen kommer hämtas från appstore", "You do not have permissions to see the details of this user" : "Du har inte behörighet att se detaljerna för den här användaren", + "New password" : "Nytt lösenord", "Delete user" : "Radera användare", "Disable user" : "Stäng av användare", "Enable user" : "Aktivera användare", "Resend welcome email" : "Skicka om välkomst-mejl ", "{size} used" : "{size} använt", "Welcome mail sent!" : "Välkomst-mejl skickat!", + "Username" : "Användarnamn", "Display name" : "Visningsnamn", + "Password" : "Lösenord", "Email" : "E-post", "Group admin for" : "Gruppadministratör för", + "Quota" : "Lagringsutrymme", "Language" : "Språk", + "Storage location" : "Lagringsplats", "User backend" : "Användarbackend", + "Last login" : "Senaste inloggning", + "Default language" : "Standardspråk", "Unlimited" : "Obegränsat", "Default quota" : "Förvalt lagringsutrymme", - "Default language" : "Standardspråk", "Password change is disabled because the master key is disabled" : "Lösenordsbyte är inaktiverat eftersom huvudnyckeln är inaktiverad", "Common languages" : "Vanliga språk", "All languages" : "Alla språk", - "An error occured during the request. Unable to proceed." : "Ett fel uppstod under förfrågan. Kan inte fortsätta.", - "App update" : "Appuppdatering", - "Error: This app can not be enabled because it makes the server unstable" : "Fel: Denna app kan inte aktiveras eftersom det gör servern instabil", "Your apps" : "Dina appar", "Disabled apps" : "Inaktiverade appar", "Updates" : "Uppdateringar", "App bundles" : "App paket", + "{license}-licensed" : "{license}-licensierad", "Default quota:" : "Standardkvot:", + "Show last login" : "Visa senaste inloggning", + "Show user backend" : "Visa användar-backend", "Admins" : "Administratörer", "Everyone" : "Alla", "Add group" : "Lägg till grupp", + "An error occured during the request. Unable to proceed." : "Ett fel uppstod under förfrågan. Kan inte fortsätta.", + "App update" : "Appuppdatering", + "Error: This app can not be enabled because it makes the server unstable" : "Fel: Denna app kan inte aktiveras eftersom det gör servern instabil", "SSL Root Certificates" : "SSL Root certifikat", "Common Name" : "Vanligt namn", "Valid until" : "Giltigt till", @@ -268,9 +285,7 @@ "Twitter handle @…" : "Twitter handle @…", "Help translate" : "Hjälp oss att översätta", "Locale" : "Plats", - "Password" : "Lösenord", "Current password" : "Nuvarande lösenord", - "New password" : "Nytt lösenord", "Change password" : "Ändra lösenord", "Devices & sessions" : "Enheter & sessioner", "Web, desktop and mobile clients currently logged in to your account." : "Webb, skrivbordsklienter och mobila klienter som är inloggade på ditt konto just nu.", @@ -280,7 +295,6 @@ "Create new app password" : "Skapa nytt applösenord", "Use the credentials below to configure your app or device." : "Använd följande autentiseringsuppgifter för att konfigurera din app eller enhet", "For security reasons this password will only be shown once." : "Av säkerhetsskäl kommer lösenordet endast att visas en gång", - "Username" : "Användarnamn", "Done" : "Färdig", "Enabled apps" : "Aktiverade appar", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL använder en föråldrad %s version (%s). Var god uppdatera ditt operativsystem annars kan funktioner som %s sluta fungera pålitligt.", @@ -305,16 +319,12 @@ "Password confirmation is required" : "Lösenordsbekräftelse krävs", "Are you really sure you want add {domain} as trusted domain?" : "Är du verkligen säker att du vill lägga till (domain) som tillförlitlig domän?", "Add trusted domain" : "Lägg till betrodd domän", - "All" : "Alla", "Update to %s" : "Uppdatera till %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["Du har %n appuppdatering som väntar ","Du har %n appuppdateringar som väntar"], - "No apps found for your version" : "Inga appar funna för din version", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Officiella appar är utvecklade av Nextclouds community. De erbjuder central funktionalitet och är redo för att användas i produktion.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Godkända appar är utvecklade av betrodda utvecklare och har genomgått enklare säkerhetstester. De är aktivt utvecklade i ett öppet kodbibliotek och deras underhållare anser dom stabila nog för enklare till normalt användande.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Denna applikation är ej kontrollerad för säkerhetsbrister och är ny eller känd att orsaka instabilitetsproblem. Installera på egen risk.", "Disabling app …" : "Inaktiverar app ...", "Error while disabling app" : "Fel vid inaktivering av app", - "Disable" : "Inaktivera", "Enabling app …" : "Aktiverar app ...", "Error while enabling app" : "Fel vid aktivering av app", "Error: Could not disable broken app" : "Fel: Kunde inte inaktivera trasig app", @@ -324,7 +334,6 @@ "Updated" : "Uppdaterad", "Removing …" : "Tar bort ...", "Error while removing app" : "Fel vid borttagning av app", - "Remove" : "Ta bort", "Approved" : "Godkänd", "Experimental" : "Experimentell", "No apps found for {query}" : "Inga applikationer funna för {query}", @@ -367,16 +376,12 @@ "Theming" : "Teman", "Check the security of your Nextcloud over our security scan" : "Kontrollera säkerheten för ditt Nextcloud med vår säkerhets-skanning", "Hardening and security guidance" : "Säkerhetsriktlinjer", - "View in store" : "Visa i butik", "This app has an update available." : "Denna applikation har en uppdatering tillgänglig.", "by %s" : "av %s", "%s-licensed" : "%s-licensierad.", "Documentation:" : "Dokumentation:", - "Admin documentation" : "Administratörsdokumentation", - "Report a bug" : "Rapportera ett problem", "Show description …" : "Visa beskrivning", "Hide description …" : "Dölj beskrivning", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Denna app har ingen minimum Nextcloud-version tilldelad. Detta kommer att innebära ett problem i framtiden.", "Enable only for specific groups" : "Aktivera endast för specifika grupper", "Online documentation" : "Online-dokumentation", "Getting help" : "Få hjälp", @@ -400,8 +405,6 @@ "Subscribe to our newsletter!" : "Prenumerera på vårt nyhetsbrev!", "Settings" : "Inställningar", "Show storage location" : "Visa lagringsplats", - "Show user backend" : "Visa användar-backend", - "Show last login" : "Visa senaste inloggning", "Show email address" : "Visa e-postadress", "Send email to new user" : "Skicka e-post till ny användare", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "När lösenordet för en ny användare lämnas tomt så skickas ett aktiveringsmejl med en länk för att välja ett lösenord.", @@ -413,9 +416,6 @@ "Disabled" : "Inaktiverad", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Ange storlek på lagringsutrymmet (t.ex: \"512 MB\" eller \"12 GB\")", "Other" : "Annat", - "Quota" : "Lagringsutrymme", - "Storage location" : "Lagringsplats", - "Last login" : "Senaste inloggning", "change full name" : "ändra namn", "set new password" : "ange nytt lösenord", "change email address" : "ändra e-postadress", diff --git a/settings/l10n/ta_LK.js b/settings/l10n/ta_LK.js index 6901dbdb0fc..b5bc9f45970 100644 --- a/settings/l10n/ta_LK.js +++ b/settings/l10n/ta_LK.js @@ -4,8 +4,14 @@ OC.L10N.register( "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", "Delete" : "நீக்குக", "Groups" : "குழுக்கள்", + "Disable" : "இயலுமைப்ப", + "All" : "எல்லாம்", "Enable" : "இயலுமைப்படுத்துக", + "New password" : "புதிய கடவுச்சொல்", + "Username" : "பயனாளர் பெயர்", + "Password" : "கடவுச்சொல்", "Email" : "மின்னஞ்சல்", + "Quota" : "பங்கு", "Language" : "மொழி", "None" : "ஒன்றுமில்லை", "Login" : "புகுபதிகை", @@ -16,18 +22,12 @@ OC.L10N.register( "Cancel" : "இரத்து செய்க", "Your email address" : "உங்களுடைய மின்னஞ்சல் முகவரி", "Help translate" : "மொழிபெயர்க்க உதவி", - "Password" : "கடவுச்சொல்", "Current password" : "தற்போதைய கடவுச்சொல்", - "New password" : "புதிய கடவுச்சொல்", "Change password" : "கடவுச்சொல்லை மாற்றுக", - "Username" : "பயனாளர் பெயர்", "Email saved" : "மின்னஞ்சல் சேமிக்கப்பட்டது", - "All" : "எல்லாம்", - "Disable" : "இயலுமைப்ப", "undo" : "முன் செயல் நீக்கம் ", "never" : "ஒருபோதும்", "Create" : "உருவாக்குக", - "Other" : "மற்றவை", - "Quota" : "பங்கு" + "Other" : "மற்றவை" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ta_LK.json b/settings/l10n/ta_LK.json index 1ace3789600..27e195a8ce2 100644 --- a/settings/l10n/ta_LK.json +++ b/settings/l10n/ta_LK.json @@ -2,8 +2,14 @@ "Authentication error" : "அத்தாட்சிப்படுத்தலில் வழு", "Delete" : "நீக்குக", "Groups" : "குழுக்கள்", + "Disable" : "இயலுமைப்ப", + "All" : "எல்லாம்", "Enable" : "இயலுமைப்படுத்துக", + "New password" : "புதிய கடவுச்சொல்", + "Username" : "பயனாளர் பெயர்", + "Password" : "கடவுச்சொல்", "Email" : "மின்னஞ்சல்", + "Quota" : "பங்கு", "Language" : "மொழி", "None" : "ஒன்றுமில்லை", "Login" : "புகுபதிகை", @@ -14,18 +20,12 @@ "Cancel" : "இரத்து செய்க", "Your email address" : "உங்களுடைய மின்னஞ்சல் முகவரி", "Help translate" : "மொழிபெயர்க்க உதவி", - "Password" : "கடவுச்சொல்", "Current password" : "தற்போதைய கடவுச்சொல்", - "New password" : "புதிய கடவுச்சொல்", "Change password" : "கடவுச்சொல்லை மாற்றுக", - "Username" : "பயனாளர் பெயர்", "Email saved" : "மின்னஞ்சல் சேமிக்கப்பட்டது", - "All" : "எல்லாம்", - "Disable" : "இயலுமைப்ப", "undo" : "முன் செயல் நீக்கம் ", "never" : "ஒருபோதும்", "Create" : "உருவாக்குக", - "Other" : "மற்றவை", - "Quota" : "பங்கு" + "Other" : "மற்றவை" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/th.js b/settings/l10n/th.js index c26a35985b8..e9c8f0aca7f 100644 --- a/settings/l10n/th.js +++ b/settings/l10n/th.js @@ -30,14 +30,23 @@ OC.L10N.register( "Select a profile picture" : "เลือกรูปภาพโปรไฟล์", "Groups" : "กลุ่ม", "Official" : "เป็นทางการ", + "Disable" : "ปิดใช้งาน", + "All" : "ทั้งหมด", "User documentation" : "เอกสารสำหรับผู้ใช้", + "Admin documentation" : "เอกสารผู้ดูแลระบบ", "Developer documentation" : "เอกสารสำหรับนักพัฒนา", "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอพฯนี้เพราะไม่มีตัวอ้างอิงต่อไปนี้:", + "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", "Enable" : "เปิดใช้งาน", "The app will be downloaded from the app store" : "แอพฯจะดาวน์โหลดได้จากแอพสโตร์", + "New password" : "รหัสผ่านใหม่", + "Username" : "ชื่อผู้ใช้งาน", + "Password" : "รหัสผ่าน", "Email" : "อีเมล", + "Quota" : "โควต้า", "Language" : "ภาษา", "Unlimited" : "ไม่จำกัด", + "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", "Admins" : "ผู้ดูแลระบบ", "Everyone" : "ทุกคน", "SSL Root Certificates" : "ใบรับรอง SSL", @@ -112,11 +121,8 @@ OC.L10N.register( "Your email address" : "ที่อยู่อีเมล์ของคุณ", "No email address set" : "ไม่ได้ตั้งค่าที่อยู่อีเมล", "Help translate" : "มาช่วยกันแปลสิ!", - "Password" : "รหัสผ่าน", "Current password" : "รหัสผ่านปัจจุบัน", - "New password" : "รหัสผ่านใหม่", "Change password" : "เปลี่ยนรหัสผ่าน", - "Username" : "ชื่อผู้ใช้งาน", "Done" : "เสร็จสิ้น", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "คุณกำลังใช้ cURL %s รุ่นเก่ากว่า (%s)โปรดอัพเดทระบบปฏิบัติการหรือคุณสมบัติเป็น %s เพื่อการทำงานที่มีประสิทธิภาพ", "A problem occurred, please check your log files (Error: %s)" : "มีปัญหาเกิดขึ้นโปรดตรวจสอบไฟล์บันทึกของคุณ (ข้อผิดพลาด: %s)", @@ -133,13 +139,10 @@ OC.L10N.register( "Unable to change mail address" : "ไม่สามารถที่จะเปลี่ยนที่อยู่อีเมล", "Email saved" : "อีเมลถูกบันทึกแล้ว", "Add trusted domain" : "เพิ่มโดเมนที่เชื่อถือได้", - "All" : "ทั้งหมด", "Update to %s" : "อัพเดทไปยัง %s", - "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "แอพพลิเคชันได้รับการอนุมัติและพัฒนาโดยนักพัฒนาที่น่าเชื่อถือและได้ผ่านการตรวจสอบความปลอดภัยคร่าวๆ พวกเขาจะได้รับการบำรุงรักษาอย่างดีในการเก็บข้อมูลรหัสเปิด มันอาจยังไม่เสถียรพอสำหรับการเปิดใช้งานปกติ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "แอพฯ นี้ไม่ได้ตรวจสอบปัญหาด้านความปลอดภัยและเป็นแอพฯใหม่หรือที่รู้จักกันคือจะไม่เสถียร ติดตั้งบนความเสี่ยงของคุณเอง", "Error while disabling app" : "เกิดข้อผิดพลาดขณะปิดการใช้งานแอพพลิเคชัน", - "Disable" : "ปิดใช้งาน", "Error while enabling app" : "เกิดข้อผิดพลาดขณะกำลังตรวจสอบแอพฯ", "Error while disabling broken app" : "ข้อผิดพลาดขณะกำลังปิดการใช้งานแอพฯที่มีปัญหา", "Updated" : "อัพเดทแล้ว", @@ -170,7 +173,6 @@ OC.L10N.register( "by %s" : "โดย %s", "%s-licensed" : "%s ได้รับใบอนุญาต", "Documentation:" : "เอกสาร:", - "Admin documentation" : "เอกสารผู้ดูแลระบบ", "Show description …" : "แสดงรายละเอียด ...", "Hide description …" : "ซ่อนรายละเอียด ...", "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", @@ -179,7 +181,6 @@ OC.L10N.register( "You are using <strong>%s</strong> of <strong>%s</strong>" : "คุณกำลังใช้พื้นที่ <strong>%s</strong> จากทั้งหมด <strong>%s</strong>", "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", - "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", "Show email address" : "แสดงที่อยู่อีเมล", "Send email to new user" : "ส่งอีเมลไปยังผู้ใช้ใหม่", "E-Mail" : "อีเมล", @@ -188,7 +189,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "ป้อนรหัสผ่านการกู้คืนเพื่อกู้คืนไฟล์ผู้ใช้ในช่วงการเปลี่ยนรหัสผ่าน", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "กรุณากรอกโควต้าการจัดเก็บข้อมูล (ต.ย. : \"512 MB\" หรือ \"12 GB\")", "Other" : "อื่นๆ", - "Quota" : "โควต้า", "change full name" : "เปลี่ยนชื่อเต็ม", "set new password" : "ตั้งค่ารหัสผ่านใหม่", "change email address" : "เปลี่ยนแปลงที่อยู่อีเมล", diff --git a/settings/l10n/th.json b/settings/l10n/th.json index 8f3af07e027..739cc26c076 100644 --- a/settings/l10n/th.json +++ b/settings/l10n/th.json @@ -28,14 +28,23 @@ "Select a profile picture" : "เลือกรูปภาพโปรไฟล์", "Groups" : "กลุ่ม", "Official" : "เป็นทางการ", + "Disable" : "ปิดใช้งาน", + "All" : "ทั้งหมด", "User documentation" : "เอกสารสำหรับผู้ใช้", + "Admin documentation" : "เอกสารผู้ดูแลระบบ", "Developer documentation" : "เอกสารสำหรับนักพัฒนา", "This app cannot be installed because the following dependencies are not fulfilled:" : "ไม่สามารถติดตั้งแอพฯนี้เพราะไม่มีตัวอ้างอิงต่อไปนี้:", + "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", "Enable" : "เปิดใช้งาน", "The app will be downloaded from the app store" : "แอพฯจะดาวน์โหลดได้จากแอพสโตร์", + "New password" : "รหัสผ่านใหม่", + "Username" : "ชื่อผู้ใช้งาน", + "Password" : "รหัสผ่าน", "Email" : "อีเมล", + "Quota" : "โควต้า", "Language" : "ภาษา", "Unlimited" : "ไม่จำกัด", + "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", "Admins" : "ผู้ดูแลระบบ", "Everyone" : "ทุกคน", "SSL Root Certificates" : "ใบรับรอง SSL", @@ -110,11 +119,8 @@ "Your email address" : "ที่อยู่อีเมล์ของคุณ", "No email address set" : "ไม่ได้ตั้งค่าที่อยู่อีเมล", "Help translate" : "มาช่วยกันแปลสิ!", - "Password" : "รหัสผ่าน", "Current password" : "รหัสผ่านปัจจุบัน", - "New password" : "รหัสผ่านใหม่", "Change password" : "เปลี่ยนรหัสผ่าน", - "Username" : "ชื่อผู้ใช้งาน", "Done" : "เสร็จสิ้น", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "คุณกำลังใช้ cURL %s รุ่นเก่ากว่า (%s)โปรดอัพเดทระบบปฏิบัติการหรือคุณสมบัติเป็น %s เพื่อการทำงานที่มีประสิทธิภาพ", "A problem occurred, please check your log files (Error: %s)" : "มีปัญหาเกิดขึ้นโปรดตรวจสอบไฟล์บันทึกของคุณ (ข้อผิดพลาด: %s)", @@ -131,13 +137,10 @@ "Unable to change mail address" : "ไม่สามารถที่จะเปลี่ยนที่อยู่อีเมล", "Email saved" : "อีเมลถูกบันทึกแล้ว", "Add trusted domain" : "เพิ่มโดเมนที่เชื่อถือได้", - "All" : "ทั้งหมด", "Update to %s" : "อัพเดทไปยัง %s", - "No apps found for your version" : "ไม่พบแอพพลิเคชันสำหรับรุ่นของคุณ", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "แอพพลิเคชันได้รับการอนุมัติและพัฒนาโดยนักพัฒนาที่น่าเชื่อถือและได้ผ่านการตรวจสอบความปลอดภัยคร่าวๆ พวกเขาจะได้รับการบำรุงรักษาอย่างดีในการเก็บข้อมูลรหัสเปิด มันอาจยังไม่เสถียรพอสำหรับการเปิดใช้งานปกติ", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "แอพฯ นี้ไม่ได้ตรวจสอบปัญหาด้านความปลอดภัยและเป็นแอพฯใหม่หรือที่รู้จักกันคือจะไม่เสถียร ติดตั้งบนความเสี่ยงของคุณเอง", "Error while disabling app" : "เกิดข้อผิดพลาดขณะปิดการใช้งานแอพพลิเคชัน", - "Disable" : "ปิดใช้งาน", "Error while enabling app" : "เกิดข้อผิดพลาดขณะกำลังตรวจสอบแอพฯ", "Error while disabling broken app" : "ข้อผิดพลาดขณะกำลังปิดการใช้งานแอพฯที่มีปัญหา", "Updated" : "อัพเดทแล้ว", @@ -168,7 +171,6 @@ "by %s" : "โดย %s", "%s-licensed" : "%s ได้รับใบอนุญาต", "Documentation:" : "เอกสาร:", - "Admin documentation" : "เอกสารผู้ดูแลระบบ", "Show description …" : "แสดงรายละเอียด ...", "Hide description …" : "ซ่อนรายละเอียด ...", "Enable only for specific groups" : "เปิดใช้งานเพียงเฉพาะกลุ่ม", @@ -177,7 +179,6 @@ "You are using <strong>%s</strong> of <strong>%s</strong>" : "คุณกำลังใช้พื้นที่ <strong>%s</strong> จากทั้งหมด <strong>%s</strong>", "You are member of the following groups:" : "คุณเป็นสมาชิกของกลุ่มต่อไปนี้:", "Show storage location" : "แสดงสถานที่จัดเก็บข้อมูล", - "Show user backend" : "แสดงแบ็กเอนด์ของผู้ใช้", "Show email address" : "แสดงที่อยู่อีเมล", "Send email to new user" : "ส่งอีเมลไปยังผู้ใช้ใหม่", "E-Mail" : "อีเมล", @@ -186,7 +187,6 @@ "Enter the recovery password in order to recover the users files during password change" : "ป้อนรหัสผ่านการกู้คืนเพื่อกู้คืนไฟล์ผู้ใช้ในช่วงการเปลี่ยนรหัสผ่าน", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "กรุณากรอกโควต้าการจัดเก็บข้อมูล (ต.ย. : \"512 MB\" หรือ \"12 GB\")", "Other" : "อื่นๆ", - "Quota" : "โควต้า", "change full name" : "เปลี่ยนชื่อเต็ม", "set new password" : "ตั้งค่ารหัสผ่านใหม่", "change email address" : "เปลี่ยนแปลงที่อยู่อีเมล", diff --git a/settings/l10n/tr.js b/settings/l10n/tr.js index 29de8a58075..9089622debe 100644 --- a/settings/l10n/tr.js +++ b/settings/l10n/tr.js @@ -114,48 +114,82 @@ OC.L10N.register( "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Tüm kullanıcılar ve belirli gruplar için iki aşamalı\tkimlik doğrulama kullanılır. Yapılandırılmış bir iki aşamalı kimlik doğrulama hizmeti sağlayıcısı olmayan kullanıcılar oturum açamaz.", "Enforce two-factor authentication" : "İki aşamalı kimlik doğrulama dayatılsın", "Limit to groups" : "Şu gruplarla sınırla", + "Enforcement of two-factor authentication can be set for certain groups only." : "İki aşamalı kimlik doğrulaması yalnız belirli gruplara dayatılabilir.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "İki aşamalı kimlik doğrulaması şu grupların tüm üyelerine dayatılır.", + "Enforced groups" : "Dayatılan gruplar", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Şu grupların üyeleri için iki aşamalı kimlik doğrulaması\tdayatılmaz.", + "Excluded groups" : "Dayatılmayan gruplar", + "Save changes" : "Değişiklikleri kaydet", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Resmi uygulamalar topluluk tarafından geliştirilmiştir. Merkezi işlevleri yerine getirdikleri gibi kullanıma da hazırdırlar.", "Official" : "Resmi", + "by" : "Kişi:", + "Update to {version}" : "{version} sürümüne güncelle", + "Remove" : "Kaldır", + "Disable" : "Devre Dışı Bırak", + "All" : "Tümü", + "Limit app usage to groups" : "Uygulama kullanımını şu gruplarla sınırla", "No results" : "Herhangi bir sonuç bulunamadı", + "View in store" : "Mağazada görüntüle", "Visit website" : "Web sayfasına bakın", + "Report a bug" : "Hata bildirin", "User documentation" : "Kullanıcı belgeleri", + "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aşağıdaki bağımlılıklar sağlanmadığından bu uygulama kurulamıyor:", - "{license}-licensed" : "{license}-lisanslı", + "Update to {update}" : "{update} sürümüne güncelle", + "Results from other categories" : "Diğer kategorilerden sonuçlar", + "No apps found for your version" : "Sürümünüze uygun bir uygulama bulunamadı", "Disable all" : "Tümünü devre dışı bırak", "Enable all" : "Tümünü Etkinleştir", "Download and enable" : "İndir ve etkinleştir", "Enable" : "Etkinleştir", "The app will be downloaded from the app store" : "Uygulama uygulama mağazasından indirilecek", "You do not have permissions to see the details of this user" : "Bu kullanıcının ayrıntılarını görüntüleme izniniz yok", + "The backend does not support changing the display name" : "Yönetim bölümünden görüntülenecek ad değiştirilemiyor", + "New password" : "Yeni parola", + "Add user in group" : "Gruba kullanıcı ekle", + "Set user as admin for" : "Kullanıcıyı şurada yönetici yap", + "Select user quota" : "Kullanıcı kotasını seçin", + "No language set" : "Herhangi bir dil ayarlanmamış", + "Never" : "Asla", "Delete user" : "Kullanıcıyı Sil", "Disable user" : "Kullanıcıyı devre dışı bırak", "Enable user" : "Kullanıcıyı etkinleştir", "Resend welcome email" : "Karşılama e-postasını yeniden gönder", "{size} used" : "{size} kullanılmış", "Welcome mail sent!" : "Karşılama e-postası gönderildi!", + "Username" : "Kullanıcı Adı", "Display name" : "Görüntülenecek ad", + "Password" : "Parola", "Email" : "E-posta", "Group admin for" : "Şunun grup yöneticisi", + "Quota" : "Kota", "Language" : "Dil", + "Storage location" : "Depolama konumu", "User backend" : "Kullanıcı Arka Ucu", + "Last login" : "Son oturum açma", + "Default language" : "Varsayılan dil", + "Add a new user" : "Kullanıcı ekle", + "No users in here" : "Henüz herhangi bir kullanıcı eklenmemiş", "Unlimited" : "Sınırsız", "Default quota" : "Varsayılan kota", - "Default language" : "Varsayılan dil", "Password change is disabled because the master key is disabled" : "Ana anahtar devre dışı bırakıldığından parola değişikliği devre dışı bırakıldı.", "Common languages" : "Sık kullanılan diller", "All languages" : "Tüm diller", - "An error occured during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Uygulama etkinleştirilmiş fakat güncellenmesi gerekiyor. 5 saniye içinde güncelleme sayfasına yönlendirileceksiniz.", - "App update" : "Uygulama güncellemesi", - "Error: This app can not be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", "Your apps" : "Uygulamalarınız", "Active apps" : "Etkin uygulamalar", "Disabled apps" : "Devre Dışı Uygulamalar", "Updates" : "Güncellemeler", "App bundles" : "Uygulama Paketleri", + "{license}-licensed" : "{license}-lisanslı", "Default quota:" : "Varsayılan kota:", + "Select default quota" : "Varsayılan kota değerini seçin", + "Show Languages" : "Dilleri Görüntüle", + "Show last login" : "Son oturum açma zamanı görüntülensin", + "Show user backend" : "Kullanıcı arka ucu görüntülensin", + "Show storage path" : "Depolama yolu görüntülensin", "You are about to remove the group {group}. The users will NOT be deleted." : "{group} grubunu silmek üzeresiniz. Kullanıcılar SİLİNMEYECEK.", "Please confirm the group removal " : "Grubu silme işlemini onaylayın", "Remove group" : "Grubu Sil", @@ -164,6 +198,10 @@ OC.L10N.register( "Everyone" : "Herkes", "Add group" : "Grup ekle", "New user" : "Yeni kullanıcı", + "An error occured during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Uygulama etkinleştirilmiş fakat güncellenmesi gerekiyor. 5 saniye içinde güncelleme sayfasına yönlendirileceksiniz.", + "App update" : "Uygulama güncellemesi", + "Error: This app can not be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", "SSL Root Certificates" : "SSL Kök Sertifikaları", "Common Name" : "Ortak Ad", "Valid until" : "Geçerlilik", @@ -288,9 +326,7 @@ OC.L10N.register( "Twitter handle @…" : "Twitter kodu @…", "Help translate" : "Çeviriye yardım edin", "Locale" : "Yerel Ayar", - "Password" : "Parola", "Current password" : "Geçerli parola", - "New password" : "Yeni parola", "Change password" : "Parola değiştir", "Devices & sessions" : "Aygıt ve oturumlar", "Web, desktop and mobile clients currently logged in to your account." : "Şu anda hesabınıza oturum açmış web, masaüstü ve mobil istemciler.", @@ -300,7 +336,6 @@ OC.L10N.register( "Create new app password" : "Yeni uygulama parolası oluştur", "Use the credentials below to configure your app or device." : "Uygulama ya da aygıtınızı yapılandırmak için aşağıdaki kimlik doğrulama bilgileri kullanılır.", "For security reasons this password will only be shown once." : "Güvenlik nedenleriyle bu parola yalnız bir kez görüntülenir.", - "Username" : "Kullanıcı Adı", "Done" : "Tamam", "Enabled apps" : "Etkinleştirilmiş Uygulamalar", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL eski bir %s sürümü kullanıyor (%s). Lütfen işletim sisteminizi güncelleyin, yoksa %s gibi özellikler düzgün çalışmaz.", @@ -325,16 +360,12 @@ OC.L10N.register( "Password confirmation is required" : "Parola onayının yazılması zorunludur", "Are you really sure you want add {domain} as trusted domain?" : "{domain} etki alanını güvenilir etki alanı olarak eklemek istediğinize emin misiniz?", "Add trusted domain" : "Güvenilir etki alanı ekle", - "All" : "Tümü", "Update to %s" : "%s sürümüne güncelle", "_You have %n app update pending_::_You have %n app updates pending_" : ["Güncellenmeyi bekleyen %n uygulama var","Güncellenmeyi bekleyen %n uygulama var"], - "No apps found for your version" : "Sürümünüze uygun bir uygulama bulunamadı", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Resmi uygulamalar topluluk tarafından geliştirilmiştir. Merkezi işlevleri yerine getirdikleri gibi kullanıma da hazırdırlar.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Onaylanmış uygulamalar güvenilir geliştiriciler tarafından hazırlanmış ve ayrıntılı olmayan bir güvenlik denetiminden geçirilmiştir. Bu uygulamalar açık kaynak kod deposunda bulunur ve normal kullanım için kararlı oldukları varsayılır.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Bu uygulama güvenlik denetiminden geçirilmemiş ve yeni ya da kararsız olarak biliniyor. Kurulmasından doğabilecek riskler size aittir.", "Disabling app …" : "Uygulama devre dışı bırakılıyor ...", "Error while disabling app" : "Uygulama devre dışı bırakılırken sorun çıktı", - "Disable" : "Devre Dışı Bırak", "Enabling app …" : "Uygulama etkinleştiriliyor...", "Error while enabling app" : "Uygulama etkinleştirilirken sorun çıktı", "Error: Could not disable broken app" : "Hata: Bozuk uygulama devre dışı bırakılamadı", @@ -344,7 +375,6 @@ OC.L10N.register( "Updated" : "Güncellendi", "Removing …" : "Kaldırılıyor...", "Error while removing app" : "Uygulama kaldırılırken sorun çıktı", - "Remove" : "Kaldır", "Approved" : "Onaylanmış", "Experimental" : "Deneysel", "No apps found for {query}" : "{query} aramasına uyan bir uygulama bulunamadı", @@ -401,16 +431,12 @@ OC.L10N.register( "Theming" : "Tema uygulama", "Check the security of your Nextcloud over our security scan" : "Güvenlik sınamamızdan geçirerek Nextcloud güvenliğinizi denetleyin", "Hardening and security guidance" : "Sağlamlaştırma ve güvenlik rehberliği", - "View in store" : "Mağazada görüntüle", "This app has an update available." : "Bu uygulama için bir güncelleme yayınlanmış.", "by %s" : "Yazar: %s", "%s-licensed" : "%s lisanslı", "Documentation:" : "Belgeler:", - "Admin documentation" : "Yönetici belgeleri", - "Report a bug" : "Hata bildirin", "Show description …" : "Açıklama görüntülensin ...", "Hide description …" : "Açıklama gizlensin ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "Enable only for specific groups" : "Yalnız belirli gruplar için etkinleştir", "Online documentation" : "Çevrimiçi belgeler", "Getting help" : "Yardım alın", @@ -434,8 +460,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "Bültenimize abone olun!", "Settings" : "Ayarlar", "Show storage location" : "Depolama konumu görüntülensin", - "Show user backend" : "Kullanıcı arka ucu görüntülensin", - "Show last login" : "Son oturum açma zamanı görüntülensin", "Show email address" : "E-posta adresi görüntülensin", "Send email to new user" : "Yeni kullanıcıya e-posta gönderilsin", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Yeni kullanıcının parolası boş bırakıldığında, kullanıcıya parola ayarlama bağlantısını içeren bir ektinleştirme e-postası gönderilir.", @@ -447,9 +471,6 @@ OC.L10N.register( "Disabled" : "Devre Dışı", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Lütfen depolama kotasını yazın (örnek: \"512MB\" ya da \"12 GB\")", "Other" : "Diğer", - "Quota" : "Kota", - "Storage location" : "Depolama konumu", - "Last login" : "Son oturum açma", "change full name" : "tam adı değiştir", "set new password" : "yeni parola belirle", "change email address" : "e-posta adresini değiştir", diff --git a/settings/l10n/tr.json b/settings/l10n/tr.json index 66c38ae9847..554397ecb2c 100644 --- a/settings/l10n/tr.json +++ b/settings/l10n/tr.json @@ -112,48 +112,82 @@ "Two-factor authentication can be enforced for all\tusers and specific groups. If they do not have a two-factor provider configured, they will be unable to log into the system." : "Tüm kullanıcılar ve belirli gruplar için iki aşamalı\tkimlik doğrulama kullanılır. Yapılandırılmış bir iki aşamalı kimlik doğrulama hizmeti sağlayıcısı olmayan kullanıcılar oturum açamaz.", "Enforce two-factor authentication" : "İki aşamalı kimlik doğrulama dayatılsın", "Limit to groups" : "Şu gruplarla sınırla", + "Enforcement of two-factor authentication can be set for certain groups only." : "İki aşamalı kimlik doğrulaması yalnız belirli gruplara dayatılabilir.", + "Two-factor authentication is enforced for all\tmembers of the following groups." : "İki aşamalı kimlik doğrulaması şu grupların tüm üyelerine dayatılır.", + "Enforced groups" : "Dayatılan gruplar", "Two-factor authentication is not enforced for\tmembers of the following groups." : "Şu grupların üyeleri için iki aşamalı kimlik doğrulaması\tdayatılmaz.", + "Excluded groups" : "Dayatılmayan gruplar", + "Save changes" : "Değişiklikleri kaydet", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Resmi uygulamalar topluluk tarafından geliştirilmiştir. Merkezi işlevleri yerine getirdikleri gibi kullanıma da hazırdırlar.", "Official" : "Resmi", + "by" : "Kişi:", + "Update to {version}" : "{version} sürümüne güncelle", + "Remove" : "Kaldır", + "Disable" : "Devre Dışı Bırak", + "All" : "Tümü", + "Limit app usage to groups" : "Uygulama kullanımını şu gruplarla sınırla", "No results" : "Herhangi bir sonuç bulunamadı", + "View in store" : "Mağazada görüntüle", "Visit website" : "Web sayfasına bakın", + "Report a bug" : "Hata bildirin", "User documentation" : "Kullanıcı belgeleri", + "Admin documentation" : "Yönetici belgeleri", "Developer documentation" : "Geliştirici belgeleri", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en düşük Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "This app cannot be installed because the following dependencies are not fulfilled:" : "Aşağıdaki bağımlılıklar sağlanmadığından bu uygulama kurulamıyor:", - "{license}-licensed" : "{license}-lisanslı", + "Update to {update}" : "{update} sürümüne güncelle", + "Results from other categories" : "Diğer kategorilerden sonuçlar", + "No apps found for your version" : "Sürümünüze uygun bir uygulama bulunamadı", "Disable all" : "Tümünü devre dışı bırak", "Enable all" : "Tümünü Etkinleştir", "Download and enable" : "İndir ve etkinleştir", "Enable" : "Etkinleştir", "The app will be downloaded from the app store" : "Uygulama uygulama mağazasından indirilecek", "You do not have permissions to see the details of this user" : "Bu kullanıcının ayrıntılarını görüntüleme izniniz yok", + "The backend does not support changing the display name" : "Yönetim bölümünden görüntülenecek ad değiştirilemiyor", + "New password" : "Yeni parola", + "Add user in group" : "Gruba kullanıcı ekle", + "Set user as admin for" : "Kullanıcıyı şurada yönetici yap", + "Select user quota" : "Kullanıcı kotasını seçin", + "No language set" : "Herhangi bir dil ayarlanmamış", + "Never" : "Asla", "Delete user" : "Kullanıcıyı Sil", "Disable user" : "Kullanıcıyı devre dışı bırak", "Enable user" : "Kullanıcıyı etkinleştir", "Resend welcome email" : "Karşılama e-postasını yeniden gönder", "{size} used" : "{size} kullanılmış", "Welcome mail sent!" : "Karşılama e-postası gönderildi!", + "Username" : "Kullanıcı Adı", "Display name" : "Görüntülenecek ad", + "Password" : "Parola", "Email" : "E-posta", "Group admin for" : "Şunun grup yöneticisi", + "Quota" : "Kota", "Language" : "Dil", + "Storage location" : "Depolama konumu", "User backend" : "Kullanıcı Arka Ucu", + "Last login" : "Son oturum açma", + "Default language" : "Varsayılan dil", + "Add a new user" : "Kullanıcı ekle", + "No users in here" : "Henüz herhangi bir kullanıcı eklenmemiş", "Unlimited" : "Sınırsız", "Default quota" : "Varsayılan kota", - "Default language" : "Varsayılan dil", "Password change is disabled because the master key is disabled" : "Ana anahtar devre dışı bırakıldığından parola değişikliği devre dışı bırakıldı.", "Common languages" : "Sık kullanılan diller", "All languages" : "Tüm diller", - "An error occured during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Uygulama etkinleştirilmiş fakat güncellenmesi gerekiyor. 5 saniye içinde güncelleme sayfasına yönlendirileceksiniz.", - "App update" : "Uygulama güncellemesi", - "Error: This app can not be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", "Your apps" : "Uygulamalarınız", "Active apps" : "Etkin uygulamalar", "Disabled apps" : "Devre Dışı Uygulamalar", "Updates" : "Güncellemeler", "App bundles" : "Uygulama Paketleri", + "{license}-licensed" : "{license}-lisanslı", "Default quota:" : "Varsayılan kota:", + "Select default quota" : "Varsayılan kota değerini seçin", + "Show Languages" : "Dilleri Görüntüle", + "Show last login" : "Son oturum açma zamanı görüntülensin", + "Show user backend" : "Kullanıcı arka ucu görüntülensin", + "Show storage path" : "Depolama yolu görüntülensin", "You are about to remove the group {group}. The users will NOT be deleted." : "{group} grubunu silmek üzeresiniz. Kullanıcılar SİLİNMEYECEK.", "Please confirm the group removal " : "Grubu silme işlemini onaylayın", "Remove group" : "Grubu Sil", @@ -162,6 +196,10 @@ "Everyone" : "Herkes", "Add group" : "Grup ekle", "New user" : "Yeni kullanıcı", + "An error occured during the request. Unable to proceed." : "İstek sırasında bir sorun çıktı. İşlem sürdürülemiyor.", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "Uygulama etkinleştirilmiş fakat güncellenmesi gerekiyor. 5 saniye içinde güncelleme sayfasına yönlendirileceksiniz.", + "App update" : "Uygulama güncellemesi", + "Error: This app can not be enabled because it makes the server unstable" : "Hata: Bu uygulama sunucuda kararsızlığa yol açtığından etkinleştirilemez", "SSL Root Certificates" : "SSL Kök Sertifikaları", "Common Name" : "Ortak Ad", "Valid until" : "Geçerlilik", @@ -286,9 +324,7 @@ "Twitter handle @…" : "Twitter kodu @…", "Help translate" : "Çeviriye yardım edin", "Locale" : "Yerel Ayar", - "Password" : "Parola", "Current password" : "Geçerli parola", - "New password" : "Yeni parola", "Change password" : "Parola değiştir", "Devices & sessions" : "Aygıt ve oturumlar", "Web, desktop and mobile clients currently logged in to your account." : "Şu anda hesabınıza oturum açmış web, masaüstü ve mobil istemciler.", @@ -298,7 +334,6 @@ "Create new app password" : "Yeni uygulama parolası oluştur", "Use the credentials below to configure your app or device." : "Uygulama ya da aygıtınızı yapılandırmak için aşağıdaki kimlik doğrulama bilgileri kullanılır.", "For security reasons this password will only be shown once." : "Güvenlik nedenleriyle bu parola yalnız bir kez görüntülenir.", - "Username" : "Kullanıcı Adı", "Done" : "Tamam", "Enabled apps" : "Etkinleştirilmiş Uygulamalar", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL eski bir %s sürümü kullanıyor (%s). Lütfen işletim sisteminizi güncelleyin, yoksa %s gibi özellikler düzgün çalışmaz.", @@ -323,16 +358,12 @@ "Password confirmation is required" : "Parola onayının yazılması zorunludur", "Are you really sure you want add {domain} as trusted domain?" : "{domain} etki alanını güvenilir etki alanı olarak eklemek istediğinize emin misiniz?", "Add trusted domain" : "Güvenilir etki alanı ekle", - "All" : "Tümü", "Update to %s" : "%s sürümüne güncelle", "_You have %n app update pending_::_You have %n app updates pending_" : ["Güncellenmeyi bekleyen %n uygulama var","Güncellenmeyi bekleyen %n uygulama var"], - "No apps found for your version" : "Sürümünüze uygun bir uygulama bulunamadı", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "Resmi uygulamalar topluluk tarafından geliştirilmiştir. Merkezi işlevleri yerine getirdikleri gibi kullanıma da hazırdırlar.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Onaylanmış uygulamalar güvenilir geliştiriciler tarafından hazırlanmış ve ayrıntılı olmayan bir güvenlik denetiminden geçirilmiştir. Bu uygulamalar açık kaynak kod deposunda bulunur ve normal kullanım için kararlı oldukları varsayılır.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Bu uygulama güvenlik denetiminden geçirilmemiş ve yeni ya da kararsız olarak biliniyor. Kurulmasından doğabilecek riskler size aittir.", "Disabling app …" : "Uygulama devre dışı bırakılıyor ...", "Error while disabling app" : "Uygulama devre dışı bırakılırken sorun çıktı", - "Disable" : "Devre Dışı Bırak", "Enabling app …" : "Uygulama etkinleştiriliyor...", "Error while enabling app" : "Uygulama etkinleştirilirken sorun çıktı", "Error: Could not disable broken app" : "Hata: Bozuk uygulama devre dışı bırakılamadı", @@ -342,7 +373,6 @@ "Updated" : "Güncellendi", "Removing …" : "Kaldırılıyor...", "Error while removing app" : "Uygulama kaldırılırken sorun çıktı", - "Remove" : "Kaldır", "Approved" : "Onaylanmış", "Experimental" : "Deneysel", "No apps found for {query}" : "{query} aramasına uyan bir uygulama bulunamadı", @@ -399,16 +429,12 @@ "Theming" : "Tema uygulama", "Check the security of your Nextcloud over our security scan" : "Güvenlik sınamamızdan geçirerek Nextcloud güvenliğinizi denetleyin", "Hardening and security guidance" : "Sağlamlaştırma ve güvenlik rehberliği", - "View in store" : "Mağazada görüntüle", "This app has an update available." : "Bu uygulama için bir güncelleme yayınlanmış.", "by %s" : "Yazar: %s", "%s-licensed" : "%s lisanslı", "Documentation:" : "Belgeler:", - "Admin documentation" : "Yönetici belgeleri", - "Report a bug" : "Hata bildirin", "Show description …" : "Açıklama görüntülensin ...", "Hide description …" : "Açıklama gizlensin ...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "Bu uygulama için en yüksek Nextcloud sürümü belirtilmemiş. Bu durum ileride sorun çıkarır.", "Enable only for specific groups" : "Yalnız belirli gruplar için etkinleştir", "Online documentation" : "Çevrimiçi belgeler", "Getting help" : "Yardım alın", @@ -432,8 +458,6 @@ "Subscribe to our newsletter!" : "Bültenimize abone olun!", "Settings" : "Ayarlar", "Show storage location" : "Depolama konumu görüntülensin", - "Show user backend" : "Kullanıcı arka ucu görüntülensin", - "Show last login" : "Son oturum açma zamanı görüntülensin", "Show email address" : "E-posta adresi görüntülensin", "Send email to new user" : "Yeni kullanıcıya e-posta gönderilsin", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "Yeni kullanıcının parolası boş bırakıldığında, kullanıcıya parola ayarlama bağlantısını içeren bir ektinleştirme e-postası gönderilir.", @@ -445,9 +469,6 @@ "Disabled" : "Devre Dışı", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Lütfen depolama kotasını yazın (örnek: \"512MB\" ya da \"12 GB\")", "Other" : "Diğer", - "Quota" : "Kota", - "Storage location" : "Depolama konumu", - "Last login" : "Son oturum açma", "change full name" : "tam adı değiştir", "set new password" : "yeni parola belirle", "change email address" : "e-posta adresini değiştir", diff --git a/settings/l10n/ug.js b/settings/l10n/ug.js index 04fe0bfd1db..f3ee062ff5b 100644 --- a/settings/l10n/ug.js +++ b/settings/l10n/ug.js @@ -5,7 +5,12 @@ OC.L10N.register( "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", "Delete" : "ئۆچۈر", "Groups" : "گۇرۇپپا", + "Disable" : "چەكلە", + "All" : "ھەممىسى", "Enable" : "قوزغات", + "New password" : "يېڭى ئىم", + "Username" : "ئىشلەتكۈچى ئاتى", + "Password" : "ئىم", "Email" : "تورخەت", "Language" : "تىل", "Unlimited" : "چەكسىز", @@ -20,14 +25,9 @@ OC.L10N.register( "Cancel" : "ۋاز كەچ", "Your email address" : "تورخەت ئادرېسىڭىز", "Help translate" : "تەرجىمىگە ياردەم", - "Password" : "ئىم", "Current password" : "نۆۋەتتىكى ئىم", - "New password" : "يېڭى ئىم", "Change password" : "ئىم ئۆزگەرت", - "Username" : "ئىشلەتكۈچى ئاتى", "Email saved" : "تورخەت ساقلاندى", - "All" : "ھەممىسى", - "Disable" : "چەكلە", "Updated" : "يېڭىلاندى", "undo" : "يېنىۋال", "never" : "ھەرگىز", diff --git a/settings/l10n/ug.json b/settings/l10n/ug.json index c92ab9450c2..a8f78566b6c 100644 --- a/settings/l10n/ug.json +++ b/settings/l10n/ug.json @@ -3,7 +3,12 @@ "Authentication error" : "سالاھىيەت دەلىللەش خاتالىقى", "Delete" : "ئۆچۈر", "Groups" : "گۇرۇپپا", + "Disable" : "چەكلە", + "All" : "ھەممىسى", "Enable" : "قوزغات", + "New password" : "يېڭى ئىم", + "Username" : "ئىشلەتكۈچى ئاتى", + "Password" : "ئىم", "Email" : "تورخەت", "Language" : "تىل", "Unlimited" : "چەكسىز", @@ -18,14 +23,9 @@ "Cancel" : "ۋاز كەچ", "Your email address" : "تورخەت ئادرېسىڭىز", "Help translate" : "تەرجىمىگە ياردەم", - "Password" : "ئىم", "Current password" : "نۆۋەتتىكى ئىم", - "New password" : "يېڭى ئىم", "Change password" : "ئىم ئۆزگەرت", - "Username" : "ئىشلەتكۈچى ئاتى", "Email saved" : "تورخەت ساقلاندى", - "All" : "ھەممىسى", - "Disable" : "چەكلە", "Updated" : "يېڭىلاندى", "undo" : "يېنىۋال", "never" : "ھەرگىز", diff --git a/settings/l10n/uk.js b/settings/l10n/uk.js index d2a7e7e97c1..38c7ebe1af1 100644 --- a/settings/l10n/uk.js +++ b/settings/l10n/uk.js @@ -37,13 +37,22 @@ OC.L10N.register( "Select a profile picture" : "Обрати зображення облікового запису", "Groups" : "Групи", "Official" : "Офіційні", + "Disable" : "Вимкнути", + "All" : "Всі", "User documentation" : "Користувацька документація", + "Admin documentation" : "Документація адміністратора", "Developer documentation" : "Документація для розробників", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ця програма не може бути встановлено, так як наступні залежності не будуть виконані:", + "No apps found for your version" : "Немає застосунків для вашої версії", "Enable" : "Увімкнути", + "New password" : "Новий пароль", + "Username" : "Ім'я користувача", + "Password" : "Пароль", "Email" : "E-mail", + "Quota" : "Квота", "Language" : "Мова", "Unlimited" : "Необмежено", + "Show user backend" : "Показати користувача", "Admins" : "Адміністратори", "Everyone" : "Всі", "Common Name" : "Ім'я:", @@ -109,11 +118,8 @@ OC.L10N.register( "Your phone number" : "Ваш номер телефону", "Address" : "Адреса", "Help translate" : "Допомогти з перекладом", - "Password" : "Пароль", "Current password" : "Поточний пароль", - "New password" : "Новий пароль", "Change password" : "Змінити пароль", - "Username" : "Ім'я користувача", "Done" : "Готово", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL використовує застарілу версію %s (%s). Будь ласка, поновіть вашу операційну систему або функції, такі як %s не працюватимуть надійно.", "A problem occurred, please check your log files (Error: %s)" : "Виникла проблема, будь ласка, перевірте свої файли журналів (Помилка: %s)", @@ -130,13 +136,10 @@ OC.L10N.register( "Unable to change mail address" : "Неможливо поміняти email адресу", "Email saved" : "Адресу збережено", "Add trusted domain" : "Додати довірений домен", - "All" : "Всі", "Update to %s" : "Оновити до %s", - "No apps found for your version" : "Немає застосунків для вашої версії", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Схвалені додатки розроблені довіреними розробниками і пройшли незалежну перевірку безпеки. Їх активно супроводжують у репозиторії з відкритим кодом, а їх розробники стежать, щоб вони були стабільні й прийнятні для повсякденного використання.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ця програма не перевірена на вразливості безпеки і є новою або нестабільною. Встановлюйте її на власний ризик.", "Error while disabling app" : "Помилка вимикання додатка", - "Disable" : "Вимкнути", "Error while enabling app" : "Помилка вмикання додатка", "Updated" : "Оновлено", "Approved" : "Схвалені", @@ -161,7 +164,6 @@ OC.L10N.register( "Theming" : "Оформлення", "Hardening and security guidance" : "Інструктування з безпеки та захисту", "Documentation:" : "Документація:", - "Admin documentation" : "Документація адміністратора", "Show description …" : "Показати деталі ...", "Hide description …" : "Сховати деталі ...", "Enable only for specific groups" : "Включити тільки для конкретних груп", @@ -171,7 +173,6 @@ OC.L10N.register( "You are member of the following groups:" : "Ви є членом наступних груп:", "Settings" : "Налаштування", "Show storage location" : "Показати місцезнаходження сховища", - "Show user backend" : "Показати користувача", "Show email address" : "Показати адресу електронної пошти", "Send email to new user" : "Надіслати email новому користувачу", "E-Mail" : "Адреса електронної пошти", @@ -180,7 +181,6 @@ OC.L10N.register( "Enter the recovery password in order to recover the users files during password change" : "Введіть пароль для того, щоб відновити файли користувачів при зміні паролю", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Будь ласка, вкажіть розмір сховища (наприклад: \"512 MB\" або \"12 GB\")", "Other" : "Інше", - "Quota" : "Квота", "change full name" : "змінити ім'я", "set new password" : "встановити новий пароль", "change email address" : "Змінити адресу електронної пошти", diff --git a/settings/l10n/uk.json b/settings/l10n/uk.json index 8c08e08c076..e48bbb16b40 100644 --- a/settings/l10n/uk.json +++ b/settings/l10n/uk.json @@ -35,13 +35,22 @@ "Select a profile picture" : "Обрати зображення облікового запису", "Groups" : "Групи", "Official" : "Офіційні", + "Disable" : "Вимкнути", + "All" : "Всі", "User documentation" : "Користувацька документація", + "Admin documentation" : "Документація адміністратора", "Developer documentation" : "Документація для розробників", "This app cannot be installed because the following dependencies are not fulfilled:" : "Ця програма не може бути встановлено, так як наступні залежності не будуть виконані:", + "No apps found for your version" : "Немає застосунків для вашої версії", "Enable" : "Увімкнути", + "New password" : "Новий пароль", + "Username" : "Ім'я користувача", + "Password" : "Пароль", "Email" : "E-mail", + "Quota" : "Квота", "Language" : "Мова", "Unlimited" : "Необмежено", + "Show user backend" : "Показати користувача", "Admins" : "Адміністратори", "Everyone" : "Всі", "Common Name" : "Ім'я:", @@ -107,11 +116,8 @@ "Your phone number" : "Ваш номер телефону", "Address" : "Адреса", "Help translate" : "Допомогти з перекладом", - "Password" : "Пароль", "Current password" : "Поточний пароль", - "New password" : "Новий пароль", "Change password" : "Змінити пароль", - "Username" : "Ім'я користувача", "Done" : "Готово", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL використовує застарілу версію %s (%s). Будь ласка, поновіть вашу операційну систему або функції, такі як %s не працюватимуть надійно.", "A problem occurred, please check your log files (Error: %s)" : "Виникла проблема, будь ласка, перевірте свої файли журналів (Помилка: %s)", @@ -128,13 +134,10 @@ "Unable to change mail address" : "Неможливо поміняти email адресу", "Email saved" : "Адресу збережено", "Add trusted domain" : "Додати довірений домен", - "All" : "Всі", "Update to %s" : "Оновити до %s", - "No apps found for your version" : "Немає застосунків для вашої версії", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "Схвалені додатки розроблені довіреними розробниками і пройшли незалежну перевірку безпеки. Їх активно супроводжують у репозиторії з відкритим кодом, а їх розробники стежать, щоб вони були стабільні й прийнятні для повсякденного використання.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "Ця програма не перевірена на вразливості безпеки і є новою або нестабільною. Встановлюйте її на власний ризик.", "Error while disabling app" : "Помилка вимикання додатка", - "Disable" : "Вимкнути", "Error while enabling app" : "Помилка вмикання додатка", "Updated" : "Оновлено", "Approved" : "Схвалені", @@ -159,7 +162,6 @@ "Theming" : "Оформлення", "Hardening and security guidance" : "Інструктування з безпеки та захисту", "Documentation:" : "Документація:", - "Admin documentation" : "Документація адміністратора", "Show description …" : "Показати деталі ...", "Hide description …" : "Сховати деталі ...", "Enable only for specific groups" : "Включити тільки для конкретних груп", @@ -169,7 +171,6 @@ "You are member of the following groups:" : "Ви є членом наступних груп:", "Settings" : "Налаштування", "Show storage location" : "Показати місцезнаходження сховища", - "Show user backend" : "Показати користувача", "Show email address" : "Показати адресу електронної пошти", "Send email to new user" : "Надіслати email новому користувачу", "E-Mail" : "Адреса електронної пошти", @@ -178,7 +179,6 @@ "Enter the recovery password in order to recover the users files during password change" : "Введіть пароль для того, щоб відновити файли користувачів при зміні паролю", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "Будь ласка, вкажіть розмір сховища (наприклад: \"512 MB\" або \"12 GB\")", "Other" : "Інше", - "Quota" : "Квота", "change full name" : "змінити ім'я", "set new password" : "встановити новий пароль", "change email address" : "Змінити адресу електронної пошти", diff --git a/settings/l10n/ur_PK.js b/settings/l10n/ur_PK.js index 16c538d317c..70d9548cc7c 100644 --- a/settings/l10n/ur_PK.js +++ b/settings/l10n/ur_PK.js @@ -8,10 +8,10 @@ OC.L10N.register( "So-so password" : "نص نص پاسورڈ", "Good password" : "اچھا پاسورڈ", "Strong password" : "مضبوط پاسورڈ", - "Cancel" : "منسوخ کریں", - "Password" : "پاسورڈ", "New password" : "نیا پاسورڈ", "Username" : "یوزر نیم", + "Password" : "پاسورڈ", + "Cancel" : "منسوخ کریں", "Other" : "دیگر" }, "nplurals=2; plural=(n != 1);"); diff --git a/settings/l10n/ur_PK.json b/settings/l10n/ur_PK.json index 3197594144f..78c882a33c8 100644 --- a/settings/l10n/ur_PK.json +++ b/settings/l10n/ur_PK.json @@ -6,10 +6,10 @@ "So-so password" : "نص نص پاسورڈ", "Good password" : "اچھا پاسورڈ", "Strong password" : "مضبوط پاسورڈ", - "Cancel" : "منسوخ کریں", - "Password" : "پاسورڈ", "New password" : "نیا پاسورڈ", "Username" : "یوزر نیم", + "Password" : "پاسورڈ", + "Cancel" : "منسوخ کریں", "Other" : "دیگر" },"pluralForm" :"nplurals=2; plural=(n != 1);" }
\ No newline at end of file diff --git a/settings/l10n/vi.js b/settings/l10n/vi.js index 5eb82f14892..d62bdd83d26 100644 --- a/settings/l10n/vi.js +++ b/settings/l10n/vi.js @@ -8,8 +8,14 @@ OC.L10N.register( "Email sent" : "Email đã được gửi", "Delete" : "Xóa", "Groups" : "Nhóm", + "Disable" : "Tắt", + "All" : "Tất cả", "Enable" : "Bật", + "New password" : "Mật khẩu mới", + "Username" : "Tên đăng nhập", + "Password" : "Mật khẩu", "Email" : "Email", + "Quota" : "Hạn ngạch", "Language" : "Ngôn ngữ", "Unlimited" : "Không giới hạn", "Forum" : "Diễn đàn", @@ -30,21 +36,15 @@ OC.L10N.register( "Cancel" : "Hủy", "Your email address" : "Email của bạn", "Help translate" : "Hỗ trợ dịch thuật", - "Password" : "Mật khẩu", "Current password" : "Mật khẩu cũ", - "New password" : "Mật khẩu mới", "Change password" : "Đổi mật khẩu", - "Username" : "Tên đăng nhập", "Your full name has been changed." : "Họ và tên đã được thay đổi.", "Email saved" : "Lưu email", - "All" : "Tất cả", - "Disable" : "Tắt", "Updated" : "Đã cập nhật", "undo" : "lùi lại", "never" : "không thay đổi", "Create" : "Tạo", "Other" : "Khác", - "Quota" : "Hạn ngạch", "change full name" : "Đổi họ và t", "set new password" : "đặt mật khẩu mới", "Default" : "Mặc định" diff --git a/settings/l10n/vi.json b/settings/l10n/vi.json index 60cd8287ef8..2e0e74cd756 100644 --- a/settings/l10n/vi.json +++ b/settings/l10n/vi.json @@ -6,8 +6,14 @@ "Email sent" : "Email đã được gửi", "Delete" : "Xóa", "Groups" : "Nhóm", + "Disable" : "Tắt", + "All" : "Tất cả", "Enable" : "Bật", + "New password" : "Mật khẩu mới", + "Username" : "Tên đăng nhập", + "Password" : "Mật khẩu", "Email" : "Email", + "Quota" : "Hạn ngạch", "Language" : "Ngôn ngữ", "Unlimited" : "Không giới hạn", "Forum" : "Diễn đàn", @@ -28,21 +34,15 @@ "Cancel" : "Hủy", "Your email address" : "Email của bạn", "Help translate" : "Hỗ trợ dịch thuật", - "Password" : "Mật khẩu", "Current password" : "Mật khẩu cũ", - "New password" : "Mật khẩu mới", "Change password" : "Đổi mật khẩu", - "Username" : "Tên đăng nhập", "Your full name has been changed." : "Họ và tên đã được thay đổi.", "Email saved" : "Lưu email", - "All" : "Tất cả", - "Disable" : "Tắt", "Updated" : "Đã cập nhật", "undo" : "lùi lại", "never" : "không thay đổi", "Create" : "Tạo", "Other" : "Khác", - "Quota" : "Hạn ngạch", "change full name" : "Đổi họ và t", "set new password" : "đặt mật khẩu mới", "Default" : "Mặc định" diff --git a/settings/l10n/zh_CN.js b/settings/l10n/zh_CN.js index 36c4559486a..e8f8cbd3548 100644 --- a/settings/l10n/zh_CN.js +++ b/settings/l10n/zh_CN.js @@ -106,50 +106,67 @@ OC.L10N.register( "Week starts on {fdow}" : "周开始于 {fdow}", "Groups" : "分组", "Limit to groups" : "限制于组", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方应用由社区和内部开发. 其可以提供核心功能并保证生产用途.", "Official" : "官方", + "Remove" : "移除", + "Disable" : "禁用", + "All" : "全部", "No results" : "没有结果", + "View in store" : "在商店中查看", "Visit website" : "访问网站", + "Report a bug" : "报告问题", "User documentation" : "用户文档", + "Admin documentation" : "管理员文档", "Developer documentation" : "开发者文档", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本. 可能会在将来出现问题.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本. 可能会在将来出现问题.", "This app cannot be installed because the following dependencies are not fulfilled:" : "无法安装应用, 因为无法满足下列依赖: ", + "No apps found for your version" : "未找到适合当前版本的应用", "Disable all" : "禁用全部", "Enable all" : "启用所有", "Download and enable" : "下载并启用", "Enable" : "启用", "The app will be downloaded from the app store" : "该应用将从应用商店下载", "You do not have permissions to see the details of this user" : "您没有权限查看该用户的详细信息", + "New password" : "新密码", "Delete user" : "删除用户", "Disable user" : "禁用用户", "Enable user" : "启用用户", "Resend welcome email" : "重新发送欢迎邮件", "{size} used" : "{size} 已使用", "Welcome mail sent!" : "欢迎邮件已经发送!", + "Username" : "用户名", "Display name" : "显示名称", + "Password" : "密码", "Email" : "电子邮件", "Group admin for" : "分组管理员", + "Quota" : "配额", "Language" : "语言", + "Storage location" : "存储位置", "User backend" : "用户来源", + "Last login" : "最后登录", + "Default language" : "默认语言", "Unlimited" : "无限", "Default quota" : "默认配额", - "Default language" : "默认语言", "All languages" : "所有语言", - "An error occured during the request. Unable to proceed." : "请求期间发生错误。 无法继续。", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", - "App update" : "更新应用", - "Error: This app can not be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", "Your apps" : "你的应用", "Active apps" : "已启用的应用", "Disabled apps" : "已禁用的应用", "Updates" : "更新", "App bundles" : "应用软件包", "Default quota:" : "默认配额:", + "Show last login" : "显示最后登录", + "Show user backend" : "显示用户来源", "Remove group" : "删除分组", "Admins" : "管理员", "Disabled users" : "已禁用的用户", "Everyone" : "所有人", "Add group" : "添加分组", "New user" : "新建用户", + "An error occured during the request. Unable to proceed." : "请求期间发生错误。 无法继续。", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", + "App update" : "更新应用", + "Error: This app can not be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", "SSL Root Certificates" : "SSL 根证书", "Common Name" : "通用名称", "Valid until" : "有效期至", @@ -269,9 +286,7 @@ OC.L10N.register( "Twitter handle @…" : "推特用户名@…", "Help translate" : "帮助翻译", "Locale" : "本地", - "Password" : "密码", "Current password" : "当前密码", - "New password" : "新密码", "Change password" : "修改密码", "Devices & sessions" : "设备和活动链接", "Web, desktop and mobile clients currently logged in to your account." : "您账号当前登录的 Web 页面, 桌面和客户端客户端.", @@ -281,7 +296,6 @@ OC.L10N.register( "Create new app password" : "创建新应用密码", "Use the credentials below to configure your app or device." : "使用下述凭据配置您的应用或设备.", "For security reasons this password will only be shown once." : "由于安全原因, 密码仅会显示一次.", - "Username" : "用户名", "Done" : "完成", "Enabled apps" : "启用应用", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 当前使用的过时 %s 的版本 (%s). 请更新你的操作系统或组件, 例如 %s 将无法可靠地工作.", @@ -306,16 +320,12 @@ OC.L10N.register( "Password confirmation is required" : "需要密码确认", "Are you really sure you want add {domain} as trusted domain?" : "您确定将 {domain} 添加为信任的域名么?", "Add trusted domain" : "添加信任域名", - "All" : "全部", "Update to %s" : "更新为 %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 个应用正在等待升级"], - "No apps found for your version" : "未找到适合当前版本的应用", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方应用由社区和内部开发. 其可以提供核心功能并保证生产用途.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "认证应用由值得信赖的开发者开发, 并通过了一个粗略的安全检查. 其在开放的代码库中活跃地维护, 他们的维护者认为在普通用途足够稳定.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "此应用没有检查安全问题, 它是新的或已知不稳定的. 安装风险自担.", "Disabling app …" : "禁用应用程序...", "Error while disabling app" : "禁用应用时出错", - "Disable" : "禁用", "Enabling app …" : "正在启用应用程序...", "Error while enabling app" : "启用应用时出错", "Error: Could not disable broken app" : "错误: 无法禁用损坏的应用", @@ -325,7 +335,6 @@ OC.L10N.register( "Updated" : "已更新", "Removing …" : "正在移除...", "Error while removing app" : "移除应用时出错", - "Remove" : "移除", "Approved" : "已认证", "Experimental" : "实验", "No apps found for {query}" : "找不到符合 {query} 的应用", @@ -368,16 +377,12 @@ OC.L10N.register( "Theming" : "主题", "Check the security of your Nextcloud over our security scan" : "通过我们的安全扫描来检查Nextcloud的安全性", "Hardening and security guidance" : "强化和安全指南", - "View in store" : "在商店中查看", "This app has an update available." : "此应用有可用的更新.", "by %s" : "由 %s", "%s-licensed" : "%s-许可协议", "Documentation:" : "文档:", - "Admin documentation" : "管理员文档", - "Report a bug" : "报告问题", "Show description …" : "显示描述...", "Hide description …" : "隐藏描述...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本. 可能会在将来出现问题.", "Enable only for specific groups" : "仅特定组启用", "Online documentation" : "在线文档", "Getting help" : "获取帮助", @@ -398,8 +403,6 @@ OC.L10N.register( "Subscribe to our newsletter!" : "订阅我们的最新消息!", "Settings" : "设置", "Show storage location" : "显示存储位置", - "Show user backend" : "显示用户来源", - "Show last login" : "显示最后登录", "Show email address" : "显示邮件地址", "Send email to new user" : "发送电子邮件给新用户", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "当新用户密码为空时, 一个需要设置密码的激活邮件将会发送给用户.", @@ -411,9 +414,6 @@ OC.L10N.register( "Disabled" : "禁用", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "请输入存储配额 (例如: \"512 MB\" 或 \"12 GB\")", "Other" : "其它", - "Quota" : "配额", - "Storage location" : "存储位置", - "Last login" : "最后登录", "change full name" : "更改全名", "set new password" : "设置新密码", "change email address" : "修改电子邮箱地址", diff --git a/settings/l10n/zh_CN.json b/settings/l10n/zh_CN.json index 8ba1ae63864..511797895d9 100644 --- a/settings/l10n/zh_CN.json +++ b/settings/l10n/zh_CN.json @@ -104,50 +104,67 @@ "Week starts on {fdow}" : "周开始于 {fdow}", "Groups" : "分组", "Limit to groups" : "限制于组", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方应用由社区和内部开发. 其可以提供核心功能并保证生产用途.", "Official" : "官方", + "Remove" : "移除", + "Disable" : "禁用", + "All" : "全部", "No results" : "没有结果", + "View in store" : "在商店中查看", "Visit website" : "访问网站", + "Report a bug" : "报告问题", "User documentation" : "用户文档", + "Admin documentation" : "管理员文档", "Developer documentation" : "开发者文档", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最低版本. 可能会在将来出现问题.", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本. 可能会在将来出现问题.", "This app cannot be installed because the following dependencies are not fulfilled:" : "无法安装应用, 因为无法满足下列依赖: ", + "No apps found for your version" : "未找到适合当前版本的应用", "Disable all" : "禁用全部", "Enable all" : "启用所有", "Download and enable" : "下载并启用", "Enable" : "启用", "The app will be downloaded from the app store" : "该应用将从应用商店下载", "You do not have permissions to see the details of this user" : "您没有权限查看该用户的详细信息", + "New password" : "新密码", "Delete user" : "删除用户", "Disable user" : "禁用用户", "Enable user" : "启用用户", "Resend welcome email" : "重新发送欢迎邮件", "{size} used" : "{size} 已使用", "Welcome mail sent!" : "欢迎邮件已经发送!", + "Username" : "用户名", "Display name" : "显示名称", + "Password" : "密码", "Email" : "电子邮件", "Group admin for" : "分组管理员", + "Quota" : "配额", "Language" : "语言", + "Storage location" : "存储位置", "User backend" : "用户来源", + "Last login" : "最后登录", + "Default language" : "默认语言", "Unlimited" : "无限", "Default quota" : "默认配额", - "Default language" : "默认语言", "All languages" : "所有语言", - "An error occured during the request. Unable to proceed." : "请求期间发生错误。 无法继续。", - "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", - "App update" : "更新应用", - "Error: This app can not be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", "Your apps" : "你的应用", "Active apps" : "已启用的应用", "Disabled apps" : "已禁用的应用", "Updates" : "更新", "App bundles" : "应用软件包", "Default quota:" : "默认配额:", + "Show last login" : "显示最后登录", + "Show user backend" : "显示用户来源", "Remove group" : "删除分组", "Admins" : "管理员", "Disabled users" : "已禁用的用户", "Everyone" : "所有人", "Add group" : "添加分组", "New user" : "新建用户", + "An error occured during the request. Unable to proceed." : "请求期间发生错误。 无法继续。", + "The app has been enabled but needs to be updated. You will be redirected to the update page in 5 seconds." : "该应用已启用, 但是需要更新. 5秒后将跳转到更新页面.", + "App update" : "更新应用", + "Error: This app can not be enabled because it makes the server unstable" : "错误: 无法启用应用因为它会导致服务器不稳定", "SSL Root Certificates" : "SSL 根证书", "Common Name" : "通用名称", "Valid until" : "有效期至", @@ -267,9 +284,7 @@ "Twitter handle @…" : "推特用户名@…", "Help translate" : "帮助翻译", "Locale" : "本地", - "Password" : "密码", "Current password" : "当前密码", - "New password" : "新密码", "Change password" : "修改密码", "Devices & sessions" : "设备和活动链接", "Web, desktop and mobile clients currently logged in to your account." : "您账号当前登录的 Web 页面, 桌面和客户端客户端.", @@ -279,7 +294,6 @@ "Create new app password" : "创建新应用密码", "Use the credentials below to configure your app or device." : "使用下述凭据配置您的应用或设备.", "For security reasons this password will only be shown once." : "由于安全原因, 密码仅会显示一次.", - "Username" : "用户名", "Done" : "完成", "Enabled apps" : "启用应用", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 当前使用的过时 %s 的版本 (%s). 请更新你的操作系统或组件, 例如 %s 将无法可靠地工作.", @@ -304,16 +318,12 @@ "Password confirmation is required" : "需要密码确认", "Are you really sure you want add {domain} as trusted domain?" : "您确定将 {domain} 添加为信任的域名么?", "Add trusted domain" : "添加信任域名", - "All" : "全部", "Update to %s" : "更新为 %s", "_You have %n app update pending_::_You have %n app updates pending_" : ["%n 个应用正在等待升级"], - "No apps found for your version" : "未找到适合当前版本的应用", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方应用由社区和内部开发. 其可以提供核心功能并保证生产用途.", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "认证应用由值得信赖的开发者开发, 并通过了一个粗略的安全检查. 其在开放的代码库中活跃地维护, 他们的维护者认为在普通用途足够稳定.", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "此应用没有检查安全问题, 它是新的或已知不稳定的. 安装风险自担.", "Disabling app …" : "禁用应用程序...", "Error while disabling app" : "禁用应用时出错", - "Disable" : "禁用", "Enabling app …" : "正在启用应用程序...", "Error while enabling app" : "启用应用时出错", "Error: Could not disable broken app" : "错误: 无法禁用损坏的应用", @@ -323,7 +333,6 @@ "Updated" : "已更新", "Removing …" : "正在移除...", "Error while removing app" : "移除应用时出错", - "Remove" : "移除", "Approved" : "已认证", "Experimental" : "实验", "No apps found for {query}" : "找不到符合 {query} 的应用", @@ -366,16 +375,12 @@ "Theming" : "主题", "Check the security of your Nextcloud over our security scan" : "通过我们的安全扫描来检查Nextcloud的安全性", "Hardening and security guidance" : "强化和安全指南", - "View in store" : "在商店中查看", "This app has an update available." : "此应用有可用的更新.", "by %s" : "由 %s", "%s-licensed" : "%s-许可协议", "Documentation:" : "文档:", - "Admin documentation" : "管理员文档", - "Report a bug" : "报告问题", "Show description …" : "显示描述...", "Hide description …" : "隐藏描述...", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "该应用没有指定支持的 Nextcloud 最高版本. 可能会在将来出现问题.", "Enable only for specific groups" : "仅特定组启用", "Online documentation" : "在线文档", "Getting help" : "获取帮助", @@ -396,8 +401,6 @@ "Subscribe to our newsletter!" : "订阅我们的最新消息!", "Settings" : "设置", "Show storage location" : "显示存储位置", - "Show user backend" : "显示用户来源", - "Show last login" : "显示最后登录", "Show email address" : "显示邮件地址", "Send email to new user" : "发送电子邮件给新用户", "When the password of a new user is left empty, an activation email with a link to set the password is sent." : "当新用户密码为空时, 一个需要设置密码的激活邮件将会发送给用户.", @@ -409,9 +412,6 @@ "Disabled" : "禁用", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "请输入存储配额 (例如: \"512 MB\" 或 \"12 GB\")", "Other" : "其它", - "Quota" : "配额", - "Storage location" : "存储位置", - "Last login" : "最后登录", "change full name" : "更改全名", "set new password" : "设置新密码", "change email address" : "修改电子邮箱地址", diff --git a/settings/l10n/zh_HK.js b/settings/l10n/zh_HK.js index 78f74da95cd..c54cc9aac67 100644 --- a/settings/l10n/zh_HK.js +++ b/settings/l10n/zh_HK.js @@ -6,7 +6,12 @@ OC.L10N.register( "Email sent" : "郵件已傳", "Delete" : "刪除", "Groups" : "群組", + "Disable" : "停用", + "All" : "所有", "Enable" : "啟用", + "New password" : "新密碼", + "Username" : "用戶名稱", + "Password" : "密碼", "Email" : "電郵", "Language" : "語言", "Unlimited" : "無限", @@ -26,12 +31,7 @@ OC.L10N.register( "Cancel" : "取消", "Your email address" : "你的電郵地址", "Help translate" : "幫忙翻譯", - "Password" : "密碼", - "New password" : "新密碼", "Change password" : "更改密碼", - "Username" : "用戶名稱", - "All" : "所有", - "Disable" : "停用", "Updated" : "已更新", "undo" : "復原", "Create" : "新增", diff --git a/settings/l10n/zh_HK.json b/settings/l10n/zh_HK.json index 3c4d4d25de7..7b3f3dbccab 100644 --- a/settings/l10n/zh_HK.json +++ b/settings/l10n/zh_HK.json @@ -4,7 +4,12 @@ "Email sent" : "郵件已傳", "Delete" : "刪除", "Groups" : "群組", + "Disable" : "停用", + "All" : "所有", "Enable" : "啟用", + "New password" : "新密碼", + "Username" : "用戶名稱", + "Password" : "密碼", "Email" : "電郵", "Language" : "語言", "Unlimited" : "無限", @@ -24,12 +29,7 @@ "Cancel" : "取消", "Your email address" : "你的電郵地址", "Help translate" : "幫忙翻譯", - "Password" : "密碼", - "New password" : "新密碼", "Change password" : "更改密碼", - "Username" : "用戶名稱", - "All" : "所有", - "Disable" : "停用", "Updated" : "已更新", "undo" : "復原", "Create" : "新增", diff --git a/settings/l10n/zh_TW.js b/settings/l10n/zh_TW.js index ab7f65a0f83..a9e3bf84bec 100644 --- a/settings/l10n/zh_TW.js +++ b/settings/l10n/zh_TW.js @@ -105,30 +105,46 @@ OC.L10N.register( "Select a profile picture" : "選擇大頭貼照", "Groups" : "群組", "Limit to groups" : "限制給特定群組", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方應用程序是由社區內部和內部開發的。 它們提供核心功能,並可在正式成品使用。", "Official" : "官方", + "Remove" : "移除", + "Disable" : "停用", + "All" : "所有", + "View in store" : "在商店中檢視", "Visit website" : "開啟網站", + "Report a bug" : "回報問題", "User documentation" : "用戶說明文件", + "Admin documentation" : "管理者文件", "Developer documentation" : "開發者說明文件", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最低的Nextcloud版本,未來將會產生問題。", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最高的Nextcloud版本,未來將會產生問題。", "This app cannot be installed because the following dependencies are not fulfilled:" : "這個應用程式無法被安裝,因為欠缺下列相依套件:", + "No apps found for your version" : "沒有找到適合您的版本的應用程式", "Enable all" : "全部啟用", "Enable" : "啟用", "The app will be downloaded from the app store" : "將會從應用程式商店下載這個應用程式", + "New password" : "新密碼", "{size} used" : "{size} 已使用", + "Username" : "使用者名稱", + "Password" : "密碼", "Email" : "信箱", "Group admin for" : "群組管理員", + "Quota" : "容量限制", "Language" : "語言", + "Storage location" : "儲存位址", "User backend" : "使用者資料後端", "Unlimited" : "無限制", "Default quota" : "預設儲存容量限制", - "Error: This app can not be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", "Your apps" : "您的應用程式", "Disabled apps" : "已停用應用程式", "Updates" : "更新", "App bundles" : "應用程式套裝", + "Show last login" : "顯示上次登入時間", + "Show user backend" : "顯示使用者資料後端", "Admins" : "管理者", "Everyone" : "所有人", "Add group" : "新增群組", + "Error: This app can not be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", "SSL Root Certificates" : "SSL 根憑證", "Common Name" : "Common Name", "Valid until" : "到期日", @@ -236,9 +252,7 @@ OC.L10N.register( "Twitter" : "Twitter", "Twitter handle @…" : "Twitter 用戶名 @...", "Help translate" : "幫助翻譯", - "Password" : "密碼", "Current password" : "目前密碼", - "New password" : "新密碼", "Change password" : "變更密碼", "Web, desktop and mobile clients currently logged in to your account." : "目前登入您的帳號的網頁、桌面和行動裝置客戶端", "Device" : "裝置", @@ -247,7 +261,6 @@ OC.L10N.register( "Create new app password" : "建立新的應用程式密碼", "Use the credentials below to configure your app or device." : "請使用下方的登入資訊來設定您的應用程式或是裝置", "For security reasons this password will only be shown once." : "基於安全性考量,這個密碼只會顯示一次", - "Username" : "使用者名稱", "Done" : "完成", "Enabled apps" : "已啓用應用程式", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 使用的 %s 版本已經過期 (%s),請您更新您的作業系統,否則功能如 %s 可能無法正常運作", @@ -272,22 +285,17 @@ OC.L10N.register( "Password confirmation is required" : "需要密碼確認", "Are you really sure you want add {domain} as trusted domain?" : "您確定要新增 {domain} 為信任的網域?", "Add trusted domain" : "新增信任的網域", - "All" : "所有", "Update to %s" : "更新到 %s", - "No apps found for your version" : "沒有找到適合您的版本的應用程式", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方應用程序是由社區內部和內部開發的。 它們提供核心功能,並可在正式成品使用。", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "審查通過的應用程式經由可信任的開發人員所設計,並且經過一連串的安全測試,他們在開放的程式庫中維護這些應用程式,而且確保這些應用程式能穩定運作", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "這個新應用程式並沒有經過安全檢測,可能會是不穩定的,如果您要安裝的話,風險自行負責。", "Disabling app …" : "正在停用應用程式…", "Error while disabling app" : "停用應用程式錯誤", - "Disable" : "停用", "Enabling app …" : "啟用中…", "Error while enabling app" : "啟用應用程式錯誤", "Error: Could not disable broken app" : "錯誤:無法停用損毀的應用程式", "Error while disabling broken app" : "停用損毀的應用時發生錯誤", "Updated" : "已更新", "Removing …" : "移除中…", - "Remove" : "移除", "Approved" : "審查通過", "Experimental" : "實驗性質", "No apps found for {query}" : "沒有符合 {query} 的應用程式", @@ -325,16 +333,12 @@ OC.L10N.register( "Theming" : "佈景主題", "Check the security of your Nextcloud over our security scan" : "使用我們的掃描服務來檢查您 Nextcloud 的安全性", "Hardening and security guidance" : "增強安全指南", - "View in store" : "在商店中檢視", "This app has an update available." : "此應用程式有可用的更新", "by %s" : "由 %s", "%s-licensed" : "%s 授權", "Documentation:" : "說明文件:", - "Admin documentation" : "管理者文件", - "Report a bug" : "回報問題", "Show description …" : "顯示描述", "Hide description …" : "隱藏描述", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最高的Nextcloud版本,未來將會產生問題。", "Enable only for specific groups" : "僅對特定的群組啟用", "Online documentation" : "線上說明文件", "Getting help" : "取得協助", @@ -344,8 +348,6 @@ OC.L10N.register( "You are member of the following groups:" : "您的帳號屬於這些群組:", "Settings" : "設定", "Show storage location" : "顯示儲存位置", - "Show user backend" : "顯示使用者資料後端", - "Show last login" : "顯示上次登入時間", "Show email address" : "顯示電子郵件信箱", "Send email to new user" : "寄送郵件給新用戶", "E-Mail" : "電子郵件", @@ -355,8 +357,6 @@ OC.L10N.register( "Disabled" : "已停用", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "請輸入儲存容量限制(例如 \"512 MB\" 或是 \"12 GB\")", "Other" : "其他", - "Quota" : "容量限制", - "Storage location" : "儲存位址", "change full name" : "變更全名", "set new password" : "設定新密碼", "change email address" : "更改電子郵件地址", diff --git a/settings/l10n/zh_TW.json b/settings/l10n/zh_TW.json index 214b82a16e2..f0f57a95320 100644 --- a/settings/l10n/zh_TW.json +++ b/settings/l10n/zh_TW.json @@ -103,30 +103,46 @@ "Select a profile picture" : "選擇大頭貼照", "Groups" : "群組", "Limit to groups" : "限制給特定群組", + "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方應用程序是由社區內部和內部開發的。 它們提供核心功能,並可在正式成品使用。", "Official" : "官方", + "Remove" : "移除", + "Disable" : "停用", + "All" : "所有", + "View in store" : "在商店中檢視", "Visit website" : "開啟網站", + "Report a bug" : "回報問題", "User documentation" : "用戶說明文件", + "Admin documentation" : "管理者文件", "Developer documentation" : "開發者說明文件", "This app has no minimum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最低的Nextcloud版本,未來將會產生問題。", + "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最高的Nextcloud版本,未來將會產生問題。", "This app cannot be installed because the following dependencies are not fulfilled:" : "這個應用程式無法被安裝,因為欠缺下列相依套件:", + "No apps found for your version" : "沒有找到適合您的版本的應用程式", "Enable all" : "全部啟用", "Enable" : "啟用", "The app will be downloaded from the app store" : "將會從應用程式商店下載這個應用程式", + "New password" : "新密碼", "{size} used" : "{size} 已使用", + "Username" : "使用者名稱", + "Password" : "密碼", "Email" : "信箱", "Group admin for" : "群組管理員", + "Quota" : "容量限制", "Language" : "語言", + "Storage location" : "儲存位址", "User backend" : "使用者資料後端", "Unlimited" : "無限制", "Default quota" : "預設儲存容量限制", - "Error: This app can not be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", "Your apps" : "您的應用程式", "Disabled apps" : "已停用應用程式", "Updates" : "更新", "App bundles" : "應用程式套裝", + "Show last login" : "顯示上次登入時間", + "Show user backend" : "顯示使用者資料後端", "Admins" : "管理者", "Everyone" : "所有人", "Add group" : "新增群組", + "Error: This app can not be enabled because it makes the server unstable" : "錯誤:此應用程序無法啟用,因為它造成伺服器不穩定", "SSL Root Certificates" : "SSL 根憑證", "Common Name" : "Common Name", "Valid until" : "到期日", @@ -234,9 +250,7 @@ "Twitter" : "Twitter", "Twitter handle @…" : "Twitter 用戶名 @...", "Help translate" : "幫助翻譯", - "Password" : "密碼", "Current password" : "目前密碼", - "New password" : "新密碼", "Change password" : "變更密碼", "Web, desktop and mobile clients currently logged in to your account." : "目前登入您的帳號的網頁、桌面和行動裝置客戶端", "Device" : "裝置", @@ -245,7 +259,6 @@ "Create new app password" : "建立新的應用程式密碼", "Use the credentials below to configure your app or device." : "請使用下方的登入資訊來設定您的應用程式或是裝置", "For security reasons this password will only be shown once." : "基於安全性考量,這個密碼只會顯示一次", - "Username" : "使用者名稱", "Done" : "完成", "Enabled apps" : "已啓用應用程式", "cURL is using an outdated %s version (%s). Please update your operating system or features such as %s will not work reliably." : "cURL 使用的 %s 版本已經過期 (%s),請您更新您的作業系統,否則功能如 %s 可能無法正常運作", @@ -270,22 +283,17 @@ "Password confirmation is required" : "需要密碼確認", "Are you really sure you want add {domain} as trusted domain?" : "您確定要新增 {domain} 為信任的網域?", "Add trusted domain" : "新增信任的網域", - "All" : "所有", "Update to %s" : "更新到 %s", - "No apps found for your version" : "沒有找到適合您的版本的應用程式", - "Official apps are developed by and within the community. They offer central functionality and are ready for production use." : "官方應用程序是由社區內部和內部開發的。 它們提供核心功能,並可在正式成品使用。", "Approved apps are developed by trusted developers and have passed a cursory security check. They are actively maintained in an open code repository and their maintainers deem them to be stable for casual to normal use." : "審查通過的應用程式經由可信任的開發人員所設計,並且經過一連串的安全測試,他們在開放的程式庫中維護這些應用程式,而且確保這些應用程式能穩定運作", "This app is not checked for security issues and is new or known to be unstable. Install at your own risk." : "這個新應用程式並沒有經過安全檢測,可能會是不穩定的,如果您要安裝的話,風險自行負責。", "Disabling app …" : "正在停用應用程式…", "Error while disabling app" : "停用應用程式錯誤", - "Disable" : "停用", "Enabling app …" : "啟用中…", "Error while enabling app" : "啟用應用程式錯誤", "Error: Could not disable broken app" : "錯誤:無法停用損毀的應用程式", "Error while disabling broken app" : "停用損毀的應用時發生錯誤", "Updated" : "已更新", "Removing …" : "移除中…", - "Remove" : "移除", "Approved" : "審查通過", "Experimental" : "實驗性質", "No apps found for {query}" : "沒有符合 {query} 的應用程式", @@ -323,16 +331,12 @@ "Theming" : "佈景主題", "Check the security of your Nextcloud over our security scan" : "使用我們的掃描服務來檢查您 Nextcloud 的安全性", "Hardening and security guidance" : "增強安全指南", - "View in store" : "在商店中檢視", "This app has an update available." : "此應用程式有可用的更新", "by %s" : "由 %s", "%s-licensed" : "%s 授權", "Documentation:" : "說明文件:", - "Admin documentation" : "管理者文件", - "Report a bug" : "回報問題", "Show description …" : "顯示描述", "Hide description …" : "隱藏描述", - "This app has no maximum Nextcloud version assigned. This will be an error in the future." : "此應用程式並未配置最高的Nextcloud版本,未來將會產生問題。", "Enable only for specific groups" : "僅對特定的群組啟用", "Online documentation" : "線上說明文件", "Getting help" : "取得協助", @@ -342,8 +346,6 @@ "You are member of the following groups:" : "您的帳號屬於這些群組:", "Settings" : "設定", "Show storage location" : "顯示儲存位置", - "Show user backend" : "顯示使用者資料後端", - "Show last login" : "顯示上次登入時間", "Show email address" : "顯示電子郵件信箱", "Send email to new user" : "寄送郵件給新用戶", "E-Mail" : "電子郵件", @@ -353,8 +355,6 @@ "Disabled" : "已停用", "Please enter storage quota (ex: \"512 MB\" or \"12 GB\")" : "請輸入儲存容量限制(例如 \"512 MB\" 或是 \"12 GB\")", "Other" : "其他", - "Quota" : "容量限制", - "Storage location" : "儲存位址", "change full name" : "變更全名", "set new password" : "設定新密碼", "change email address" : "更改電子郵件地址", diff --git a/tests/Settings/Controller/CheckSetupControllerTest.php b/tests/Settings/Controller/CheckSetupControllerTest.php index 34c7d19bd8d..ff565f3734b 100644 --- a/tests/Settings/Controller/CheckSetupControllerTest.php +++ b/tests/Settings/Controller/CheckSetupControllerTest.php @@ -520,6 +520,40 @@ class CheckSetupControllerTest extends TestCase { $this->assertEquals($expected, $this->checkSetupController->check()); } + public function testIsPhpMailerUsed() { + $checkSetupController = $this->getMockBuilder('\OC\Settings\Controller\CheckSetupController') + ->setConstructorArgs([ + 'settings', + $this->request, + $this->config, + $this->clientService, + $this->urlGenerator, + $this->util, + $this->l10n, + $this->checker, + $this->logger, + $this->dispatcher, + $this->db, + $this->lockingProvider, + $this->dateTimeFormatter, + $this->memoryInfo, + $this->secureRandom, + ]) + ->setMethods(null)->getMock(); + + $this->config->expects($this->at(0)) + ->method('getSystemValue') + ->with('mail_smtpmode', 'smtp') + ->will($this->returnValue('php')); + $this->config->expects($this->at(1)) + ->method('getSystemValue') + ->with('mail_smtpmode', 'smtp') + ->will($this->returnValue('not-php')); + + $this->assertTrue($this->invokePrivate($checkSetupController, 'isPhpMailerUsed')); + $this->assertFalse($this->invokePrivate($checkSetupController, 'isPhpMailerUsed')); + } + public function testGetCurlVersion() { $checkSetupController = $this->getMockBuilder('\OC\Settings\Controller\CheckSetupController') ->setConstructorArgs([ diff --git a/tests/lib/Files/Cache/CacheTest.php b/tests/lib/Files/Cache/CacheTest.php index bc95a9004f8..d984964ca9f 100644 --- a/tests/lib/Files/Cache/CacheTest.php +++ b/tests/lib/Files/Cache/CacheTest.php @@ -553,6 +553,7 @@ class CacheTest extends \Test\TestCase { function testNonExisting() { $this->assertFalse($this->cache->get('foo.txt')); + $this->assertFalse($this->cache->get(-1)); $this->assertEquals(array(), $this->cache->getFolderContents('foo')); } |